/* Cloud Health Office - Sentinel Theme CSS */
/* Absolute black backgrounds, holographic circuit veins, neon cyan/green accents */

/* === ROOT VARIABLES === */
:root {
  /* Colors - Sentinel Brand Identity */
  --absolute-black: #000000;
  --dark-gray: #0a0a0a;
  --medium-gray: #808080;
  --light-gray: #b0b0b0;
  --neon-cyan: #00ffff;
  --neon-green: #00ff88;
  --cyan-glow: rgba(0, 255, 255, 0.8);
  --green-glow: rgba(0, 255, 136, 0.8);

  /* Typography */
  --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--absolute-black);
  color: var(--light-gray);
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.75rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1.5rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

h5 {
  font-size: 1.25rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

h6 {
  font-size: 1.1rem;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--cyan-glow);
}

a:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 4px;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

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

/* === HOLOGRAPHIC CIRCUIT VEINS === */
.circuit-veins {
  background-image: 
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* === GLOW EFFECTS === */
.glow {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.glow-green {
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--green-glow);
}

.glow:hover,
.glow-green:hover {
  text-shadow: 0 0 30px var(--cyan-glow);
}

/* === BUTTONS === */
.button, .btn {
  display: inline-block;
  background: var(--neon-cyan);
  color: var(--absolute-black);
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: var(--radius-md);
  margin: var(--spacing-md) var(--spacing-sm);
  border: 2px solid var(--neon-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.button:hover, .btn:hover {
  background: var(--absolute-black);
  color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--cyan-glow);
  transform: translateY(-2px);
}

.button:focus, .btn:focus {
  outline: 3px solid var(--neon-cyan);
  outline-offset: 4px;
}

.button-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.button-secondary:hover {
  background: var(--neon-cyan);
  color: var(--absolute-black);
}

.button-green {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.button-green:hover {
  background: var(--absolute-black);
  color: var(--neon-green);
  box-shadow: 0 0 30px var(--green-glow);
}

/* === CARDS === */
.card {
  background: var(--dark-gray);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
}

/* === HERO SECTION === */
.hero {
  background: var(--absolute-black);
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero img {
  max-width: 90%;
  height: auto;
  margin: var(--spacing-lg) 0;
}

.hero h1 {
  font-size: 4rem;
  margin: var(--spacing-md) 0;
}

.hero p {
  font-size: 1.5rem;
  opacity: 0.9;
}

.tagline {
  font-style: italic;
  color: var(--neon-green);
  font-size: 1.3rem;
  margin: var(--spacing-md) 0;
}

/* === NAVIGATION === */
nav {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* New: nav-inner layout for pages with logo */
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}

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

.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 0;
}

.nav-logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.nav-logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: none;
  white-space: nowrap;
}

/* Category line under the logo — locked message, shown on wider viewports. */
.nav-logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(0, 255, 200, 0.7);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav-logo-tagline {
    display: none;
  }
}

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

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0;
}

nav a {
  color: rgba(176, 176, 176, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.08);
  text-shadow: 0 0 10px var(--cyan-glow);
}

nav a:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 255, 255, 0.4);
  color: var(--neon-cyan);
  font-size: 1.3rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  margin: 0;
  width: fit-content;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--neon-cyan);
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.feature-item {
  background: var(--dark-gray);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-4px);
}

.feature-item h3 {
  margin-top: var(--spacing-sm);
}

/* === FOOTER === */
footer {
  background: #050505;
  border-top: 1px solid rgba(0, 255, 255, 0.15);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

footer a {
  color: var(--medium-gray);
}

footer a:hover {
  color: var(--neon-cyan);
}

/* === LISTS === */
ul, ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: var(--spacing-xs);
}

/* === BLOCKQUOTES === */
blockquote {
  border-left: 4px solid var(--neon-cyan);
  padding-left: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  font-style: italic;
  color: var(--light-gray);
}

/* === CODE === */
code {
  background: var(--dark-gray);
  color: var(--neon-green);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--dark-gray);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  overflow-x: auto;
  margin: var(--spacing-md) 0;
}

pre code {
  background: none;
  padding: 0;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-lg) 0;
  background: var(--dark-gray);
}

th, td {
  padding: var(--spacing-sm);
  text-align: left;
  border: 1px solid var(--neon-cyan);
}

th {
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-cyan);
  font-weight: var(--font-weight-bold);
}

tr:hover {
  background: rgba(0, 255, 255, 0.05);
}

/* === IMAGES === */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

figure {
  margin: var(--spacing-lg) 0;
  text-align: center;
}

figcaption {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-top: var(--spacing-xs);
  font-style: italic;
}

/* === HORIZONTAL RULE === */
hr {
  border: none;
  border-top: 2px solid var(--neon-cyan);
  margin: var(--spacing-xl) 0;
  opacity: 0.3;
}

/* === ASSESSMENT SPECIFIC STYLES === */
.assessment-header {
  text-align: center;
  padding: var(--spacing-xl) 0;
  border-bottom: 2px solid var(--neon-cyan);
  margin-bottom: var(--spacing-xl);
}

.assessment-section {
  margin-bottom: var(--spacing-xl);
}

.comparison-table {
  background: var(--dark-gray);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--spacing-lg) 0;
}

.cta-section {
  background: var(--dark-gray);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  text-align: center;
  margin: var(--spacing-xl) 0;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.cta-section h2 {
  margin-top: 0;
}

/* ===================================================
   REVAMP ADDITIONS — New Components & Animations
   =================================================== */

/* === KEYFRAME ANIMATIONS === */
@keyframes circuit-pulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.07; }
}

@keyframes scan-line {
  0% { top: -4px; }
  100% { top: 110%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 50px rgba(0, 255, 255, 0.7); }
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes border-glow {
  0%, 100% { border-color: rgba(0, 255, 255, 0.3); }
  50% { border-color: rgba(0, 255, 136, 0.6); }
}

/* === GRADIENT TEXT UTILITY === */
.gradient-text {
  background: linear-gradient(135deg, #00ffff 0%, #ffffff 50%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === GLASS MORPHISM UTILITY === */
.glass {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: var(--radius-xl);
}

/* === HERO SECTION (Full-Screen) === */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.hero-circuit-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: circuit-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.35), transparent);
  animation: scan-line 9s linear infinite;
  pointer-events: none;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(0, 30, 60, 0.85) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.35));
  border-radius: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.35);
  color: var(--neon-cyan);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
  animation-delay: 0.15s;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00ffff 0%, #ffffff 50%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
  animation-delay: 0.3s;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: rgba(176, 176, 176, 0.88);
  max-width: 700px;
  margin: 0 auto 48px auto;
  line-height: 1.65;
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
  animation-delay: 0.45s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
  animation-delay: 0.6s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

/* === TICKER / MARQUEE === */
.ticker-section {
  background: rgba(0, 15, 15, 0.98);
  border-top: 1px solid rgba(0, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 255, 255, 0.15);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(0, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticker-dot {
  color: rgba(0, 255, 136, 0.55);
  font-size: 0.6rem;
}

/* === STATS SECTION === */
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #000 0%, #000d1a 50%, #000 100%);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  border: 1px solid rgba(0, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(0, 10, 10, 0.6);
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: rgba(0, 255, 255, 0.25);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(176, 176, 176, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

/* === SECTION WRAPPER === */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--neon-green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-shadow: none;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-title span {
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(176, 176, 176, 0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FEATURE GRID (Revamp) === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(0, 255, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 255, 255, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: #fff;
  text-shadow: none;
  margin: 0 0 12px 0;
}

.feature-card p {
  font-size: 0.93rem;
  color: rgba(176, 176, 176, 0.68);
  line-height: 1.65;
  margin: 0;
}

/* === COMPLIANCE SECTION === */
.compliance-section {
  background: linear-gradient(135deg, rgba(0, 20, 10, 1) 0%, rgba(0, 10, 0, 1) 100%);
  border-top: 1px solid rgba(0, 255, 136, 0.25);
  border-bottom: 1px solid rgba(0, 255, 136, 0.25);
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0;
}

.compliance-badge-item {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: var(--neon-green);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.compliance-badge-item:hover {
  background: rgba(0, 255, 136, 0.18);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
}

/* === CASE STUDY CARDS === */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.case-card {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s ease;
}

.case-card:hover {
  border-color: rgba(0, 255, 255, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 255, 255, 0.08);
}

.case-card-tag {
  display: inline-block;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  color: var(--neon-cyan);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.case-card h3 {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: none;
  margin: 0 0 12px 0;
}

.case-card p {
  font-size: 0.93rem;
  color: rgba(176, 176, 176, 0.68);
  line-height: 1.65;
  margin: 0 0 24px 0;
}

.case-metric {
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.45);
  line-height: 1;
}

.case-metric-label {
  font-size: 0.8rem;
  color: rgba(176, 176, 176, 0.55);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* === DEPLOY GRID === */
.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.deploy-card {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 44px;
  transition: all 0.4s ease;
}

.deploy-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 255, 255, 0.08);
}

.deploy-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.deploy-card h3 {
  font-size: 1.4rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  margin: 0 0 12px 0;
}

/* === CTA SECTION (Full-width hero) === */
.cta-full-section {
  background: linear-gradient(135deg, #000d1a 0%, #000 50%, #000d0d 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 255, 255, 0.15);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-full-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: none;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.15;
  position: relative;
}

.cta-headline span {
  color: var(--neon-cyan);
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

/* === BENEFIT LIST (updated) === */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefit-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.94rem;
  color: rgba(176, 176, 176, 0.88);
  margin-bottom: 0;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: bold;
}

/* === SITE FOOTER (Revamp) === */
footer.site-footer {
  background: #040404;
  border-top: 1px solid rgba(0, 255, 255, 0.12);
  margin-top: 0;
  padding: 64px 40px 40px;
  text-align: left;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand h4 {
  font-size: 1rem;
  color: #fff;
  text-shadow: none;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(128, 128, 128, 0.75);
  line-height: 1.65;
  margin-bottom: 14px;
}

.footer-col h5 {
  font-size: 0.72rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 16px 0;
  text-shadow: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(128, 128, 128, 0.75);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(128, 128, 128, 0.5);
  margin: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .button, .btn {
    padding: 12px 28px;
    font-size: 1rem;
    margin: var(--spacing-sm) 0;
  }

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

  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: block;
  }

  nav {
    position: sticky;
    top: 0;
  }

  .nav-inner {
    padding: 14px 20px;
    flex-wrap: wrap;
    position: relative;
  }

  .nav-right {
    width: 100%;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 12px;
    right: 20px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0;
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 100;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
  }

  nav ul.mobile-menu-open {
    display: flex;
    animation: slideDown 0.25s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 14px 20px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  nav a:hover {
    background: rgba(0, 255, 255, 0.07);
  }

  .container, .container-narrow {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .section-wrapper {
    padding: 64px 20px;
  }

  .hero-section {
    padding: 60px 20px;
  }

  .hero-logo {
    width: 140px;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  footer.site-footer {
    padding: 48px 20px 32px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* === ACCESSIBILITY === */
@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;
  }

  .hero-badge,
  .hero-headline,
  .hero-subheadline,
  .hero-cta {
    opacity: 1 !important;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--neon-cyan);
  outline-offset: 3px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: var(--spacing-sm);
  background: var(--neon-cyan);
  color: var(--absolute-black);
  font-weight: var(--font-weight-bold);
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: var(--spacing-sm);
}

/* === FEATURED ARTICLE CARD === */
.featured-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-article-card {
  background: #0a0a0a;
  border: 2px solid #00ff88;
  border-radius: 12px;
  padding: 36px 40px;
  transition: all 0.3s ease;
}

.featured-article-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-article-badge {
  background: #00ff88;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-article-tags {
  color: #888;
  font-size: 0.9rem;
}

.featured-article-title {
  color: #00ff88;
  font-size: 1.6rem;
  margin: 0 0 16px;
  line-height: 1.3;
}

.featured-article-excerpt {
  color: #ccc;
  font-size: 1.05rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.featured-article-cta {
  color: #00ff88;
  font-weight: 600;
  font-size: 1rem;
}

/* === PRINT STYLES === */
@media print {
  body {
    background: white;
    color: black;
  }

  .button, .btn, nav, footer {
    display: none;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
