/*
Theme Name: JCPIT Support
Theme URI: https://jcpit.com.au
Author: JCPIT Support
Author URI: https://jcpit.com.au
Description: Custom cybersecurity theme for JCPIT Support — Keeping IT Simple
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jcpit
Tags: custom, business, mssp, security, dark-theme
*/


/* =======================================================
   1. DESIGN TOKENS
======================================================= */
:root {
  /* Colour */
  --accent: #F26522;
  --accent-dark: #d4571a;
  --accent-dim: rgba(242, 101, 34, 0.08);
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.08);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.08);
  --bg: #09090b;
  --surface: #111113;
  --surface-2: #18181b;
  --surface-hover: #1a1a1e;
  --border: rgba(255, 255, 255, 0.06);
  --text-1: rgba(255, 255, 255, 0.92);
  --text-2: rgba(255, 255, 255, 0.64);
  --text-3: rgba(255, 255, 255, 0.53);

  /* Type scale */
  --type-2xs: 0.6875rem;                       /* 11px — UI-only labels, legal */
  --type-xs: 0.75rem;                          /* 12px — badges, metadata, small labels */
  --type-sm: 0.8125rem;                        /* 13px — descriptions, nav links */
  --type-base: 0.875rem;                       /* 14px — card body, secondary content */
  --type-md: 1rem;                             /* 16px — primary body */
  --type-lg: 1.125rem;                         /* 18px — card titles, form titles */
  --type-xl: 1.25rem;                          /* 20px — sub-headings */
  --type-h3: clamp(1.25rem, 2.5vw, 1.5rem);   /* h3 */
  --type-h2: clamp(1.75rem, 3.5vw, 2.25rem);  /* h2 */
  --type-h1: clamp(2.25rem, 5vw, 3.25rem);    /* h1 / hero */
  --type-display: 2.25rem;                     /* stat numbers, prices */

  /* Line height */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight: -0.03em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;

  /* Spacing scale */
  --space-2xs: 0.25rem;   /* 4px  — micro gaps, icon padding */
  --space-xs: 0.5rem;     /* 8px  — tight sibling spacing */
  --space-sm: 0.75rem;    /* 12px — card internals, form gaps */
  --space-md: 1rem;       /* 16px — standard component spacing */
  --space-lg: 1.5rem;     /* 24px — generous component spacing */
  --space-xl: 2rem;       /* 32px — section internals */
  --space-2xl: 3rem;      /* 48px — section separations */
  --space-3xl: 5rem;      /* 80px — major section padding */
  --space-4xl: 7rem;      /* 112px — hero / high-impact sections */

  /* Radius */
  --radius: 16px;
  --radius-sm: 8px;

  /* Transition */
  --transition: 0.2s ease;
}


/* =======================================================
   2. RESET & BASE
======================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}


/* =======================================================
   3. TYPOGRAPHY
======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
}

h1 { font-size: var(--type-h1); }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); }
h4 { font-size: var(--type-lg); }
h5 { font-size: var(--type-md); }
h6 { font-size: var(--type-base); }

p {
  font-size: var(--type-md);
  line-height: var(--leading-relaxed);
  color: var(--text-2);
}

.section-label {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: var(--type-h2);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-tight);
}

.section-sub {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-relaxed);
  max-width: 560px;
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin: 0 auto;
}


/* =======================================================
   4. LAYOUT
======================================================= */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.section {
  padding: var(--space-3xl) var(--space-2xl);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}


/* =======================================================
   5. ANIMATIONS
======================================================= */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ticker-go {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* =======================================================
   6. NAVIGATION
======================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 3rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}

.logo-accent {
  color: var(--accent);
}

.logo-divider {
  width: 3px;
  align-self: stretch;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
  margin: 4px 0;
}

.logo-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-support {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 4px;
  white-space: nowrap;
}

.logo-tagline-bold {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer logo — slightly smaller */
.footer-logo {
  margin-bottom: 0.8rem;
}

.footer-logo .logo-mark {
  font-size: 2rem;
}

.footer-logo .logo-support {
  font-size: 0.75rem;
}

.footer-logo .logo-tagline {
  font-size: 0.45rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links > .nav-link,
.nav-links > .nav-dropdown {
  margin: 0;
}

/* WordPress menu <ul> override when items_wrap still outputs a list */
.nav-links > ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-size: var(--type-sm);
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text-1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-size: var(--type-sm);
  color: var(--text-2);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-login:hover {
  color: var(--text-1);
}

.nav-cta {
  background: var(--accent);
  color: #1a0a00;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  font-size: var(--type-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Portal dropdown */
.portal-dropdown {
  position: relative;
}

.portal-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.portal-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 260px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.375rem;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.portal-dropdown.open .portal-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.portal-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  color: var(--text-1);
  transition: background 0.15s ease;
}

.portal-option:hover {
  background: var(--surface-hover);
}

.portal-option svg {
  color: var(--text-3);
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.portal-option:hover svg {
  color: var(--accent);
}

.portal-option-title {
  font-size: var(--type-sm);
  font-weight: 600;
  line-height: var(--leading-snug);
}

.portal-option-desc {
  font-size: var(--type-xs);
  color: var(--text-3);
  line-height: var(--leading-snug);
}

/* Booking modal */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.booking-overlay.is-open {
  display: flex;
  opacity: 1;
}

.booking-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 90vw;
  max-width: 560px;
  height: 85vh;
  max-height: 740px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.booking-overlay.is-open .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.booking-title {
  font-size: var(--type-base);
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
}

.booking-close {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-close:hover {
  color: var(--text-1);
  background: var(--surface-2);
}

.booking-iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: var(--surface);
}

@media (max-width: 600px) {
  .booking-modal {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }
  .assessment-modal-inner {
    width: 100vw;
    max-width: none;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* ════════════════════════════════════════════════════════
   ASSESSMENT MODAL
   ════════════════════════════════════════════════════════ */
.assessment-modal-inner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 90vw;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.booking-overlay.is-open .assessment-modal-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.assessment-modal-inner .booking-header {
  padding: 1.5rem 1.5rem 0;
}
.assessment-modal-sub {
  font-size: var(--type-sm);
  color: var(--text-2);
  margin-top: 0.25rem;
  line-height: var(--leading-normal);
}
.assessment-modal-inner #assessment-form-wrap,
.assessment-modal-inner #assessment-success {
  padding: 1.25rem 1.5rem 1.5rem;
}
.assessment-modal-inner .form-group {
  margin-bottom: 1rem;
}
.assessment-modal-inner .form-privacy-notice {
  margin-top: 0.5rem;
}

/* Success state */
.assessment-modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
}
.assessment-success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dim);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.assessment-success-title {
  font-size: var(--type-xl);
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.5rem 0;
}
.assessment-success-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-normal);
  max-width: 38ch;
  margin: 0;
}

.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile CTA — hidden on desktop, shown inside mobile menu */
.nav-mobile-cta {
  display: none;
}

/* WordPress menu integration */
.nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  font-size: var(--type-sm);
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links ul li a:hover,
.nav-links ul li.current-menu-item a,
.nav-links ul li.current_page_item a {
  color: var(--text-1);
}

/* Dropdown menus */
.nav-links ul li {
  position: relative;
}

.nav-links ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  z-index: 60;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-links ul li:hover > ul.sub-menu {
  display: flex;
}

.nav-links ul li ul.sub-menu li a {
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
  font-size: var(--type-xs);
}

.nav-links ul li ul.sub-menu li a:hover {
  background: var(--surface-2);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--type-sm);
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--transition);
  padding: 0;
  line-height: 1;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--text-1);
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  z-index: 60;
}

.nav-dropdown-menu-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover > .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--type-xs);
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-item:hover {
  background: var(--surface-2);
  color: var(--text-1);
}


/* =======================================================
   7. HERO
======================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 20%, transparent 70%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 400px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(242, 101, 34, 0.06);
}

.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: var(--type-xs);
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeIn 0.5s 0.1s ease forwards;
  transform: translateY(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: var(--type-h1);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
  margin-bottom: var(--space-md);
}

.hero-h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease forwards;
}

.hero-h1 .line:nth-child(1) { animation-delay: 0.15s; }
.hero-h1 .line:nth-child(2) { animation-delay: 0.25s; }
.hero-h1 .line:nth-child(3) { animation-delay: 0.35s; }

.hero-h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: var(--type-md);
  color: var(--text-2);
  line-height: var(--leading-relaxed);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  animation: fadeIn 0.5s 0.4s ease forwards;
  transform: translateY(10px);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.5s 0.5s ease forwards;
  transform: translateY(10px);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  animation: fadeIn 0.5s 0.6s ease forwards;
  transform: translateY(10px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--type-xs);
  color: var(--text-3);
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.trust-label {
  font-weight: 600;
  color: var(--text-2);
}


/* =======================================================
   8. BUTTONS
======================================================= */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: var(--type-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #1a0a00;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn .arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* =======================================================
   9. STAT BANNER
======================================================= */
.stat-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 3rem 3rem 0;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.6s 0.7s ease forwards;
  transform: translateY(15px);
}

.stat-card {
  background: var(--surface-2);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: var(--type-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0.3rem;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
}

.stat-number.red { color: var(--red); }
.stat-number.accent { color: var(--accent); }
.stat-number.white { color: var(--text-1); }
.stat-number.green { color: var(--green); }

.stat-desc {
  font-size: var(--type-xs);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.stat-source {
  font-size: var(--type-2xs);
  color: var(--text-3);
  margin-top: 0.4rem;
  font-style: italic;
}


/* =======================================================
   10. PROBLEM SECTION
======================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.problem-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.problem-item:hover {
  border-color: rgba(239, 68, 68, 0.15);
}

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--red-dim);
  border: 1px solid rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-title {
  font-size: var(--type-sm);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}

.problem-desc {
  font-size: var(--type-xs);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.problem-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-visual-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
}

/* Threat bars */
.threat-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.threat-bar:last-child {
  border-bottom: none;
}

.threat-bar-label {
  font-size: var(--type-xs);
  font-weight: 600;
  color: var(--text-2);
  width: 120px;
  flex-shrink: 0;
}

.threat-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
}

.threat-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.threat-bar-fill.red { background: var(--red); }
.threat-bar-fill.accent { background: var(--accent); }
.threat-bar-fill.green { background: var(--green); }

.threat-bar-val {
  font-size: var(--type-xs);
  font-weight: 700;
  color: var(--text-1);
  width: 40px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}


/* =======================================================
   11. PROTECTION / SERVICE GRID
======================================================= */
.protect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-top: var(--space-2xl);
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.protect-card {
  background: var(--surface-2);
  padding: var(--space-lg);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.protect-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.protect-card-link:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.protect-card-link:hover .protect-icon {
  border-color: rgba(242, 101, 34, 0.3);
  box-shadow: 0 0 20px rgba(242, 101, 34, 0.08);
}

.protect-card-link:hover .protect-title {
  color: var(--accent);
}

.protect-card-link:hover .protect-link {
  color: var(--accent);
  gap: 0.5rem;
}

.protect-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.protect-card-header .protect-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.protect-card-header .protect-title {
  margin-bottom: 0;
}

.protect-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--type-xs);
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}

.protect-link svg {
  transition: transform 0.2s;
}

.protect-card-link:hover .protect-link svg {
  transform: translateX(3px);
}

.protect-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.protect-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.protect-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.protect-title {
  font-size: var(--type-base);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}

.protect-desc {
  font-size: var(--type-xs);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin-bottom: 0.8rem;
}

.protect-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--type-2xs);
  font-weight: 600;
  color: var(--green);
}

.protect-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* Related services on service detail pages — compact horizontal layout */
.related-services .protect-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.related-services .protect-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.related-services .protect-card-header .protect-icon {
  margin-bottom: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.related-services .protect-card-header .protect-icon svg {
  width: 14px;
  height: 14px;
}

.related-services .protect-card-header .protect-title {
  margin-bottom: 0;
  font-size: var(--type-sm);
}


/* =======================================================
   12. MYTH / OBJECTION CARDS
======================================================= */
.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.myth-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: border-color 0.3s;
}

.myth-card:hover {
  border-color: rgba(242, 101, 34, 0.12);
}

.myth-quote {
  font-size: var(--type-sm);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.myth-quote-mark {
  color: var(--accent);
  font-size: var(--type-xl);
  line-height: 1;
  flex-shrink: 0;
}

.myth-response {
  font-size: var(--type-xs);
  color: var(--text-2);
  line-height: var(--leading-normal);
  padding-left: 1.5rem;
}


/* =======================================================
   13. STEPS
======================================================= */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: var(--type-xs);
  font-weight: 800;
  color: var(--accent);
}

.step-title {
  font-size: var(--type-sm);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: var(--type-xs);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.step-connector {
  position: absolute;
  top: 18px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--border);
}

.step-card:last-child .step-connector {
  display: none;
}


/* =======================================================
   14. ASSESSMENT CTA
======================================================= */
.assessment {
  margin: 0 var(--space-2xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.assessment-content {
  padding: var(--space-2xl);
}

.assessment-visual {
  position: relative;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  overflow: hidden;
}

.assessment-visual .glow {
  width: 300px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(242, 101, 34, 0.06);
}

.score-ring {
  width: 160px;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.score-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 6;
}

.score-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease;
}

.score-ring-fill.animated {
  stroke-dashoffset: 176;
}

.score-value {
  font-size: var(--type-display);
  font-weight: 800;
  color: var(--text-1);
  z-index: 2;
  font-variant-numeric: tabular-nums;
}

.score-label {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-2);
  position: absolute;
  bottom: -8px;
  z-index: 2;
  white-space: nowrap;
  background: var(--bg);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}


/* =======================================================
   15. PARTNERS
======================================================= */
.partners {
  padding: var(--space-2xl) var(--space-2xl);
  text-align: center;
  border-top: 1px solid var(--border);
}

.partners-label {
  font-size: var(--type-2xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
  margin-bottom: var(--space-md);
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  align-items: center;
  flex-wrap: wrap;
}

.partner {
  color: rgba(255, 255, 255, 0.2);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
}

.partner:hover {
  color: rgba(255, 255, 255, 0.45);
}

.partner svg {
  height: 22px;
  width: auto;
  display: block;
}

.partner img {
  height: 24px;
  width: auto;
  opacity: 0.3;
  transition: opacity var(--transition);
}

.partner:hover img {
  opacity: 0.6;
}


/* =======================================================
   16. CTA SECTION
======================================================= */
.cta {
  margin: var(--space-md) var(--space-2xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta .glow {
  width: 400px;
  height: 250px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(242, 101, 34, 0.05);
  filter: blur(80px);
}

.cta-title {
  font-size: var(--type-h3);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 2;
}

.cta-sub {
  font-size: var(--type-base);
  color: var(--text-2);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-normal);
}

.cta-btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}


/* =======================================================
   17. FOOTER
======================================================= */
.footer {
  margin: 0 var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand-col .nav-logo {
  margin-bottom: 0.8rem;
}

.footer-brand-col .footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.footer-tagline {
  font-size: var(--type-xs);
  color: var(--text-3);
  line-height: var(--leading-normal);
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer-address {
  font-style: normal;
}

.footer-contact-item {
  font-size: var(--type-xs);
  color: var(--text-2);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact-item svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-3);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-2);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  font-size: var(--type-xs);
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text-1);
}

/* WordPress widget in footer */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  display: block;
  font-size: var(--type-xs);
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: var(--type-2xs);
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: var(--type-2xs);
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text-2);
}


/* =======================================================
   18. CARDS (Generic)
======================================================= */
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(242, 101, 34, 0.12);
  transform: translateY(-2px);
}

.card-title {
  font-size: var(--type-md);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}


/* =======================================================
   19. FORMS (Dark Theme)
======================================================= */
label {
  display: block;
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: var(--type-base);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.25);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-3);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-help {
  font-size: var(--type-xs);
  color: var(--text-3);
  margin-top: 0.3rem;
}

.form-error {
  font-size: var(--type-xs);
  color: var(--red);
  margin-top: 0.3rem;
}

/* WordPress form compatibility (CF7, Gravity, WPForms) */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select,
.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select,
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: var(--type-base);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.25);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.wpcf7-submit,
.gform_button,
.wpforms-submit {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}

.wpcf7-submit:hover,
.gform_button:hover,
.wpforms-submit:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px) !important;
}


/* =======================================================
   20. WORDPRESS CONTENT (.entry-content)
======================================================= */
.entry-content {
  color: var(--text-2);
  line-height: var(--leading-relaxed);
  font-size: var(--type-md);
  max-width: 65ch;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--text-1);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content h1 { font-size: var(--type-h2); }
.entry-content h2 { font-size: var(--type-h3); }
.entry-content h3 { font-size: var(--type-xl); }
.entry-content h4 { font-size: var(--type-lg); }

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child {
  margin-top: 0;
}

.entry-content p {
  margin-bottom: 1.25rem;
  color: var(--text-2);
  line-height: var(--leading-relaxed);
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.entry-content a:hover {
  color: var(--accent-dark);
}

.entry-content strong,
.entry-content b {
  color: var(--text-1);
  font-weight: 700;
}

.entry-content em,
.entry-content i {
  font-style: italic;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.5rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 0.25rem;
}

.entry-content ul li::marker {
  color: var(--accent);
}

.entry-content ol li::marker {
  color: var(--accent);
  font-weight: 600;
}

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--accent-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content blockquote p {
  color: var(--text-1);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--type-sm);
  color: var(--text-3);
  font-style: normal;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--type-base);
  font-variant-numeric: tabular-nums;
}

.entry-content table th {
  background: var(--surface-2);
  color: var(--text-1);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
  font-size: var(--type-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.entry-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}

.entry-content table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.entry-content img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.entry-content figure {
  margin: 1.5rem 0;
}

.entry-content figcaption {
  font-size: var(--type-sm);
  color: var(--text-3);
  margin-top: 0.5rem;
  text-align: center;
}

.entry-content code {
  background: var(--surface-2);
  color: var(--accent);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

.entry-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.entry-content pre code {
  background: none;
  padding: 0;
  color: var(--text-2);
  font-size: var(--type-sm);
  line-height: var(--leading-relaxed);
}

.entry-content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* WordPress alignment classes */
.entry-content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.entry-content .alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.entry-content .alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.entry-content .alignwide {
  margin-left: -2rem;
  margin-right: -2rem;
  width: calc(100% + 4rem);
  max-width: calc(100% + 4rem);
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
}

/* WordPress block styles */
.wp-block-image { margin: 1.5rem 0; }
.wp-block-paragraph { margin-bottom: 1.25rem; }
.wp-caption-text {
  font-size: var(--type-sm);
  color: var(--text-3);
  margin-top: 0.5rem;
}

.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.wp-block-gallery img {
  border-radius: var(--radius-sm);
  margin: 0;
}

.wp-block-embed {
  margin: 1.5rem 0;
}

.wp-block-embed iframe {
  border-radius: var(--radius-sm);
  max-width: 100%;
}


/* =======================================================
   21. BLOG CARDS
======================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(242, 101, 34, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card-category {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.blog-card-date {
  font-size: var(--type-xs);
  color: var(--text-3);
}

.blog-card-title {
  font-size: var(--type-md);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

.blog-card-title a {
  color: var(--text-1);
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: var(--type-xs);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.blog-card-link:hover {
  gap: 0.5rem;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-pagination .current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}


/* =======================================================
   22. PAGE HERO
======================================================= */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .grid-bg {
  opacity: 0.5;
}

.page-hero-title {
  font-size: var(--type-h1);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.page-hero-sub {
  font-size: var(--type-md);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--type-xs);
  color: var(--text-3);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--text-3);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--text-3);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--text-2);
}


/* =======================================================
   23. SERVICE PAGE
======================================================= */
.service-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.service-hero .glow {
  width: 500px;
  height: 300px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(242, 101, 34, 0.04);
}

.service-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-hero-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.service-feature {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.service-feature-title {
  font-size: var(--type-base);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}

.service-feature-desc {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.related-services {
  padding: 4rem 3rem;
  border-top: 1px solid var(--border);
}

.related-services-title {
  font-size: var(--type-xl);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 2rem;
  text-align: center;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}


/* =======================================================
   24. PRICING
======================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 101, 34, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(242, 101, 34, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: #fff;
  font-size: var(--type-2xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.pricing-tier {
  font-size: var(--type-2xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-size: var(--type-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
  margin-bottom: 0.4rem;
}

.pricing-desc {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: var(--type-display);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  color: var(--text-1);
  margin-bottom: 0.2rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pricing-period {
  font-size: var(--type-xs);
  color: var(--text-3);
  margin-bottom: 2rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-snug);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-feature-check {
  color: var(--accent);
  font-size: var(--type-xs);
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--type-sm);
  border: 1px solid var(--border);
  color: var(--text-1);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-featured .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-featured .pricing-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}


/* =======================================================
   25. FAQ (Accordion)
======================================================= */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(242, 101, 34, 0.1);
}

.faq-item.active {
  border-color: rgba(242, 101, 34, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-1);
  font-size: var(--type-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-question-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  /* max-height set by JS for smooth animation */
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-relaxed);
}


/* =======================================================
   26. CONTACT
======================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form .form-title {
  font-size: var(--type-lg);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}

.contact-detail-title {
  font-size: var(--type-sm);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}

.contact-detail-text {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.contact-detail-text a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--accent-dark);
}

.contact-map {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
  aspect-ratio: 16 / 9;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6);
}


/* =======================================================
   27. UTILITY CLASSES
======================================================= */
.text-accent { color: var(--accent) !important; }
.text-green { color: var(--green) !important; }
.text-red { color: var(--red) !important; }
.text-muted { color: var(--text-3) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: var(--type-base);
  font-weight: 600;
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
}

.required-mark {
  color: var(--red);
  margin-left: 0.15rem;
}

/* Reusable inline-replacement classes */
.label-upper {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
}

.label-title {
  font-size: var(--type-xs);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.15rem;
}

.label-value {
  font-size: var(--type-sm);
  color: var(--text-2);
}

.source-cite {
  font-size: var(--type-2xs);
  color: var(--text-3);
  font-style: italic;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--type-sm);
  color: var(--text-2);
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: var(--type-sm);
}

.form-alert-success {
  background: var(--green-dim);
  border: 1px solid rgba(52, 211, 153, 0.15);
  color: var(--green);
}

.form-alert-error {
  background: var(--red-dim);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.form-privacy-notice {
  font-size: var(--type-xs);
  color: var(--text-3);
  line-height: var(--leading-normal);
  margin-top: 0.75rem;
}
.form-privacy-notice a {
  color: var(--text-2);
  text-decoration: underline;
}
.form-privacy-notice a:hover {
  color: var(--text-1);
}

/* Checkbox in forms */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-snug);
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  margin-top: 1px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.form-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Select inputs */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.64)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-input option {
  background: var(--surface-2);
  color: var(--text-1);
}

/* Searchable industry dropdown */
.industry-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  z-index: 100;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.industry-option {
  padding: 0.5rem 0.75rem;
  font-size: var(--type-base);
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.industry-option:hover,
.industry-option.active {
  background: var(--accent-dim);
  color: var(--text-1);
}
.industry-option.highlighted {
  background: var(--accent-dim);
  color: var(--text-1);
}
.industry-no-results {
  padding: 0.75rem;
  font-size: var(--type-sm);
  color: var(--text-3);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   SECURITY CHECK OPTIONS (Two-card layout)
   ════════════════════════════════════════════════════════ */
.security-check-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.security-check-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.security-check-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.security-check-card-featured {
  border-color: rgba(242, 101, 34, 0.25);
  position: relative;
}
.security-check-card-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.security-check-card > * {
  position: relative;
  z-index: 1;
}
.security-check-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.security-check-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
}
.security-check-card-title {
  font-size: var(--type-lg);
  font-weight: 700;
  color: var(--text-1);
  line-height: var(--leading-snug);
  margin-bottom: 0.4rem;
}
.security-check-card-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin-bottom: 1.25rem;
}
.security-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.security-check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-snug);
}
.security-check-list li svg {
  color: var(--green);
  min-width: 14px;
}
.security-check-card-footer {
  margin-top: auto;
}
.security-check-card-footer .source-cite {
  margin-top: 0.6rem;
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   FOOTER NEWSLETTER
   ════════════════════════════════════════════════════════ */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-newsletter-content {
  flex: 1;
  min-width: 0;
}
.footer-newsletter-title {
  font-size: var(--type-lg);
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.25rem 0;
}
.footer-newsletter-desc {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin: 0;
  max-width: 40ch;
}
.footer-newsletter-form-wrap {
  flex-shrink: 0;
}
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-newsletter-input-group {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter-input-group .form-input {
  width: 260px;
}
.footer-newsletter-input-group .btn {
  white-space: nowrap;
}
.footer-newsletter-privacy {
  font-size: var(--type-2xs);
  color: var(--text-3);
  margin-top: 0.4rem;
}
.footer-newsletter-privacy a {
  color: var(--text-3);
  text-decoration: underline;
}
.footer-newsletter-privacy a:hover {
  color: var(--text-2);
}

.tag-pill {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  color: var(--accent);
  background: var(--accent-dim);
  text-decoration: none;
  transition: background var(--transition);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.35rem 0.9rem;
  background: var(--green-dim);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 100px;
  font-size: var(--type-xs);
  font-weight: 600;
  color: var(--green);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: var(--type-sm);
  color: var(--text-3);
}

.post-nav-label {
  font-size: var(--type-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
  margin-bottom: 0.4rem;
}

.post-nav-title {
  font-size: var(--type-base);
  font-weight: 700;
  color: var(--text-1);
  line-height: var(--leading-snug);
}

.author-box-name {
  font-weight: 700;
  font-size: var(--type-base);
  color: var(--text-1);
  margin-bottom: 0.25rem;
}

.author-box-bio {
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
}

.avatar-circle {
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-circle-sm {
  width: 28px;
  height: 28px;
  font-size: var(--type-xs);
}

.avatar-circle-lg {
  width: 56px;
  height: 56px;
  font-size: var(--type-xl);
}

.no-posts-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}

.no-posts-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

/* Single post layout */
.post-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 4rem 3rem 3rem;
}

.post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.post-hero-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.post-hero h1 {
  font-size: var(--type-h1);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--text-1);
  margin-bottom: 1.25rem;
}

.post-featured-img {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 3rem 0;
}

.post-featured-img-inner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.post-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 3rem 0;
}

.post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.author-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.post-nav {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.post-nav-link {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition);
}

.post-nav-link:hover {
  border-color: rgba(242, 101, 34, 0.25);
}

.post-nav-link--next {
  text-align: right;
}

.back-to-blog {
  text-align: center;
  margin-top: 2.5rem;
  padding-bottom: 5rem;
}

.back-to-blog a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.85;
}

.back-to-blog a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .post-hero {
    padding: 3rem 1.5rem 2rem;
  }
  .post-featured-img {
    padding: 2rem 1.5rem 0;
  }
  .post-content-wrap {
    padding: 2rem 1.5rem 0;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  transform: translateY(20px);
}

/* Grid child stagger inside revealed containers */
.reveal.in-view > .protect-grid > *,
.reveal.in-view > .myths-grid > *,
.reveal.in-view > .steps-row > *,
.reveal.in-view > .problem-grid > * {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.reveal.in-view > .protect-grid > *:nth-child(1),
.reveal.in-view > .myths-grid > *:nth-child(1),
.reveal.in-view > .steps-row > *:nth-child(1),
.reveal.in-view > .problem-grid > *:nth-child(1) { animation-delay: 0.08s; }

.reveal.in-view > .protect-grid > *:nth-child(2),
.reveal.in-view > .myths-grid > *:nth-child(2),
.reveal.in-view > .steps-row > *:nth-child(2),
.reveal.in-view > .problem-grid > *:nth-child(2) { animation-delay: 0.16s; }

.reveal.in-view > .protect-grid > *:nth-child(3),
.reveal.in-view > .myths-grid > *:nth-child(3),
.reveal.in-view > .steps-row > *:nth-child(3),
.reveal.in-view > .problem-grid > *:nth-child(3) { animation-delay: 0.24s; }

.reveal.in-view > .protect-grid > *:nth-child(4),
.reveal.in-view > .myths-grid > *:nth-child(4),
.reveal.in-view > .steps-row > *:nth-child(4),
.reveal.in-view > .problem-grid > *:nth-child(4) { animation-delay: 0.32s; }

.reveal.in-view > .protect-grid > *:nth-child(5),
.reveal.in-view > .myths-grid > *:nth-child(5),
.reveal.in-view > .steps-row > *:nth-child(5) { animation-delay: 0.4s; }

.reveal.in-view > .protect-grid > *:nth-child(6),
.reveal.in-view > .myths-grid > *:nth-child(6),
.reveal.in-view > .steps-row > *:nth-child(6) { animation-delay: 0.48s; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* =======================================================
   28. WORDPRESS CORE COMPATIBILITY
======================================================= */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--surface-2);
  color: var(--text-1);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  clip: auto !important;
}

/* Admin bar spacing */
body.admin-bar .nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

/* WordPress block navigation */
.wp-block-navigation {
  display: flex;
  gap: 2rem;
}

/* WordPress comments */
.comments-area {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 3rem;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list .comment {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.comment-author {
  font-size: var(--type-base);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}

.comment-meta {
  font-size: var(--type-xs);
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.comment-content {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-relaxed);
}

.comment-content p {
  margin-bottom: 0.75rem;
}

.comment-reply-link {
  font-size: var(--type-xs);
  color: var(--accent);
  font-weight: 600;
}

/* WordPress sidebar widgets */
.widget {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: var(--type-sm);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  font-size: var(--type-sm);
  color: var(--text-2);
  transition: color var(--transition);
}

.widget ul li a:hover {
  color: var(--accent);
}

/* WordPress search form */
.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form .search-field {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: var(--type-sm);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.search-form .search-field:focus {
  border-color: var(--accent);
}

.search-form .search-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--type-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.search-form .search-submit:hover {
  background: var(--accent-dark);
}


/* =======================================================
   29. TICKER BAR
======================================================= */
.ticker-bar {
  background: var(--surface);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-go 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  font-size: var(--type-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-2);
}

.ticker-item .sep {
  color: var(--accent);
}


/* =======================================================
   30. 404 PAGE
======================================================= */
.error-404 {
  text-align: center;
  padding: 6rem 3rem;
  max-width: 560px;
  margin: 0 auto;
}

.error-404-title {
  font-size: 6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: var(--tracking-tight);
}

.error-404-sub {
  font-size: var(--type-xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}

.error-404-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
}


/* =======================================================
   31. TRAFFIC VISUALIZATION — NETWORK TOPOLOGY
======================================================= */
.traffic-visual {
  max-width: 880px;
  margin: var(--space-md) auto 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.traffic-header {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.traffic-title {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
}

.traffic-live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--type-2xs);
  color: var(--green);
  font-weight: 600;
}

.traffic-live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.traffic-body {
  position: relative;
  padding: 2rem;
  min-height: 440px;
}

/* SVG topology layer */
.topology-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.conn-line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  fill: none;
}

.conn-line-active {
  stroke-width: 1.5;
  fill: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.conn-line-active.green {
  stroke: var(--green);
  opacity: 0.4;
}

.conn-line-active.red {
  stroke: var(--red);
  opacity: 0.4;
}

/* Ambient flowing dots along lines */
.ambient-dot {
  fill: rgba(255, 255, 255, 0.12);
  r: 1.5;
}

/* Central shield node */
.center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.shield-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(242, 101, 34, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(242, 101, 34, 0.1), 0 0 80px rgba(242, 101, 34, 0.04);
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.shield-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(242, 101, 34, 0.1);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.shield-label {
  font-size: var(--type-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent);
  white-space: nowrap;
}

/* Shield pulse effects */
@keyframes shieldPulseGreen {
  0%   { box-shadow: 0 0 40px rgba(242, 101, 34, 0.1), 0 0 80px rgba(242, 101, 34, 0.04); }
  50%  { box-shadow: 0 0 40px rgba(52, 211, 153, 0.25), 0 0 80px rgba(52, 211, 153, 0.1); }
  100% { box-shadow: 0 0 40px rgba(242, 101, 34, 0.1), 0 0 80px rgba(242, 101, 34, 0.04); }
}

@keyframes shieldPulseRed {
  0%   { box-shadow: 0 0 40px rgba(242, 101, 34, 0.1); border-color: rgba(242, 101, 34, 0.35); }
  30%  { box-shadow: 0 0 50px rgba(239, 68, 68, 0.3); border-color: rgba(239, 68, 68, 0.5); }
  100% { box-shadow: 0 0 40px rgba(242, 101, 34, 0.1); border-color: rgba(242, 101, 34, 0.35); }
}

/* Endpoint nodes */
.endpoint-node {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transform: translate(-50%, -50%);
}

.endpoint-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: breathe 4s ease-in-out infinite;
}

.endpoint-circle svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-2);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.endpoint-label {
  font-size: var(--type-2xs);
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  text-align: center;
}

.endpoint-circle.flash-green {
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.25);
}

.endpoint-circle.flash-red {
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

/* Packet dot traveling along SVG path */
.packet-dot {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  transition: background 0.2s, box-shadow 0.2s;
  will-change: transform;
}

.packet-dot.safe {
  background: var(--green);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

.packet-dot.threat {
  background: var(--red);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}

.packet-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 16;
  pointer-events: none;
  font-size: var(--type-2xs);
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  background: rgba(17, 17, 19, 0.85);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  border: 1px solid var(--border);
}

/* Result indicators near shield */
.result-indicator {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
  font-size: var(--type-xs);
  font-weight: 800;
  animation: resultFade 1s ease forwards;
}

@keyframes resultFade {
  0%   { opacity: 0; scale: 0.5; }
  30%  { opacity: 1; scale: 1.1; }
  50%  { opacity: 1; scale: 1; }
  100% { opacity: 0; scale: 0.8; }
}

.result-indicator.safe {
  color: var(--green);
}

.result-indicator.threat {
  color: var(--red);
}

.blocked-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
  font-size: var(--type-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--red);
  background: var(--red-dim);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  animation: blockedFade 1.5s ease forwards;
}

@keyframes blockedFade {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -70%); }
}

/* Stats bar */
.traffic-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.traffic-stat {
  text-align: center;
}

.traffic-stat-val {
  font-size: var(--type-lg);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.traffic-stat-val.green {
  color: var(--green);
}

.traffic-stat-val.red {
  color: var(--red);
}

.traffic-stat-val.white {
  color: var(--text-1);
}

.traffic-stat-label {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
  margin-top: 0.1rem;
}

/* Recent activity log */
.activity-log {
  border-top: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
}

.activity-log-title {
  font-size: var(--type-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.activity-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.activity-entry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--type-2xs);
  color: var(--text-2);
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(5px);
}

.activity-entry-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-entry-dot.green {
  background: var(--green);
}

.activity-entry-dot.red {
  background: var(--red);
}

.activity-entry-time {
  color: var(--text-3);
  font-size: var(--type-2xs);
  margin-left: auto;
  flex-shrink: 0;
}


/* =======================================================
   QUICK CONNECT PAGE
======================================================= */
.qc-download-card {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2xl);
}
.qc-download-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 16px;
  color: var(--accent);
  margin: 0 auto var(--space-lg);
}
.qc-download-title {
  font-size: var(--type-h3);
  font-weight: 800;
  color: var(--text-1);
  margin: 0 0 0.5rem 0;
  letter-spacing: var(--tracking-tight);
}
.qc-download-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin: 0 0 1.5rem 0;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: var(--type-md);
}

/* Steps */
.qc-steps {
  max-width: 680px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qc-step {
  display: flex;
  gap: 1.5rem;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.qc-step:last-child {
  border-bottom: none;
}
.qc-step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: var(--type-lg);
  font-weight: 800;
  border-radius: 12px;
  line-height: 1;
}
.qc-step-content {
  flex: 1;
  min-width: 0;
}
.qc-step-title {
  font-size: var(--type-lg);
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.5rem 0;
  line-height: var(--leading-snug);
}
.qc-step-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin: 0;
}
.qc-step-desc strong {
  color: var(--text-1);
  font-weight: 600;
}
.qc-step-desc em {
  color: var(--text-1);
  font-style: italic;
}

/* Step tip callout */
.qc-step-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(242, 101, 34, 0.12);
  border-radius: var(--radius-sm);
  font-size: var(--type-sm);
  color: var(--text-2);
  line-height: var(--leading-normal);
}
.qc-step-tip svg {
  color: var(--accent);
  min-width: 14px;
  margin-top: 2px;
}

/* Step action (the "Click Yes" callout) */
.qc-step-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.qc-step-action-label {
  font-size: var(--type-sm);
  color: var(--text-3);
  font-weight: 500;
}
.qc-step-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.5rem;
  background: var(--green-dim);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: var(--type-base);
  font-weight: 600;
}

/* Visual mockup of the Quick Connect window */
.qc-step-visual {
  margin-top: 1rem;
}
.qc-step-visual-window {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
}
.qc-step-visual-titlebar {
  padding: 0.5rem 1rem;
  font-size: var(--type-xs);
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.qc-step-visual-body {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.qc-step-visual-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(52, 211, 153, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: qc-spin 0.8s linear infinite;
}
@keyframes qc-spin {
  to { transform: rotate(360deg); }
}
.qc-step-visual-text {
  font-size: var(--type-sm);
  color: var(--text-1);
  font-weight: 500;
}
.qc-step-visual-footer {
  font-size: var(--type-2xs);
  color: var(--text-3);
  margin-top: 0.5rem;
}
.qc-step-visual-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--type-base);
  color: var(--text-1);
}
.qc-step-visual-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: qc-pulse 2s ease-in-out infinite;
}
@keyframes qc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* FAQ section */
.qc-faq {
  max-width: 680px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qc-faq-item {
  display: flex;
  gap: 1rem;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.qc-faq-item:last-child {
  border-bottom: none;
}
.qc-faq-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--accent);
}
.qc-faq-title {
  font-size: var(--type-md);
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 0.3rem 0;
}
.qc-faq-desc {
  font-size: var(--type-base);
  color: var(--text-2);
  line-height: var(--leading-normal);
  margin: 0;
}
.qc-faq-desc a {
  color: var(--accent);
  text-decoration: none;
}
.qc-faq-desc a:hover {
  text-decoration: underline;
}

/* =======================================================
   32. RESPONSIVE — 1024px (renumbered)
======================================================= */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .protect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .assessment {
    grid-template-columns: 1fr;
  }

  .assessment-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .security-check-options {
    gap: 1.25rem;
  }
}


/* =======================================================
   32. RESPONSIVE — 768px
======================================================= */
@media (max-width: 768px) {
  /* Nav collapse */
  .nav {
    padding: 0 var(--space-md);
  }

  .nav-logo {
    gap: 8px;
  }

  .logo-mark {
    font-size: 1.6rem;
  }

  .logo-divider {
    height: 28px;
  }

  .logo-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .logo-tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 60;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links ul li ul.sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
    min-width: 0;
  }

  .nav-links .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    padding: 0;
    display: none;
  }

  .nav-links .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-links .nav-dropdown-menu-inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.25rem 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links .nav-dropdown-item {
    padding: 0.5rem 0;
    font-size: var(--type-sm);
    color: var(--text-2);
  }

  .nav-links .nav-dropdown-item:hover {
    color: var(--accent);
  }

  /* Mobile CTA section */
  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .nav-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-1);
    text-decoration: none;
    font-size: var(--type-sm);
    font-weight: 600;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: all var(--transition);
  }

  .nav-mobile-phone:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .nav-mobile-portals {
    display: flex;
    gap: 0.5rem;
  }

  .nav-mobile-portals .btn {
    flex: 1;
    text-align: center;
    font-size: var(--type-xs);
    padding: 0.5rem 0.75rem;
  }

  .nav-right {
    gap: 0.75rem;
  }

  .nav-phone,
  .nav-login {
    display: none;
  }

  /* Section padding */
  .section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .hero {
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  }

  .hero-h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Stat banner */
  .stat-banner {
    grid-template-columns: repeat(2, 1fr);
    margin: 2rem 1.5rem 0;
  }

  /* Grids collapse */
  .protect-grid {
    grid-template-columns: 1fr;
  }

  .myths-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .assessment {
    margin: 0 1.5rem;
    grid-template-columns: 1fr;
  }

  .partners {
    padding: 2rem 1.5rem;
  }

  .partners-row {
    gap: 2rem;
  }

  .cta {
    margin: 2rem 1.5rem;
    padding: 2.5rem 1.5rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    margin: 0;
    padding: var(--space-xl) var(--space-2xl);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-newsletter-desc {
    max-width: none;
  }
  .footer-newsletter-input-group {
    flex-direction: column;
  }
  .footer-newsletter-input-group .form-input {
    width: 100%;
  }

  .security-check-options {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero */
  .page-hero {
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  }

  /* Quick Connect */
  .qc-download-card {
    padding: var(--space-xl) var(--space-lg);
  }
  .qc-step {
    gap: 1rem;
  }
  .qc-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: var(--type-base);
    border-radius: 10px;
  }

  /* Service page */
  .service-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .service-content {
    padding: 2rem 1.5rem;
  }

  .related-services {
    padding: 3rem 1.5rem;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Form rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: var(--type-sm);
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
  }

  /* Entry content */
  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .entry-content .alignwide {
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    max-width: calc(100% + 2rem);
  }
}


/* =======================================================
   33. RESPONSIVE — 480px
======================================================= */
/* =======================================================
   600px — Landscape phones / narrow tablets
======================================================= */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .myths-grid {
    grid-template-columns: 1fr;
  }

  .partners-row {
    gap: 1.5rem;
  }

  .traffic-body {
    min-height: 320px;
  }

  /* Prevent iOS auto-zoom on form focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="date"],
  textarea,
  select {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: var(--type-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-banner {
    grid-template-columns: 1fr;
    margin: 1.5rem 1rem 0;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-sub {
    font-size: var(--type-sm);
  }

  .problem-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta {
    margin: var(--space-lg) var(--space-md);
    padding: var(--space-xl) var(--space-md);
  }

  .cta-title {
    font-size: var(--type-xl);
  }

  .assessment {
    margin: 0 var(--space-md);
  }

  .assessment-content {
    padding: var(--space-xl) var(--space-lg);
  }

  .footer {
    margin: 0;
    padding: var(--space-xl) var(--space-2xl);
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-price {
    font-size: 1.75rem;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .partners-row {
    gap: 1.5rem;
    flex-direction: column;
  }
}


/* =======================================================
   34. TRAFFIC VISUAL — RESPONSIVE
======================================================= */
@media (max-width: 768px) {
  .traffic-visual {
    margin: 2rem 1rem 0;
  }

  .traffic-body {
    min-height: 320px;
    padding: 1.5rem 1rem;
  }

  .shield-circle {
    width: 48px;
    height: 48px;
  }

  .shield-circle svg {
    width: 20px;
    height: 20px;
  }

  .endpoint-circle {
    width: 28px;
    height: 28px;
  }

  .endpoint-circle svg {
    width: 11px;
    height: 11px;
  }

  .endpoint-label {
    font-size: 0.625rem;
  }

  .traffic-stats {
    gap: 1.2rem;
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
  }

  .traffic-stat-val {
    font-size: var(--type-base);
  }

  .packet-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .traffic-body {
    min-height: 260px;
    padding: 1rem 0.5rem;
  }

  .traffic-stats {
    gap: 0.8rem;
  }

  .activity-log {
    display: none;
  }
}


/* =======================================================
   35. PREFERS-REDUCED-MOTION
======================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal.in-view > .protect-grid > *,
  .reveal.in-view > .myths-grid > *,
  .reveal.in-view > .steps-row > *,
  .reveal.in-view > .problem-grid > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-badge,
  .hero-h1 .line,
  .hero-sub,
  .hero-actions,
  .hero-trust {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .traffic-visual {
    opacity: 1 !important;
    transform: none !important;
  }

  .packet-dot,
  .ambient-dot,
  .shield-ring,
  .traffic-live-dot {
    animation: none !important;
  }
}


/* =======================================================
   36. PRINT STYLES
======================================================= */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .nav,
  .footer,
  .cta,
  .hero-actions,
  .hero-trust,
  .stat-banner,
  .nav-toggle {
    display: none !important;
  }

  .entry-content {
    color: #000;
  }

  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    color: #000;
  }

  .entry-content a {
    color: #000;
    text-decoration: underline;
  }

  .entry-content a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}

/* =======================================================
   REDUCED MOTION
======================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
