/*
Theme Name: Mazhar Shah Healthcare Portfolio
Theme URI: https://mazharhealth.com
Author: Syed Mazhar Shah
Author URI: https://mazharhealth.com
Description: Complete healthcare marketing portfolio theme built from AI Studio design. Features 3D interactive background, campaign simulator, blog with SEO scoring, admin CMS, HIPAA-compliant contact system.
Version: 2.1.0
License: GPL v2 or later
Text Domain: mazhar-shah
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --white: #ffffff;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --rose-500: #f43f5e;
  --amber-500: #f59e0b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ===== INTERACTIVE BACKGROUND CANVAS ===== */
#interactive-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  height: 64px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  z-index: 50;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.site-logo:hover { opacity: 0.9; }

.logo-box {
  width: 36px;
  height: 36px;
  background: var(--emerald-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.15);
  transition: transform 0.3s;
}

.site-logo:hover .logo-box { transform: rotate(6deg); }

.logo-text {
  text-align: left;
  line-height: 1.1;
}

.logo-text .logo-name {
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.3px;
  color: var(--slate-900);
  text-transform: uppercase;
}

.logo-text .logo-name span { color: var(--emerald-600); }

.logo-text .logo-sub {
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-500);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--emerald-600);
  border-bottom-color: var(--emerald-600);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--slate-950);
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--emerald-600) !important;
  color: var(--white) !important;
  transform: scale(0.98);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--slate-600);
  cursor: pointer;
}

.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; z-index: 60; }

.mobile-menu a {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-600);
  padding: 8px 0;
}

.mobile-menu a.active { color: var(--emerald-600); }

.mobile-menu .mobile-cta {
  width: 100%;
  padding: 14px;
  background: var(--slate-950);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  text-align: center;
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero-section {
  padding: 16px 24px;
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--slate-950);
  color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.05s ease-out, box-shadow 0.1s ease-out;
}

.hero-card:hover {
  box-shadow: -2px -2px 25px rgba(16, 185, 129, 0.15), 0 20px 25px -5px rgba(0,0,0,0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
  transition: all 0.7s;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--slate-950), rgba(15,23,42,0.85), rgba(15,23,42,0.2));
}

.hero-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: var(--emerald-500);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 64px;
  min-height: 500px;
}

.hero-left { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 0.875rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-emerald {
  background: var(--emerald-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.btn-emerald:hover {
  background: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--slate-700);
  color: var(--slate-300);
}

.btn-outline:hover {
  border-color: var(--slate-500);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--emerald-600);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(51,65,85,0.8);
}

.hero-metric .hm-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-400);
}

.hero-metric .hm-label {
  font-size: 0.625rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  display: block;
  margin-top: 2px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  position: relative;
}

.hero-status-badge {
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(51,65,85,0.8);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.hero-status-badge:hover { transform: scale(1.02); }

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-500);
  position: relative;
  flex-shrink: 0;
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: ping 2s infinite;
  opacity: 0.75;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(2); opacity: 0; }
}

.status-text small {
  display: block;
  font-size: 0.5625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-text strong {
  display: block;
  font-size: 0.6875rem;
  color: var(--white);
  margin-top: 2px;
}

/* ===== CAMPAIGN SIMULATOR ===== */
.simulator-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.simulator {
  background: var(--slate-900);
  color: var(--slate-100);
  border-radius: 24px;
  padding: 32px 40px;
  border: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.simulator-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: var(--emerald-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

.simulator-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: var(--teal-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
}

.simulator-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: start;
}

.sim-controls { display: flex; flex-direction: column; gap: 24px; }

.sim-header .sim-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sim-header .sim-badge svg { width: 14px; height: 14px; }

.sim-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  letter-spacing: -0.3px;
}

.sim-header p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 8px;
  line-height: 1.6;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  color: var(--emerald-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  color: var(--slate-100);
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.form-group textarea { resize: vertical; min-height: 100px; }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: var(--slate-700);
  border-radius: 8px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-500);
  cursor: pointer;
  border: 3px solid var(--slate-900);
  box-shadow: 0 0 0 2px var(--emerald-500);
}

.sim-compliance {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(51,65,85,0.5);
  border-radius: 12px;
  margin-top: 8px;
}

.sim-compliance .sc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.sim-compliance p { font-size: 0.75rem; color: var(--slate-500); line-height: 1.5; }
.sim-compliance strong { color: var(--slate-200); }

.sim-results {
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(51,65,85,0.5);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.sim-loading {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 20;
}

.sim-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--slate-700);
  border-top-color: var(--emerald-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.sim-loading span {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sim-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-800);
  margin-bottom: 24px;
}

.sim-results-header h4 {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  color: var(--emerald-400);
  text-transform: uppercase;
}

.sim-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sim-metric {
  background: var(--slate-900);
  border: 1px solid rgba(51,65,85,0.4);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.sim-metric .sm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.sim-metric .sm-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--white);
}

.sim-metric .sm-label {
  font-size: 0.625rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.sim-channels { margin-bottom: 24px; }

.sim-channels h5 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-300);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.channel-bar-track {
  height: 12px;
  background: var(--slate-950);
  border-radius: 50px;
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
}

.channel-segment { height: 100%; transition: width 0.5s ease; }

.channel-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.channel-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--slate-400);
}

.channel-legend-item .cl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.channel-legend-item strong { color: var(--white); }

.sim-roadmap {
  background: var(--slate-900);
  border: 1px solid rgba(51,65,85,0.5);
  border-radius: 12px;
  padding: 16px;
}

.sim-roadmap-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sim-roadmap-header svg { color: var(--emerald-400); width: 16px; height: 16px; }

.sim-roadmap-header h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-200);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

.sim-roadmap ol {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-roadmap ol li {
  counter-increment: step-counter;
  display: flex;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--slate-300);
  line-height: 1.5;
}

.sim-roadmap ol li::before {
  content: counter(step-counter);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  color: var(--emerald-400);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.25);
}

/* ===== SECTION COMMON ===== */
.section { padding: 48px 0; position: relative; z-index: 1; }

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

.section-header.left { text-align: left; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--emerald-100);
  color: var(--emerald-800);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-tag.green-badge { background: rgba(16,185,129,0.1); color: var(--emerald-400); }
.section-tag.teal-badge { background: rgba(45,212,191,0.1); color: var(--teal-400); }

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  max-width: 600px;
  margin: 8px auto 0;
  line-height: 1.7;
}

.section-desc.mx0 { margin: 8px 0 0; }

/* ===== METRICS GRID ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  transform-style: preserve-3d;
}

.metric-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.metric-card .mc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--slate-100);
}

.metric-card .mc-header .mc-change {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-card .mc-header .mc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-500);
}

.metric-card .mc-value {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-600);
}

.metric-card .mc-label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
  margin-top: 4px;
}

.metric-card .mc-desc {
  font-size: 0.6875rem;
  color: var(--slate-500);
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(241,245,249,0.6);
}

/* ===== STRATEGY SECTION ===== */
.strategy-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: center;
}

.strategy-left { display: flex; flex-direction: column; gap: 24px; }

.strategy-left p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.8;
}

.strategy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.strategy-feature svg {
  width: 20px;
  height: 20px;
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.strategy-feature h5 {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
}

.strategy-feature p {
  font-size: 0.6875rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.strategy-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.strategy-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-card .sc-icon {
  width: 40px;
  height: 40px;
  background: var(--emerald-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
}

.strategy-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
}

.strategy-card p {
  font-size: 0.6875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ===== CASE STUDIES SNAPSHOTS ===== */
.case-snapshots {
  background: var(--slate-900);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.case-snapshots .section-title { color: var(--white); }
.case-snapshots .section-desc { color: var(--slate-400); }

.case-snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-800);
  margin-bottom: 32px;
}

.case-snapshot-header a {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.case-snapshot-header a:hover { color: var(--emerald-300); }

.case-snapshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-snap-card {
  background: rgba(2,6,23,0.8);
  border: 1px solid var(--slate-800);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}

.case-snap-card:hover { border-color: var(--slate-700); }

.case-snap-card .csc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.case-snap-card .csc-meta span:last-child { color: var(--emerald-400); font-weight: 700; }

.case-snap-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  margin-bottom: 8px;
}

.case-snap-card p {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-snap-card .csc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--slate-800);
}

.case-snap-card .csc-result .csc-r-label {
  font-size: 0.5625rem;
  color: var(--slate-500);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  display: block;
}

.case-snap-card .csc-result .csc-r-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald-400);
  font-family: 'JetBrains Mono', monospace;
}

.case-snap-card .csc-result .csc-r-value span {
  font-size: 0.625rem;
  color: var(--slate-300);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.case-snap-card .csc-arrow {
  width: 32px;
  height: 32px;
  background: var(--slate-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-300);
  transition: all 0.3s;
}

.case-snap-card .csc-arrow:hover { background: var(--emerald-600); color: var(--white); }

/* ===== TIMELINE / ABOUT SECTION ===== */
.timeline-section {
  max-width: 768px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

.about-text { margin: 32px 0; }

.about-text p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--emerald-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item .ti-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.timeline-item .ti-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  font-family: 'Space Grotesk', sans-serif;
}

.timeline-item .ti-header .ti-org {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-600);
  display: block;
}

.timeline-item .ti-period {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  background: var(--slate-50);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.timeline-item ul {
  list-style: disc;
  padding-left: 16px;
  margin: 8px 0;
}

.timeline-item ul li {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 4px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.timeline-tags span {
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  background: var(--slate-100);
  color: var(--slate-600);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  position: relative;
  z-index: 1;
}

.accred-card {
  background: var(--slate-900);
  color: var(--white);
  border-radius: 24px;
  padding: 40px 48px;
  border: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
}

.accred-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: var(--teal-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  transform: translate(80px, -80px);
}

.accred-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
  align-items: center;
}

.accred-left { display: flex; flex-direction: column; gap: 16px; }

.accred-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-400);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accred-badge svg { width: 24px; height: 24px; }

.accred-left h4 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.3;
}

.accred-left p {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 500px;
}

.accred-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accred-badge-box {
  padding: 16px;
  background: rgba(2,6,23,0.9);
  border: 1px solid rgba(51,65,85,0.5);
  border-radius: 12px;
  text-align: center;
}

.accred-badge-box .abb-label {
  font-size: 0.5625rem;
  color: var(--slate-500);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  display: block;
}

.accred-badge-box .abb-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-top: 2px;
}

.accred-badge-box .abb-status {
  font-size: 0.5625rem;
  color: var(--emerald-400);
  font-family: 'JetBrains Mono', monospace;
  display: block;
  margin-top: 2px;
}

/* ===== SERVICES PAGE ===== */
.services-page { padding: 48px 0; position: relative; z-index: 1; }

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 32px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover { background: var(--slate-50); color: var(--slate-900); }

.filter-btn.active {
  background: var(--emerald-600);
  color: var(--white);
  border-color: var(--emerald-600);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  transform-style: preserve-3d;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-card .sc-icon {
  width: 48px;
  height: 48px;
  background: var(--emerald-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  margin-bottom: 16px;
}

.service-card .sc-icon svg { width: 24px; height: 24px; }

.service-card .sc-category {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-600);
  background: var(--emerald-50);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .sc-focus {
  background: var(--slate-50);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.service-card .sc-focus .scf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-700);
  margin-bottom: 4px;
}

.service-card .sc-focus .scf-label svg { width: 14px; height: 14px; color: var(--amber-500); }

.service-card .sc-focus p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0;
}

.service-card .sc-deliverables h4 {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card .sc-deliverables ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card .sc-deliverables ul li {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--slate-600);
  align-items: flex-start;
}

.service-card .sc-deliverables ul li svg {
  width: 14px;
  height: 14px;
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card .sc-compliance {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
}

.service-card .sc-compliance .sc-secure {
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card .sc-compliance .sc-secure .sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  max-width: 768px;
  margin: 32px auto;
  background: var(--slate-900);
  color: var(--white);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: var(--emerald-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  transform: translate(60px, 60px);
  pointer-events: none;
}

.cta-banner > div:first-child {
  position: relative;
  z-index: 10;
  max-width: 400px;
}

.cta-banner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-banner p {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-top: 4px;
}

.cta-banner .btn {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

/* ===== CASE STUDIES PAGE ===== */
.case-studies-page { padding: 48px 0; position: relative; z-index: 1; }

.case-studies-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 32px;
  align-items: start;
}

.case-list { display: flex; flex-direction: column; gap: 12px; }

.case-list-item {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.case-list-item:hover { border-color: var(--slate-300); background: var(--slate-50); }

.case-list-item.active {
  background: var(--emerald-600);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16,185,129,0.1);
  transform: scale(1.01);
}

.case-list-item.active .cli-duration {
  background: var(--emerald-500);
  color: var(--white);
}

.case-list-item .cli-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.case-list-item .cli-duration {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--slate-100);
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-list-item .cli-arrow {
  transition: transform 0.3s;
  width: 16px;
  height: 16px;
  color: var(--slate-400);
}

.case-list-item.active .cli-arrow {
  transform: translateX(4px);
  color: var(--white);
}

.case-list-item h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 4px;
}

.case-list-item.active h4 { color: var(--white); }

.case-list-item p {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--slate-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-list-item.active p { color: rgba(255,255,255,0.7); }

.case-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.case-list-tags span {
  font-size: 0.5625rem;
  font-family: 'JetBrains Mono', monospace;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--slate-50);
  color: var(--slate-500);
  border: 1px solid rgba(226,232,240,0.5);
}

.case-list-item.active .case-list-tags span {
  background: rgba(4,120,87,0.5);
  color: rgba(255,255,255,0.7);
  border-color: transparent;
}

.case-detail {
  background: var(--white);
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s;
  transform-style: preserve-3d;
}

.case-detail:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.case-detail-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case-detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-banner .cdb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8), rgba(15,23,42,0.4));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.case-detail-banner .cdb-specialty {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.case-detail-banner .cdb-title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
}

.case-detail-banner .cdb-client {
  font-size: 0.75rem;
  color: var(--slate-300);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 4px;
}

.case-detail-content { padding: 24px; }

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.case-result-card {
  background: rgba(236,253,245,0.5);
  border: 1px solid var(--emerald-100);
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.case-result-card .crc-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-700);
  font-family: 'JetBrains Mono', monospace;
  display: block;
}

.case-result-card .crc-label {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 4px;
}

.case-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.case-detail-col .cdc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.case-detail-col .cdc-header .cdc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.case-detail-col .cdc-header h5 {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-detail-col p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.case-synthesis {
  background: var(--slate-50);
  border: 1px solid rgba(226,232,240,0.5);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.case-synthesis .cs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.case-synthesis .cs-header svg { color: var(--emerald-600); width: 16px; height: 16px; }

.case-synthesis .cs-header h5 {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-800);
}

.case-synthesis p {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.case-synthesis .cs-metric {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(226,232,240,0.6);
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
}

.case-synthesis .cs-metric strong {
  color: var(--slate-700);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tags span {
  font-size: 0.75rem;
  background: var(--slate-100);
  color: var(--slate-600);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 4px;
}

.case-tags span svg { width: 12px; height: 12px; color: var(--slate-400); }

/* ===== BLOG ===== */
.blog-page { padding: 48px 0; position: relative; z-index: 1; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--slate-100);
  overflow: hidden;
}

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

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

.blog-card-image .bci-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--slate-400);
}

.blog-card-image .bci-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.5625rem;
  font-weight: 700;
  background: rgba(2,6,23,0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-content .bcc-meta {
  font-size: 0.5625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.blog-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content p {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content .bcc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-600);
  text-transform: uppercase;
}

.blog-card-content .bcc-footer svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.blog-card:hover .bcc-footer svg { transform: translateX(4px); }

/* Blog Detail */
.blog-detail {
  max-width: 768px;
  margin: 0 auto;
}

.blog-detail .bd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.blog-detail .bd-back:hover { color: var(--emerald-700); }

.blog-detail-article {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.blog-detail-article .bd-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.blog-detail-article .bd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.blog-detail-article .bd-tags span {
  font-size: 0.625rem;
  font-weight: 600;
  background: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid var(--emerald-100);
  padding: 4px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'JetBrains Mono', monospace;
}

.blog-detail-article h1 {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-detail-article .bd-meta {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
  margin-bottom: 24px;
}

.blog-detail-article .bd-meta strong { color: var(--slate-700); }

.blog-detail-article .bd-summary {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  padding: 16px;
  font-size: 0.8125rem;
  color: var(--slate-600);
  font-style: italic;
  margin-bottom: 24px;
}

.blog-detail-article .bd-summary .bd-summary-label {
  font-size: 0.5625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-800);
  display: block;
  margin-bottom: 4px;
  font-style: normal;
}

.blog-detail-article .bd-content {
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.8;
  white-space: pre-wrap;
  border-top: 1px solid var(--slate-100);
  padding-top: 24px;
}

.blog-detail-article .bd-keyword {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
  text-transform: uppercase;
}

.blog-detail-article .bd-keyword strong {
  background: var(--slate-100);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--slate-700);
}

.empty-state {
  text-align: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  color: var(--slate-400);
}

.empty-state p { font-size: 0.875rem; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 48px 0; position: relative; z-index: 1; }

.contact-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--slate-900);
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.3s;
}

.contact-info-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-info-card .cic-glow {
  position: absolute;
  inset: 0;
  background: var(--emerald-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  transform: translate(-80px, -80px);
  pointer-events: none;
}

.contact-info-card .cic-inner { position: relative; z-index: 10; }

.contact-info-card .cic-header h4 {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info-card .cic-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-info-card .cic-header p {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 2px;
}

.contact-info-card .cic-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.contact-info-card .cic-links a,
.contact-info-card .cic-links .cic-static {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(51,65,85,0.5);
  border: 1px solid var(--slate-800);
  border-radius: 12px;
  color: var(--slate-200);
  font-size: 0.875rem;
  transition: all 0.3s;
}

.contact-info-card .cic-links a:hover {
  background: var(--slate-800);
  border-color: var(--slate-700);
}

.contact-info-card .cic-links svg {
  width: 16px;
  height: 16px;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.contact-info-card .cic-links .cic-static {
  color: var(--slate-400);
  cursor: default;
}

.contact-info-card .cic-footer {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--slate-800);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
}

.contact-info-card .cic-footer svg { width: 14px; height: 14px; color: var(--emerald-500); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  padding: 32px;
}

.contact-form-wrap h3 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.contact-form-wrap h3 svg { color: var(--emerald-600); width: 20px; height: 20px; }

.contact-form-wrap > p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 24px;
}

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

.form-budget-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-budget-display span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-600);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--emerald-600);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--emerald-700);
  transform: scale(0.98);
}

.form-submit svg { width: 16px; height: 16px; }

.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success .fs-icon {
  width: 64px;
  height: 64px;
  background: var(--emerald-100);
  color: var(--emerald-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success .fs-icon svg { width: 32px; height: 32px; }

.form-success .fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--emerald-100);
  color: var(--emerald-800);
  font-size: 0.625rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 50px;
  margin-bottom: 12px;
}

.form-success .fs-code {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  font-family: 'JetBrains Mono', monospace;
}

.form-success .fs-code small {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
}

.form-success .fs-code strong {
  font-size: 1.125rem;
  color: var(--slate-900);
  display: block;
  margin-top: 4px;
  letter-spacing: 1px;
}

.form-success .fs-email {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.form-reset {
  padding: 10px 20px;
  background: var(--slate-900);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 16px;
}

.form-reset:hover { background: var(--slate-800); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate-950);
  color: var(--white);
  border-top: 1px solid var(--slate-900);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: var(--emerald-500);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  transform: translate(160px, -160px);
}

.footer-inner {
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--slate-900);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .fl-box {
  width: 32px;
  height: 32px;
  background: var(--emerald-600);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
}

.footer-logo .fl-text {
  line-height: 1.1;
}

.footer-logo .fl-text strong {
  font-size: 0.875rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
}

.footer-logo .fl-text strong span { color: var(--emerald-500); }

.footer-logo .fl-text small {
  font-size: 0.5625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 350px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-col h5 {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--emerald-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 0.75rem;
  color: var(--slate-400);
  transition: color 0.3s;
}

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

.footer-cta h5 {
  font-size: 0.625rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-cta .fc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-cta .fc-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--slate-300);
  font-family: 'JetBrains Mono', monospace;
}

.footer-cta .fc-links a:hover { color: var(--emerald-400); }

.footer-cta .fc-links svg { width: 14px; height: 14px; color: var(--emerald-400); }

.footer-cta .fc-btn {
  width: 100%;
  padding: 10px;
  background: var(--emerald-600);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-cta .fc-btn:hover { background: var(--emerald-700); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--slate-500);
}

.footer-bottom .fb-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom .fb-right .fb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
}

.footer-bottom .cms-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: 4px;
  color: var(--slate-400);
  font-size: 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-bottom .cms-btn:hover { color: var(--teal-400); }

.footer-bottom .cms-btn svg { width: 12px; height: 12px; }

/* ===== ADMIN MODAL ===== */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2,6,23,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.admin-modal {
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.admin-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(to right, var(--teal-500), var(--emerald-500), var(--teal-500));
  opacity: 0.6;
}

.am-header {
  text-align: center;
  margin-bottom: 32px;
}

.am-header .am-icon {
  display: inline-flex;
  padding: 12px;
  background: rgba(45,212,191,0.1);
  color: var(--teal-400);
  border-radius: 12px;
  margin-bottom: 12px;
}

.am-header .am-icon svg { width: 24px; height: 24px; }

.am-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.am-header p {
  font-size: 0.8125rem;
  color: var(--slate-400);
  margin-top: 4px;
}

.am-form .am-field {
  margin-bottom: 16px;
}

.am-form .am-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-300);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
}

.am-form .am-field input {
  width: 100%;
  padding: 10px 14px;
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.875rem;
  transition: all 0.3s;
}

.am-form .am-field input:focus {
  outline: none;
  border-color: var(--teal-500);
}

.am-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: rgba(244,63,94,0.1);
  border: 1px solid rgba(244,63,94,0.3);
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(254,202,202,0.9);
  margin-bottom: 16px;
}

.am-error svg { width: 16px; height: 16px; color: rgba(244,63,94,0.6); flex-shrink: 0; margin-top: 1px; }

.am-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, var(--teal-500), var(--emerald-500));
  color: var(--slate-950);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 16px;
}

.am-submit:hover { filter: brightness(1.1); transform: scale(0.98); }

.am-debug {
  margin-top: 24px;
  padding: 12px;
  background: rgba(2,6,23,0.6);
  border: 1px solid rgba(51,65,85,0.4);
  border-radius: 8px;
  text-align: center;
}

.am-debug span {
  font-size: 0.75rem;
  color: var(--slate-500);
  display: block;
  font-family: 'JetBrains Mono', monospace;
}

.am-debug code {
  font-size: 0.75rem;
  color: var(--teal-400);
  font-family: 'JetBrains Mono', monospace;
}

.am-return {
  display: block;
  margin: 16px auto 0;
  font-size: 0.75rem;
  color: var(--slate-400);
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.am-return:hover { color: var(--white); }

/* ===== WEBSITE AUDIT TOOL ===== */
.audit-page { padding: 0 0 80px; }
.audit-input-wrap,
.audit-loading-wrap { max-width: 560px; margin: 0 auto 48px; }
.audit-input-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 24px;
}
.audit-input-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px; color: var(--slate-500); text-transform: uppercase;
  margin-bottom: 14px;
}
.audit-input-header svg { color: var(--emerald-500); }
.audit-input-body { display: flex; gap: 10px; }
.audit-input-body input {
  flex: 1; padding: 13px 16px; border-radius: 10px;
  border: 2px solid var(--slate-200); background: var(--slate-50);
  font-size: 0.9375rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.audit-input-body input:focus { border-color: var(--emerald-400); background: var(--white); }
.audit-input-body .btn {
  padding: 13px 24px; font-size: 0.8125rem;
  border-radius: 10px; white-space: nowrap;
}
.audit-input-footer {
  font-size: 0.6875rem; color: var(--slate-400); margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.audit-loading-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 36px 24px; text-align: center;
}
.audit-loading-icon {
  position: relative; width: 52px; height: 52px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-500);
}
.ali-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 3px solid var(--emerald-100);
  border-top-color: var(--emerald-500);
  animation: aliSpin 0.8s linear infinite;
}
@keyframes aliSpin { to { transform: rotate(360deg); } }
.audit-loading-card p {
  font-size: 0.9375rem; font-weight: 600; color: var(--slate-700); margin-bottom: 16px;
}
.audit-track { height: 7px; background: var(--slate-100); border-radius: 100px; overflow: hidden; }
.audit-track-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--emerald-400), var(--emerald-500));
  border-radius: 100px; transition: width 0.35s ease;
}
.audit-pct {
  display: block; margin-top: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  font-weight: 700; color: var(--emerald-600);
}
.audit-results { margin-top: 40px; }

.audit-report {
  display: flex; align-items: center; gap: 36px;
  margin-bottom: 40px; flex-wrap: wrap; justify-content: center;
}
.audit-report-score { text-align: center; }
.ars-ring {
  position: relative; width: 130px; height: 130px; margin: 0 auto;
}
.ars-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ars-bg { fill: none; stroke: var(--slate-100); stroke-width: 8; }
.ars-fill {
  fill: none; stroke: var(--emerald-500); stroke-width: 8;
  stroke-linecap: round; transition: stroke-dashoffset 1.5s ease;
}
.ars-value {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ars-value span {
  font-size: 2.25rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  line-height: 1; color: var(--slate-900);
}
.ars-value small { font-size: 0.75rem; color: var(--slate-400); font-weight: 500; }
.ars-grade {
  margin-top: 10px; font-size: 1rem; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; transition: color 0.3s;
}
.ars-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px; padding: 4px 12px; border-radius: 100px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  font-size: 0.6875rem; font-weight: 600; color: var(--emerald-600);
}
.arsb-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-500);
  flex-shrink: 0;
}
.audit-report-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  background: var(--slate-100); font-size: 0.625rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 1px;
  color: var(--slate-500); text-transform: uppercase; margin-bottom: 10px;
}
.audit-report-info h3 {
  font-size: 1rem; font-weight: 600; color: var(--slate-500); margin-bottom: 4px;
}
.audit-report-url {
  display: block; font-size: 1rem; font-family: 'JetBrains Mono', monospace;
  color: var(--slate-900); font-weight: 600; word-break: break-all; margin-bottom: 6px;
}
.audit-report-source { font-size: 0.6875rem; color: var(--slate-400); }

.audit-cats { display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin: 0 auto 32px; }
.audit-cat {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 20px;
}
.ac-head { display: flex; align-items: center; gap: 12px; }
.ac-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ac-ico--seo { background: #ecfdf5; color: #059669; }
.ac-ico--perf { background: #fffbeb; color: #d97706; }
.ac-ico--hipaa { background: #eef2ff; color: #4f46e5; }
.ac-ico--mobile { background: #f0f9ff; color: #0284c7; }
.ac-ico--sec { background: #fef2f2; color: #dc2626; }
.ac-info { flex: 1; }
.ac-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--slate-900); }
.ac-info small { display: block; font-size: 0.625rem; color: var(--slate-400); margin-top: 2px; }
.ac-num { text-align: right; flex-shrink: 0; }
.ac-val {
  font-size: 1.25rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  color: var(--slate-900); line-height: 1;
}
.ac-den { font-size: 0.625rem; color: var(--slate-400); }
.ac-bar { margin-top: 12px; height: 6px; background: var(--slate-100); border-radius: 100px; overflow: hidden; }
.ac-bar-fill { height: 100%; width: 0%; border-radius: 100px; transition: width 1s ease; }
.audit-cat[data-category="seo"] .ac-bar-fill { background: linear-gradient(90deg, #10b981, #34d399); }
.audit-cat[data-category="performance"] .ac-bar-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.audit-cat[data-category="hipaa"] .ac-bar-fill { background: linear-gradient(90deg, #6366f1, #818cf8); }
.audit-cat[data-category="mobile"] .ac-bar-fill { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.audit-cat[data-category="security"] .ac-bar-fill { background: linear-gradient(90deg, #ef4444, #f87171); }
.ac-items {
  margin-top: 14px; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 5px;
}
.ac-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  font-size: 0.6875rem; color: var(--slate-600); background: var(--slate-50);
}
.ac-item.pass { background: var(--emerald-50); }
.ac-item.fail { background: #fef2f2; }
.ac-item-icon { display: flex; align-items: center; flex-shrink: 0; }
.ac-item.pass .ac-item-icon { color: var(--emerald-500); }
.ac-item.fail .ac-item-icon { color: #ef4444; }

.audit-recs {
  max-width: 680px; margin: 0 auto 32px;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 24px;
}
.audit-recs-hd {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px;
}
.audit-recs-hd svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 2px; }
.audit-recs-hd h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 2px; }
.audit-recs-hd p { font-size: 0.6875rem; color: var(--slate-400); margin: 0; }
.audit-recs-body { display: flex; flex-direction: column; gap: 8px; }
.audit-rec {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 0.75rem; line-height: 1.5; color: var(--slate-700);
}
.audit-rec--critical { background: #fef2f2; border: 1px solid #fecaca; }
.audit-rec--high { background: #fff7ed; border: 1px solid #fed7aa; }
.audit-rec--medium { background: #fffbeb; border: 1px solid #fde68a; }
.audit-rec--low { background: var(--emerald-50); border: 1px solid var(--emerald-100); }
.audit-rec-prio {
  font-size: 0.5625rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  padding: 3px 8px; border-radius: 100px; flex-shrink: 0; margin-top: 2px;
}
.audit-rec--critical .audit-rec-prio { background: #fecaca; color: #dc2626; }
.audit-rec--high .audit-rec-prio { background: #fed7aa; color: #c2410c; }
.audit-rec--medium .audit-rec-prio { background: #fde68a; color: #b45309; }
.audit-rec--low .audit-rec-prio { background: var(--emerald-100); color: var(--emerald-700); }

.audit-cta {
  max-width: 600px; margin: 0 auto;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px; text-align: center;
}
.audit-cta-inner { padding: 36px 32px; }
.audit-cta-inner h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.audit-cta-inner p {
  font-size: 0.8125rem; color: var(--slate-300); max-width: 440px;
  margin: 0 auto 20px; line-height: 1.6;
}
.audit-cta-inner .btn { font-size: 0.875rem; padding: 14px 28px; border-radius: 12px; }

@media (max-width: 768px) {
  .audit-input-body { flex-direction: column; }
  .audit-input-body .btn { width: 100%; justify-content: center; }
  .audit-report { flex-direction: column; gap: 20px; text-align: center; }
  .ac-head { flex-wrap: wrap; }
  .ac-items { grid-template-columns: 1fr; }
  .audit-cta-inner { padding: 28px 20px; }
  .audit-cta-inner h3 { font-size: 1.0625rem; }
}

/* ===== AUDIT HOME CTA ===== */
.audit-cta-section { padding: 0 0 64px; }
.audit-home-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.ahc-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.12), transparent 60%);
  pointer-events: none;
}
.ahc-content {
  position: relative;
  padding: 56px 48px;
  text-align: center;
}
.ahc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--emerald-400);
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ahc-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.ahc-content p {
  font-size: 1rem;
  color: var(--slate-300);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.ahc-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
}
.ahc-stat { text-align: center; }
.ahc-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--emerald-400);
}
.ahc-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 4px;
}
.ahc-content .btn { font-size: 1rem; padding: 16px 36px; border-radius: 14px; }
@media (max-width: 768px) {
  .ahc-content { padding: 36px 24px; }
  .ahc-content h3 { font-size: 1.5rem; }
  .ahc-stats { gap: 24px; }
}

/* ===== HERO GHOST BUTTON ===== */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--slate-300);
  background: transparent;
  border: 1px solid var(--slate-700);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--slate-500);
  background: rgba(255,255,255,0.04);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px; }
  .hero-right { display: none; }
  .simulator-inner { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .case-snapshots-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .accred-inner { grid-template-columns: 1fr; }
  .case-detail-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
  .hero-title { font-size: 2rem; }
  .hero-inner { padding: 32px 24px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-snapshots-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .sim-metrics-grid { grid-template-columns: 1fr; }
  .channel-legend { grid-template-columns: 1fr; }
  .strategy-right-grid { grid-template-columns: 1fr; }
  .case-results-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .simulator { padding: 24px 20px; }
  .sim-metric { padding: 12px; }
  .section { padding: 32px 0; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .case-snapshot-header { flex-direction: column; gap: 8px; }
  .contact-form-wrap { padding: 24px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 24px; }
  .timeline-section { padding: 32px 16px; }
  .accred-card { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .sim-metrics-grid { grid-template-columns: 1fr; }
  .case-detail-banner { height: 160px; }
  .blog-detail-article { padding: 24px; }
  .blog-detail-article h1 { font-size: 1.25rem; }
}

/* ===== PROMINENT STATS ===== */
.prominent-stats .hero-metric {
  padding: 16px 20px;
}
.prominent-stats .hm-value {
  font-size: 2rem;
}
.prominent-stats .hm-label {
  font-size: 0.75rem;
}

/* ===== TOOLTIP ===== */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-600);
  font-size: 11px;
  font-weight: 700;
  cursor: help;
  position: relative;
  margin-left: 6px;
  transition: background 0.2s;
}
.tooltip-icon:hover {
  background: var(--emerald-200);
}
.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  width: 260px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: bottom center;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.tooltip-icon:hover::after {
  opacity: 1;
  pointer-events: auto;
}
.tooltip-icon::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--slate-900);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 101;
}
.tooltip-icon:hover::before {
  opacity: 1;
}

/* ===== CHATBOT ===== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  position: relative;
}
.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(16,185,129,0.45);
}
.chatbot-toggle svg {
  width: 24px;
  height: 24px;
}
.chatbot-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
.chatbot-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
}
.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.chatbot-header-info div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.chatbot-header-info strong {
  font-size: 0.875rem;
  font-weight: 700;
}
.chatbot-status {
  font-size: 0.7rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chatbot-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
}
.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
  display: flex;
}
.chatbot-close:hover { opacity: 1; }
.chatbot-messages {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--slate-50);
  max-height: 320px;
}
.chatbot-message {
  display: flex;
  max-width: 85%;
}
.chatbot-message.bot {
  align-self: flex-start;
}
.chatbot-message.user {
  align-self: flex-end;
}
.cm-content {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--slate-800);
}
.chatbot-message.bot .cm-content {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-bottom-left-radius: 4px;
}
.chatbot-message.user .cm-content {
  background: var(--emerald-500);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chatbot-message.bot .cm-content a {
  color: var(--emerald-600);
  text-decoration: underline;
  font-weight: 600;
}
.chatbot-message.bot .cm-content strong {
  color: var(--slate-900);
}
.chatbot-input-wrap {
  padding: 12px 16px;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chatbot-suggestions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cs-btn {
  font-size: 0.6875rem;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  color: var(--emerald-700);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.cs-btn:hover {
  background: var(--emerald-100);
  border-color: var(--emerald-200);
}
.chatbot-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.chatbot-input-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 100px;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  font-size: 0.8125rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input-row input:focus {
  border-color: var(--emerald-400);
  background: var(--white);
}
.chatbot-input-row button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--emerald-500);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.chatbot-input-row button:hover {
  background: var(--emerald-600);
  transform: scale(1.05);
}
@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 64px;
  }
  .chatbot-widget {
    bottom: 16px;
    right: 16px;
  }
}
