/* Numu Consulting 2026 — Component Styles */

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-white);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo:hover { color: var(--color-text-white); }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo-text { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.15em; background: linear-gradient(135deg, #C084FC, #7C3AED); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-text-white);
  background: rgba(139, 92, 246, 0.1);
}
.nav-cta {
  background: var(--gradient-cta);
  color: var(--color-text-white) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: var(--space-2);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover);
  background: var(--gradient-cta-hover);
  color: var(--color-text-white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  color: var(--color-text-white);
  background: rgba(139, 92, 246, 0.1);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-1) var(--space-3);
}
.nav-dropdown-label {
  padding: var(--space-2) var(--space-3) var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.nav-dropdown-sub a {
  padding-left: var(--space-5);
  font-size: var(--text-xs);
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text-white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-6);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: var(--space-3) 0;
  color: var(--color-text-subtle);
  font-size: var(--text-lg);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--color-text-white); }
.mobile-menu .mobile-section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding-top: var(--space-5);
  padding-bottom: var(--space-2);
  border-bottom: none;
}
.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: var(--space-6);
  background: var(--gradient-cta);
  color: var(--color-text-white);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  border-bottom: none;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== HERO SECTIONS ===== */
.hero {
  padding-top: calc(var(--nav-height) + clamp(var(--space-16), 8vw, var(--space-32)));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: var(--space-4);
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  max-width: 900px;
}
.hero h1 .gradient-text {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-subtle);
  max-width: 660px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}
.hero-page { text-align: center; }
.hero-page h1 { max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-page .hero-sub { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-text-white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
  background: var(--gradient-cta-hover);
  color: var(--color-text-white);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text-subtle);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text-white);
  background: rgba(139, 92, 246, 0.05);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-6) 0;
  margin-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-purple-light);
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section { padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; }
.section-header {
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-subtle);
  max-width: 660px;
  line-height: 1.7;
}
.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-purple-light);
}
.card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.card p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.7;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ===== EMPLOYEE CARDS ===== */
.employee-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.employee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
}
.employee-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.employee-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: white;
}
.employee-avatar.layla { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.employee-avatar.mikaeel { background: linear-gradient(135deg, #6366F1, #818CF8); }
.employee-avatar.safiyyah { background: linear-gradient(135deg, #8B5CF6, #C084FC); }
.employee-avatar.jamal { background: linear-gradient(135deg, #6B21A8, #7C3AED); }

.employee-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.employee-role {
  font-size: var(--text-sm);
  color: var(--color-purple-light);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.employee-tagline {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.employee-tasks {
  margin-bottom: var(--space-4);
}
.employee-tasks li {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}
.employee-tasks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-purple-primary);
}
.employee-stat {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-purple-light);
}
.employee-integrations {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ===== STAT BLOCKS ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6);
}
.stat-block {
  text-align: center;
  padding: var(--space-6);
}
.stat-number {
  font-size: var(--text-4xl);
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== STEP CARDS ===== */
.step-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}
.step-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.step-card p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.7;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.pricing-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--color-purple-primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}
.pricing-badge {
  position: absolute;
  top: calc(var(--space-4) * -1);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: white;
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.pricing-price {
  font-size: var(--text-3xl);
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}
.pricing-features {
  margin-bottom: var(--space-6);
}
.pricing-features li {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  border-bottom: 1px solid rgba(139, 92, 246, 0.05);
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success-light);
  font-weight: 700;
}
.pricing-best {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-6);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
}

/* ===== ADD-ONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.addon-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addon-item span:first-child {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
}
.addon-item span:last-child {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-purple-light);
  white-space: nowrap;
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-purple-light);
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.8;
}

/* ===== INDUSTRY CARDS ===== */
.industry-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-decoration: none;
  display: block;
  transition: border-color 0.3s, transform 0.3s;
}
.industry-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}
.industry-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text-white);
}
.industry-card p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-3);
}
.industry-price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-purple-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.cta-section p {
  font-size: var(--text-lg);
  color: var(--color-text-subtle);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  border-left: 3px solid var(--color-purple-primary);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
}
.quote-block blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-medium);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}
.quote-block cite {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

/* ===== VALUES CARDS ===== */
.value-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}
.value-arabic {
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-purple-light);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.value-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.7;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  margin-bottom: var(--space-6);
}
.service-block h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.service-block p {
  font-size: var(--text-base);
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.service-meta {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.service-meta-item {
  font-size: var(--text-sm);
}
.service-meta-item strong {
  color: var(--color-text-white);
}
.service-meta-item span {
  color: var(--color-text-muted);
}
.service-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-purple-light);
  margin-bottom: var(--space-3);
}

/* ===== INDUSTRY TABLE ===== */
.industry-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.industry-table th {
  background: rgba(139, 92, 246, 0.1);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: left;
  color: var(--color-text-white);
  border-bottom: 1px solid var(--color-border);
}
.industry-table td {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  border-bottom: 1px solid var(--color-border);
}
.industry-table tr:last-child td { border-bottom: none; }
.industry-table tr:hover td { background: rgba(139, 92, 246, 0.03); }

/* ===== BLOG CARDS ===== */
.blog-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  justify-content: center;
}
.blog-filter {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter:hover, .blog-filter.active {
  color: var(--color-text-white);
  border-color: var(--color-purple-primary);
  background: rgba(139, 92, 246, 0.1);
}
.blog-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}
.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.3), rgba(99, 102, 241, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--color-purple-light);
  opacity: 0.5;
}
.blog-card-body {
  padding: var(--space-6);
}
.blog-card-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-light);
  margin-bottom: var(--space-2);
}
.blog-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.blog-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-medium);
  margin-bottom: var(--space-2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-white);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-purple-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239CA3AF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-10);
}
.form-textarea { min-height: 100px; resize: vertical; }

/* ===== ROI CALCULATOR ===== */
.calc-slider-group {
  margin-bottom: var(--space-8);
}
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}
.calc-slider-label span:first-child {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-medium);
}
.calc-slider-value {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-purple-light);
  min-width: 60px;
  text-align: right;
}
input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-bg-navy);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-cta);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-cta);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}
.calc-results {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.calc-result-item:last-child { border-bottom: none; }
.calc-result-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.calc-result-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text-white);
}
.calc-result-value.highlight {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--text-2xl);
}
.hourly-options {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hourly-option {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-subtle);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: inherit;
}
.hourly-option:hover, .hourly-option.active {
  border-color: var(--color-purple-primary);
  color: var(--color-text-white);
  background: rgba(139, 92, 246, 0.1);
}

/* ===== CASE STUDY ===== */
.case-study {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}
.case-study h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.case-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-light);
  margin-bottom: var(--space-2);
  margin-top: var(--space-6);
}
.case-study p {
  font-size: var(--text-base);
  color: var(--color-text-subtle);
  line-height: 1.7;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
.case-result-item {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
}
.case-result-item::before {
  content: '✓';
  color: var(--color-success-light);
  font-weight: 700;
  margin-right: var(--space-2);
}

/* ===== PLACEHOLDER CARDS (Case Study Template) ===== */
.placeholder-card {
  background: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
}
.placeholder-card h3 {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.placeholder-card p {
  font-size: var(--text-sm);
  color: var(--color-text-label);
}

/* ===== PAIN POINTS ===== */
.pain-list {
  margin: var(--space-6) 0;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text-subtle);
}
.pain-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-warning);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CHECKLIST ===== */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--color-text-subtle);
}
.checklist li::before {
  content: '✓';
  color: var(--color-success-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-text-white); }
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--color-purple-primary);
  background: rgba(139, 92, 246, 0.1);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p, .footer-bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-label);
}
.footer-bottom a:hover { color: var(--color-text-muted); }
.footer-attrib {
  font-size: var(--text-xs);
  color: var(--color-text-label);
}
.footer-attrib a {
  color: var(--color-text-muted) !important;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== COMPLIANCE LIST ===== */
.compliance-list {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin: var(--space-6) 0;
}
.compliance-tag {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-subtle);
}

/* ===== ETHICS PILLAR CARDS ===== */
.pillar-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
}

/* ===== WHAT TO EXPECT ===== */
.expect-list {
  counter-reset: expect;
}
.expect-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}
.expect-number {
  counter-increment: expect;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-purple-light);
}
.expect-item p {
  font-size: var(--text-base);
  color: var(--color-text-subtle);
  line-height: 1.7;
}

/* ===== SPECIAL NOTE ===== */
.special-note {
  background: rgba(42, 89, 52, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-success-light);
  font-style: italic;
  margin-top: var(--space-4);
}

/* ===== PRIVACY POLICY ===== */
.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.legal-content p, .legal-content li {
  font-size: var(--text-base);
  color: var(--color-text-subtle);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}
.legal-content ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.legal-content ul li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

/* ===== COLLABORATION FLOW ===== */
.collab-flow {
  margin: var(--space-8) 0;
}
.collab-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}
.collab-step .collab-agent {
  font-weight: 700;
  color: var(--color-purple-light);
  min-width: 80px;
  flex-shrink: 0;
}
.collab-step .collab-action {
  font-size: var(--text-base);
  color: var(--color-text-subtle);
}
.collab-arrow {
  width: 2px;
  height: 20px;
  background: var(--color-border);
  margin-left: 39px;
}

/* ===== TECHNICAL STEPS ===== */
.tech-step {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.tech-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: white;
}
.tech-step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-1);
}
.tech-step p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.6;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ===== BODY TOP PADDING ===== */
main { min-height: 100vh; }

/* ===== PAGE TRANSITIONS ===== */
.page { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-2) 0;
}

/* ===== SOLUTION PAGE ===== */
.solution-crew {
  margin: var(--space-6) 0;
}
.solution-crew-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}
.solution-crew-item h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-purple-light);
  margin-bottom: var(--space-2);
}
.solution-crew-item p {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: 1.7;
}
.solution-pricing {
  background: var(--color-bg-card);
  border: 2px solid var(--color-purple-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin: var(--space-8) 0;
}
.solution-pricing .pricing-price {
  font-size: var(--text-4xl);
}
.solution-pricing-details {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin: var(--space-4) 0 var(--space-6);
}
.solution-pricing-details span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== AGENT SYSTEM LIST ===== */
.agent-system-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--color-text-subtle);
}
.agent-system-list li strong {
  color: var(--color-purple-light);
  font-weight: 600;
}

/* ===== FULL-WIDTH EMPLOYEE PROFILE ===== */
.employee-profile {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
}
.employee-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
}
.employee-profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.employee-profile h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
}

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3rem); }
  .section-header h2 { font-size: var(--text-3xl); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .trust-bar { flex-direction: column; gap: var(--space-3); }
  .card { padding: var(--space-6); }
  .service-block { padding: var(--space-6); }
}

/* Calendar placeholder */
.calendar-placeholder {
  background: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  margin: var(--space-6) 0;
}
.calendar-placeholder p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ── Missing styles for v3 ── */

/* Footer v3 */
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 1rem;
}
.footer-contact {
  margin-top: 0.5rem;
}
.footer-contact a {
  color: var(--color-purple-light);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-values {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.footer-copy {
  color: var(--color-text-label);
  font-size: 0.75rem;
}
.footer-attribution {
  color: var(--color-text-label);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-attribution:hover {
  color: var(--color-purple-light);
}

/* ROI calc slider */
.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(139, 92, 246, 0.2);
  outline: none;
  margin: 0.5rem 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #6366F1);
  cursor: pointer;
  border: 2px solid var(--color-text-white);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #6366F1);
  cursor: pointer;
  border: 2px solid var(--color-text-white);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

/* Pathway cards (Start Here page) */
.pathway-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}
.pathway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

/* Resource cards */
.resource-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}
.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

/* Scroll reveal */
.reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
