/* ============================================================
   CYBERAGE TECHNOLOGIES — Website Styles
   ============================================================ */

/* 1. Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* 2. Design Tokens */
:root {
  --bg-primary:   #09090B;
  --bg-surface:   #0F0F12;
  --bg-card:      #17171A;
  --bg-elevated:  #222228;
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-accent:rgba(245, 158, 11, 0.30);

  --text-primary:   #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted:     #71717A;

  --accent:       #F59E0B;
  --accent-light: #FCD34D;
  --accent-dim:   rgba(245, 158, 11, 0.10);
  --accent-hover: #FBBF24;
  --accent-glow:  rgba(245, 158, 11, 0.20);

  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:    1200px;
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.50);
  --shadow-lg:    0 12px 60px rgba(0, 0, 0, 0.70);
}

/* 3. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* 4. Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

p { color: var(--text-secondary); line-height: 1.75; }

/* 5. Layout Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 140px 0; }

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

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #09090B;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--accent);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--accent-hover); }
.btn-ghost .arrow { transition: transform 0.25s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* 7. Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav.scrolled .nav-inner {
  border-bottom-color: var(--border);
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta { margin-left: 16px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav — full-screen overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 32px 40px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 16px 20px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-of-type:not(.btn) { border-bottom: none; }
.nav-mobile a:hover { background: var(--bg-card); color: var(--text-primary); }
.nav-mobile .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: #09090B;
  font-weight: 700;
  font-size: 1rem;
  border: none;
}
.nav-mobile .btn:hover {
  background: var(--accent-hover);
}

/* Hamburger transforms to X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Keep hamburger above overlay */
.nav { z-index: 1000; }

/* 8. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,158,11,0.03) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.4;
}

.hero > .container {
  margin-left: 5%;
  margin-right: auto;
  max-width: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 680px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 580px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

/* 9. Trust Strip */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 36px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 10. Section Header */
.section-header {
  margin-bottom: 64px;
}
.section-header.center { text-align: center; }
.section-header.center p { max-width: 540px; margin: 16px auto 0; }

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 560px;
}

/* 11. Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p  { font-size: 0.94rem; line-height: 1.7; }

/* Value prop cards */
.vp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.vp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.vp-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.vp-card:hover::before { opacity: 1; }

/* 12. Service Preview */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p  { flex: 1; font-size: 0.94rem; margin-bottom: 24px; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 4px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 13. Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), var(--accent), var(--border-accent), transparent);
  z-index: 0;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--border-accent); transform: translateY(-4px); }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #09090B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.process-step h4 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p  { font-size: 0.9rem; }

/* 14. Why CyberAge */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.diff-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--bg-card);
}
.diff-item:hover { border-color: var(--border-accent); background: var(--bg-elevated); }

.diff-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.diff-item h4 { margin-bottom: 8px; font-size: 1rem; }
.diff-item p  { font-size: 0.9rem; }

/* 15. CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner p  { font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 16. Page Hero (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245,158,11,0.05) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.page-hero p  { font-size: 1.1rem; max-width: 560px; }

/* 17. About Page Specific */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.belief-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 3px solid var(--accent);
}
.belief-card h4 { color: var(--accent); margin-bottom: 12px; }

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: approach;
}
.approach-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  counter-increment: approach;
}
.approach-item:hover { border-color: var(--border-accent); }
.approach-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  opacity: 0.5;
}
.approach-item h4 { margin-bottom: 6px; }
.approach-item p  { font-size: 0.94rem; }

/* 18. Services Page */
.service-full {
  padding: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-full:hover { border-color: var(--border-accent); }
.service-full-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
.service-full-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.service-full-header h3 { margin-bottom: 8px; font-size: 1.5rem; }
.service-full-header p  { font-size: 1rem; max-width: 560px; }
.offering-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.offering-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.offering-item:hover { border-color: var(--border-accent); color: var(--text-primary); }
.offering-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 19. Solutions Page */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}
.solution-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.solution-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.solution-card p  { font-size: 0.92rem; }

/* 20. Case Studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.case-card-top {
  padding: 32px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.case-industry {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.case-card-body { padding: 28px 32px; }
.case-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.case-card p  { font-size: 0.9rem; margin-bottom: 20px; }
.case-outcomes { display: flex; flex-direction: column; gap: 8px; }
.case-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.case-outcome::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
}

/* 21. Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-text span { font-size: 0.95rem; color: var(--text-secondary); }

.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* 22. Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p  { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; }

/* 23. Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* 24. FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* 25. Insights Preview */
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.insight-card-img {
  height: 180px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.insight-card-body { padding: 28px; }
.insight-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.insight-card h4 { font-size: 1rem; margin-bottom: 10px; }
.insight-card p  { font-size: 0.88rem; }

/* 26. Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 27. Stat Bar */
.stat-bar {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { flex: 1; min-width: 120px; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* 28. Placeholder Visual */
.network-visual {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-float { display: none; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-full { padding: 40px; }
  .offering-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .belief-grid, .solution-grid { grid-template-columns: 1fr; }
  .differentiator-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .service-full { padding: 28px; }
  .service-full-header { flex-direction: column; gap: 20px; }
  .offering-list { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .stat-bar { gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO ANIMATIONS
   ============================================================ */

/* Canvas network sits behind content */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

/* Staggered hero content fade-up */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge   { animation: heroFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.15s both; }
.hero h1      { animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s  both; }
.hero-sub     { animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.45s both; }
.hero-actions { animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.6s  both; }
.hero-scroll  { animation: heroFadeIn 1s  cubic-bezier(0.4,0,0.2,1) 1.1s  both; }

/* Animated gradient orbs behind hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.08); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   ARTICLE / BLOG STYLES
   ============================================================ */

.article-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(245,158,11,0.05) 0%, transparent 60%);
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.article-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.article-date,
.article-readtime {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.article-dot { color: var(--text-muted); }
.article-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 780px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.article-hero-meta { position: relative; z-index: 1; }
.article-dek {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Article body */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.article-body {
  max-width: 700px;
  padding: 64px 0;
}
.article-body h2 {
  font-size: 1.55rem;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-body li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.article-body ul li::marker { color: var(--accent); }
.article-body ol li::marker { color: var(--accent); font-weight: 600; }
.article-body strong { color: var(--text-primary); font-weight: 600; }

.article-pullquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: italic;
}

.article-highlight {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.article-highlight p { margin: 0; color: var(--text-primary); }

/* Article sidebar */
.article-sidebar {
  padding-top: 64px;
  position: sticky;
  top: 96px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-toc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-toc a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: var(--transition);
}
.sidebar-toc a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-dim);
}
.related-article {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.related-article:last-child { border-bottom: none; }
.related-article .tag { font-size: 0.72rem; }
.related-article a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.related-article a:hover { color: var(--accent); }

/* Article CTA */
.article-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { margin-bottom: 12px; font-size: 1.2rem; }
.article-cta p  { margin-bottom: 24px; font-size: 0.95rem; }

/* Article footer / author */
.article-author {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.author-info span { font-size: 0.83rem; color: var(--text-muted); }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width: 768px) {
  .article-hero { padding: 120px 0 48px; }
  .article-body { padding: 40px 0; }
  .article-body h2 { font-size: 1.3rem; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

.career-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  transition: var(--transition);
}
.career-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.career-info h3 { margin-bottom: 8px; font-size: 1.15rem; }
.career-info p  { font-size: 0.93rem; max-width: 580px; margin-bottom: 16px; }
.career-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.career-tag-dept {
  padding: 3px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}
.career-tag-type {
  padding: 3px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.career-action { flex-shrink: 0; }

.value-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.value-item:hover { border-color: var(--border-accent); }
.value-emoji { font-size: 2rem; margin-bottom: 16px; }
.value-item h4 { margin-bottom: 8px; }
.value-item p  { font-size: 0.9rem; }

@media (max-width: 768px) {
  .career-card { flex-direction: column; }
  .career-action { width: 100%; }
  .career-action .btn { width: 100%; justify-content: center; }
  .value-stack { grid-template-columns: 1fr; }
}

/* ============================================================
   LUCIDE ICON INTEGRATION
   ============================================================ */

.card-icon svg,
.service-full-icon svg,
.solution-icon svg,
.contact-detail-icon svg,
.trust-item .icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.service-full-icon svg {
  width: 28px;
  height: 28px;
}

.diff-icon {
  font-size: unset;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.value-emoji {
  font-size: unset;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-emoji svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

/* ============================================================
   ENHANCED INSIGHT CARD IMAGES
   ============================================================ */

.insight-card-img {
  position: relative;
  overflow: hidden;
}
.insight-card-img svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.insight-card-img::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}
.insight-card-img::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  opacity: 0.3;
}

.insight-img-ai::before    { background: rgba(245,158,11,0.2); top: -40px; right: -40px; }
.insight-img-ai::after     { bottom: -30px; left: -30px; }
.insight-img-systems::before  { background: rgba(99,102,241,0.2); bottom: -40px; left: -40px; }
.insight-img-systems::after   { top: -30px; right: -30px; }
.insight-img-security::before { background: rgba(16,185,129,0.2); top: -20px; left: 50%; transform: translateX(-50%); }
.insight-img-security::after  { bottom: -30px; right: -30px; }
.insight-img-strategy::before { background: rgba(244,63,94,0.15); bottom: -30px; right: -30px; }
.insight-img-strategy::after  { top: -30px; left: -30px; }
.insight-img-transform::before { background: rgba(139,92,246,0.15); top: -30px; left: -30px; }
.insight-img-transform::after  { bottom: -30px; left: 30%; }
.insight-img-reputation::before { background: rgba(6,182,212,0.15); bottom: -20px; right: -20px; }
.insight-img-reputation::after  { top: -30px; right: 30%; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.bg-surface { background: var(--bg-surface); }
.border-bottom-subtle { border-bottom: 1px solid var(--border); }
.pt-0 { padding-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }

.grid-2-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================================
   COMPONENT CLASSES
   ============================================================ */

/* Leadership quote card (about) */
.quote-card {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.quote-text {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-avatar svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* Service page components */
.service-desc {
  margin-bottom: 32px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 760px;
}
.service-sub-heading {
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.service-actions {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Featured article (insights page) */
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.featured-card:hover { border-color: var(--border-accent); }
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 340px;
}
.featured-visual {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.featured-visual svg {
  width: 80px;
  height: 80px;
  color: var(--accent);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.featured-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245,158,11,0.08);
  filter: blur(80px);
}
.featured-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.featured-tag { font-size: 0.78rem; color: var(--text-muted); }
.featured-body h2 { font-size: 1.8rem; margin-bottom: 16px; }

/* Newsletter */
.newsletter-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
.newsletter-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.newsletter-input::placeholder { color: var(--text-muted); }

/* Diagnostic card (solutions) */
.diagnostic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-top: 2px solid var(--accent);
}
.diagnostic-heading {
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.diagnostic-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diagnostic-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diagnostic-check svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Hiring process (careers) */
.hiring-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hiring-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.hiring-step:hover { border-color: var(--border-accent); }
.hiring-step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* What-to-expect (contact) */
.expect-card {
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.expect-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.expect-num {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

/* Stat grid (homepage) */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-card-accent {
  background: var(--accent-dim);
  border-color: var(--border-accent);
}

/* Ghost button small variant */
.btn-ghost-sm {
  margin-top: 16px;
  padding: 10px 0;
  font-size: 0.88rem;
}

/* Footer tagline */
.footer-tagline {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Required star */
.required { color: var(--accent); }

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */

/* Override orbs — larger, stronger glow */
.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.09) 0%, transparent 70%);
  animation-duration: 10s;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  animation-duration: 14s;
}

/* More visible network */
#heroCanvas { opacity: 0.7; }

/* ── Animated command-center float ── */
.hero-float {
  position: absolute;
  right: 6%;
  top: 50%;
  width: 380px;
  height: 380px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateY(20px);
  animation: hfEntry 1s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}
@keyframes hfEntry {
  to { opacity: 1; transform: translateY(-50%) translateY(0); }
}
.hero-float.hf-ready {
  animation: hfEntry 1s cubic-bezier(0.4,0,0.2,1) 0.6s forwards,
             hfBreathe 6s ease-in-out 1.6s infinite;
}
@keyframes hfBreathe {
  0%, 100% { opacity: 1; transform: translateY(-50%); }
  50%      { opacity: 1; transform: translateY(calc(-50% - 10px)); }
}

/* ── Spinning rings ── */
.hf-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.15);
}
.hf-ring--outer {
  animation: hfSpin 30s linear infinite;
  border-style: dashed;
  border-color: rgba(245,158,11,0.12);
}
.hf-ring--inner {
  inset: 30px;
  animation: hfSpin 20s linear infinite reverse;
  border-color: rgba(245,158,11,0.2);
}
@keyframes hfSpin { to { transform: rotate(360deg); } }

/* ── Central hub ── */
.hf-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}
.hf-progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.hf-ring-track {
  fill: none;
  stroke: rgba(245,158,11,0.1);
  stroke-width: 5;
}
.hf-ring-fill {
  fill: none;
  stroke: #3B82F6;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(245,158,11,0.4));
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1),
              stroke 0.4s ease;
}
.hf-hub-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hf-pct {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  transition: color 0.4s ease;
}
.hf-pct small {
  font-size: 1.1rem;
  color: var(--accent);
}
.hf-phase {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Orbiting nodes ── */
.hf-orbit {
  position: absolute;
  inset: 0;
  animation: hfSpin 25s linear infinite;
}
.hf-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15,15,18,0.9);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  box-shadow: 0 0 20px rgba(245,158,11,0.08);
}
.hf-node--1 {
  top: -4px; left: 50%;
  transform: translateX(-50%);
  animation: hfNodeIn1 0.5s ease 1.2s both;
}
.hf-node--2 {
  bottom: 14%; right: 2%;
  animation: hfNodeIn 0.5s ease 1.5s both;
}
.hf-node--3 {
  bottom: 14%; left: 2%;
  animation: hfNodeIn 0.5s ease 1.8s both;
}
@keyframes hfNodeIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hfNodeIn1 {
  from { opacity: 0; transform: translateX(-50%) scale(0); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}
.hf-node-icon { color: var(--accent); }
.hf-node-icon svg { width: 18px; height: 18px; }
.hf-node::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.3);
  animation: hfNodePulse 3s ease-in-out infinite;
}
.hf-node--2::after { animation-delay: 1s; }
.hf-node--3::after { animation-delay: 2s; }
@keyframes hfNodePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.4); opacity: 0; }
}

/* ── Activity ticker ── */
.hf-ticker {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  background: rgba(15,15,18,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  height: 44px;
}
.hf-ticker-track {
  display: flex;
  flex-direction: column;
}
.hf-tick {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  height: 44px;
  flex-shrink: 0;
  padding: 0 16px;
  transition: opacity 0.4s ease;
}
.hf-tick-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #22C55E;
}
.hf-tick-check svg { width: 16px; height: 16px; }
.hf-tick-check--active {
  color: var(--accent);
  animation: hfSpinIcon 2s linear infinite;
}
@keyframes hfSpinIcon { to { transform: rotate(360deg); } }
.hf-tick-check--pending { color: var(--text-muted); }
.hf-tick-msg {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hf-tick-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.hf-tick-badge--done {
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}
.hf-tick-badge--progress {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
}
.hf-tick-badge--pending {
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

/* ── Team presence ── */
.hf-team {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: hfTeamIn 0.6s ease 2s both;
}
@keyframes hfTeamIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hf-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(15,15,18,0.9);
  margin-left: -6px;
}
.hf-avatar:first-child { margin-left: 0; }
.hf-team-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
  white-space: nowrap;
}

/* ── Ambient glow ── */
.hf-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  z-index: -1;
  animation: hfGlowPulse 4s ease-in-out infinite;
}
@keyframes hfGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ============================================================
   POLISH & EFFECTS
   ============================================================ */

/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Enhanced card hover glow */
.card:hover,
.vp-card:hover,
.service-card:hover,
.insight-card:hover,
.solution-card:hover,
.case-card:hover {
  box-shadow: 0 8px 40px rgba(245,158,11,0.06), var(--shadow);
}

/* Trust strip mobile horizontal scroll */
@media (max-width: 768px) {
  .trust-items {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .trust-items::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }

  .hero-float { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-visual { min-height: 200px; border-right: none; border-bottom: 1px solid var(--border); }
  .featured-body { padding: 32px 24px; }
  .grid-2-center { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .hero-float { display: none; }
  .grid-2-center { gap: 48px; }
}

/* ============================================================
   CREATIVE VISUAL ELEMENTS
   ============================================================ */

/* Ambient section glow — subtle radial behind key sections */
.section-glow {
  position: relative;
}
.section-glow::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient divider replacing plain line */
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 15%, var(--accent) 50%, var(--border) 85%, transparent 100%);
  opacity: 0.5;
}

/* Decorative corner flourish on vp-cards */
.vp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 100% 100%, var(--accent-dim) 0%, transparent 70%);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vp-card:hover::after {
  opacity: 1;
}

/* Accent stripe on service cards — left edge */
.service-card {
  border-left: 3px solid transparent;
  transition: var(--transition), border-left-color 0.3s ease;
}
.service-card:hover {
  border-left-color: var(--accent);
}

/* Animated gradient line on section headers */
.section-header h2 {
  position: relative;
  display: inline-block;
}

/* Subtle grain texture overlay for depth — applied to bg-surface sections */
[style*="bg-surface"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
[style*="bg-surface"] > .container {
  position: relative;
  z-index: 1;
}

/* Floating accent dot decoration for stat cards */
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.06;
  transition: opacity 0.3s, transform 0.3s;
}
.stat-card:hover::before {
  opacity: 0.12;
  transform: scale(1.5);
}

/* Diff item left-accent on hover */
.diff-item {
  border-left: 3px solid transparent;
  transition: var(--transition), border-left-color 0.3s ease;
}
.diff-item:hover {
  border-left-color: var(--accent);
}

/* Glowing accent ring behind diff icons on hover */
.diff-icon {
  position: relative;
  transition: var(--transition);
}
.diff-item:hover .diff-icon {
  box-shadow: 0 0 20px rgba(245,158,11,0.15);
}

/* Process step connector glow dots */
.process-step::before {
  content: '';
  position: absolute;
  top: 56px;
  right: -14px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 3;
}
.process-step:last-child::before {
  display: none;
}

/* Insight card image shimmer on hover */
.insight-card:hover .insight-card-img::before {
  opacity: 0.9;
  animation: shimmer 1.5s ease-in-out;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { transform: translateX(100%); opacity: 0.3; }
}

/* CTA section enhanced glow */
.cta-section {
  position: relative;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* Animated underline for vp-card h3 (the client quotes) */
.vp-card h3 {
  position: relative;
  display: inline;
}
.vp-card:hover h3 {
  color: var(--accent);
  transition: color 0.3s ease;
}

/* Staggered float for stat cards */
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.stat-card:hover {
  animation: subtleFloat 3s ease-in-out infinite;
}

/* Trust strip items — subtle icon pulse on hover */
.trust-item:hover .icon {
  box-shadow: 0 0 12px rgba(245,158,11,0.2);
  transition: box-shadow 0.3s ease;
}

/* Section separator — decorative dot between sections */
.section + .section::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: -3px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .process-step::before {
    display: none;
  }
}
