@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #f1f5f9;
  --bg-charcoal: #0f172a;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --accent-light: #fef2f2;
  --accent-soft: rgba(220, 38, 38, 0.06);

  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #f8fafc;

  --border-light: #e5e7eb;
  --border-med: #d1d5db;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 30px rgba(220, 38, 38, 0.15);

  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);

  --grid-pattern: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm39 39V1H1v38h38z' fill='%23000000' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-right: 12px;
}

.hero-left .section-tag::before {
  display: none;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-title span {
  color: var(--accent);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-med);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}

a.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ========== NAVIGATION ========== */
body>nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  height: 70px;
  background: #111827;
  border-bottom: 1px solid #1f2a3d;
  transition: all var(--transition);
}

body>nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Split logo: picture + text images side by side */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: auto;
  height: 100%;
  line-height: 0;
  text-decoration: none;
  background: transparent;
}

.site-logo .logo-icon,
.site-logo .logo-text-img {
  display: block;
  width: auto;
  max-height: none;
  background: transparent;
  object-fit: contain;
  image-rendering: auto;
  -webkit-user-drag: none;
  flex-shrink: 0;
}

/* Picture mark — larger for clarity in the 70px bar */
.site-logo .logo-icon {
  height: 54px;
}

/* Wordmark + tagline — sized so CYBER KARTEL / tagline stay readable */
.site-logo .logo-text-img {
  height: 50px;
}

body>nav.scrolled .site-logo .logo-icon {
  height: 48px;
}

body>nav.scrolled .site-logo .logo-text-img {
  height: 44px;
}

/* Tablet: slightly smaller pair, keep normal gap */
@media (max-width: 900px) {
  .site-logo {
    gap: 12px;
  }

  .site-logo .logo-icon {
    height: 50px;
  }

  .site-logo .logo-text-img {
    height: 46px;
  }

  body>nav.scrolled .site-logo .logo-icon {
    height: 44px;
  }

  body>nav.scrolled .site-logo .logo-text-img {
    height: 40px;
  }
}

/* Mobile: full lockup, scaled down proportionally */
@media (max-width: 640px) {
  .site-logo {
    gap: 10px;
    flex-grow: 1;
    margin-right: 0;
    min-width: 0;
  }

  .site-logo .logo-icon {
    height: 40px;
  }

  .site-logo .logo-text-img {
    height: 36px;
    max-width: min(220px, 52vw);
  }

  body>nav.scrolled .site-logo .logo-icon {
    height: 36px;
  }

  body>nav.scrolled .site-logo .logo-text-img {
    height: 32px;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .site-logo {
    gap: 8px;
  }

  .site-logo .logo-icon {
    height: 34px;
  }

  .site-logo .logo-text-img {
    height: 30px;
    max-width: 48vw;
  }

  body>nav.scrolled .site-logo .logo-icon {
    height: 30px;
  }

  body>nav.scrolled .site-logo .logo-text-img {
    height: 26px;
  }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e5e5e5;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 2rem;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.72rem;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #ffffff;
  padding: 0.3rem;
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

#mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
}

#mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

#mobile-menu.open a:nth-child(2) {
  transition-delay: 0.05s;
}

#mobile-menu.open a:nth-child(3) {
  transition-delay: 0.1s;
}

#mobile-menu.open a:nth-child(4) {
  transition-delay: 0.15s;
}

#mobile-menu.open a:nth-child(5) {
  transition-delay: 0.2s;
}

#mobile-menu.open a:nth-child(6) {
  transition-delay: 0.25s;
}

#mobile-menu a:hover {
  color: var(--accent);
}

#mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 3.75rem 5% 5rem;
  background: var(--bg-white);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--grid-pattern);
  opacity: 0.5;
  z-index: 0;
}

.hero-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: deco-slide 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes deco-slide {

  0%,
  100% {
    transform: translateX(-30%);
    opacity: 0.5;
  }

  50% {
    transform: translateX(30%);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ht-check {
  color: var(--accent);
  font-weight: 700;
}

/* HERO VISUAL - Terminal Scan Window */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scan-window {
  width: 100%;
  max-width: 460px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 38, 38, 0.1);
  position: relative;
}

.hsw-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: var(--gray-800);
  border-bottom: 1px solid var(--gray-700);
}

.hsw-dots {
  display: flex;
  gap: 0.4rem;
}

.hsw-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-600);
}

.hsw-dots span:nth-child(1) {
  background: #ef4444;
}

.hsw-dots span:nth-child(2) {
  background: #eab308;
}

.hsw-dots span:nth-child(3) {
  background: #22c55e;
}

.hsw-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.hsw-body {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hsw-line {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  line-height: 2;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hsw-prompt {
  color: var(--accent);
  font-weight: 700;
}

.hsw-cmd {
  color: #93c5fd;
}

.hsw-ok {
  color: #22c55e;
  font-weight: 700;
}

.hsw-warn {
  color: #fbbf24;
  font-weight: 700;
}

.hsw-muted {
  color: var(--gray-500);
}

.hsw-accent {
  color: var(--accent);
  font-weight: 700;
}

.hsw-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
  animation: scan-line 3s linear infinite;
  pointer-events: none;
}

@keyframes scan-line {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.hero-float-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  animation: float 3s ease-in-out infinite;
}

.hero-float-badge span {
  font-size: 1.4rem;
  font-weight: 700;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ========== MARQUEE STRIP ========== */
.marquee-strip {
  background: var(--gray-900);
  padding: 1.2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-800);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  flex-shrink: 0;
}

.ms-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ========== FEATURE CARDS (homepage legacy) ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 2.2rem 1.8rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: inherit;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover .fc-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.fc-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--text-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== THE REALITY / PROBLEM SECTION ========== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.problem-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.direct-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-lighter);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}

.dp-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 0.2rem;
}

/* Attack Surface box - scan-line animation */
@keyframes scanLine {
  0% {
    top: 0%;
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Attack Surface radar card (homepage) */
.as-map-wrap {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.as-map-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-charcoal);
  border: 2px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  overflow: hidden;
}

.as-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}

.as-map-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 41, 41, 0.55), transparent);
  z-index: 1;
  animation: scanLine 3.2s linear infinite;
  pointer-events: none;
}

.as-map-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.as-map-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-align: center;
}

.as-map-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.as-map-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.35;
}

.as-map-item span {
  color: var(--accent);
  flex-shrink: 0;
}

/* Status badge - laptop/desktop: bottom-right corner */
.as-status-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 5;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border: 2px solid var(--accent);
  box-sizing: border-box;
  max-width: 200px;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.as-status-badge h4 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #111827;
  display: block;
  letter-spacing: 0.02em;
}

.as-status-badge-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: #6b7280;
  line-height: 1.3;
  white-space: nowrap;
  display: block;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /*
    Phone/tablet: drop fixed square so list + badge both fit.
    Reserve bottom-right space for the white status box.
  */
  .as-map-box {
    aspect-ratio: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 1.25rem 1.15rem 5.25rem 1.15rem;
    overflow: hidden;
  }

  .as-map-content {
    align-items: flex-start;
    padding-right: 0;
  }

  .as-map-label {
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
  }

  .as-map-list {
    gap: 0.7rem;
    /* keep last two rows clear of the bottom-right badge */
    padding-right: 0;
    padding-bottom: 0.25rem;
    max-width: calc(100% - 0.25rem);
  }

  .as-map-item {
    font-size: 0.78rem;
  }

  .as-status-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    left: auto;
    top: auto;
    width: max-content;
    max-width: min(11.5rem, 48%);
    margin: 0;
    padding: 0.7rem 0.85rem;
    background: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    z-index: 6;
  }

  .as-status-badge h4 {
    font-size: 0.8rem;
    margin: 0 0 0.25rem;
    color: #111827;
    line-height: 1.15;
    white-space: normal;
  }

  .as-status-badge-meta {
    font-size: 0.62rem;
    color: #6b7280;
    white-space: nowrap;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .as-map-box {
    padding: 1.1rem 1rem 5rem 1rem;
  }

  .as-map-item {
    font-size: 0.74rem;
  }

  .as-status-badge {
    bottom: 0.65rem;
    right: 0.65rem;
    max-width: min(10.75rem, 50%);
    padding: 0.65rem 0.75rem;
  }

  .as-status-badge h4 {
    font-size: 0.75rem;
  }

  .as-status-badge-meta {
    font-size: 0.6rem;
  }
}

/* ========== SERVICES INTERACTIVE (homepage) ========== */
.srv-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-sub-center {
  margin-left: auto;
  margin-right: auto;
}

.srv-interactive {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.srv-tabs {
  display: flex;
  flex-direction: column;
  background: var(--gray-100);
  border-right: 1px solid var(--border-light);
}

.srv-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  position: relative;
}

.srv-tab:last-child {
  border-bottom: none;
}

.srv-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition-fast);
}

.srv-tab:hover {
  background: var(--gray-200);
}

.srv-tab:hover::before {
  transform: scaleY(1);
}

.srv-tab.active {
  background: var(--bg-white);
}

.srv-tab.active::before {
  transform: scaleY(1);
}

.st-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.srv-tab.active .st-num,
.srv-tab:hover .st-num {
  color: var(--accent);
}

.st-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  transition: color var(--transition-fast);
}

.srv-tab.active .st-name,
.srv-tab:hover .st-name {
  color: var(--text-dark);
}

.srv-panel {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  min-height: 360px;
  position: relative;
}

.srv-panel-content {
  display: none;
  animation: panel-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-item.active .srv-panel-content {
  display: block;
}

.mobile-tab {
  display: none !important;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.srv-panel-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.srv-panel-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sp-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sp-tags .tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: var(--accent-light);
}

/* ========== WHY US CARDS ========== */
.why-section {
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent);
  transform: scale(1.05);
}

.why-card:hover .why-icon svg {
  color: #fff;
  transform: rotate(5deg);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== PROCESS TIMELINE ========== */
.process-section {
  background: var(--gray-900);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--grid-pattern);
  opacity: 0.15;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .section-tag {
  color: var(--accent);
}

.process-section .section-title {
  color: #fff;
}

.process-section .section-title span {
  color: var(--accent);
}

.mt-3 {
  margin-top: 3rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.pt-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
  z-index: 0;
}

.pt-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pt-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1.2rem;
  transition: all var(--transition);
  position: relative;
}

.pt-node::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pt-item:hover .pt-node {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.pt-item:hover .pt-node::after {
  opacity: 0.3;
}

.pt-content {
  text-align: center;
}

.pt-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pt-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ========== CTA BLOCK ========== */
.cta-block {
  background: var(--accent);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-deco-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--grid-pattern);
  opacity: 0.2;
}

.cta-block .container {
  position: relative;
  z-index: 2;
}

.cta-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.2rem;
  color: #fff;
}

.cta-block h2 span {
  color: var(--gray-900);
}

.cta-block p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cta-block .btn {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cta-block .btn:hover {
  background: var(--gray-900);
  color: #fff;
  border-color: var(--gray-900);
}

/* ========== FOOTER ========== */
footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand .logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 3.75rem 5% 4rem;
  background: var(--bg-white);
  background-image: var(--grid-pattern);
  border-bottom: 1px solid var(--border-light);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.page-hero h1 span {
  color: var(--accent);
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ========== SECTION INNER ========== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.srv-detail-grid>div>.reveal+.reveal {
  margin-top: 5rem;
}

/* ========== SERVICES LIST ========== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}

.service-row {
  background: var(--bg-white);
  display: grid;
  grid-template-columns: 70px 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.8rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.service-row:hover {
  background: var(--bg-light);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.srv-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: rgba(220, 38, 38, 0.12);
  line-height: 1;
  font-weight: 700;
}

.srv-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.srv-sub {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--accent);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

.srv-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  white-space: nowrap;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.service-row:hover .srv-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== PROCESS GRID ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}

.process-step {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}

.process-step:hover {
  background: var(--bg-light);
}

.ps-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: rgba(220, 38, 38, 0.05);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  font-weight: 700;
}

.ps-accent {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 0.8rem;
}

.ps-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  position: relative;
  font-weight: 700;
}

.ps-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

/* ========== COMPARISON TABLE ========== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-dark);
}

.compare-table th:nth-child(2) {
  color: var(--accent);
}

.compare-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.compare-table td:first-child {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.compare-table tr:hover td {
  background: var(--accent-soft);
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.cross {
  color: var(--border-med);
}

.partial {
  color: #eab308;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ========== SERVICES CARD GRID (services page) ========== */
.srv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.srv-cards-2up {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .srv-cards-2up {
    grid-template-columns: 1fr;
  }
}

.srv-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.2rem 1.8rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: inherit;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.srv-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.srv-card-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  position: relative;
}

.srv-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
  position: relative;
}

.srv-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
}

.srv-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.srv-card-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition: gap var(--transition-fast);
}

.srv-card:hover .srv-card-link {
  gap: 0.7rem;
}

/* ========== ABOUT PAGE ========== */
.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.edge-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.edge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.edge-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.edge-card:hover::before {
  transform: scaleY(1);
}

.edge-card-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.edge-card-body {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.mission-statement {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
}

.mission-statement p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
}

.principles-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.principle-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left var(--transition);
}

.principle-item:hover {
  padding-left: 0.8rem;
}

.principle-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.principle-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.principle-body {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.services-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.services-pill-grid a {
  display: inline-block;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.services-pill-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}

.about-pull-quote {
  border-left: 4px solid var(--accent);
  padding: 2rem 2.5rem;
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
}

.about-pull-quote p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
}

/* ========== CONTACT PAGE ========== */
.contact-next-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-next-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.contact-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.contact-step-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.contact-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-layout-section {
  padding: 4rem 0;
}

.contact-layout-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
  align-items: start;
}

.cdk-card {
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.2rem 1.5rem 1.2rem 2rem;
  margin-bottom: 1rem;
  position: relative;
  transition: all var(--transition-fast);
}

.cdk-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 8px 0 0 8px;
}

.cdk-card:hover {
  box-shadow: var(--shadow-sm);
}

.cdk-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.cdk-card-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.cdk-card-value a {
  color: inherit;
}

.cdk-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cdk-card-spacious {
  padding: 2rem 2rem 2rem 2.5rem;
  margin-bottom: 2rem;
}

.contact-form-card {
  background: var(--bg-light);
  /* Solid off-white background */
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.2rem 2.5rem;
  /* ~35px top/bottom, 40px left/right */
  box-shadow: var(--shadow-sm);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.contact-form-grid .form-group.full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-bottom: 2px solid var(--border-med);
  color: var(--text-dark);
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
  resize: none;
  border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
  background: var(--bg-white);
}

.form-submit {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  transition: all var(--transition);
  border-radius: 4px;
}

.form-submit:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.contact-success-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.contact-success-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-faq-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.contact-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-faq-header {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.contact-faq-q {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-faq-a {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== BLOG PAGE ========== */
.blog-hero {
  padding: 2.5rem 5% 3rem;
  background: var(--bg-white);
  background-image: var(--grid-pattern);
  border-bottom: 1px solid var(--border-light);
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  background: transparent;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  display: block;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.post-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-card.featured-post {
  border-left: 3px solid var(--accent);
}

.post-card.featured-post::after {
  content: 'FEATURED';
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--border-light);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

.post-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-category::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--accent);
}

.post-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.post-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.post-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.post-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
}

.read-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* Blog Sidebar */
.sidebar {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
}

.sidebar-widget h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border-light);
}

.cat-list {
  display: flex;
  flex-direction: column;
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.cat-list li:last-child a {
  border-bottom: none;
}

.cat-list li a:hover {
  color: var(--accent);
}

.cat-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--accent);
}

.recent-post {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-post-title {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.recent-post:hover .recent-post-title {
  color: var(--accent);
}

.recent-post-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.7rem 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  outline: none;
  transition: border-color var(--transition-fast);
  border-radius: 4px;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem;
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition-fast);
  border-radius: 4px;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

.newsletter-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ========== BLOG POST ========== */
.post-header {
  padding: 3.75rem 5% 3rem;
  background: var(--bg-white);
  background-image: var(--grid-pattern);
  border-bottom: 1px solid var(--border-light);
}

.post-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Blog post headline - class used by smartlock & uart */
.post-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.post-h1 span {
  color: var(--accent);
}

/* Blog post headline - plain h1 used by debugging & exploit */
.post-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.post-header h1 span {
  color: var(--accent);
}

.post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.post-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-tags-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 4rem;
  align-items: start;
}

.post-body {
  min-width: 0;
}

.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin: 2.5rem 0 1rem;
  line-height: 1.15;
}

.post-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 2rem 0 0.7rem;
}

.post-body p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.2rem 1.5rem;
}

.post-body li {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 0.3rem;
}

.post-body a {
  color: var(--accent);
  text-decoration: underline;
}

.post-body a:hover {
  color: var(--accent-hover);
}

.post-body code {
  font-family: 'Space Mono', monospace;
  font-size: 0.83rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 0.1rem 0.4rem;
  color: var(--accent);
  border-radius: 3px;
}

.post-body pre {
  background: var(--bg-charcoal);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-body pre code {
  background: none;
  border: none;
  color: #a5d6a7;
  font-size: 0.8rem;
  line-height: 1.85;
  padding: 0;
}

.post-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.post-body blockquote p {
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.code-block {
  background: var(--bg-charcoal);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.85;
  color: #a5d6a7;
  white-space: pre;
}

.code-block .comment {
  color: #64748b;
}

.code-block .highlight {
  color: #fbbf24;
}

.code-block .danger {
  color: #f87171;
}

.code-block .warn {
  color: #fbbf24;
}

.callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.callout-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.callout p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-body);
}

.finding-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid transparent;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition-fast);
}

.finding-card:hover {
  box-shadow: var(--shadow-sm);
}

.finding-card.critical {
  border-left-color: var(--accent);
}

.finding-card.high {
  border-left-color: #f97316;
}

.finding-card.medium {
  border-left-color: #eab308;
}

.finding-severity {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 3px;
}

.sev-critical {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.sev-high {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.sev-medium {
  background: rgba(234, 179, 8, 0.08);
  color: #ca8a04;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.finding-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.finding-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.disclosure-table th {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-dark);
}

.disclosure-table td {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.author-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.author-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.author-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.15rem;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.post-nav-item {
  display: block;
  padding: 1.2rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.post-nav-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.post-nav-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.post-nav-title {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 500;
}

.sidebar-sticky {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.toc-widget,
.share-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.toc-widget h4,
.share-widget h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.toc-list {
  display: flex;
  flex-direction: column;
}

.toc-list li a {
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.toc-list li:last-child a {
  border-bottom: none;
}

.toc-list li a:hover {
  color: var(--accent);
}

.share-btn {
  display: block;
  width: 100%;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.55rem;
  cursor: pointer;
  margin-bottom: 0.4rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== SERVICE DETAIL ========== */
.srv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5% 5rem;
}

.sticky-sidebar {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-cta-box {
  background: #fdf3f3;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta-box:last-child {
  margin-bottom: 0;
}

.sidebar-cta-box h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.sidebar-cta-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.sidebar-cta-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-cta-box li {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(229, 62, 62, 0.12);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sidebar-cta-box li:first-child {
  padding-top: 0;
}

.sidebar-cta-box li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-cta-box li strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.scope-item {
  background: var(--bg-white);
  padding: 1.6rem 1.4rem;
  transition: background var(--transition-fast);
  border-top: 3px solid transparent;
}

.scope-item:hover {
  background: var(--bg-light);
  border-top-color: var(--accent);
}

.scope-icon {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.scope-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.scope-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.phase-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.phase-item {
  background: var(--bg-white);
  padding: 1.8rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background var(--transition-fast);
}

.phase-item:hover {
  background: var(--bg-light);
}

.phase-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.phase-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.phase-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.del-item {
  background: var(--bg-white);
  padding: 1.6rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition-fast);
}

.del-item:hover {
  background: var(--bg-light);
}

.del-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  position: relative;
}

.del-check::after {
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.del-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.del-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.comp-item {
  background: var(--bg-white);
  padding: 1.8rem 1.6rem;
  border-left: 3px solid var(--accent);
  transition: background var(--transition-fast);
}

.comp-item:hover {
  background: var(--bg-light);
}

.comp-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.comp-full {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.comp-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-med);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== SERVICE DETAIL EXTRAS ========== */
.scope-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.scope-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left var(--transition-fast);
}

.scope-row:last-child {
  border-bottom: none;
}

.scope-row:hover {
  padding-left: 0.5rem;
}

.scope-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.scope-row-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.scope-row-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.tech-item {
  background: var(--bg-white);
  padding: 1.6rem 1.4rem;
  transition: background var(--transition-fast);
}

.tech-item:hover {
  background: var(--bg-light);
}

.tech-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tech-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.equip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.equip-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.equip-badge:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.vuln-examples {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.vuln-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

.vuln-item:last-child {
  border-bottom: none;
}

.vuln-item:hover {
  background: var(--bg-light);
}

.vuln-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.vuln-sev {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sev-c {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.sev-h {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.sev-m {
  background: rgba(234, 179, 8, 0.08);
  color: #ca8a04;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

/* ========== BLOG COMPONENT CLASSES ========== */
.blog-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.blog-hero-sub {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
}

.sidebar-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.sidebar-text-mb-lg {
  margin-bottom: 1.2rem;
}

.sidebar-widget-accent {
  background: var(--accent-light);
  border-color: rgba(220, 38, 38, 0.15);
}

.btn.btn-block {
  display: block;
  text-align: center;
}

.post-nav-item-right {
  text-align: right;
}

.sidebar-cta-accent {
  background: var(--accent-light);
  border: 1px solid rgba(220, 38, 38, 0.15);
  padding: 1.5rem;
}

.sidebar-cta-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

/* ========== SHARED COMPONENT UTILITIES ========== */
.section-gray {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.prose-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
}

.prose-text-mb {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.prose-text-sm {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.2rem;
}

.narrow-center {
  max-width: 820px;
  margin: 0 auto;
}

.mb-2 {
  margin-bottom: 2rem;
}

.section-title-lg {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.section-title-sm {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.cdk-card-desc-mb {
  margin-bottom: 0.85rem;
}

.form-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cdk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.cdk-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.cdk-list li span {
  color: var(--accent);
  flex-shrink: 0;
}

.checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkbox-row .checkbox-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

.contact-success-msg h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-success-msg p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-menu-btn {
    display: block;
  }

  .blog-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .service-row {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .srv-tags,
  .srv-cta {
    display: none;
  }

  .contact-layout-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-faq-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .srv-detail-grid {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }

  .edge-grid {
    grid-template-columns: 1fr;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sidebar-sticky {
    position: static;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .scope-grid,
  .phase-list,
  .deliverables-list,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .srv-interactive {
    grid-template-columns: 1fr;
  }

  .srv-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .srv-tab {
    border-bottom: none;
    border-right: 1px solid var(--border-light);
    min-width: 140px;
  }

  .srv-panel {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .pt-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    padding: 3rem 5% 4rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .srv-tabs {
    flex-direction: column;
  }

  .srv-tab {
    min-width: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .desktop-tabs {
    display: none !important;
  }

  .srv-panel {
    padding: 0;
    min-height: auto;
    background: transparent;
  }

  .srv-item {
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
  }

  .mobile-tab {
    display: flex !important;
    width: 100%;
    border-bottom: none;
  }

  .srv-panel-content {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    animation: none;
  }

  .srv-item.active .srv-panel-content {
    max-height: 800px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

/* ========== SERVICE DETAIL UTILITIES ========== */
.text-body-muted {
  color: var(--text-muted);
  line-height: 1.8;
}

.section-gap {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.mb-0-7 {
  margin-bottom: 0.7rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.srv-prose {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.srv-prose-end {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.srv-prose-sm {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.srv-sidebar-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.text-accent {
  color: var(--accent);
}

/* ─── Attack Path Dark Callout Box ─────────────────────────────────────────── */

.attack-path {
  background: var(--bg-charcoal);
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  margin: 1.5rem 0;
}

.attack-path>.section-label {
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 1;
}

.attack-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.attack-step:first-of-type {
  padding-top: 0;
}

.attack-step:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.a-arrow {
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  min-width: 3rem;
  padding-top: 0.08rem;
}

.a-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.a-text strong {
  color: #ffffff;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ─── Industry Fit / Who Needs This - 3-Column Grid ─────────────────────── */

.industry-fit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.ind-fit-item {
  background: var(--bg-white);
  padding: 1.6rem 1.4rem;
  transition: background var(--transition-fast);
}

.ind-fit-item:first-child {
  background: var(--bg-lighter);
}

.ind-fit-item:hover {
  background: var(--bg-light);
}

.ind-fit-item .scope-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 0;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}

.ind-fit-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.ind-fit-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .industry-fit {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .industry-fit {
    grid-template-columns: 1fr;
  }
}

/* ─── Scope Row / Dot List (shared: infrastructure, hardware, IoT) ───────── */

.scope-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.scope-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

.scope-row:last-child {
  border-bottom: none;
}

.scope-row:hover {
  background: var(--bg-light);
}

.scope-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 0;
  margin-top: 0.45rem;
}

.scope-row-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.scope-row-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Minimal CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-charcoal);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.cta-banner-title span {
  color: var(--accent);
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 3.5rem 0;
  }

  .cta-banner-title {
    font-size: 1.5rem;
  }
}