/* ============================================================
   Geek9 – Main Stylesheet
   ============================================================ */

/* --- Variables & Theming ----------------------------------- */
:root {
  --navbar-h: 64px;
  --radius:   10px;
  --transition: 0.2s ease;
  --max-w:    1200px;

  /* Dark theme (default) */
  --bg:           #080e1c;
  --bg-surface:   #0f1829;
  --bg-elevated:  #162035;
  --border:       rgba(255,255,255,0.07);
  --accent:       #00b4d8;
  --accent-dim:   rgba(0,180,216,0.12);
  --accent-glow:  rgba(0,180,216,0.3);
  --text:         #e8edf5;
  --text-muted:   #7a8ba5;
  --navbar-bg:    #050c1a;
  --card-bg:      #0f1829;
  --card-hover:   #162035;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --input-bg:     #0d1625;
}

[data-theme="light"] {
  --bg:           #f0f5ff;
  --bg-surface:   #ffffff;
  --bg-elevated:  #e8eef8;
  --border:       rgba(0,0,0,0.08);
  --accent:       #0077b6;
  --accent-dim:   rgba(0,119,182,0.1);
  --accent-glow:  rgba(0,119,182,0.25);
  --text:         #0f172a;
  --text-muted:   #5a6a82;
  --navbar-bg:    #0f172a;
  --card-bg:      #ffffff;
  --card-hover:   #f0f5ff;
  --shadow:       0 4px 24px rgba(0,0,0,0.1);
  --input-bg:     #f8fbff;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Skip link --------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.1s;
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 0;
}

/* --- Focus-visible ----------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Suppress focus ring for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Navbar meta (contact + socials, same line as nav) ----- */
.navbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar-meta-text {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition);
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 10px;
}

.navbar-meta-text:hover { color: var(--accent); text-decoration: none; }

.navbar-meta-socials {
  display: flex;
  align-items: center;
  gap: 2px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 10px;
}

.meta-social-link {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.meta-social-link svg { width: 13px; height: 13px; }
.meta-social-link:hover { color: var(--accent); background: var(--accent-dim); text-decoration: none; }

/* Dropdown nav item */
.nav-item--dropdown {
  position: relative;
}

.nav-link--has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-chevron {
  width: 10px; height: 6px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item--dropdown:hover .dropdown-chevron,
.nav-item--dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0d1828;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.07); text-decoration: none; }
.nav-dropdown-item.active { color: var(--accent); background: var(--accent-dim); }

/* Mobile sub-links (Security, MNOC under Solutions) */
.nav-link--sub {
  padding-left: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.nav-link--sub:hover { color: rgba(255,255,255,0.85); }

/* Mobile menu footer */
.mobile-contact-link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: block;
}

.mobile-contact-link:hover { color: var(--accent); }

.mobile-menu-footer-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* --- Theme toggle ------------------------------------------ */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 5px;
  transition: color var(--transition);
  margin-left: 4px;
}

.theme-toggle:hover { color: var(--accent); }
.theme-toggle svg { width: 14px; height: 14px; }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* --- Navbar ------------------------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navbar-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    #1565c0 0%,
    #00b4d8 20%,
    #7c3aed 45%,
    #c2185b 65%,
    #7c3aed 80%,
    #1565c0 100%
  );
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), #0077b6);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: white;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-link {
  padding: 6px 14px;
  border-radius: 0;
  background: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
  background: none;
  text-decoration: none;
}

.nav-link.active {
  color: var(--accent);
  background: none;
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 2px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  padding: 10px 14px;
  font-size: 14px;
}

.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
  padding: 12px 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- Main content ------------------------------------------ */
.main-content { min-height: 60vh; }

/* --- Messages ---------------------------------------------- */
.messages-wrap {
  max-width: var(--max-w);
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
}

.message-success { background: rgba(0,200,100,0.12); color: #00c864; border: 1px solid rgba(0,200,100,0.2); }
.message-error   { background: rgba(255,60,60,0.12);  color: #ff4040; border: 1px solid rgba(255,60,60,0.2); }

/* --- Sections ---------------------------------------------- */
.section {
  padding: 72px 24px;
}

/* Content width cap */
.section-header,
.card-grid,
.why-grid,
.two-col,
.service-detail-grid,
.contact-grid,
.pricing-grid,
.process-steps,
.team-grid,
.blog-grid,
.job-list,
.tag-cloud,
.tag-list {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.section-action {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 4px;
}

/* Full-width alt section wrapper */
.section-alt-wrap {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 56px 24px 64px;
  overflow: hidden;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(0,180,216,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(99,102,241,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Network diagram --------------------------------------- */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-diagram {
  position: relative;
  width: 280px; height: 280px;
}

.node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  border: 2px solid var(--accent);
  background: var(--accent-dim);
}

.node-center {
  width: 80px; height: 80px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: linear-gradient(135deg, rgba(0,180,216,0.2), rgba(99,102,241,0.2));
  font-size: 12px;
}

.node-1 { width: 56px; height: 56px; top: 10%; left: 50%; transform: translateX(-50%); }
.node-2 { width: 56px; height: 56px; top: 50%; right: 5%; transform: translateY(-50%); }
.node-3 { width: 56px; height: 56px; bottom: 10%; left: 50%; transform: translateX(-50%); }
.node-4 { width: 56px; height: 56px; top: 50%; left: 5%; transform: translateY(-50%); }

.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.3; }
  50%       { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}

/* --- Stats bar --------------------------------------------- */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
}

.stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* --- Cards ------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card, .feature-card, .solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card:hover, .feature-card:hover, .solution-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px var(--accent-glow);
  background: var(--card-hover);
  text-decoration: none;
}

.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.card-icon svg { width: 22px; height: 22px; }
.service-card h3, .feature-card h3, .solution-card h3 { font-size: 16px; font-weight: 600; }
.service-card p, .feature-card p, .solution-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.card-link { font-size: 13px; font-weight: 600; color: var(--accent); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

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

.btn-primary:hover {
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Page hero --------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 48px;
  max-width: 100%;
}

.page-hero > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}

/* --- CTA --------------------------------------------------- */
.cta-section {
  padding: 72px 24px;
}

.cta-section > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.cta-box {
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(99,102,241,0.08));
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}

.cta-box h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-box p  { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Why section ------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-grid h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.why-grid p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.why-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.why-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.feature-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-badge svg { width: 28px; height: 28px; color: var(--accent); }
.feature-badge:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }

/* --- Service detail ---------------------------------------- */
.service-detail-grid { display: flex; flex-direction: column; gap: 24px; }

.service-detail-card {
  display: flex;
  gap: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  align-items: flex-start;
}

.sdc-icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.sdc-icon svg { width: 26px; height: 26px; }
.sdc-content h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.sdc-content p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.sdc-content ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }

.sdc-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.sdc-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* --- Two column -------------------------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; letter-spacing: -0.3px; margin-bottom: 16px; }
.two-col p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* --- Info box ---------------------------------------------- */
.info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.info-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--accent); }
.info-box p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* --- Check list -------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* --- Tags -------------------------------------------------- */
.tag-list, .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.tag {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.tag-lg { padding: 6px 16px; font-size: 13px; }

/* --- Pricing ----------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 32px var(--accent-glow); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 3px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-header p  { font-size: 13px; color: var(--text-muted); }
.pricing-card ul   { flex: 1; display: flex; flex-direction: column; gap: 10px; }

.pricing-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* --- Process ----------------------------------------------- */
.process-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }

.step { flex: 1; min-width: 160px; text-align: center; padding: 24px 16px; }
.step-num { font-size: 36px; font-weight: 800; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 12px; letter-spacing: -2px; }
.step h3  { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p   { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; padding-top: 36px; color: var(--accent); font-size: 20px; opacity: 0.4; }

/* --- Contact ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.contact-form-wrap h2, .contact-info h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group select option { background: var(--bg-surface); }
.form-group textarea { resize: vertical; }

/* Small print under a form's submit button (lead-magnet funnel). */
.form-note { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 4px; }

/* "What's inside" value list on the audit-checklist landing page. */
.checklist-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.checklist-points li { position: relative; padding-left: 28px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.checklist-points li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.checklist-points li strong { color: var(--text); font-weight: 600; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.contact-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; }
.contact-detail h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--text); }

.contact-socials { margin-top: 32px; }
.contact-socials h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 12px; }

/* --- Social icons ------------------------------------------ */
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.social-icons a {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.2);
  transition: all var(--transition);
}

.social-icons a svg { width: 16px; height: 16px; }
.social-icons a:hover { background: var(--accent); color: white; transform: translateY(-2px); }

/* --- Blog -------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--text);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.blog-card-img { height: 180px; background-size: cover; background-position: center; }
.blog-card-img-placeholder { background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(99,102,241,0.15)); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card-body h3 { font-size: 16px; font-weight: 600; line-height: 1.4; }
.blog-card-body p  { font-size: 14px; color: var(--text-muted); flex: 1; }
.blog-date { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* --- Blog detail ------------------------------------------- */
.blog-detail { max-width: 800px; margin: 0 auto; }
.back-link { font-size: 13px; color: var(--accent); margin-bottom: 16px; display: inline-block; }
.blog-detail-header h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.blog-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.blog-detail-cover { height: 360px; border-radius: 12px; background-size: cover; background-position: center; margin-bottom: 32px; }
.blog-detail-content { font-size: 16px; line-height: 1.8; color: var(--text-muted); }
.blog-detail-content p { margin-bottom: 20px; }

/* --- Team -------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }

.team-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.team-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background: var(--accent-dim); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: var(--accent); }
.team-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.team-linkedin { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-weight: 600; }
.team-linkedin svg { width: 14px; height: 14px; }

/* --- About values ------------------------------------------ */
.about-values { display: flex; flex-direction: column; gap: 20px; }

.value-item { display: flex; gap: 16px; align-items: flex-start; }

.value-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}

.value-icon svg { width: 16px; height: 16px; }
.value-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.value-item p  { font-size: 13px; color: var(--text-muted); }

/* --- Jobs -------------------------------------------------- */
.job-list { display: flex; flex-direction: column; gap: 16px; }

.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.job-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.job-type { background: var(--accent-dim); color: var(--accent); padding: 2px 10px; border-radius: 4px; font-weight: 600; }
.job-info p { font-size: 14px; color: var(--text-muted); max-width: 600px; }

/* --- Solution card ----------------------------------------- */
.solution-icon { width: 48px; height: 48px; background: var(--accent-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.solution-icon svg { width: 24px; height: 24px; }

/* --- Empty state ------------------------------------------- */
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-muted); }
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.4; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p  { font-size: 14px; margin-bottom: 24px; }

/* --- Footer ------------------------------------------------ */
.footer {
  background: #050c1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 24px 32px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-weight: 700; font-size: 16px; color: white;
}

.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 220px; opacity: 0.6; }
.footer-address { margin-top: 10px; font-size: 12px; }

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

.footer-col h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-col a, .footer-col span {
  font-size: 13px; color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); text-decoration: none; }

.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.footer-socials a {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-socials a svg { width: 14px; height: 14px; }
.footer-socials a:hover { background: var(--accent-dim); color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  max-width: 100%;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1280px) {
  /* Hide email text, keep phone + socials */
  .navbar-meta-email { display: none; }
}

@media (max-width: 1100px) {
  /* Hide phone text too at this width, keep socials + theme */
  .navbar-meta-text { display: none; }
  .navbar-meta-socials { border-left: none; padding-left: 0; }
}

@media (max-width: 1024px) {
  .navbar-nav .nav-link { padding: 7px 8px; font-size: 12.5px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .sdc-content ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-meta { display: none; }
  .hamburger { display: flex; }

  .section  { padding: 48px 16px; }
  .cta-section { padding: 48px 16px; }
  .cta-box  { padding: 36px 20px; }
  .hero     { padding: 48px 16px; flex-direction: column; }
  .hero-visual { display: none; }
  .page-hero { padding: 48px 16px 32px; }
  .two-col  { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { padding-top: 0; transform: rotate(90deg); }
  .job-card { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 16px 24px; }
  .footer-bottom { padding: 12px 16px; }
  .stats-bar-inner { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; }
  .stat + .stat::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* --- Value props ------------------------------------------- */
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.value-prop {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-prop:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px var(--accent-glow);
}

.vp-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.vp-icon svg { width: 24px; height: 24px; }
.value-prop h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.2px; }
.value-prop p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --- Vendor grid ------------------------------------------- */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto 24px;
}

.vendor-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--transition);
}

.vendor-badge:hover { border-color: var(--accent); }

.vendor-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.vendor-cert {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* --- Cert strip -------------------------------------------- */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cert-badge {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* --- Testimonials ------------------------------------------ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- FAQ --------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}

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

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Service card number badge ----------------------------- */
.card-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: -4px;
}

/* --- Service detail label ---------------------------------- */
.sdc-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}

/* --- Service detail two-col layout ------------------------- */
.sdc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 4px;
}

.sdc-two-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sdc-two-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sdc-two-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  grid-template-columns: 1fr;
}

.sdc-two-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Framework badges -------------------------------------- */
.framework-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.framework-badge {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* --- Rapid recovery accent card ---------------------------- */
.service-detail-card-accent {
  border-color: rgba(251,146,60,0.3);
}

.service-detail-card-accent:hover {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.5), 0 8px 32px rgba(249,115,22,0.15);
}

.sdc-icon-warn {
  background: rgba(249,115,22,0.12);
  color: #f97316;
}

@media (max-width: 768px) {
  .sdc-two-col { grid-template-columns: 1fr; gap: 16px; }
}

/* --- MNOC page --------------------------------------------- */
.mnoc-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 72px 24px 56px;
}

.mnoc-hero-content .hero-badge { margin-bottom: 20px; }

.mnoc-hero-content h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.mnoc-hero-content p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Rack graphic */
.mnoc-rack-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rack-box {
  background: #0a0f20;
  border: 2px solid rgba(0,180,216,0.2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 240px;
  box-shadow: 0 0 40px rgba(0,180,216,0.1), inset 0 0 20px rgba(0,0,0,0.5);
}

.rack-unit {
  background: #0d1830;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ru-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  min-width: 28px;
}

.ru-ports {
  display: flex;
  gap: 4px;
  flex: 1;
}

.ru-ports span {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

.ru-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ru-status.on   { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.ru-status.warn { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; animation: blink 1.5s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.rack-cables {
  display: flex;
  gap: 6px;
  padding: 4px 6px;
}

.cable {
  height: 6px;
  flex: 1;
  border-radius: 3px;
}

.c-blue   { background: linear-gradient(90deg, #1d4ed8, #3b82f6); }
.c-yellow { background: linear-gradient(90deg, #a16207, #eab308); }
.c2       { opacity: 0.6; }

.mnoc-badge-live {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 1px;
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease-in-out infinite;
}

/* Use case cards */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.usecase-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.usecase-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px var(--accent-glow);
}

.usecase-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.usecase-icon svg { width: 24px; height: 24px; }
.usecase-card h3  { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.usecase-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.usecase-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.usecase-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

@media (max-width: 768px) {
  .mnoc-hero {
    grid-template-columns: 1fr;
    padding: 48px 16px 40px;
  }
  .mnoc-hero-visual { display: none; }
}

/* --- Navbar scrolled state --------------------------------- */
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
