/* ─────────────────────────────────────────────
   Korva Digital — Main Stylesheet
   Palette: Raven — Deep Purple / Iridescent Violet / Lavender White
   Korva = Raven (Polish). Intelligent, dark, iridescent.
   ───────────────────────────────────────────── */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds — cool lavender white (light sections) */
  --cream:        #ffffff;
  --cream-2:      #ffffff;
  --white:        #ffffff;

  /* Raven Dark — deep purple-black (replaces navy) */
  --navy:         #130b28;
  --navy-2:       #1c1040;
  --navy-light:   #2d1a5a;
  --navy-faint:   rgba(19, 11, 40, 0.06);
  --navy-faint-2: rgba(19, 11, 40, 0.1);

  /* Accent — iridescent violet (raven feather sheen: purple → indigo → blue) */
  --accent:       #9333ea;
  --accent-light: #c084fc;
  --accent-dim:   rgba(147, 51, 234, 0.12);
  --accent-grad:  linear-gradient(135deg, #9333ea 0%, #7c3aed 55%, #6d28d9 100%);

  /* Text */
  --text:         #130b28;
  --text-muted:   #4a3870;
  --text-dim:     #8b7ab0;

  /* Borders */
  --border:       rgba(147, 51, 234, 0.14);
  --border-light: rgba(147, 51, 234, 0.07);

  /* Gold — accent complement */
  --gold:         #c9a84c;
  --gold-light:   #e8d48a;
  --gold-dim:     rgba(201, 168, 76, 0.14);
  --gold-grad:    linear-gradient(135deg, #c9a84c 0%, #e8d48a 60%, #c9a84c 100%);

  /* Misc */
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(147, 51, 234, 0.1);
  --shadow-lg:    0 12px 48px rgba(147, 51, 234, 0.14);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p  { color: var(--text-muted); line-height: 1.8; }
a  { text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }

/* ── Gradient Text ── */
.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.btn-primary {
  background: var(--accent-grad);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(147,51,234,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147,51,234,0.45);
}

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

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  overflow: visible;
}
.nav.scrolled {
  background: rgba(253, 252, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(19,11,40,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,252,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--accent); }

/* ── Services Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--navy); }
.nav-dropdown-arrow { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(19,11,40,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147,51,234,0.35);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(147,51,234,0.1);
  padding: 8px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: rgba(232,224,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown-menu a:hover { background: rgba(147,51,234,0.25); color: #c084fc; }
.nav-dropdown-menu a.active { color: #c084fc; font-weight: 600; background: rgba(147,51,234,0.15); }
/* Mobile services group */
.nav-mobile-services { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nav-mobile-services-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(250,248,244,.82);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.nav-mobile-services-toggle:hover { color: #c084fc; }
.nav-mobile-services-toggle.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.nav-mobile-submenu.open { display: flex; }
.nav-mobile-submenu a { font-size: 1.1rem !important; color: rgba(250,248,244,.65) !important; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ── */
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-alt {
  background: var(--cream-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header { max-width: 640px; margin-bottom: 60px; }
.section-header.center {
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-header.center .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(19,11,40,0.06);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(147,51,234,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(99,102,241,0.06) 0%, transparent 55%);
  animation: meshPulse 9s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-dots { position: absolute; inset: 0; overflow: hidden; }
.hero-dots span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatDot var(--dur, 6s) ease-in-out infinite var(--delay, 0s);
}
@keyframes floatDot {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.25; }
  80%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(19,11,40,0.08);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title    { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 44px;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats bar ── */
.stats-bar {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 16px 20px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text-dim); }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* 5th card spans full width of a centred inner wrapper */
.services-grid .service-card:last-child:nth-child(4n+1) {
  grid-column: 1 / -1;
  max-width: calc(25% - 18px);
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
  /* Reset the 4-col centering rule at this breakpoint */
  .services-grid .service-card:last-child:nth-child(4n+1) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child:nth-child(2n+1),
  .services-grid .service-card:last-child:nth-child(4n+1) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}
.service-card {
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.12);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(19,11,40,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(147,51,234,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; margin-bottom: 18px; }
.service-card .service-link { color: var(--accent); }
.service-card:hover .service-link { gap: 10px; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.service-card:hover .service-icon { background: rgba(147,51,234,0.2); }

/* ── Mini list (services) ── */
.service-mini-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.service-mini-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-mini-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Why LB ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  display: flex; align-items: center; justify-content: center;
}
.why-raven-frame {
  position: relative;
  width: 320px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.why-raven-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(147,51,234,0.22), rgba(99,102,241,0.1) 55%, transparent 75%);
  filter: blur(18px);
  animation: ravenGlowPulse 4s ease-in-out infinite;
}
@keyframes ravenGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.why-raven-svg {
  position: relative;
  z-index: 1;
  width: 240px; height: auto;
  filter: drop-shadow(0 0 18px rgba(147,51,234,0.45));
  animation: ravenFloat 5s ease-in-out infinite;
}
@keyframes ravenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 8px rgba(19,11,40,0.05);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(147,51,234,0.2); box-shadow: var(--shadow); }
.why-check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--accent); font-weight: 700;
}
.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--navy); }
.why-item p  { font-size: 0.87rem; }

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(19,11,40,0.06);
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(147,51,234,0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.portfolio-thumb {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,30,0.55) 100%);
  z-index: 1;
}
.portfolio-body { padding: 24px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.portfolio-tag {
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(147,51,234,0.15);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.portfolio-card h3 { font-size: 1rem; margin-bottom: 8px; }
.portfolio-card p  { font-size: 0.87rem; }
.portfolio-result {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 6px 14px; border-radius: 50px;
  background: var(--accent-dim); border: 1px solid rgba(147,51,234,0.15);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 72px 64px;
  background: var(--navy);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(147,51,234,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 20%, rgba(147,51,234,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline {
  color: var(--white); border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white);
}
.cta-banner .btn-ghost {
  background: var(--white); color: var(--navy); border-color: var(--white);
}
.cta-banner .btn-ghost:hover { background: var(--cream); color: var(--navy); }

/* ── About ── */
.about-hero-grid {
  display: block;
  max-width: 780px;
}
.about-avatar {
  width: 300px; height: 300px;
  border-radius: 24px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.about-avatar-emoji { font-size: 6rem; }
.about-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem; font-weight: 700; color: var(--accent);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(147,51,234,0.15);
}

.about-text h2 { margin-bottom: 16px; }
.about-text > p { margin-bottom: 24px; }

.cert-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(19,11,40,0.06);
}
.cert-icon  { font-size: 1.8rem; display: flex; align-items: center; justify-content: center; }
.cert-icon svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.cert-name  { font-weight: 700; font-size: 0.93rem; color: var(--navy); margin-bottom: 3px; display: block; }
.cert-issuer{ font-size: 0.8rem; color: var(--text-dim); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 10px rgba(19,11,40,0.05);
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(147,51,234,0.2); transform: translateY(-4px); box-shadow: var(--shadow); }
.section-navy .value-card { background: rgba(255,255,255,0.05); border-color: rgba(147,51,234,0.2); }
.section-navy .value-card h3 { color: var(--cream); }
.section-navy .value-card p { color: rgba(232,224,255,0.6); }
.section-navy .value-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(147,51,234,0.4); }
/* Service cards on dark navy sections */
.section-navy .service-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(147,51,234,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.section-navy .service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(147,51,234,0.4);
  box-shadow: 0 8px 32px rgba(147,51,234,0.2);
  transform: translateY(-6px);
}
.section-navy .service-card h3 { color: var(--cream); }
.section-navy .service-card p { color: rgba(232,224,255,0.65); }
.section-navy .service-card .service-icon { background: rgba(147,51,234,0.2); color: #c084fc; }
.section-navy .service-card .service-icon svg { stroke: #c084fc; }
.section-navy .service-card .service-mini-list li { color: rgba(232,224,255,0.6); }
.section-navy .service-card .service-link { color: #c084fc; }
.section-navy .service-card .service-badge-primary { color: #130b28; }
.section-navy .coming-soon { color: #c084fc; background: rgba(147,51,234,0.2); border-color: rgba(147,51,234,0.3); }
.value-emoji { font-size: 1.9rem; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.value-emoji svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.85rem; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-detail-label { font-size: 0.76rem; color: var(--text-dim); margin-bottom: 3px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-detail-val   { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-detail-val a { transition: color var(--transition); }
.contact-detail-val a:hover { color: var(--accent); }

.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
  text-decoration: none; color: var(--text-muted);
  box-shadow: 0 1px 6px rgba(19,11,40,0.06);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── Contact Form ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.12);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(19,11,40,0.08);
}
.form-group   { margin-bottom: 18px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(147,51,234,0.12);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--white); color: var(--text); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-error { font-size: 0.78rem; color: #dc2626; margin-top: 5px; display: none; }
.form-error.show { display: block; }

.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-success {
  display: none; text-align: center; padding: 40px;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-success-icon { font-size: 3rem; display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 52px; height: 52px; color: var(--accent); }
.about-avatar-initials { font-size: 4.5rem; font-weight: 900; color: var(--navy); letter-spacing: -0.04em; font-family: var(--font); line-height: 1; }
.coming-soon { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(147,51,234,0.2); border-radius: 50px; padding: 2px 8px; margin-left: 8px; vertical-align: middle; }
.form-success h3 { font-size: 1.3rem; }
.form-success p  { font-size: 0.9rem; }

.hp-field { display: none !important; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-img {
  display: block;
  width: 200px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.footer-brand p  { font-size: 0.87rem; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col h4   { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── Intro Overlay ── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #130b28;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

/* Animated grain — subtle depth on dark bg */
#intro::before {
  content: '';
  position: absolute;
  inset: -80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  z-index: 0;
  pointer-events: none;
  animation: grainDrift 0.7s steps(1) infinite;
}
@keyframes grainDrift {
  0%  { transform: translate(0,    0); }
  25% { transform: translate(-4px, 3px); }
  50% { transform: translate( 3px,-4px); }
  75% { transform: translate(-3px, 4px); }
}

/* Content */
.intro-inner {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Gold horizontal rules — draw outward from center symmetrically */
.intro-rule {
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, #c9a84c 28%, #f0d060 50%, #c9a84c 72%, transparent);
  opacity: 0;
}
.intro-rule-top { animation: ruleExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards; }
.intro-rule-bot { animation: ruleExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.02s forwards; }
@keyframes ruleExpand {
  from { width: 0; opacity: 0; }
  6%   { opacity: 1; }
  to   { width: clamp(260px, 38vw, 400px); opacity: 1; }
}

/* KORVA — aperture reveal: text opens outward from center */
.intro-korva {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(4.8rem, 18vw, 11rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  animation: korvaOpen 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.48s forwards;
}
@keyframes korvaOpen {
  from { opacity: 0; clip-path: inset(0 50%  0 50%); }
  6%   { opacity: 1; }
  to   { opacity: 1; clip-path: inset(0 -1%  0 -1%); }
}

/* DIGITAL — letter-spacing bloom in gold */
.intro-wordmark-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.58rem, 1.75vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: #c9a84c;
  text-align: center;
  padding-left: 0.62em;
  opacity: 0;
  animation: digitalBloom 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.86s forwards;
}
@keyframes digitalBloom {
  from { opacity: 0; letter-spacing: 0.08em; }
  to   { opacity: 1; letter-spacing: 0.62em; }
}

/* Tagline */
.intro-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  margin-top: 40px;
  opacity: 0;
  animation: tagIn 0.6s ease 1.12s forwards;
}
@keyframes tagIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── body.loading prevents flash ── */
body.loading { overflow: hidden; }

/* ── Hero element animations (fire after intro) ── */
.hero-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hero-el.visible { opacity: 1; transform: translateY(0); }

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-line.visible { opacity: 1; transform: translateY(0); }

/* ── Data-scroll animation system ── */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-scroll="fade-up"]    { transform: translateY(32px); }
[data-scroll="fade-left"]  { transform: translateX(-32px); }
[data-scroll="fade-right"] { transform: translateX(32px); }
[data-scroll="fade-scale"] { transform: scale(0.94); }

[data-scroll].in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── Process Section ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.12);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(19,11,40,0.08);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  border-color: rgba(147,51,234,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.process-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.process-body h3 { margin-bottom: 10px; }
.process-body p  { font-size: 0.9rem; }

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 60px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  width: 0; height: 0;
  border-left: 8px solid var(--border);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.process-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.process-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ── Portfolio thumbnail images ── */
.portfolio-thumb {
  background: linear-gradient(135deg, #130b28 0%, #2d1a5a 100%);
}
.portfolio-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-thumb-img {
  transform: scale(1.04);
}
.portfolio-thumb-fallback {
  background: linear-gradient(135deg, #130b28 0%, #2d1a5a 100%);
}
.portfolio-thumb-fallback::after {
  content: '↗';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.25);
}

/* ── Service arrow animation ── */
.service-link .arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.service-card:hover .service-link .arrow { transform: translateX(5px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: 1fr; }
  .why-visual        { display: none; }
  .about-hero-grid   { max-width: 100%; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .process-steps     { flex-direction: column; gap: 20px; }
  .process-connector { width: 2px; height: 30px; margin: 0 auto; }
  .process-connector::after {
    right: -4px; top: auto; bottom: -6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--border);
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .form-row      { grid-template-columns: 1fr; }
  .cta-banner    { padding: 48px 28px; }
  .section       { padding: 70px 0; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   IDENTITY + MOTION LAYER  —  LB Elite Edition
   ═══════════════════════════════════════════════════════════════ */

/* ── Space Grotesk headings ── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', var(--font); }
h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }

/* ── Sharper global gradient ── */
.grad-text {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 55%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ── Scroll Progress Bar ── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #9333ea 0%, #6366f1 50%, #9333ea 100%);
  background-size: 200% 100%;
  animation: progressShimmer 2.5s linear infinite;
  z-index: 10000;
  pointer-events: none;
  transition: width .08s linear;
}
@keyframes progressShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  left: -100px; top: -100px;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(19, 11, 40, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: width .3s cubic-bezier(.23,1,.32,1),
              height .3s cubic-bezier(.23,1,.32,1),
              border-color .25s ease,
              background .25s ease;
  will-change: left, top;
}
.cursor-dot {
  position: fixed;
  left: -100px; top: -100px;
  width: 5px; height: 5px;
  background: #9333ea;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9991;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor.hovered {
  width: 60px; height: 60px;
  background: rgba(147,51,234,.06);
  border-color: rgba(147,51,234,.45);
}
.cursor.on-dark              { border-color: rgba(250,248,244,.3); }
.cursor.on-dark.hovered      { background: rgba(250,248,244,.05); border-color: rgba(250,248,244,.55); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }
@media (hover: hover) and (pointer: fine) { body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; } }

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 32s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  padding: 0 24px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.marquee-item::after {
  content: '◆';
  font-size: 0.32rem;
  color: #c9a84c;
  flex-shrink: 0;
}

/* ── Hero: Deep Navy Aurora ── */
.hero { background: #130b28; }

.hero-mesh {
  background:
    radial-gradient(ellipse 110% 80% at 5%  25%, rgba(147, 51, 234, .22) 0%, transparent 55%),
    radial-gradient(ellipse 70%  70% at 90% 10%, rgba(192, 132, 252, .14) 0%, transparent 50%),
    radial-gradient(ellipse 80%  55% at 65% 110%,rgba(99, 102, 241, .12) 0%, transparent 50%);
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { opacity: .6; transform: scale(1); }
  50%  { opacity: 1; }
  100% { opacity: .75; transform: scale(1.05); }
}

/* Grain texture on hero */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Hero text on dark background */
.hero h1,
.hero .hero-title,
.hero .hero-line { color: var(--cream); }
.hero .hero-sub  { color: rgba(250,248,244,.62); }

.hero .grad-text {
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #93c5fd 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradPan 5s ease-in-out infinite alternate;
}
@keyframes gradPan {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero .hero-badge {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #c084fc;
  backdrop-filter: blur(12px);
}
.hero .hero-badge-dot { background: #4ade80; }

.hero .btn-outline {
  color: rgba(250,248,244,.88);
  border-color: rgba(250,248,244,.22);
  background: rgba(255,255,255,.04);
}
.hero .btn-outline:hover {
  border-color: rgba(250,248,244,.45);
  background: rgba(250,248,244,.1);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero .hero-scroll       { color: rgba(250,248,244,.28); }
.hero .hero-scroll-line  { background: linear-gradient(to bottom, rgba(250,248,244,.28), transparent); }

/* Brighter floating dots on dark bg */
.hero-dots span {
  background: radial-gradient(circle, #c084fc 0%, #818cf8 100%);
  box-shadow: 0 0 8px rgba(147,51,234,.35);
}

/* Hero content — more room for bigger text */
.hero-content { max-width: 900px; }

/* ── Stats Bar — light with navy numbers ── */
.stats-bar {
  background: var(--white);
  border-color: var(--border-light);
}
.stat-num {
  font-size: 3.2rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 55%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Scale down text-based stats so they fit */
.stat-num br { display: block; }
.stat-item:first-child .stat-num { font-size: 1.6rem; }
.stat-item:last-child  .stat-num { font-size: 2.4rem; }
.stat-label  { color: var(--text-dim); }
.stat-item   { border-right-color: var(--border-light); }

/* ── Why LB — navy section styles ── */
.section-navy              { background: var(--navy); }
.section-navy .section-label       { color: #c084fc; }
.section-navy .section-label::before {
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
}
.section-navy h2           { color: var(--cream); }
.section-navy p            { color: rgba(232,224,255,.6); }
.section-navy .why-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section-navy .why-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(147,51,234,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.section-navy .why-item h4 { color: var(--cream); }
.section-navy .why-item p  { color: rgba(232,224,255,.55); }
.section-navy .why-check {
  background: rgba(147,51,234,.18);
  border-color: rgba(147,51,234,.3);
  color: #c084fc;
}

/* ── Section label global refinement ── */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

/* ── Process numbers ── */
.process-num {
  background: linear-gradient(135deg, #9333ea 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
}

/* stat-num gradient handled in Stats Bar block above */

/* ── Enhanced card hover glow ── */
.service-card:hover,
.portfolio-card:hover,
.value-card:hover {
  box-shadow: 0 24px 64px rgba(147,51,234,.12), 0 8px 24px rgba(19,11,40,.1);
}

/* ── Portfolio result badge ── */
.portfolio-result {
  background: rgba(147,51,234,.08);
  border-color: rgba(147,51,234,.2);
  color: var(--accent);
  font-weight: 700;
}

/* ── Why Proof Stack ── */
.why-proof-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}
.why-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(192,132,252,0.18);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.why-proof-card:hover {
  border-color: rgba(192,132,252,0.4);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.why-proof-wide {
  padding: 28px 30px;
}
.why-proof-accent {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}
.why-proof-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #c084fc 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.why-proof-num-lg {
  font-size: 3.2rem;
}
.why-proof-label {
  font-size: 0.82rem;
  color: rgba(232,224,255,0.65);
  line-height: 1.5;
}
.why-proof-chip {
  display: inline-flex;
  align-items: center;
  background: var(--gold-grad);
  color: #1a1000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .why-proof-stack { max-width: 100%; }
}

/* ── Portfolio visit link ── */
.portfolio-visit {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.portfolio-visit:hover { opacity: 0.7; text-decoration: underline; }
.portfolio-visit svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Btn ripple on click ── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 1;
  pointer-events: none;
}
.btn:active::after {
  animation: btnRipple .5s ease forwards;
}
@keyframes btnRipple {
  to { width: 320px; height: 320px; opacity: 0; transform: translate(-50%,-50%) scale(1); }
}

/* ── About avatar ring ── */
.about-avatar {
  box-shadow: 0 0 0 6px rgba(147,51,234,.08), 0 16px 56px rgba(19,11,40,.14);
}

/* Intro overrides handled in the intro block above */

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease,
              background 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(19, 11, 40, 0.22);
}
.back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #7e22ce;
  box-shadow: 0 6px 28px rgba(147, 51, 234, 0.4);
  transform: translateY(-3px);
}

/* ── Section background numbers ── */
body { counter-reset: section-counter; }

.section-numbered {
  counter-increment: section-counter;
  position: relative;
  overflow: hidden;
}
.section-numbered > .container {
  position: relative;
  z-index: 1;
}
.section-numbered::before {
  content: counter(section-counter, decimal-leading-zero);
  position: absolute;
  top: -0.12em;
  right: -0.03em;
  font-family: 'Space Grotesk', var(--font);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--navy);
  opacity: 0.038;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-navy.section-numbered::before {
  color: #ffffff;
  opacity: 0.05;
}

/* ── Floating Form Labels ── */
.form-float {
  position: relative;
}
.form-float .form-input,
.form-float .form-textarea {
  padding-top: 22px;
  padding-bottom: 8px;
}
.form-float .form-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  pointer-events: none;
  transition: top 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              font-size 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.22s ease,
              letter-spacing 0.22s ease;
}
.form-float .form-input:focus ~ .form-label,
.form-float .form-input:not(:placeholder-shown) ~ .form-label,
.form-float .form-textarea:focus ~ .form-label,
.form-float .form-textarea:not(:placeholder-shown) ~ .form-label {
  top: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Side Progress Indicator ── */
#sideProgress {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#sideProgress.sp-visible {
  opacity: 1;
  pointer-events: auto;
}
.sp-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 6px 0;
}
/* The line behind the dots */
.sp-track::before {
  content: '';
  position: absolute;
  top: 6px; bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  background: rgba(19, 11, 40, 0.1);
  border-radius: 2px;
}
.sp-fill {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 0%;
  background: linear-gradient(to bottom, #9333ea, #c084fc);
  border-radius: 2px;
  transition: height 0.12s linear;
  pointer-events: none;
}
/* Each section dot */
.sp-dot {
  position: relative;
  z-index: 1;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(19, 11, 40, 0.18);
  border: 1.5px solid rgba(19, 11, 40, 0.15);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  font-family: var(--font);
}
.sp-dot:hover::after,
.sp-dot.sp-active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.sp-dot:hover {
  background: rgba(147, 51, 234, 0.3);
  border-color: #9333ea;
  transform: scale(1.3);
}
.sp-dot.sp-active {
  background: #9333ea;
  border-color: #9333ea;
  width: 9px; height: 9px;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2),
              0 0 10px rgba(147, 51, 234, 0.3);
}
/* Hide on mobile — not enough room */
@media (max-width: 1024px) {
  #sideProgress { display: none; }
}

/* ── h1 in hero: visibility driven by word children, not parent fade ── */
h1.hero-el {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── Nav hover underline ── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ═══════════════════════════════════════════════════
   ANIMATION UPGRADE PACK
═══════════════════════════════════════════════════ */

/* ── Featured "New" service card ── */
.service-card--new {
  position: relative;
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 25, 60, 0.95) 100%);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2),
              0 8px 32px rgba(59, 130, 246, 0.12),
              inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.service-card--new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(147,51,234,0.2) 0%, transparent 70%);
  pointer-events: none;
}
/* "New" badge */
.service-badge-new {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  box-shadow: 0 2px 8px rgba(147,51,234,0.4);
  animation: badgePulse 2.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(147,51,234,0.4); }
  50%       { box-shadow: 0 2px 18px rgba(147,51,234,0.7), 0 0 0 4px rgba(147,51,234,0.1); }
}

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL POLISH — classy, modern refinements across all sections
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Section label refinement ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.section-header h2 { margin-top: 0; }

/* ── Stats bar — more refined ── */
.stats-bar { padding: 52px 0; }
.stat-num  { font-size: 2.6rem; letter-spacing: -0.04em; }
.stat-label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; }

/* ── Service cards — elevated feel ── */
.service-card {
  border-radius: 18px;
  padding: 40px 32px;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-dim) 0%, rgba(99,102,241,0.08) 100%);
  border: 1px solid rgba(147,51,234,0.18);
}
.service-card h3 { font-size: 1.15rem; }
.service-mini-list li {
  font-size: 0.87rem;
  padding-left: 20px;
  color: var(--text-muted);
}
.service-mini-list li::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}
.section-navy .service-mini-list li { color: var(--text-muted); }
.section-navy .service-mini-list li::before { color: var(--accent); }
.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── Portfolio cards — premium image area ── */
.portfolio-card { border-radius: 18px; }
.portfolio-thumb { height: 200px; border-radius: 0; }
.portfolio-tag {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  border: 1px solid rgba(147,51,234,0.2);
}
.portfolio-body { padding: 28px; }
.portfolio-card h3 { font-size: 1.1rem; }
.portfolio-result {
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(147,51,234,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  background: rgba(147,51,234,0.05);
}
.portfolio-visit {
  font-size: 0.82rem;
  font-weight: 700;
  gap: 7px;
  margin-top: 16px;
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  background: var(--accent-dim);
  transition: var(--transition);
}
.portfolio-visit:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  gap: 10px;
}

/* ── Process steps — premium numbered cards ── */
.process-step { border-radius: 18px; padding: 40px 34px; }
.process-num  {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.process-step:hover { border-color: rgba(147,51,234,0.25); }
.process-connector { background: linear-gradient(90deg, rgba(147,51,234,0.3), rgba(99,102,241,0.15)); }
.process-connector::after { border-left-color: rgba(147,51,234,0.4); }

/* ── Why section — refined items ── */
.why-item { border-radius: 12px; padding: 20px 22px; }
.why-check {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.22);
  font-size: 0.8rem;
}

/* ── Values grid — refined cards ── */
.value-card { border-radius: 18px; padding: 32px 24px; }
.value-emoji svg { width: 32px; height: 32px; }

/* ── CTA banner — richer gradient ── */
.cta-banner {
  border-radius: 28px;
  padding: 88px 72px;
}
.cta-banner::before {
  background:
    radial-gradient(ellipse 70% 90% at 30% 50%, rgba(147,51,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(99,102,241,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 60% 80%, rgba(147,51,234,0.1) 0%, transparent 50%);
}
.cta-banner h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; }
.cta-banner p  { font-size: 1.05rem; opacity: 0.75; }

/* ── Contact form — polished card ── */
.contact-form-card {
  border-radius: 20px;
  padding: 44px;
  border: 1px solid rgba(147,51,234,0.12);
  box-shadow: 0 8px 40px rgba(100,40,180,0.1);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(147,51,234,0.1);
}
.cert-card { border-radius: 12px; border: 1px solid rgba(147,51,234,0.15); }

/* ── Footer — refined ── */
.footer { padding: 72px 0 36px; }
.footer-col h4 { letter-spacing: 0.1em; font-size: 0.76rem; color: rgba(255,255,255,0.85); }
.footer-col ul li a { font-size: 0.88rem; }
.footer-copy { font-size: 0.8rem; }

/* ── Section spacing ── */
.section { padding: 110px 0; }
.section-alt { background: var(--cream-2); }

/* ── Headings — tighter, more refined ── */
h2 { letter-spacing: -0.03em; }
h3 { letter-spacing: -0.01em; }

/* ── Remove old raven CSS (no longer used) ── */
.why-raven-frame,
.why-raven-glow,
.why-raven-svg { display: none; }

/* Service icon pop-in on hover */
@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.28) rotate(-6deg); }
  70%  { transform: scale(0.93) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.service-card:hover .service-icon {
  animation: iconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Card spotlight for ALL service cards ── */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(59, 130, 246, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover::after {
  opacity: 1;
}
/* Featured card gets a brighter spotlight */
.service-card--new::after {
  background: radial-gradient(300px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(96, 165, 250, 0.18), transparent 65%);
}

/* ── Blur-fade scroll animation type ── */
[data-scroll="fade-blur"] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}
[data-scroll="fade-blur"].in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── CTA ambient particles ── */
.cta-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.cta-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.55);
  pointer-events: none;
  animation: ctaDotFloat var(--dur, 6s) var(--delay, 0s) ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes ctaDotFloat {
  0%   { transform: translateY(0)   scale(1);    opacity: 0.15; }
  50%  { transform: translateY(-22px) scale(1.2); opacity: 0.45; }
  100% { transform: translateY(8px)  scale(0.85); opacity: 0.1; }
}

/* ── Mobile nav — dark ── */
.nav-mobile {
  background: #130b28;
  backdrop-filter: none;
}
.nav-mobile a {
  color: rgba(250,248,244,.82);
  font-size: 1.4rem;
}
.nav-mobile a:hover { color: #c084fc; }
.nav-mobile .btn-primary { margin-top: 8px; }

/* ── Hero word-split animation ── */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
  margin-right: 0.22em;
}
.hero-word {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity  0.5s ease;
}
/* When a hero-line is split, disable line-level animation */
.hero-line.split {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Trigger word reveal when .visible is added */
.hero-line.split.visible .hero-word {
  transform: translateY(0);
  opacity: 1;
}

/* ── Nav: logo image looks good on both dark and light nav backgrounds ── */
.nav:not(.scrolled) .nav-logo-img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.nav:not(.scrolled) .nav-links a {
  color: rgba(250, 248, 244, 0.65);
}
.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links a.active {
  color: var(--cream);
}
.nav:not(.scrolled) .nav-links a::after {
  background: var(--cream);
}
.nav:not(.scrolled) .nav-hamburger span {
  background: rgba(250, 248, 244, 0.9);
}

/* ── Nav on pages without a dark hero (contact, etc.) ── */
body.page-no-hero .nav:not(.scrolled) {
  background: rgba(253, 252, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(19,11,40,0.08);
}
body.page-no-hero .nav:not(.scrolled) .nav-logo-img {
  filter: none;
}
body.page-no-hero .nav:not(.scrolled) .nav-links a {
  color: var(--text-muted);
}
body.page-no-hero .nav:not(.scrolled) .nav-links a:hover,
body.page-no-hero .nav:not(.scrolled) .nav-links a.active {
  color: var(--navy);
}
body.page-no-hero .nav:not(.scrolled) .nav-links a::after {
  background: var(--accent);
}
body.page-no-hero .nav:not(.scrolled) .nav-hamburger span {
  background: var(--navy);
}
body.page-no-hero .nav:not(.scrolled) .nav-dropdown-toggle {
  color: var(--text-muted);
}

/* ── CTA section spacing ── */
.cta-section { padding: 60px 0; }
.cta-section .cta-banner { border-radius: 20px; }

/* ── Fix blue spotlight on regular cards to purple ── */
.service-card::after {
  background: radial-gradient(260px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(147, 51, 234, 0.07), transparent 65%);
}

/* ── Fix CTA ambient dots to purple ── */
.cta-dot { background: rgba(192, 132, 252, 0.45); }

/* ── Mobile nav link hover: purple not blue ── */
.nav-mobile a:hover { color: #c084fc; }

/* ── Gold accent: section label dot ── */
.section-label::before { background: var(--gold); }

/* ═══════════════════════════════════════
   FEATURED SERVICE CARDS (SEO + Web Design)
   ═══════════════════════════════════════ */

/* Services grid: 2 featured top row, 3 secondary bottom */
.services-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured card — elevated, gold-accented top bar */
.service-card--featured {
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: 0 4px 28px rgba(147,51,234,0.1), 0 0 0 1px rgba(201,168,76,0.15);
}
.service-card--featured::before {
  background: var(--gold-grad);
  transform: scaleX(1);
}
.service-card--featured .service-icon {
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--accent-dim) 100%);
  border-color: rgba(201, 168, 76, 0.25);
}
.service-card--featured:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 24px 64px rgba(147,51,234,0.14), 0 0 0 1px rgba(201,168,76,0.3);
}

/* Featured badge — gold pill in top-right */
.service-badge-primary {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #130b28;
  background: var(--gold-grad);
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
}

/* Secondary cards — slightly more compact */
.services-secondary .service-card {
  padding: 30px 26px;
}
.services-secondary .service-card h3 { font-size: 1.05rem; }
.services-secondary .service-icon { width: 46px; height: 46px; }

/* Gold footer accent line */
.footer-bottom {
  border-top-color: rgba(201, 168, 76, 0.15);
}

/* Gold on stat bar separators */
.stat-item { border-right-color: rgba(201, 168, 76, 0.2); }

@media (max-width: 900px) {
  .services-primary  { grid-template-columns: 1fr; }
  .services-secondary { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-primary  { gap: 16px; }
  .services-secondary { grid-template-columns: 1fr; gap: 16px; }
  .services-secondary .service-card { padding: 26px 22px; }
}

/* ═══════════════════════════════════════
   CASE STUDY CARDS (Results section)
   ═══════════════════════════════════════ */

.case-study-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case-study-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(147,51,234,0.07);
  transition: var(--transition);
}
.case-study-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 48px rgba(147,51,234,0.12), 0 0 0 1px rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

/* ── Top panel (header strip) ── */
.case-study-panel {
  position: relative;
  width: 100%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
  overflow: hidden;
  min-height: 140px;
}

/* Large decorative initial letter */
.case-study-panel-initial {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Space Grotesk', var(--font);
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.045);
  pointer-events: none;
  user-select: none;
}

/* Content stacked above the gold bar */
.case-study-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-panel-number {
  font-family: 'Space Grotesk', var(--font);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-study-panel-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.case-study-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cs-panel-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}

/* Gold bar at bottom of panel */
.case-study-panel-gold-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}

/* Body pane */
.case-study-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.case-study-industry {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.case-study-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}

.case-study-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-study-block-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.case-study-block p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.case-study-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.case-study-list-items li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.case-study-list-items li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Gold result bar */
.case-study-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.28);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.case-study-result svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

/* Site link */
.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(147,51,234,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  background: var(--accent-dim);
  transition: var(--transition);
  align-self: flex-start;
  margin-top: auto;
}
.case-study-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  gap: 10px;
}
.case-study-link svg { width: 11px; height: 11px; flex-shrink: 0; }

/* Tablet: collapse to 1 column */
@media (max-width: 900px) {
  .case-study-list { grid-template-columns: 1fr; }
  .case-study-panel {
    min-height: 120px;
    padding: 24px 28px 20px;
  }
  .case-study-panel-gold-bar { display: none; }
  .case-study-body { padding: 26px 28px; }
  .case-study-sections { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .case-study-panel { padding: 24px 20px; gap: 16px; }
  .case-study-panel-initial { font-size: 3rem; }
  .case-study-body { padding: 22px 20px; gap: 16px; }
  .case-study-name { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════
   GOLD CTA BANNER
   ═══════════════════════════════════════ */

.cta-banner--gold {
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12),
              0 20px 60px rgba(147,51,234,0.2),
              inset 0 1px 0 rgba(201,168,76,0.15);
}

/* Gold top bar */
.cta-gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 28px 28px 0 0;
}

/* Corner accents */
.cta-gold-corner {
  position: absolute;
  width: 28px; height: 28px;
  pointer-events: none;
}
.cta-gold-corner--tl { top: 12px; left: 16px; border-top: 2px solid rgba(201,168,76,0.6); border-left: 2px solid rgba(201,168,76,0.6); border-radius: 4px 0 0 0; }
.cta-gold-corner--tr { top: 12px; right: 16px; border-top: 2px solid rgba(201,168,76,0.6); border-right: 2px solid rgba(201,168,76,0.6); border-radius: 0 4px 0 0; }
.cta-gold-corner--bl { bottom: 12px; left: 16px; border-bottom: 2px solid rgba(201,168,76,0.6); border-left: 2px solid rgba(201,168,76,0.6); border-radius: 0 0 0 4px; }
.cta-gold-corner--br { bottom: 12px; right: 16px; border-bottom: 2px solid rgba(201,168,76,0.6); border-right: 2px solid rgba(201,168,76,0.6); border-radius: 0 0 4px 0; }

/* Gold label chip above h2 */
.cta-gold-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* Gold button */
.btn-gold {
  background: var(--gold-grad);
  color: #130b28;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  filter: brightness(1.06);
}

/* ═══════════════════════════════════════
   MORE GOLD BARS THROUGHOUT
   ═══════════════════════════════════════ */

/* Gold bar under section h2 headings */
.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin-top: 14px;
}
.section-header.center h2::after { margin-left: auto; margin-right: auto; }

/* Gold process number highlight */
.process-num {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold check marks in why-section */
.section-navy .why-check {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
}

/* Gold accent on nav CTA button */
.nav-cta.btn-primary {
  background: var(--gold-grad);
  color: #130b28;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.nav-cta.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(201,168,76,0.5);
}

/* Gold on process CTA button */
.process-cta .btn-primary {
  background: var(--gold-grad);
  color: #130b28;
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}
.process-cta .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}

/* Gold divider line above stats bar */
.stats-bar {
  border-top: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)),
                    var(--gold-grad);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

/* Mobile: cta banner */
@media (max-width: 768px) {
  .cta-gold-corner { display: none; }
  .cta-banner--gold { padding: 52px 28px; }
  .section-header h2::after { width: 30px; margin-top: 10px; }
}

/* ── Industry Stats Section ── */
.industry-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.industry-stat {
  padding: 44px 32px;
  background: transparent;
  border-right: 1px solid rgba(147,51,234,0.15);
  transition: background 0.3s ease;
}

.industry-stat:last-child {
  border-right: none;
}

.industry-stat:hover {
  background: rgba(147,51,234,0.04);
}

.industry-stat-num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.industry-stat-unit {
  font-size: 60%;
  font-weight: 700;
}

.industry-stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.industry-stat-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* On dark sections keep light text */
.section-navy .industry-stat-desc { color: rgba(232,224,255,0.75); }
.section-navy .industry-stat-source { color: var(--gold); opacity: 0.8; }
.section-navy .industry-stat { border-right-color: rgba(147,51,234,0.2); }
.section-navy .industry-stat:hover { background: rgba(255,255,255,0.06); }
.section-navy .industry-stats-grid { border-color: rgba(147,51,234,0.2); }

@media (max-width: 900px) {
  .industry-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-stat:nth-child(2) { border-right: none; }
  .industry-stat:nth-child(1),
  .industry-stat:nth-child(2) {
    border-bottom: 1px solid rgba(147,51,234,0.2);
  }
}

@media (max-width: 540px) {
  .industry-stats-grid { grid-template-columns: 1fr; }
  .industry-stat { border-right: none; border-bottom: 1px solid rgba(147,51,234,0.2); }
  .industry-stat:last-child { border-bottom: none; }
  .industry-stat:nth-child(2) { border-right: none; }
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(147,51,234,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover { border-color: rgba(147,51,234,0.22); }
.faq-item.open { border-color: rgba(147,51,234,0.28); box-shadow: 0 4px 20px rgba(147,51,234,0.08); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--navy); line-height: 1.45;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(147,51,234,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; line-height: 1; color: var(--accent); font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(147,51,234,0.18); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 26px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
/* Dark section */
.section-navy .faq-item { background: rgba(255,255,255,0.05); border-color: rgba(147,51,234,0.18); }
.section-navy .faq-item:hover { border-color: rgba(147,51,234,0.3); }
.section-navy .faq-item.open { background: rgba(255,255,255,0.08); border-color: rgba(147,51,234,0.35); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.section-navy .faq-question { color: rgba(232,224,255,0.9); }
.section-navy .faq-question:hover { color: #c084fc; }
.section-navy .faq-icon { background: rgba(147,51,234,0.18); border-color: rgba(147,51,234,0.25); color: #c084fc; }
.section-navy .faq-item.open .faq-icon { background: rgba(147,51,234,0.3); }
.section-navy .faq-answer-inner { color: rgba(232,224,255,0.65); }

/* ═══════════════════════════════════════
   MOBILE CTA STRIP
   ═══════════════════════════════════════ */
.mobile-cta-strip {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(19,11,40,0.97);
  border-top: 1px solid rgba(147,51,234,0.22);
  z-index: 980;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-cta-strip.visible { transform: translateY(0); }
.mobile-cta-strip .btn { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; }
@media (max-width: 767px) { .mobile-cta-strip { display: block; } }

/* ═══════════════════════════════════════
   HERO AUDIT FORM
   ═══════════════════════════════════════ */
.hero-audit-form { margin-top: 28px; }
.hero-audit-label {
  font-size: 0.75rem; color: rgba(232,224,255,0.42);
  text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-bottom: 10px;
}
.audit-input-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch; }
.audit-input {
  flex: 1; min-width: 150px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(192,132,252,0.18);
  border-radius: 10px; color: #fff;
  font-family: var(--font); font-size: 0.875rem;
  outline: none; -webkit-appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.audit-input::placeholder { color: rgba(232,224,255,0.35); }
.audit-input:focus { border-color: rgba(192,132,252,0.45); background: rgba(255,255,255,0.1); }
@media (max-width: 600px) { .audit-input-row { flex-direction: column; } .audit-input, .audit-input-row .btn { width: 100%; min-width: 0; } }

/* ═══════════════════════════════════════
   HERO KEYWORD LABEL
   ═══════════════════════════════════════ */
.hero-kw {
  display: block; font-size: 0.8em; font-weight: 700;
  letter-spacing: 0.05em; color: rgba(232,224,255,0.5);
  margin-bottom: 10px; text-transform: uppercase;
}

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; margin-top: 48px; }
.blog-card {
  background: var(--white); border: 1px solid rgba(147,51,234,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 16px rgba(19,11,40,0.06);
}
.blog-card:hover { border-color: rgba(147,51,234,0.22); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(147,51,234,0.1); }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-dim); }
.blog-card-category { background: var(--accent-dim); color: var(--accent); padding: 3px 10px; border-radius: 20px; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; color: var(--navy); transition: color 0.2s ease; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.blog-card-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; transition: gap 0.2s ease; }
.blog-card:hover .blog-card-link { gap: 10px; }
.blog-post-body { padding: 40px 0 100px; }
.blog-content { max-width: 720px; margin: 0 auto; }
.blog-content h2 { font-size: 1.5rem; color: var(--navy); margin: 40px 0 16px; }
.blog-content h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 10px; }
.blog-content p { margin-bottom: 18px; font-size: 0.97rem; }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; }
.blog-content li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.blog-content a { color: var(--accent); text-decoration: underline; }
.blog-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.85rem; margin-bottom: 32px; transition: color 0.2s ease; }
.blog-back:hover { color: var(--accent); }
.blog-cta-box { background: var(--navy); border: 1px solid rgba(147,51,234,0.25); border-radius: var(--radius); padding: 36px 40px; margin: 48px 0; text-align: center; }
.blog-cta-box h3 { color: #fff; margin-bottom: 10px; }
.blog-cta-box p { color: rgba(232,224,255,0.65); margin-bottom: 24px; }
.blog-post-header { background: var(--navy); padding: 120px 0 64px; position: relative; overflow: hidden; }
.blog-post-header .hero-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(147,51,234,0.25) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 80% 30%, rgba(109,40,217,0.2) 0%, transparent 60%); }
.blog-post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-post-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.03em; color: #fff; margin-bottom: 16px; }
.blog-post-desc { font-size: 1.05rem; color: rgba(232,224,255,0.7); max-width: 680px; line-height: 1.7; }
