.home-power-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-power-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.35;
  text-decoration: none;
}
.home-power-links a .icon {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.2;
  flex: 0 0 auto;
}
.home-power-links a:hover {
  background: #dbeafe;
}

.related-services-block {
  margin: 22px 0 26px;
  padding: 20px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #f8fbff;
}
.related-services-list {
  margin: 12px 0 0;
  padding-left: 18px;
}
.related-services-list li {
  margin: 8px 0;
}
.related-services-list a {
  color: #1d4ed8;
  font-weight: 600;
}
/* SMR ONEWAY - Premium Static Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
  --bg-0: #050814;
  --bg-1: #0a1224;
  --surface: #0f1b2d;
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --primary-strong: #1d4ed8;
  --secondary: #2563eb;
  --accent: #22c55e;
  --white: #ffffff;
  --foreground: #f1f5f9;
  --muted: rgba(241,245,249,0.75);
  --muted-soft: rgba(245, 248, 255, 0.72);
  --line: rgba(255,255,255,0.08);
  --electric: #2563eb;
  --cyan: #60a5fa;
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.28), 0 18px 50px rgba(37, 99, 235, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--foreground);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
p {
  color: rgba(241,245,249,0.8);
}
a {
  color: #60a5fa;
}
a:hover {
  color: #93c5fd;
}
img {
  max-width: 100%;
  height: auto;
}
body::before {
  content: '';
  position: fixed;
  inset: -20% -15% auto -15%;
  height: 70vh;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,0.2), transparent 52%),
    radial-gradient(circle at 85% 10%, rgba(59,130,246,0.16), transparent 48%);
  filter: blur(12px);
  animation: sectionAura 12s ease-in-out infinite alternate;
}
@keyframes sectionAura {
  0% { transform: translateX(-2%) translateY(0); opacity: 0.62; }
  100% { transform: translateX(2%) translateY(10px); opacity: 0.95; }
}

::selection {
  background: rgba(30, 107, 255, 0.35);
  color: #fff;
}

/* Chatbot input */
.ai-input-wrap { display: flex; gap: 0.5rem; padding: 0.5rem 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.ai-input { flex: 1; padding: 0.5rem 0.75rem; font-size: 0.8125rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 0.5rem; background: rgba(0,0,0,0.3); color: #fff; }
.ai-input::placeholder { color: rgba(255,255,255,0.5); }
.ai-send-btn { padding: 0.5rem 0.75rem; font-size: 0.75rem; font-weight: 600; background: var(--electric); color: #fff; border: none; border-radius: 0.5rem; cursor: pointer; min-height: 44px; min-width: 44px; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5,8,20,0.42);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.header.scrolled {
  background: rgba(5,8,20,0.92);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.header {
  overflow: visible;
}
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}
.mobile-nav-toggle span,
.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  content: '';
}
.mobile-nav-toggle span::before { transform: translateY(-6px); }
.mobile-nav-toggle span::after { transform: translateY(4px); }
.mobile-nav-toggle.open span { background: transparent; }
.mobile-nav-toggle.open span::before { transform: rotate(45deg); }
.mobile-nav-toggle.open span::after { transform: rotate(-45deg) translateY(-1px); }
.mobile-nav-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--mobile-header-h, 3.5rem);
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 44;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-drawer {
  position: fixed;
  top: var(--mobile-header-h, 3.5rem);
  left: 0;
  right: 0;
  width: 100%;
  max-height: min(85vh, calc(100dvh - var(--mobile-header-h, 3.5rem) - 12px));
  height: auto;
  background: rgba(10,22,48,0.98);
  border-right: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 1rem 1rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.35s ease;
  z-index: 46;
  padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  pointer-events: none;
}
.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.mobile-nav-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}
.mobile-nav-links {
  display: grid;
  gap: 0.5rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.62rem 0.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.mobile-nav-link-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(147,197,253,0.95);
}
.mobile-nav-link-icon svg {
  width: 22px;
  height: 22px;
}
.mobile-nav-link-icon--emoji {
  width: 1.5rem;
  font-size: 1.15rem;
  line-height: 1;
}
.mobile-nav-link-text {
  flex: 1;
  min-width: 0;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(37,99,235,0.2);
  border-color: rgba(96,165,250,0.65);
  transform: translateX(2px);
}
.mobile-accordion {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.mobile-accordion-btn {
  width: 100%;
  min-height: 48px;
  padding: 0.68rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.mobile-accordion-btn-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(147,197,253,0.95);
}
.mobile-accordion-btn-icon svg {
  width: 22px;
  height: 22px;
}
.mobile-accordion-btn-text {
  flex: 1;
  text-align: left;
}
.mobile-accordion-btn::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
}
.mobile-accordion.open .mobile-accordion-btn::after {
  transform: rotate(45deg);
}
.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-accordion.open .mobile-accordion-panel {
  max-height: 640px;
}
.mobile-accordion-panel .mobile-nav-link {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  min-height: 46px;
  padding: 0.58rem 0.85rem 0.58rem 1rem;
}
.mobile-accordion-panel .mobile-nav-link:last-child {
  border-bottom: none;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--bg-1);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.logo-box img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { line-height: 1.2; }
.logo-text strong { font-family: 'Poppins', sans-serif; font-size: 0.875rem; color: #fff; }
.logo-text span { font-size: 0.625rem; color: rgba(255,255,255,0.6); }


.nav { display: none; gap: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #dbeafe; }

.nav a.nav-cta {
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #050814;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav a.nav-cta::after { display: none; }
.nav a.nav-cta:hover { background: #e2e8f0; transform: translateY(-1px); }

.nav a.nav-cta.nav-contact-cta {
  gap: 0.42rem;
}
.nav-contact-cta__icon {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.nav-contact-cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-contact-cta__text {
  line-height: 1;
}

/* Services / Trainings dropdown: compact glass panel, centered under trigger (not full-width). */
.nav-dropdown {
  position: relative;
}
.nav-dropdown.open {
  z-index: 1200;
}
.header .nav .nav-dropdown:not(.open) .nav-dropdown-menu {
  display: none !important;
}
/* Shared open/close animation; dimensions live on .services-dropdown / .trainings-dropdown */
.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  right: auto;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(6px);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-dropdown.open .nav-dropdown-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  pointer-events: auto;
}


.services-dropdown,
.trainings-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  border-radius: 20px;
  background: rgba(6, 10, 24, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 8px;
  z-index: 1000;
}
.services-dropdown {
  width: min(720px, calc(100vw - 32px));
  max-width: min(720px, calc(100vw - 32px));
  padding: 18px;
  grid-template-columns: repeat(2, 1fr);
}
.trainings-dropdown {
  width: min(360px, calc(100vw - 32px));
  max-width: min(360px, calc(100vw - 32px));
  grid-template-columns: 1fr;
  padding: 14px;
}
.nav-dropdown.open .nav-dropdown-menu.services-dropdown,
.nav-dropdown.open .nav-dropdown-menu.trainings-dropdown,
.nav-dropdown.open .nav-dropdown-menu {
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu.services-dropdown .nav-dropdown-panel,
.nav-dropdown-menu.trainings-dropdown .nav-dropdown-panel {
  display: contents;
}
/* Fallback: menus without new class names (old inline nav) */
.nav-dropdown-menu:not(.services-dropdown):not(.trainings-dropdown) {
  width: min(720px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(6, 10, 24, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: block;
}
.nav-dropdown-menu:not(.services-dropdown):not(.trainings-dropdown) .nav-dropdown-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.nav-dropdown-panel {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-dropdown-panel p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 0.5rem;
  margin: 0;
}
.header .nav .dropdown-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 0;
  max-height: none;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.3;
  color: #e5e7eb;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.header .nav .dropdown-item::after {
  content: '\203A';
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(148, 163, 184, 0.55);
  flex-shrink: 0;
  line-height: 1;
}
.header .nav .dropdown-item:hover {
  background: rgba(96, 165, 250, 0.1);
  color: #ffffff;
  border: none;
}
.header .nav .dropdown-item:hover::after {
  color: rgba(165, 180, 252, 0.85);
}
.nav-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}
.nav-service-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  font-size: 0.95rem;
  line-height: 1;
  flex: 0 0 auto;
}






/* Main */
main { min-height: calc(100vh - 4rem - 200px); }

/* Services page: High-Intent Hyderabad landing pages */
.intent-pages-section {
  max-width: 1180px;
  margin: 80px auto;
  padding: 42px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 13, 30, 0.96));
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}
.intent-pages-section::before {
  content: '';
  position: absolute;
  inset: -120px auto auto -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 65%);
  pointer-events: none;
}
.intent-pages-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 28px;
}
.intent-pages-head .intent-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.intent-pages-head h2 {
  color: #f8fafc;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}
.intent-pages-head p {
  color: #aab6ca;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.intent-pages-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.intent-page-card {
  min-height: 190px;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.intent-page-card:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.48);
}
.intent-page-card strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
  margin: 14px 0 10px;
}
.intent-page-card p {
  color: #aab6ca;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.intent-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.12);
  font-size: 1.1rem;
  line-height: 1;
}
.intent-arrow {
  display: inline-flex;
  margin-top: 18px;
  align-self: flex-end;
  color: #60a5fa;
  font-weight: 800;
}



/* Sections */
.section { padding: 60px 0; margin-bottom: 80px; }

main > .section:last-child { margin-bottom: 0; }
.section-border { border-top: 1px solid rgba(255,255,255,0.05); }
.section,
.card {
  overflow-wrap: anywhere;
}

/* Services zig-zag layout */
.service-zigzag {
  display: grid;
  gap: 1.1rem;
}
.service-zigzag-item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.service-zigzag-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 230px;
  background: rgba(255,255,255,0.04);
}
.media-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 230px;
}
.media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease-in-out, transform 0.9s ease-in-out;
}
.media-slide.active {
  opacity: 1;
  transform: scale(1);
}
.media-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}
.media-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.32);
}
.media-dot.active {
  background: #fff;
}

/* Service detail: full-width slideshow + A4-style copy (all breakpoints) */
.service-detail-layout .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-page-slider-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.service-page-slider.media-slider {
  min-height: 220px;
}

.service-sheet {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 1.35rem 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  color: #f1f5f9;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 12px 32px rgba(15,23,42,0.12),
    0 0 0 1px rgba(15,23,42,0.04);
  backdrop-filter: none;
}
.service-sheet.card::before {
  display: none;
}
.service-page-slider .media-slide {
  object-fit: contain;
  background: rgba(8,12,28,0.35);
}
.service-sheet .eyebrow {
  color: #1d4ed8;
}
.service-sheet .section-title {
  color: #0f172a;
}
.service-sheet .section-subtitle {
  color: #334155;
}
.service-sheet-h2 {
  font-size: 1.15rem !important;
  margin-top: 1.25rem;
  color: #0f172a !important;
}
.service-sheet-list {
  color: #334155;
}
.service-sheet-list li {
  border-bottom: 1px dashed rgba(15,23,42,0.12);
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}
.service-sheet .btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}


/* Home — services strip hint + gentle card motion */
.service-grid-hint {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(147,197,253,0.95);
  animation: serviceHintPulse 2.4s ease-in-out infinite;
}
@keyframes serviceHintPulse {
  0%, 100% { opacity: 0.75; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}
@keyframes serviceCardIdle {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.08); }
  50% { box-shadow: 0 0 0 1px rgba(96,165,250,0.35), 0 10px 28px rgba(37,99,235,0.14); }
}
.service-zigzag-content p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--muted-soft);
  line-height: 1.65;
}
.service-zigzag-content ul {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.service-zigzag-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}
.service-zigzag-content li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
}

/* Services overview — icon row + animated “code flow” connectors */
.service-feature-flow {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0.35rem;
  flex-wrap: wrap;
}
.service-flow-node {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(147, 197, 253, 0.4);
  color: #e0e7ff;
}
.service-flow-node svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.service-flow-connector {
  flex: 1;
  min-width: 1.5rem;
  max-width: 4rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.85), rgba(37, 99, 235, 0.2));
  background-size: 180% 100%;
  animation: codeFlowShine 2.5s ease-in-out infinite;
  opacity: 0.9;
}
@keyframes codeFlowShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.service-zigzag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.services-demo-section {
  scroll-margin-top: 5.5rem;
}
.services-demo-card .form-label {
  color: rgba(255, 255, 255, 0.82);
}
.services-demo-card .form-input,
.services-demo-card .form-textarea {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Services page — light theme + warm accent (readable titles) */
body.page-services::before {
  display: none;
}
body.page-services {
  background: #0b1020;
  color: #ffffff;
}
.page-services main .section {
  padding: 5rem 0;
}

.page-services .section-title {
  color: #ffffff;
}
.page-services .eyebrow {
  color: #f59e0b;
}
.page-services .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}
.page-services .card.service-zigzag-item {
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}
.page-services .service-zigzag-content .section-title {
  color: #0f172a;
}
.page-services .service-zigzag-content p,
.page-services .service-zigzag-content li {
  color: #334155;
}
.page-services .service-zigzag-content .eyebrow {
  color: #b45309;
}
.page-services .service-zigzag-content li::before {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.page-services .service-flow-node {
  background: rgba(254, 215, 170, 0.72);
  border-color: rgba(245, 158, 11, 0.45);
  color: #9a3412;
}
.page-services .media-dots .media-dot {
  border-color: rgba(15, 23, 42, 0.35);
  background: rgba(15, 23, 42, 0.12);
}
.page-services .media-dots .media-dot.active {
  background: #ea580c;
  border-color: #c2410c;
}

/* Services index: core service pages hub (glass + link grid) */
.page-services .page-services-core-hubs {
  max-width: 820px;
  margin: 34px auto 26px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 32%),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.page-services .page-services-core-hubs__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #f59e0b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-services .page-services-core-hubs__desc {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-services .page-services-core-hubs__desc a {
  color: #c084fc;
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 132, 252, 0.35);
}

.page-services .page-services-core-hubs__desc a:hover {
  color: #e9d5ff;
  border-bottom-color: rgba(233, 213, 255, 0.5);
}

.page-services .core-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-services .core-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.38);
  color: #e5edff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-services .core-service-links a .icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: #93c5fd;
  stroke: currentColor;
}

.page-services .core-service-links a span {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.page-services .core-service-links a::after {
  content: "→";
  color: #60a5fa;
  font-weight: 900;
  flex-shrink: 0;
}

.page-services .core-service-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(30, 41, 59, 0.7);
}

.page-services .services-page-hero-ctas {
  margin-top: 0.5rem;
}



.services-modern-wrap {
  margin-top: 2.5rem;
}
.services-modern-grid,
.page-services .services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}


.services-modern-card {
  border-radius: 1.1rem;
  padding: 1.35rem 1.15rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.services-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(245, 158, 11, 0.24);
  border-color: rgba(245, 158, 11, 0.55);
}
.services-modern-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.25), rgba(249, 115, 22, 0.16));
  color: #c2410c;
  border: 1px solid rgba(251, 146, 60, 0.35);
}
.services-modern-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}
.services-modern-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  line-height: 1.35;
}
.services-modern-emoji {
  display: block;
  font-size: 1.25rem;
  margin-top: 0.35rem;
  line-height: 1;
}

.services-demo-wrap {
  scroll-margin-top: 6rem;
  margin-top: 2.5rem;
  text-align: center;
}
.services-demo-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.services-demo-panel.is-open {
  max-height: 1400px;
  opacity: 1;
  margin-top: 1.25rem;
}
.services-demo-panel-inner {
  text-align: left;
  position: relative;
  background: #fff;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1rem;
}
.services-demo-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.services-demo-panel-head h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}
.services-demo-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff8f1;
  color: #7c2d12;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.page-services .services-demo-panel-inner .form-label {
  color: #334155;
}
.page-services .services-demo-panel-inner .form-input,
.page-services .services-demo-panel-inner .form-textarea,
.page-services .services-demo-panel-inner select {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #0f172a;
}
.services-demo-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
  font-size: 0.9rem;
  line-height: 1.55;
}
.page-services .faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.page-services .faq-question {
  color: #0f172a;
}
.page-services .faq-question:hover {
  background: rgba(255, 247, 237, 0.95);
}
.page-services .faq-answer {
  color: #475569;
}
.page-services .btn-secondary {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.92);
}
.page-services .btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(234, 88, 12, 0.45);
}
.page-services .services-demo-panel-inner .form-input::placeholder,
.page-services .services-demo-panel-inner .form-textarea::placeholder {
  color: rgba(15, 23, 42, 0.38);
}
.page-services .services-demo-panel-inner select.form-input {
  cursor: pointer;
}

.about-founder-page .section {
  padding: 2.35rem 0;
  margin-bottom: 0;
}

.about-bio-split-section {
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.about-bio-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}

.about-bio-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  background: #e0f2fe;
}
.about-bio-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  margin: 0.35rem 0 0;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.about-bio-copy .eyebrow {
  margin-bottom: 0.25rem;
}
.about-bio-text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}
.who-type-cursor {
  display: inline-block;
  margin-left: 2px;
  color: #2563eb;
  font-weight: 300;
  animation: whoCursorBlink 1s step-end infinite;
}
@keyframes whoCursorBlink {
  50% { opacity: 0; }
}

/* Home — founder spotlight */
.home-founder-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.home-founder-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  border-radius: 1.25rem;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
}
.home-founder-copy {
  padding: 1.35rem 1.5rem;
}

/* Typography */
h1, h2 { font-family: 'Poppins', sans-serif; }
.text-gradient {
  background: linear-gradient(135deg, #ffffff 10%, #c8dcff 45%, #7fb0ff 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.section-title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.01em; color: #fff; margin: 0; }

.section-subtitle { font-size: 0.92rem; color: var(--muted); margin-top: 0.8rem; line-height: 1.7; }
.hero-subline {
  max-width: 36rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  max-width: 36rem;
}
.hero-points li {
  font-size: 0.84rem;
  line-height: 1.52;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.hero-points li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 0.38rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
  box-shadow: 0 0 10px rgba(96,165,250,0.55);
}

/* Grid & Cards */
.grid-2 { display: grid; gap: 1.5rem; }

.grid-services { display: grid; gap: 1.5rem; }

.grid-4 { display: grid; gap: 0.75rem; }


.grid-3 { display: grid; gap: 0.75rem; }



.card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 0 20px rgba(0,150,255,0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
  pointer-events: none;
}
.card:hover {
  border-color: rgba(96,165,250,0.55);
  box-shadow: 0 10px 30px rgba(0,150,255,0.2);
  transform: translateY(-6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.btn-primary {
  background: #ffffff;
  color: #050814;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15,23,42,0.26);
  transition: all 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: #e2e8f0; box-shadow: 0 16px 38px rgba(15,23,42,0.3); }
.btn-primary:active { transform: scale(0.96); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-secondary:hover { transform: scale(1.05); border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.14); }

/* Hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.68rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.78);
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--white); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title { font-size: 1.55rem; font-weight: 800; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }

.hero {
  position: relative;
  isolation: isolate;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -12% -14% auto -14%;
  height: 68%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(0,150,255,0.15), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.18), transparent 58%);
  filter: blur(4px);
  animation: heroAura 9s ease-in-out infinite alternate;
}
@keyframes heroAura {
  0% { transform: translateX(-2%) translateY(0); opacity: 0.72; }
  100% { transform: translateX(2%) translateY(6px); opacity: 1; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
}

.hero-bg-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-3d-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-3d-stack {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-3d-surface {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.38),
    0 18px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform-style: preserve-3d;
}

.hero-3d-surface::before,
.hero-3d-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-3d-surface::before {
  transform: translateZ(-18px);
  background: rgba(8, 18, 40, 0.48);
  filter: blur(8px);
}

.hero-3d-surface::after {
  inset: 1px;
  background: linear-gradient(135deg, rgba(96,165,250,0.10), rgba(168,85,247,0.06));
  border-radius: calc(28px - 1px);
}

.hero-3d-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px 0;
  transform: translateZ(18px);
}

.hero-3d-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.hero-3d-body {
  padding: 16px;
  transform-style: preserve-3d;
}

.hero-3d-badge {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  background: rgba(5,12,26,0.42);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateZ(24px);
}

.hero-3d-bars {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  transform: translateZ(34px);
}

.hero-3d-bars i {
  display: block;
  width: 24px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  box-shadow:
    0 16px 24px rgba(96,165,250,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.hero-3d-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  transform: translateZ(34px);
}

.hero-3d-lines em {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96,165,250,0.95), rgba(168,85,247,0.8));
  box-shadow: 0 10px 20px rgba(96,165,250,0.15);
}

.hero-3d-lines em:nth-child(1) { width: 86%; }
.hero-3d-lines em:nth-child(2) { width: 64%; }
.hero-3d-lines em:nth-child(3) { width: 74%; }

.hero-3d-dots {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  transform: translateZ(34px);
}

.hero-3d-dots b {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: block;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow: 0 0 20px rgba(96,165,250,0.20);
}

.hero-3d-stack-a {
  width: 260px;
  height: 180px;
  left: 10%;
  top: 8%;
  transform: translateZ(40px) rotateX(22deg) rotateY(-22deg) rotateZ(-10deg);
  animation: heroCardFloatA 8s ease-in-out infinite;
}

.hero-3d-stack-b {
  width: 220px;
  height: 150px;
  left: 18%;
  top: 48%;
  transform: translateZ(10px) rotateX(18deg) rotateY(22deg) rotateZ(8deg);
  animation: heroCardFloatB 9s ease-in-out infinite;
}

.hero-3d-stack-c {
  width: 230px;
  height: 150px;
  left: 52%;
  top: 58%;
  transform: translateZ(20px) rotateX(18deg) rotateY(-16deg) rotateZ(-8deg);
  animation: heroCardFloatC 10s ease-in-out infinite;
}

.hero-3d-stack-a .hero-3d-surface,
.hero-3d-stack-b .hero-3d-surface,
.hero-3d-stack-c .hero-3d-surface {
  box-shadow:
    0 50px 100px rgba(0,0,0,0.42),
    0 20px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

@keyframes heroCardFloatA {
  0%,100% {
    transform: translateZ(40px) rotateX(22deg) rotateY(-22deg) rotateZ(-10deg) translateY(0);
  }
  50% {
    transform: translateZ(60px) rotateX(18deg) rotateY(-18deg) rotateZ(-8deg) translateY(-14px);
  }
}

@keyframes heroCardFloatB {
  0%,100% {
    transform: translateZ(10px) rotateX(18deg) rotateY(22deg) rotateZ(8deg) translateY(0);
  }
  50% {
    transform: translateZ(26px) rotateX(22deg) rotateY(18deg) rotateZ(6deg) translateY(12px);
  }
}

@keyframes heroCardFloatC {
  0%,100% {
    transform: translateZ(20px) rotateX(18deg) rotateY(-16deg) rotateZ(-8deg) translateY(0);
  }
  50% {
    transform: translateZ(36px) rotateX(14deg) rotateY(-12deg) rotateZ(-5deg) translateY(-10px);
  }
}

.hero-radial {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
}

.hero-radial-1 {
  width: 340px;
  height: 340px;
  left: 8%;
  top: 4%;
  background: rgba(37, 99, 235, 0.22);
}

.hero-radial-2 {
  width: 280px;
  height: 280px;
  right: 12%;
  top: 18%;
  background: rgba(139, 92, 246, 0.16);
}

.bg-card {
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  opacity: 0.82;
}

.bg-card-inner {
  padding: 16px;
  height: 100%;
}

.bg-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  background: rgba(8,15,28,0.44);
  border: 1px solid rgba(255,255,255,0.08);
}

.bg-card-1 {
  width: 220px;
  height: 140px;
  left: 4%;
  top: 18%;
  transform: rotate(-12deg);
  animation: driftCardOne 14s ease-in-out infinite;
}

.bg-card-2 {
  width: 180px;
  height: 180px;
  right: 16%;
  top: 10%;
  transform: rotate(10deg);
  animation: driftCardTwo 16s ease-in-out infinite;
}

.bg-card-3 {
  width: 200px;
  height: 130px;
  left: 38%;
  bottom: 10%;
  transform: rotate(-8deg);
  animation: driftCardThree 15s ease-in-out infinite;
}

.bg-card-lines {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.bg-card-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96,165,250,0.9), rgba(168,85,247,0.72));
  opacity: 0.78;
}

.bg-card-lines span:nth-child(1) { width: 85%; }
.bg-card-lines span:nth-child(2) { width: 64%; }
.bg-card-lines span:nth-child(3) { width: 74%; }

.bg-mini-bars {
  margin-top: 18px;
  height: 92px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.bg-mini-bars i {
  display: block;
  width: 24px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  box-shadow: 0 8px 20px rgba(96,165,250,0.16);
}

.bg-card-dots {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bg-card-dots i {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: block;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow: 0 0 18px rgba(96,165,250,0.22);
}

.bg-card-dots i:nth-child(2) { opacity: 0.86; }
.bg-card-dots i:nth-child(3) { opacity: 0.7; }
.bg-card-dots i:nth-child(4) { opacity: 0.54; }

.hero > *:not(.hero-bg-depth):not(.hero-3d-scene) {
  position: relative;
  z-index: 2;
}

@keyframes driftCardOne {
  0%,100% { transform: translateY(0px) rotate(-12deg); }
  50% { transform: translateY(-16px) translateX(10px) rotate(-8deg); }
}

@keyframes driftCardTwo {
  0%,100% { transform: translateY(0px) rotate(10deg); }
  50% { transform: translateY(14px) translateX(-10px) rotate(6deg); }
}

@keyframes driftCardThree {
  0%,100% { transform: translateY(0px) rotate(-8deg); }
  50% { transform: translateY(-12px) translateX(14px) rotate(-4deg); }
}







/* Metrics box */
.metrics-box {
  position: relative;
  height: 260px;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle at top, rgba(37,99,235,0.5), transparent 60%), radial-gradient(circle at bottom, rgba(255,255,255,0.12), transparent 60%);
  padding: 1px;
}
.hero-illustration {
  background:
    radial-gradient(circle at 18% 20%, rgba(37,99,235,0.26), transparent 48%),
    radial-gradient(circle at 82% 80%, rgba(34,211,238,0.2), transparent 52%),
    linear-gradient(160deg, rgba(15,27,50,0.84), rgba(7,16,34,0.92));
}
.metrics-inner {
  border-radius: 0.95rem;
  background: var(--bg-0);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37,99,235,0.2) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
}
.mini-metric {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 0.75rem;
  transition: transform 0.2s;
}
.mini-metric:hover { transform: scale(1.05) rotate(-1deg); }

/* Home hero: split column alignment */
.home-hero-split {
  align-items: stretch;
}


/* Home hero: premium device / dashboard frame */
.home-hero-visual {
  position: relative;
  min-height: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
}

.glow-one {
  width: 200px;
  height: 200px;
  background: rgba(59,130,246,.2);
  left: 10%;
  top: 6%;
}

.glow-two {
  width: 180px;
  height: 180px;
  background: rgba(168,85,247,.16);
  right: 6%;
  bottom: 8%;
}

/* Home hero: MacBook-style laptop */
.home-hero-device {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding-bottom: 16px;
  z-index: 1;
  transition: transform 0.2s ease;
}

/* Laptop base / keyboard deck (rendered as ::after on the wrapper) */
.home-hero-device::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(180deg, #0a0c0e 0 1.4px, transparent 1.4px 100%),
    linear-gradient(180deg, #3a3f46 0%, #2a2d33 30%, #15171b 100%);
  box-shadow:
    0 28px 56px rgba(0,0,0,.6),
    inset 0 -1px 0 rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.06);
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
  z-index: 0;
}

/* Subtle trackpad hint on the base */
.home-hero-device::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 32%;
  height: 3.5px;
  border-radius: 2px;
  background: rgba(255,255,255,.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 1px 0 rgba(0,0,0,.5);
  z-index: 1;
}

/* Laptop lid / display housing */
.home-hero-device-shell {
  position: relative;
  border-radius: 18px 18px 12px 12px;
  padding: 14px 14px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.01) 100%),
    linear-gradient(145deg, #3a3f46 0%, #222528 55%, #14161a 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 64px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 0 0 1px rgba(0,0,0,.4);
  z-index: 2;
}

/* M-series style camera notch with tiny lens dot */
.home-hero-device-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 9px;
  background:
    radial-gradient(circle at center, #374151 0 1.4px, transparent 1.5px 100%),
    linear-gradient(180deg, #07090b 0%, #101215 100%);
  border-radius: 0 0 7px 7px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.65),
    inset 0 -0.5px 0 rgba(255,255,255,.05);
  z-index: 4;
  pointer-events: none;
}

.home-hero-device-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #0f172a 0%, #0d1427 100%);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.home-hero-mac-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.home-hero-mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 -1px 1px rgba(0,0,0,.35);
}
.home-hero-mac-dot--orange { background: #ff9f0a; }
.home-hero-mac-dot--yellow { background: #ffd60a; }
.home-hero-mac-dot--green { background: #32d74b; }

.home-hero-device-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226,232,240,.88);
  text-align: center;
  line-height: 1.25;
}

.home-hero-device-body {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.home-hero-dash-head {
  padding: 0.85rem 1rem 0.65rem;
}

.home-hero-dash-kpis {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.home-hero-kpi-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e0f2fe;
  background: rgba(59,130,246,.22);
  border: 1px solid rgba(96,165,250,.35);
}

.home-hero-kpi-sub {
  font-size: 0.78rem;
  color: rgba(203,213,225,.95);
  font-weight: 500;
}

.home-hero-chart {
  position: relative;
  margin: 0 1rem;
  height: 88px;
  border-radius: 12px;
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

.home-hero-chart-bars {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.5rem;
  height: 52px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  z-index: 1;
}

.home-hero-chart-bars i {
  flex: 1;
  display: block;
  min-width: 0;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #60a5fa, #6366f1);
  opacity: 0.85;
}

.home-hero-chart-line {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}

.home-hero-chart-line svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-chart-line path {
  fill: none;
  stroke: #a78bfa;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-svc-label {
  margin: 0.65rem 1rem 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,.85);
}

.home-hero-svc-window {
  position: relative;
  max-height: 86px;
  margin: 0 0.75rem 0.85rem;
  padding: 0 2px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(2,6,23,.4);
  mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
}

.home-hero-svc-track {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.5rem 0.45rem;
  animation: homeHeroSvcScroll 28s linear infinite;
}



@keyframes homeHeroSvcScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.home-hero-svc-pill {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(248,250,252,.95);
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
  white-space: normal;
  word-break: break-word;
}

/* =========================================================
   Home Hero · Growth Cinema (auto-playing 20s micro-story)
   Acts: 1) desk + typing  2) rain of leads
         3) walking hero + sparkles  4) thank you finale
   ========================================================= */
.hero-cine {
  position: relative;
  margin: 0.5rem 0.75rem 0;
  aspect-ratio: 9 / 5;
  width: auto;
  border-radius: 12px;
  background: linear-gradient(180deg, #0b1530 0%, #050a1c 100%);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 0 40px rgba(99,102,241,.08);
  overflow: hidden;
  isolation: isolate;
}

.hero-cine-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ——— Master 20s timeline: 5s per act ——— */
.cine-act { will-change: opacity; }
.cine-act--desk   { animation: cineActA 20s ease-in-out infinite; }
.cine-act--walk   { animation: cineActB 20s ease-in-out infinite; transform-origin: center; }
.cine-act--thanks { animation: cineActC 20s ease-in-out infinite; }
.cine-rain        { animation: cineRainAct 20s ease-in-out infinite; }

@keyframes cineActA {
  0%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}
@keyframes cineRainAct {
  0%, 22% { opacity: 0; }
  26%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}
@keyframes cineActB {
  0%, 50% { opacity: 0; }
  54%, 73% { opacity: 1; }
  77%, 100% { opacity: 0; }
}
@keyframes cineActC {
  0%, 73% { opacity: 0; }
  77%, 98% { opacity: 1; }
  100% { opacity: 0; }
}

/* Subtle twinkling stars */
.cine-stars circle {
  animation: cineTwinkleBg 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.cine-stars circle:nth-child(2) { animation-delay: .6s; }
.cine-stars circle:nth-child(3) { animation-delay: 1.1s; }
.cine-stars circle:nth-child(4) { animation-delay: 1.6s; }
.cine-stars circle:nth-child(5) { animation-delay: 2.1s; }
.cine-stars circle:nth-child(6) { animation-delay: 2.4s; }
.cine-stars circle:nth-child(7) { animation-delay: 2.8s; }
@keyframes cineTwinkleBg {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

/* ——— Act 1: typing ——— */
.cine-arms-type line {
  animation: cineTypeArm .55s ease-in-out infinite alternate;
  transform-box: fill-box;
}
.cine-arms-type line:nth-child(2) { animation-delay: .22s; }
@keyframes cineTypeArm {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-2.2px); }
}

.cine-type-dots circle {
  animation: cineDotBounce 1s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.cine-type-dots circle:nth-child(2) { animation-delay: .15s; }
.cine-type-dots circle:nth-child(3) { animation-delay: .3s; }
@keyframes cineDotBounce {
  0%, 70%, 100% { opacity: .25; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-3.5px); }
}

/* Growing chart inside monitor */
.cine-chart-line {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: cineDraw 5s ease-out infinite;
  filter: drop-shadow(0 0 3px rgba(167,139,250,.55));
}
.cine-chart-area {
  opacity: 0;
  animation: cineAreaFade 5s ease-out infinite;
}
.cine-chart-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: cineDotPulse 1.8s ease-in-out infinite;
}
@keyframes cineDraw {
  0%   { stroke-dashoffset: 140; }
  55%, 100% { stroke-dashoffset: 0; }
}
@keyframes cineAreaFade {
  0%, 45% { opacity: 0; }
  70%, 100% { opacity: 1; }
}
@keyframes cineDotPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px #a78bfa); }
  50%      { transform: scale(1.45); filter: drop-shadow(0 0 7px #c4b5fd); }
}

/* ——— Rain of leads ——— */
.cine-drops line {
  animation: cineDropFall 1.4s linear infinite;
  animation-delay: var(--d, 0s);
  transform-box: fill-box;
}
@keyframes cineDropFall {
  0%   { transform: translateY(0); opacity: 0; }
  15%  { opacity: .95; }
  85%  { opacity: .7; }
  100% { transform: translateY(180px); opacity: 0; }
}

.cine-lead-pill {
  transform: translate(calc(var(--x) * 1px), -28px);
  opacity: 0;
  animation: cineLeadFall 3.2s cubic-bezier(.4,1.6,.55,.9) infinite;
  animation-delay: var(--d, 0s);
  transform-box: fill-box;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}
@keyframes cineLeadFall {
  0%   { transform: translate(calc(var(--x) * 1px), -28px) scale(.6); opacity: 0; }
  12%  { opacity: 1; }
  55%  { transform: translate(calc(var(--x) * 1px), 150px) scale(1); opacity: 1; }
  70%  { transform: translate(calc(var(--x) * 1px), 140px) scale(1); }
  85%  { transform: translate(calc(var(--x) * 1px), 150px) scale(1); opacity: 1; }
  100% { transform: translate(calc(var(--x) * 1px), 150px) scale(1); opacity: 0; }
}

/* ——— Act 3: Flag-bearer walks in, friend hops in for a hug ——— */
/* Walker 1 (flag bearer) — long 20s keyframe so walk syncs with act window */
.cine-walker {
  transform: translate(-40px, 108px);
  animation: cineWalk 20s ease-in-out infinite;
  transform-box: fill-box;
}
@keyframes cineWalk {
  0%, 50%   { transform: translate(-40px, 108px); }
  62%       { transform: translate(152px, 108px); }
  100%      { transform: translate(152px, 108px); }
}

.cine-walker-body {
  animation: cineBob .48s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes cineBob {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-2.5px); }
}

.cine-leg {
  transform-box: fill-box;
  transform-origin: 50% 0%;
}
.cine-leg--l { animation: cineLegL .46s ease-in-out infinite alternate; }
.cine-leg--r { animation: cineLegR .46s ease-in-out infinite alternate; }
@keyframes cineLegL { 0% { transform: rotate(-22deg); } 100% { transform: rotate(22deg); } }
@keyframes cineLegR { 0% { transform: rotate(22deg); }  100% { transform: rotate(-22deg); } }

/* Flag that sways like it's caught in the wind */
.cine-flag {
  transform-box: fill-box;
  transform-origin: 100% 0%;
  animation: cineFlagWave 1.35s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 3px rgba(30,58,138,.45));
}
@keyframes cineFlagWave {
  0%   { transform: rotate(-4deg) scaleX(.98); }
  100% { transform: rotate(4deg)  scaleX(1.02); }
}

/* Walker 2 (friend) — hops in from the right, arrives for the hug */
.cine-walker-2 {
  transform: translate(400px, 108px);
  animation: cineHopIn 20s ease-in-out infinite;
  transform-box: fill-box;
}
@keyframes cineHopIn {
  0%, 54% { transform: translate(400px, 108px); }
  68%     { transform: translate(214px, 108px); }
  100%    { transform: translate(214px, 108px); }
}

.cine-walker-2-body {
  animation: cineHopBob .4s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes cineHopBob {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

.cine-leg2 {
  transform-box: fill-box;
  transform-origin: 50% 0%;
}
.cine-leg2--l { animation: cineLegL .38s ease-in-out infinite alternate; }
.cine-leg2--r { animation: cineLegR .38s ease-in-out infinite alternate; }

/* Hearts that pop between them as they embrace */
.cine-hug-heart {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: cineHugHeart 20s linear infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 0 4px rgba(244,114,182,.65));
}
@keyframes cineHugHeart {
  0%, 63%   { opacity: 0; transform: translateY(18px) scale(.35); }
  66%       { opacity: 1; transform: translateY(0) scale(1); }
  72%       { opacity: 1; transform: translateY(-22px) scale(1.18); }
  76%, 100% { opacity: 0; transform: translateY(-48px) scale(1.3); }
}

.cine-sparks { pointer-events: none; }
.cine-spark {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: cineSparkle 1.8s ease-in-out infinite;
}
.cine-spark:nth-child(1) { animation-delay: .1s; }
.cine-spark:nth-child(2) { animation-delay: .4s; }
.cine-spark:nth-child(3) { animation-delay: .7s; }
.cine-spark:nth-child(4) { animation-delay: 1s; }
.cine-spark:nth-child(5) { animation-delay: 1.3s; }
.cine-spark:nth-child(6) { animation-delay: 1.6s; }
.cine-spark:nth-child(7) { animation-delay: 1.9s; }
@keyframes cineSparkle {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.25) rotate(60deg); }
}

/* ——— Act 4: Thank You finale ——— */
.cine-act--thanks text,
.cine-act--thanks line {
  transform-box: fill-box;
}
.cine-thanks-eye   { opacity: 0; animation: cineFadeUp 5s ease-out infinite; animation-delay: .15s; }
.cine-thanks-big   { opacity: 0; animation: cineFadeUp 5s ease-out infinite; animation-delay: .4s; }
.cine-thanks-brand { opacity: 0; animation: cineFadeUp 5s ease-out infinite; animation-delay: .75s; }
.cine-thanks-rule  { opacity: 0; animation: cineRuleIn 5s ease-out infinite; animation-delay: 1.05s; transform-origin: center; }
.cine-thanks-tag   { opacity: 0; animation: cineFadeUp 5s ease-out infinite; animation-delay: 1.25s; }

@keyframes cineFadeUp {
  0%       { opacity: 0; transform: translateY(10px); }
  10%, 85% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(-6px); }
}
@keyframes cineRuleIn {
  0%       { opacity: 0; transform: scaleX(0); }
  10%, 85% { opacity: 1; transform: scaleX(1); }
  100%     { opacity: 0; }
}

.cine-heart {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: cineHeartFloat 3s ease-out infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 0 4px rgba(244,114,182,.55));
}
@keyframes cineHeartFloat {
  0%   { opacity: 0; transform: translateY(20px) scale(.55); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-110px) scale(1.25); }
}

/* ——— Caption chip (top-right, synced to acts) ——— */
.cine-caption {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .6rem .32rem .52rem;
  font-size: .7rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(2,6,23,.72);
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  max-width: calc(100% - 20px);
}
.cine-caption-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 2px #86efac;
  animation: cineLiveDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cineLiveDot {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.cine-caption-stack {
  position: relative;
  display: inline-block;
  min-width: 10.5rem;
  height: 1em;
  line-height: 1;
  overflow: hidden;
}
.cine-caption-line {
  position: absolute;
  inset: 0;
  white-space: nowrap;
  opacity: 0;
  animation: cineCaption 20s ease-in-out infinite;
}
.cine-caption-line--1 { animation-delay: 0s; }
.cine-caption-line--2 { animation-delay: 5s; }
.cine-caption-line--3 { animation-delay: 10s; }
.cine-caption-line--4 { animation-delay: 15s; color: #fef3c7; }
@keyframes cineCaption {
  0%       { opacity: 0; transform: translateY(8px); }
  3%, 22%  { opacity: 1; transform: translateY(0); }
  25%, 100%{ opacity: 0; transform: translateY(-8px); }
}

/* ——— Live feed (bottom-left, overlay) ——— */
.cine-feed {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 62%;
  max-width: 230px;
  min-height: 42px;
  z-index: 3;
  pointer-events: none;
}
.cine-feed-row {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .55rem;
  border-radius: 9px;
  background: rgba(2,6,23,.78);
  border: 1px solid rgba(148,163,184,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
  color: rgba(226,232,240,.95);
  opacity: 0;
  transform: translateX(-10px);
  animation: cineFeedRow 20s ease-in-out infinite;
}
.cine-feed-row strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.2;
}
.cine-feed-row em {
  display: block;
  margin-top: .08rem;
  font-size: .62rem;
  font-style: normal;
  line-height: 1.2;
  color: #94a3b8;
  letter-spacing: .01em;
}
.cine-feed-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.cine-feed-icon--blue   { background: rgba(59,130,246,.18);  color: #93c5fd; }
.cine-feed-icon--violet { background: rgba(168,85,247,.18);  color: #c4b5fd; }
.cine-feed-icon--pink   { background: rgba(236,72,153,.2);   color: #f9a8d4; }
.cine-feed-icon--green  { background: rgba(52,211,153,.18);  color: #6ee7b7; }

.cine-feed-row--1 { animation-delay: .5s; }
.cine-feed-row--2 { animation-delay: 5.5s; }
.cine-feed-row--3 { animation-delay: 10.5s; }
.cine-feed-row--4 { animation-delay: 15.5s; }
@keyframes cineFeedRow {
  0%       { opacity: 0; transform: translateX(-10px); }
  3%, 22%  { opacity: 1; transform: translateX(0); }
  25%, 100%{ opacity: 0; transform: translateX(-10px); }
}

/* Cinema: responsive tweaks */


/* Respect reduced motion: freeze on Act 1 with no sub-motion */


/* Google Reviews block (homepage) — card styling only; section background unchanged */
.section-home-google-trust {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  scroll-margin-bottom: 0.5rem;
}



.home-google-trust-card {
  --hgt-grad-a: #3b82f6;
  --hgt-grad-b: #8b5cf6;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  border-radius: 1.5rem;
  text-decoration: none;
  color: #f1f5f9;
  background: radial-gradient(120% 80% at 20% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(90% 60% at 100% 30%, rgba(139, 92, 246, 0.12), transparent 50%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(99, 102, 241, 0.12);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-google-trust-card:hover {
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.hgt-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  align-items: center;
  margin-bottom: 0.5rem;
}


.hgt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.7rem 0.35rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 999px;
}

.hgt-eyebrow-ico {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  color: #7dd3fc;
  font-size: 0.7rem;
}

.hgt-hero {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hgt-g-wrap {
  position: relative;
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
}

.hgt-g-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
}

.hgt-g-badge {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hgt-g-logo {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
}

.hgt-hero-text {
  min-width: 0;
  flex: 1;
}

.hgt-title {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 0.65rem;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.hgt-grad {
  background: linear-gradient(90deg, var(--hgt-grad-a), var(--hgt-grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hgt-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.92);
  max-width: 32rem;
}

.hgt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
}

.hgt-actions .hgt-link-google {
  flex-basis: 100%;
  margin-top: 0.15rem;
}

.hgt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 0.6rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hgt-cta--secondary {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #f1f5f9;
  box-shadow: none;
}

.hgt-cta--secondary:hover {
  filter: brightness(1.08);
  border-color: rgba(191, 219, 254, 0.55);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.hgt-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.4);
}

.hgt-link-google {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(147, 197, 253, 0.45);
}

.hgt-link-google:hover {
  color: #bfdbfe;
  text-decoration-color: rgba(191, 219, 254, 0.75);
}

.hgt-cta-ico {
  font-size: 0.85em;
  opacity: 0.95;
}

.hgt-gbp {
  background: #fff;
  color: #0f172a;
  border-radius: 0.7rem;
  padding: 0.75rem 0.8rem 0.65rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
}

.hgt-gbp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.hgt-gbp-name {
  font-weight: 700;
  font-size: 0.86rem;
  margin: 0 0 0.06rem;
  color: #0f172a;
  line-height: 1.2;
}

.hgt-gbp-line {
  margin: 0;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.3;
}

.hgt-gbp-loc {
  margin-top: 0.1rem;
}

.hgt-gbp-gmini {
  flex-shrink: 0;
  opacity: 0.88;
  width: 16px;
  height: 16px;
  display: block;
  margin-top: 0.05rem;
}

.hgt-gbp-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
  margin-bottom: 0.08rem;
}

.hgt-gbp-num {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.hgt-gbp-stars {
  display: flex;
  gap: 0.05rem;
  color: #fbbf24;
  font-size: 0.8rem;
}

.hgt-gbp-stars i {
  font-size: 0.78em;
  line-height: 1;
}

.hgt-gbp-based {
  margin: 0 0 0.4rem;
  font-size: 0.64rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.25;
}

.hgt-gbp-carousel {
  margin-top: 0;
}

.hgt-gbp-viewport {
  position: relative;
  min-height: 4.2rem;
  overflow: hidden;
  transition: min-height 0.3s ease;
}


.hgt-gbp-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.hgt-gbp-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  pointer-events: auto;
}



.hgt-gbp-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.38rem;
  margin-top: 0.3rem;
  margin-bottom: 0;
  padding: 0 0 0.15rem;
  position: relative;
  z-index: 2;
}

.hgt-gbp-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hgt-gbp-dot:hover,
.hgt-gbp-dot:focus-visible {
  background: #94a3b8;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.hgt-gbp-dot.is-active {
  background: #2563eb;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

.hgt-gbp-footbar {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}
.hgt-gbp-footrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.6rem;
  line-height: 1.2;
  color: #64748b;
}
.hgt-gbp-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #475569;
  font-weight: 600;
}
.hgt-gbp-hint i {
  color: #16a34a;
  font-size: 0.7rem;
}
.hgt-gbp-foot-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
.hgt-gbp-foot-maps:hover,
.hgt-gbp-foot-maps:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  outline: none;
}
.hgt-gbp-foot-when {
  color: #94a3b8;
  font-weight: 500;
}
.hgt-gbp-readmore {
  text-align: center;
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  line-height: 1.2;
  padding: 0.1rem 0;
}
.hgt-gbp-readmore:hover,
.hgt-gbp-readmore:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  outline: none;
}
.hgt-gbp-readmore-ico {
  text-decoration: none;
}

.hgt-gbp-footnote {
  margin: 0.35rem 0 0;
  font-size: 0.59rem;
  line-height: 1.3;
  color: #94a3b8;
  text-align: center;
}

.hgt-gbp-quote {
  margin: 0 0 0.45rem;
  padding: 0;
  border: 0;
}

.hgt-gbp-quote p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  font-style: italic;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

@supports not (-webkit-line-clamp: 4) {
  .hgt-gbp-quote p {
    max-height: calc(0.74rem * 1.4 * 4);
  }
}

.hgt-gbp-reviewer {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.hgt-avatar {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hgt-rev-name {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  word-break: break-word;
}

.hgt-rev-meta {
  margin: 0.1rem 0 0;
  font-size: 0.6rem;
  color: #64748b;
  line-height: 1.2;
}

.hgt-s-ico--blue {
  color: #60a5fa;
}
.hgt-s-ico--gold {
  color: #fbbf24;
}
.hgt-s-ico--green {
  color: #4ade80;
}
.hgt-s-ico--violet {
  color: #a78bfa;
}

.hgt-stats {
  list-style: none;
  margin: 0.12rem 0 0;
  padding: 0.5rem 0.3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(100, 116, 139, 0.35);
  border-radius: 0.75rem;
}

.hgt-stats li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.2rem;
  position: relative;
  border-right: 1px solid rgba(100, 116, 139, 0.35);
}
.hgt-stats li:last-child {
  border-right: 0;
}

.hgt-s-ico {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
  line-height: 1;
  opacity: 0.95;
}
.hgt-s-v {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hgt-s-v--check {
  font-size: 1.15rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.hgt-s-l {
  font-size: 0.64rem;
  line-height: 1.3;
  color: #94a3b8;
  font-weight: 500;
  text-transform: capitalize;
}

.hgt-stat-verify .hgt-s-l {
  text-transform: none;
}





/* Blog: content-first layout (slim intro, more reading space) */
.blog-page--content-first .header--slim-blog {
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.blog-page--content-first .section-blog-intro {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

.blog-hero-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.blog-hero-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.blog-page--content-first main.blog-main > .section:not(.section-blog-intro) {
  padding-top: 2rem;
}




/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}
.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg,#2563eb,#60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(37,99,235,0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-card-icon { transform: scale(1.06); box-shadow: 0 0 24px rgba(56,189,248,0.5); }
.service-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; }
.service-card p { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }
.service-card ul { margin: 0.25rem 0 0; padding: 0; list-style: none; }
.service-card li { display: flex; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.78); margin-bottom: 0.375rem; }
.service-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 5px; flex-shrink: 0; }
.service-card-keywords { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.service-card-keywords span { font-size: 0.6875rem; color: rgba(255,255,255,0.5); letter-spacing: 0; text-transform: none; }
.service-card-link { font-size: 0.6875rem; font-weight: 600; color: #b6d4ff; text-decoration: none; margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.service-card-link:hover { color: #fff; }

.service-simple-card {
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.service-simple-icon {
  width: 2.9rem;
  height: 2.9rem;
  margin: 0 auto;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(135deg,#2563eb,#60a5fa);
  box-shadow: 0 0 18px rgba(37,99,235,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-simple-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.service-simple-card:hover .service-simple-icon { transform: scale(1.08); box-shadow: 0 0 24px rgba(56,189,248,0.52); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
/* Core service cards on homepage: always visible (no opacity-0 reveal) */
.home-service-grid .home-core-service-card {
  opacity: 1;
}

/* Why choose chain section */
.why-chain-wrap {
  position: relative;
}
.why-chain-grid {
  --chain-gap: 1rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--chain-gap);
}

.why-chain-card {
  position: relative;
  z-index: 2;
  padding: 1rem 0.95rem;
  min-height: 168px;
  display: flex;
  flex-direction: column;
}
.why-chain-card > * {
  position: relative;
  z-index: 2;
}
.why-chain-card:hover {
  transform: translateY(-4px);
}

@keyframes whyFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.why-chain-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.why-chain-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.45);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.25);
}
.why-chain-icon .icon {
  width: 1.05rem !important;
  height: 1.05rem !important;
  color: #93c5fd !important;
}
.why-chain-card h3 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #fff;
  flex: 1;
  min-width: 0;
}
.why-chain-card p {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
@keyframes whyNodePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.16); opacity: 0.88; }
}
@keyframes whyNodeGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,99,235,0.18), 0 0 16px rgba(147,197,253,0.7); }
  50% { box-shadow: 0 0 0 4px rgba(37,99,235,0.24), 0 0 24px rgba(191,219,254,0.95); }
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.logo-tile {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.03);
}
.trust-shine {
  background: linear-gradient(100deg, #c7d2fe 15%, #ffffff 45%, #93c5fd 55%, #c7d2fe 85%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: trustShine 4.5s linear infinite;
}
@keyframes trustShine {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255,255,255,0.03);
  padding: 0.8rem 0;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, rgba(9,18,45,0.95), rgba(9,18,45,0)); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, rgba(9,18,45,0.95), rgba(9,18,45,0)); }
.logo-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: logoMarqueeMove 30s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-pill {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}
@keyframes logoMarqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.stat-item {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1rem 0.8rem;
  text-align: center;
  background: rgba(255,255,255,0.04);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 20px rgba(147,197,253,0.25);
}
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Client card */
.client-card { position: relative; overflow: hidden; }
.client-card:hover .client-card-glow { opacity: 1; }
.client-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,212,255,0.26), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

/* Footer */
.footer {
  margin-top: 2.5rem;
  border-top: 1px solid transparent;
  background: var(--bg-0);
}
.footer-glow { height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.footer-grid { display: grid; gap: 1.5rem; padding: 1.5rem 0; }

.footer h3 { font-size: 0.875rem; font-weight: 600; color: #fff; margin: 0 0 0.75rem; }
.footer p, .footer li { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease; text-decoration-color: transparent; display: inline-block; }
.footer a:hover { color: #dbeafe; text-decoration: underline; text-decoration-color: rgba(147,197,253,0.65); transform: translateX(2px); }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer ul li { margin-bottom: 0.55rem; padding-bottom: 0.15rem; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1rem 0 0.9rem; text-align: center; font-size: 0.6875rem; color: rgba(255,255,255,0.4); }

/* Social icons */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(15, 23, 42, 0.28);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none !important;
  overflow: hidden;
}
.footer a.social-link:hover { background: linear-gradient(180deg, rgba(76, 29, 149, 0.96), rgba(91, 33, 182, 0.96)); color: #f5f3ff; transform: translateY(-2px); border-color: rgba(167, 139, 250, 0.7); text-decoration: none; }
.social-link i { font-size: 21px; line-height: 1; }
.social-link svg { width: 22px; height: 22px; }
.social-link-x svg { width: 20px; height: 20px; }

/* Form */
.form-label { display: block; font-size: 0.6875rem; font-weight: 500; color: rgba(255,255,255,0.88); margin-bottom: 0.25rem; }
.form-input, .form-textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  font-size: 0.875rem;
  line-height: 1.45;
  min-height: 44px;
  color: #fff;
  font-family: inherit;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(0,212,255,0.55);
}
.form-textarea { min-height: 90px; resize: none; }
.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

/* Floating buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1.25rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.05); box-shadow: 0 12px 48px rgba(0,0,0,0.4); }


/* WhatsApp: confirm before opening */
.wa-confirm {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.wa-confirm.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.wa-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.wa-confirm-card {
  position: relative;
  width: min(400px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.wa-confirm-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.wa-confirm-lead {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
}
.wa-confirm-preview {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #202124;
  word-break: break-word;
}
.wa-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.wa-confirm-btn {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.wa-confirm-cancel {
  background: #fff;
  color: #475569;
  border-color: #e2e8f0;
}
.wa-confirm-cancel:hover {
  background: #f8fafc;
}
.wa-confirm-open {
  background: #25d366;
  color: #fff;
  border-color: #20bd5a;
}
.wa-confirm-open:hover {
  filter: brightness(0.95);
}

.ai-btn {
  position: fixed;
  bottom: calc(1rem + 48px + 16px);
  right: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  backdrop-filter: none;
  overflow: visible;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ai-btn:hover { box-shadow: 0 0 18px rgba(37,99,235,0.45); }
.ai-btn img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.38), 0 14px 36px rgba(8,22,63,0.48);
}
.ai-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(4px);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  color: #eaf2ff;
  background: rgba(5,12,30,0.94);
  border: 1px solid rgba(147,197,253,0.34);
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ai-btn.prompt-visible::after,
.ai-btn:hover::after,
.ai-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.ai-btn {
  animation: aiPulse 2.8s ease-in-out infinite, aiBounce 3.8s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.34); }
  50% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}
@keyframes aiBounce {
  0%, 86%, 100% { transform: translateY(0); }
  90% { transform: translateY(-4px); }
  94% { transform: translateY(0); }
  97% { transform: translateY(-2px); }
}
.ai-btn:hover,
.ai-btn:active {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(56,189,248,0.5);
}

/* Chatbot panel */
.ai-panel {
  position: fixed;
  bottom: 6rem;
  right: 1.25rem;
  width: 20rem;
  max-width: calc(100vw - 2.5rem);
  height: 28rem;
  max-height: calc(100vh - 10rem);
  z-index: 50;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(7,15,36,0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.ai-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.ai-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ai-panel-header h3 { font-size: 0.875rem; font-weight: 600; margin: 0; color: #fff; }
.ai-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  margin-right: 0.45rem;
  padding: 0.14rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.ai-lang-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.22rem 0.52rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.ai-lang-btn.active {
  background: rgba(37,99,235,0.38);
  color: #fff;
}
.ai-lang-btn:hover {
  color: #fff;
}
.ai-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.ai-close:hover { color: #fff; }
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ai-msg {
  max-width: 90%;
  padding: 0.625rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  animation: chatFadeIn 0.28s ease both;
}
.ai-msg.user {
  align-self: flex-end;
  background: var(--electric);
  color: #fff;
}
.ai-msg.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
.ai-msg.typing {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.58rem 0.72rem;
}
.ai-msg.typing .dot {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  animation: chatTyping 1s ease-in-out infinite;
}
.ai-msg.typing .dot:nth-child(2) { animation-delay: 0.15s; }
.ai-msg.typing .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-quick-wrap {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ai-quick {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  min-height: 44px;
}
.ai-quick:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,212,255,0.4); }

/* Carousel */
.carousel-wrap { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 2.5rem;
  padding: 1.25rem;
  animation: carousel 28s linear infinite;
}
@keyframes carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.55s ease-in-out, transform 0.55s ease-in-out; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

.review-dot.active { background: #fff !important; }
.review-dot:not(.active) { background: rgba(255,255,255,0.2) !important; }

/* FAQ accordion */
.faq-item { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.3); overflow: hidden; margin-bottom: 0.5rem; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-answer {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 28rem;
  opacity: 1;
  padding: 0 1rem 0.75rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-sign {
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-plus { display: inline; }
.faq-minus { display: none; }
.faq-item.open .faq-plus { display: none; }
.faq-item.open .faq-minus { display: inline; }

/* About — founder profile (dark content band) */
.about-founder-page main {
  background: linear-gradient(180deg, #071022 0%, #0f1b32 45%, #121f38 100%);
  color: var(--foreground);
}
.about-founder-page .section-title,
.about-founder-page .about-hero-title {
  color: var(--foreground);
}
.about-founder-page .eyebrow {
  color: #93c5fd;
}
.about-hero {
  padding: 3rem 0 3.25rem;
}

.about-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.about-hero-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  margin: 0.65rem 0 0;
}
.about-hero-intro {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  max-width: 42rem;
}
.about-hero-photo-wrap {
  justify-self: center;
}

.about-hero-photo {
  width: min(280px, 86vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
  background: #e0f2fe;
}
.about-soft-section {
  padding: 2.75rem 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-soft-section:nth-of-type(even) {
  background: rgba(15, 23, 42, 0.6);
}
.about-content-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.about-content-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--foreground);
}
.about-content-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}
.about-content-card p + p {
  margin-top: 0.85rem;
}
.about-animate-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.about-animate-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

#who-is-section .who-anim-line {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}
#who-is-section .who-line-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-read-btn {
  margin-top: 0.75rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: #fff;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.about-read-btn:hover {
  background: #eff6ff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}
#who-extra p {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

/* FAQ on about page */
.about-founder-faq {
  max-width: 42rem;
  margin: 0 auto;
}
.about-founder-faq h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: var(--foreground);
}
.about-founder-faq .faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.65rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-founder-faq .faq-item:hover {
  border-color: rgba(147, 197, 253, 0.35);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.16);
}
.about-founder-faq .faq-question {
  color: var(--foreground);
  font-weight: 600;
  transition: background 0.3s ease;
}
.about-founder-faq .faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}
.about-founder-faq .faq-answer {
  color: var(--muted);
}
.about-founder-faq .faq-item.open .faq-answer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
}
.about-founder-faq .faq-sign {
  color: #2563eb;
}

/* About page premium refresh */
.about-founder-page .section {
  position: relative;
}

/* Hero: SaaS-style split + ambient glow (scoped to about page) */
.about-section.about-premium-hero {
  position: relative;
  padding: clamp(1.85rem, 4vw, 2.85rem) 0 clamp(1.65rem, 3.5vw, 2.35rem);
}
.about-section.about-premium-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.about-hero-frame {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.about-premium-hero-grid,
.about-hero-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 48px);
  align-items: start;
}

.about-hero-eyebrow {
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.about-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
}
.about-hero-lead,
.about-hero-body {
  max-width: 46rem;
  color: #aab6ca;
  line-height: 1.7;
  font-size: 0.98rem;
}
.about-hero-lead {
  margin: 0;
}
.about-hero-body {
  margin: 0.75rem 0 0;
}
.about-hero-pills {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.45rem;
}
.about-hero-pills > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-section .pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.35;
}
.about-premium-card-wrap {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-premium-profile-card.profile-card {
  width: min(400px, 100%);
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 12, 28, 0.96));
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.about-card-title {
  margin: 0 0 0.35rem;
  color: #f1f5ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.profile-item {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 0;
}
.profile-item-icon {
  font-size: 1.35rem;
  line-height: 1;
}
.profile-item-label {
  font-size: 0.72rem;
  color: #94a3b8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.profile-item-value {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.25;
}
.about-card-note {
  margin: 1rem 0 0;
  color: #c7d2fe;
  font-size: 0.8rem;
  line-height: 1.65;
}

/* What we do — 3-up SaaS cards */
.about-founder-page .about-what-we-do.section,
.about-what-we-do.section {
  padding-top: 0;
  padding-bottom: 1.35rem;
}
.about-what-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.about-what-card {
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.about-what-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.about-what-icon {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.about-what-title {
  margin: 0 0 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f1f5ff;
  letter-spacing: -0.02em;
}
.about-what-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #aab6ca;
}



.about-leadership-section .section-title.text-center {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.85rem;
}
.about-leadership-grid {
  display: grid;
  gap: 1rem;
}

.about-lead-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(17, 24, 39, 0.9));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.about-lead-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.55);
  box-shadow:
    0 18px 34px rgba(76, 29, 149, 0.34),
    0 0 24px rgba(234, 179, 8, 0.26);
}
.about-lead-card .about-md-copy {
  padding: 1.1rem 1.15rem;
}
.about-lead-head {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  margin-bottom: 0.92rem;
}
.about-lead-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(145deg, rgba(91, 33, 182, 0.9), rgba(234, 179, 8, 0.65));
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.48);
}
.about-lead-card h3.section-title {
  margin: 0.1rem 0 0;
  font-size: clamp(1.15rem, 2.3vw, 1.42rem);
}
.about-lead-card .section-subtitle {
  max-width: none;
  margin-top: 0.76rem;
  color: #d2ddf3;
}

.about-capability-strip {
  margin-top: 0.75rem;
}
.about-capability-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 0.58rem 0.78rem;
}
.about-chip-icon {
  font-size: 0.66rem;
  color: #fff;
  min-width: 1.45rem;
  min-height: 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(126, 34, 206, 0.85), rgba(202, 138, 4, 0.65));
}

.about-why-frame {
  max-width: 64rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(17, 24, 39, 0.87));
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.about-why-frame h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin-bottom: 0.9rem;
}
.about-why-frame p {
  color: #d7e0f4;
}
.about-why-metric-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.about-why-metric {
  border-radius: 0.92rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 41, 59, 0.56);
}
.about-why-metric span {
  display: block;
  font-size: 0.72rem;
  color: #a6badf;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-why-metric strong {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-service-focus-block {
  padding-top: 0;
}
.about-service-focus-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(17, 24, 39, 0.82));
  box-shadow: 0 20px 36px rgba(2, 8, 23, 0.42);
  padding: 1.15rem 1.2rem;
}
.about-service-focus-card .section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: 1rem;
}
.about-service-chip-grid {
  display: grid;
  gap: 0.68rem;
}

.about-service-chip {
  margin: 0;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 41, 59, 0.5);
  padding: 0.72rem 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.about-service-chip:hover {
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow:
    0 12px 22px rgba(88, 28, 135, 0.28),
    0 0 18px rgba(234, 179, 8, 0.2);
  transform: translateY(-3px);
}
.about-chip-dot {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #a855f7, #f59e0b);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.16);
}
.about-service-chip p {
  margin: 0;
  color: #f8faff;
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-faq-premium {
  max-width: 52rem;
}
.about-faq-premium h2 {
  margin-bottom: 0.65rem;
}

.about-founder-page .about-faq-section.section.about-soft-section {
  padding-top: 1.35rem;
  padding-bottom: 1.5rem;
}

.about-founder-faq.about-faq-premium .faq-item {
  margin-bottom: 0.72rem;
  border-radius: 0.95rem;
}
.about-founder-faq.about-faq-premium .faq-question {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}
.about-founder-faq.about-faq-premium .faq-item .faq-sign {
  color: #f8fafc;
}
.about-founder-faq.about-faq-premium .faq-item.open .faq-sign {
  color: #eab308;
}
.about-founder-faq.about-faq-premium .faq-item:hover .faq-sign {
  color: #c084fc;
}
.about-founder-page .faq-item.open .faq-answer {
  max-height: 32rem;
}

/* Keep floating widgets clear from section content */
.about-founder-page main {
  padding-bottom: 2rem;
}


/* Center content */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-12 { gap: 3rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Mobile-first compact polish */


/* Touch feedback for mobile devices */


/* Contact page — same dark “bridge” as homepage Core Services; white only on cards */
body.page-contact,
body.contact-page {
  background: linear-gradient(180deg, #05080f 0%, #0a0f1c 40%, #0f172a 100%);
  background-color: #0a0f1c;
  color: #e2e8f0;
}
body.page-contact::before,
body.contact-page::before {
  display: none;
}
.page-contact main,
.contact-page main {
  background: transparent;
}
.page-contact .section-title,
.page-contact .eyebrow,
.contact-page .section-title,
.contact-page .eyebrow {
  color: #f8fafc;
}
.page-contact .section-subtitle,
.contact-page .section-subtitle {
  color: rgba(226, 232, 240, 0.88);
}
.section-contact-bridge .contact-bridge-eyebrow {
  color: rgba(147, 197, 253, 0.92) !important;
  letter-spacing: 0.12em;
}
.section-contact-bridge .contact-bridge-title,
.section-contact-bridge .contact-hero-title {
  color: #f8fafc !important;
}
.section-contact-bridge .contact-bridge-lead,
.section-contact-bridge .contact-hero-lead {
  color: rgba(226, 232, 240, 0.9) !important;
}
.page-contact .card:not(.contact-map-card),
.contact-page .card:not(.contact-map-card) {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.page-contact .form-label,
.contact-page .form-label {
  color: #334155;
}
body.page-contact .btn-primary,
body.contact-page .btn-primary {
  background: #ffffff;
  color: #050814;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.26);
  filter: none;
}
body.page-contact .btn-primary:hover,
body.contact-page .btn-primary:hover {
  background: #e2e8f0;
  filter: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.32);
}
body.page-contact .btn-primary.btn-shine::after,
body.contact-page .btn-primary.btn-shine::after {
  display: none;
}

/* Services auto popup */
.services-only-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 1rem;
}
.services-only-popup.open {
  display: flex;
}
.services-only-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.services-only-popup-card {
  position: relative;
  width: min(460px, 100%);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
  padding: 1.1rem;
  z-index: 1;
}
.services-only-popup-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #334155;
}
.services-only-popup-card .section-title {
  color: #0f172a;
}
.services-only-popup-card .section-subtitle,
.services-only-popup-card .form-label {
  color: #475569;
}
.services-only-popup-card .form-input {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.16);
}

/* Service subpages readability */
body.service-subpage {
  background: #0b1020;
  color: #ffffff;
}
body.service-subpage::before {
  display: none;
}
.service-subpage main .card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30);
}
.service-subpage main .card h1,
.service-subpage main .card h2,
.service-subpage main .card p,
.service-subpage main .card li,
.service-subpage main .card .form-label,
.service-subpage main .card .faq-question,
.service-subpage main .card .faq-answer {
  color: #0f172a !important;
}

/* About profile image interactive glow */
.about-founder-page .about-md-photo,
.about-founder-page .about-bio-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.about-founder-page .about-md-photo:hover,
.about-founder-page .about-bio-img:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg) translateY(-8px) scale(1.03);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35), 0 0 34px rgba(124, 58, 237, 0.45), 0 28px 56px rgba(15, 23, 42, 0.35);
}
.about-founder-page .about-md-photo:active,
.about-founder-page .about-bio-img:active {
  transform: perspective(800px) rotateX(1deg) rotateY(-1deg) scale(0.99);
  filter: brightness(1.05);
}

/* Service detail pages (long-form copy + hero image) */
.service-detail-page .service-detail-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.service-detail-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.service-hero-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.30);
  background: #ffffff;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
}
.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Social Media service page: 3D Mac-dot hero card (replaces static hero image) */
.service-smm-hero-scene {
  position: relative;
  z-index: 1;
  perspective: 1100px;
  perspective-origin: 50% 40%;
}
.service-smm-hero-tilt {
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  will-change: transform;
}
.service-smm-hero-device.home-hero-device {
  width: min(100%, 400px);
  margin: 0 auto;
}
.service-smm-hero-pill {
  color: #f5f3ff !important;
  background: rgba(168, 85, 247, 0.28) !important;
  border-color: rgba(192, 132, 252, 0.42) !important;
}


.service-detail-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 4.2vw, 1.9rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0.5rem 0 1rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.service-detail-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a855f7;
  margin: 0;
}
.service-prose {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.service-prose p {
  margin: 0 0 1.05rem;
  font-size: 0.95rem;
  line-height: 1.78;
  color: #0f172a !important;
}
.service-prose p:last-child {
  margin-bottom: 0;
}

/* .service-prose is always a light/white document surface; global .section-title / .eyebrow / body color are dark-theme */
.service-prose {
  color: #333;
}
.service-prose .section-title {
  color: #111 !important;
}
.service-prose .eyebrow {
  color: #475569 !important;
}
.service-prose .section-subtitle {
  color: #334155 !important;
}
.service-prose h1,
.service-prose h2:not(.service-h2),
.service-prose h3 {
  color: #111 !important;
}
.service-prose ul,
.service-prose ol,
.service-prose li {
  color: #444 !important;
}
.service-prose a {
  color: #1d4ed8;
}
.service-prose a:hover {
  color: #1e3a8a;
}

/* Get More Details modal (service pages) */
.details-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 1rem;
}
.details-popup.open {
  display: flex;
}
.details-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}
.details-popup-card {
  position: relative;
  width: min(420px, 100%);
  background: #ffffff;
  border-radius: 12px;
  padding: 1.15rem 1.2rem 1.25rem;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.details-popup-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #0f172a;
}
.details-popup-close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}
.details-popup-form .form-label {
  color: #334155 !important;
}
.details-popup-form .form-input {
  background: #fff !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.18) !important;
}
.details-popup-thanks {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: #059669;
  font-weight: 600;
  text-align: center;
}

/* Footer partner badges */
.footer-partner-badges {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-partner-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.65rem;
  text-align: center;
}
.footer-partner-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.footer-partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.footer-partner-link img {
  max-height: 46px;
  width: auto;
  max-width: min(190px, 38vw);
  object-fit: contain;
}
.footer-partner-link-li {
  background: #ffffff;
  padding: 0.35rem 0.65rem;
}

/* About: single MD card — dark panel, white text */
.about-founder-page .about-md-card.about-md-dark {
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 100%);
  border-color: rgba(147, 51, 234, 0.35);
}
.about-founder-page .about-md-card.about-md-dark .eyebrow {
  color: #a855f7 !important;
}
.about-founder-page .about-md-card.about-md-dark .section-title,
.about-founder-page .about-md-card.about-md-dark h3 {
  color: #ffffff !important;
}
.about-founder-page .about-md-card.about-md-dark .section-subtitle,
.about-founder-page .about-md-card.about-md-dark p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* —— Homepage: Core Services — dark strip (matches site); headings light; only cards white; icons blue/purple —— */
.section-home-services-light {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background-color: #0a0f1c !important;
  background-image: linear-gradient(180deg, #070b14 0%, #0f172a 42%, #0c1220 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.section-home-services-light .eyebrow {
  color: rgba(147, 197, 253, 0.85) !important;
  letter-spacing: 0.12em;
}
.section-home-services-light .section-title {
  color: #f8fafc !important;
}
.section-home-services-light .section-subtitle {
  color: rgba(226, 232, 240, 0.88) !important;
}
.section-home-services-light .section-cta-band {
  background: rgba(255, 255, 255, 0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
}
.section-home-services-light .section-cta-band p {
  color: #f1f5f9 !important;
}
.section-home-services-light .section-cta-band .btn-primary {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

/* Homepage: premium image-based core services — dark CTA band */
.section-core-services-premium {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.section-core-services-premium .section-cta-band {
  background: rgba(255, 255, 255, 0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
}
.section-core-services-premium .section-cta-band p {
  color: #f1f5f9 !important;
}
.section-core-services-premium .section-cta-band .btn-primary {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}
.section-core-services-premium a.core-service-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.08),
    0 18px 45px -22px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
}
.section-core-services-premium a.core-service-card:hover,
.section-core-services-premium a.core-service-card:focus-visible {
  z-index: 5;
  transform: translate3d(0, -6px, 0);
  border-color: rgba(99, 102, 241, 0.48);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.38),
    0 0 20px -4px rgba(99, 102, 241, 0.35),
    0 0 28px -8px rgba(168, 85, 247, 0.2),
    0 20px 48px -18px rgba(15, 23, 42, 0.6);
}
.section-core-services-premium a.core-service-card:focus:not(:focus-visible) {
  outline: none;
}
.section-core-services-premium a.core-service-card:focus-visible {
  outline: 2px solid rgba(165, 180, 252, 0.95);
  outline-offset: 3px;
}


/* Wider services band + grid (1 / 2 / 3 col) */
.section-core-services-premium .core-services-container {
  max-width: 73.75rem; /* 1180px — readable card width without feeling bulky */
}
.section-core-services-premium ul.core-services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: stretch;
}


.section-core-services-premium ul.core-services-grid > li {
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: stretch;
}
/* Equal card height per row: anchor fills grid cell */
.section-core-services-premium ul.core-services-grid > li > a.core-service-card {
  height: 100%;
  flex: 1 1 auto;
}

/* Hero image / cinematic: taller, subtle zoom on hover */
.section-core-services-premium a.core-service-card .core-service-card-visual {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  min-height: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center 45%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.section-core-services-premium a.core-service-card:hover .core-service-card-visual,
.section-core-services-premium a.core-service-card:focus-visible .core-service-card-visual {
  transform: translate3d(0, 0, 0) scale(1.04);
}

/* Body: readability */
.section-core-services-premium .core-service-card-body {
  padding: 1rem 1.2rem 1.1rem;
}
.section-core-services-premium .core-service-card-body h3,
.section-core-services-premium .core-service-card-title {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  color: #f8fafc;
  letter-spacing: -0.02em;
}
.section-core-services-premium .core-service-card-body p,
.section-core-services-premium .core-service-card-body .core-service-card-desc {
  font-size: 1rem;
  line-height: 1.66;
  margin: 0.35rem 0 0;
  color: #cbd5e1;
  flex: 1 1 auto;
}
/* Learn more CTA */
.section-core-services-premium .core-service-learn {
  margin-top: 1.05rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e0e7ff;
  line-height: 1.2;
  padding: 0.45rem 1.05rem 0.45rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.26), rgba(99, 102, 241, 0.16));
  border: 1px solid rgba(165, 180, 252, 0.55);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.15),
    0 0 22px -2px rgba(99, 102, 241, 0.28);
  transition: color 0.25s ease, border-color 0.25s, box-shadow 0.25s, background 0.25s, gap 0.3s ease;
}
.section-core-services-premium .core-service-card:hover .core-service-learn,
.section-core-services-premium a.core-service-card:hover .core-service-learn {
  color: #f8fafc;
  border-color: rgba(199, 210, 254, 0.75);
  box-shadow:
    0 0 0 1px rgba(129, 140, 248, 0.35),
    0 0 28px 0 rgba(99, 102, 241, 0.42);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.34), rgba(139, 92, 246, 0.18));
  gap: 0.5rem;
}
.section-core-services-premium .core-service-learn-ico {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  font-style: normal;
  text-decoration: none;
}
.section-core-services-premium a.core-service-card:hover .core-service-learn-ico,
.section-core-services-premium a.core-service-card:focus-visible .core-service-learn-ico {
  transform: translate3d(5px, 0, 0);
}
/* Homepage: extra band below grid so fixed quick-CTA does not cover last cards
   (chain .section so this beats later .home-page .section { padding } rules) */



.section-core-services-premium .core-service-badge {
  z-index: 2;
}
.section-core-services-premium .core-service-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  color: currentColor;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.45));
}

/* Homepage: refined glass on key dark cards */
.section-home-reviews.home-cv-section > .container > .card.faq-home-card {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
ul.home-service-grid.grid-4 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem;
}

/* Homepage core service tiles: white cards only — depth + premium hover (blue glow) */
.section-home-services-light .home-core-service-card.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-height: 168px;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 16px rgba(15, 23, 42, 0.07),
    0 2px 4px rgba(15, 23, 42, 0.04);
}
.section-home-services-light .home-core-service-card.service-card::before,
.section-home-services-light .home-core-service-card.service-card::after {
  display: none;
  content: none;
}
.section-home-services-light .home-core-service-card.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 12px 32px rgba(59, 130, 246, 0.14),
    0 8px 24px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.12);
}
.section-home-services-light .home-core-service-card.service-card strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}
.section-home-services-light .home-core-service-card .icon {
  width: 44px;
  height: 44px;
  stroke-width: 2;
  color: #3b82f6;
  flex-shrink: 0;
  margin-bottom: 12px;
  transition: transform 0.35s ease, filter 0.35s ease, color 0.35s ease;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.25));
}
.section-home-services-light .home-core-service-card.service-card:hover .icon {
  color: #a855f7;
  transform: scale(1.06);
  filter:
    drop-shadow(0 0 14px rgba(59, 130, 246, 0.45))
    drop-shadow(0 0 20px rgba(168, 85, 247, 0.35));
}

/* Lucide icons (global) */
svg.icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
  color: #a855f7;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.35));
  animation: iconPurpleShine 2.6s ease-in-out infinite;
}
.card:hover svg.icon,
.service-card:hover svg.icon {
  color: #c084fc;
  filter: drop-shadow(0 0 12px rgba(192, 132, 252, 0.5));
}
@keyframes iconPurpleShine {
  0%, 100% { transform: translateX(0); opacity: 0.95; }
  50% { transform: translateX(1px); opacity: 1; }
}
.icon-inline {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: -0.2em;
  margin-right: 0.35rem;
  display: inline-block;
  animation: none !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  color: currentColor !important;
}

/* Service detail: structured layout */
.service-detail-inner-wide {
  max-width: 56rem;
}

body[data-service-label="Web Application Development"] .service-detail-inner-wide {
  max-width: 70rem;
}
.service-hero-tagline {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 700;
  color: #e2e8f0 !important;
  margin: 0 0 1rem;
  line-height: 1.35;
}
.service-icon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.service-icon-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a !important;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}
.service-icon-row .icon {
  flex-shrink: 0;
}
.service-split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  margin: 1.5rem 0;
}

.service-split-copy .service-prose {
  margin-top: 0;
}
.service-h2 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: #0f172a !important;
  margin: 1.75rem 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eef2ff;
  border: 1px solid rgba(99, 102, 241, 0.28);
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
}
.service-h2 .icon {
  animation: iconSparkleBurst 1.6s ease-in-out infinite;
}
.service-highlight-list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: #0f172a !important;
  line-height: 1.65;
  font-size: 0.92rem;
}
.service-highlight-list li {
  margin-bottom: 0.4rem;
}
.service-faq-block {
  margin-top: 2rem;
  padding: 1.15rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}
.service-faq-block h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: #0f172a !important;
}
.service-faq-item {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #111827 !important;
}
.service-faq-item:last-child {
  margin-bottom: 0;
}
.service-faq-q {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.service-faq-block.faq-accordion-root .faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
}
.service-faq-block.faq-accordion-root .faq-question {
  color: #0f172a;
}
.service-faq-block.faq-accordion-root .faq-answer {
  color: #334155;
}
.service-content-depth {
  margin-top: 1.2rem;
}
.service-content-depth > p,
.service-content-depth > ul,
.service-subpage .service-prose,
.service-subpage .related-services-block {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 1rem 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-content-depth > p:hover,
.service-content-depth > ul:hover,
.service-subpage .service-prose:hover,
.service-subpage .related-services-block:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 14px 34px rgba(99, 102, 241, 0.2);
}
.service-subpage .service-prose p,
.service-subpage .related-services-list a,
.service-content-depth > p,
.service-content-depth > ul li {
  color: #1e293b !important;
}
.service-subpage .related-services-list a {
  font-weight: 700;
}

/* Trendy FAQ cards (+/-) for all service pages */
.service-faq-item {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.service-faq-item .faq-toggle {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #0f172a;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.service-faq-item .faq-toggle:hover {
  background: #f8fafc;
}
.service-faq-item .faq-sign {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #3730a3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}
.service-faq-item .faq-a {
  padding: 0 1rem 0.95rem;
  color: #334155;
  line-height: 1.65;
}
.service-faq-item.is-collapsed .faq-a {
  display: none;
}
.service-faq-item.is-collapsed .faq-minus {
  display: none;
}
.service-faq-item:not(.is-collapsed) .faq-plus {
  display: none;
}
.service-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Service pages theme sync: royal black + white text + gold/purple hover */
body.service-subpage .service-prose,
body.service-subpage .related-services-block,
body.service-subpage .service-content-depth > p,
body.service-subpage .service-content-depth > ul,
body.service-subpage .service-faq-block {
  background: linear-gradient(150deg, #06080f, #0f172a 56%, #1b2340) !important;
  border: 1px solid rgba(168, 85, 247, 0.24) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34) !important;
}
body.service-subpage .service-prose:hover,
body.service-subpage .related-services-block:hover,
body.service-subpage .service-content-depth > p:hover,
body.service-subpage .service-content-depth > ul:hover,
body.service-subpage .service-faq-block:hover {
  border-color: rgba(250, 204, 21, 0.68) !important;
  box-shadow: 0 18px 42px rgba(168, 85, 247, 0.28), 0 0 24px rgba(250, 204, 21, 0.2) !important;
}

body.service-subpage .service-prose,
body.service-subpage .service-prose p,
body.service-subpage .service-prose li,
body.service-subpage .service-prose ul,
body.service-subpage .service-faq-item,
body.service-subpage .service-faq-item .faq-a,
body.service-subpage .service-faq-block .faq-answer,
body.service-subpage .related-services-block p,
body.service-subpage .related-services-block li {
  color: rgba(241, 245, 249, 0.92) !important;
}
body.service-subpage .service-prose h1,
body.service-subpage .service-prose h2,
body.service-subpage .service-prose h3,
body.service-subpage .service-faq-block h2,
body.service-subpage .related-services-block h2,
body.service-subpage .related-services-block h3 {
  color: #ffffff !important;
}
body.service-subpage .service-prose .service-h2 {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(250, 204, 21, 0.16));
  border-color: rgba(250, 204, 21, 0.38);
}
body.service-subpage .related-services-list a {
  color: #fde68a !important;
}
body.service-subpage .related-services-list a:hover {
  color: #ffffff !important;
}

/* Service depth section on dark cards: readable white copy (overrides earlier slate) */
body.service-subpage .service-content-depth > p,
body.service-subpage .service-content-depth > ul li {
  color: rgba(241, 245, 249, 0.94) !important;
}
body.service-subpage .service-content-depth .service-h2 {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(250, 204, 21, 0.14)) !important;
  border: 1px solid rgba(250, 204, 21, 0.35) !important;
}

/* Social Media (and similar): luxury cross-links card — dark glass, pill rows */
.service-cross-links {
  position: relative;
  max-width: 760px;
  margin: 48px auto;
  padding: 28px 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 12, 28, 0.96));
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.service-cross-links::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(99, 102, 241, 0.18), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.service-cross-links > * {
  position: relative;
  z-index: 1;
}
.service-cross-links ::selection {
  background: rgba(99, 102, 241, 0.38);
  color: #f8fafc;
}
.service-cross-links__heading {
  margin: 0 auto 24px;
  max-width: 650px;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}
.service-cross-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.service-cross-links__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #e5e7eb;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.service-cross-links__list a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(99, 102, 241, 0.13);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.service-cross-links__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
}
.service-cross-links__icon .icon {
  width: 1.1rem;
  height: 1.1rem;
}
.service-cross-links__label {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.35;
}
.service-cross-links__arrow {
  display: inline-flex;
  color: rgba(148, 163, 184, 0.75);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.service-cross-links__arrow .icon {
  width: 1rem;
  height: 1rem;
}
.service-cross-links__list a:hover .service-cross-links__arrow {
  color: #c7d2fe;
  transform: translateX(2px);
}


.related-services-list--with-icons li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 1.5em;
}
.related-services-list--with-icons .icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* Real estate lead gen: light related-services — black titles + Lucide icons */
body.service-subpage .related-services-block.related-services-block--re-light {
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1) !important;
  padding: 20px 24px !important;
  border-radius: 16px !important;
}
body.service-subpage .related-services-block.related-services-block--re-light:hover {
  border-color: rgba(99, 102, 241, 0.38) !important;
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.14) !important;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-block__title-re {
  color: #0f172a !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-block__title-re .re-title-icon {
  color: #6366f1 !important;
  filter: none !important;
  animation: none;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-block__title-re .re-title-chevron {
  color: #6366f1 !important;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.1rem;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-block__title-re > span {
  color: #0f172a !important;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-list a {
  color: #0f172a !important;
  font-weight: 600;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-list a:hover {
  color: #4f46e5 !important;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-list li {
  color: #334155 !important;
}
body.service-subpage .related-services-block.related-services-block--re-light .related-services-list .icon {
  color: #6366f1 !important;
  filter: none !important;
}

/* Digital Marketing page: light related-services — black titles, Lucide icon bullets */
body.service-subpage .related-services-block.related-services-block--dm-light {
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1) !important;
}
body.service-subpage .related-services-block.related-services-block--dm-light:hover {
  border-color: rgba(99, 102, 241, 0.38) !important;
  box-shadow: 0 18px 44px rgba(99, 102, 241, 0.14) !important;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-block__title-dm {
  color: #0f172a !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 1rem !important;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-block__title-dm .icon {
  color: #6366f1 !important;
  filter: none !important;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  animation: none;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-list--with-icons a {
  color: #0f172a !important;
  font-weight: 600;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-list--with-icons a:hover {
  color: #4f46e5 !important;
}
body.service-subpage .related-services-block.related-services-block--dm-light .related-services-list--with-icons .icon {
  color: #6366f1 !important;
  filter: none !important;
}

/* Website Development page: keep purple/gold panel, make Local Landing Pages title black */
body.website-dev-page .related-services-block .service-h2 {
  color: #111111 !important;
}
body.website-dev-page .related-services-block .service-h2 .icon {
  color: #7c3aed !important;
}

body.service-subpage .service-prose .icon,
body.service-subpage .service-faq-item .faq-sign,
body.service-subpage .service-faq-block .icon {
  color: #fbbf24 !important;
  filter: drop-shadow(0 0 9px rgba(168, 85, 247, 0.45)) !important;
}
body.service-subpage .service-faq-item {
  background: rgba(15, 23, 42, 0.86) !important;
  border: 1px solid rgba(148, 163, 184, 0.26) !important;
}
body.service-subpage .service-faq-item .faq-toggle {
  background: rgba(15, 23, 42, 0.75) !important;
  color: #ffffff !important;
}
body.service-subpage .service-faq-item .faq-toggle:hover {
  background: rgba(168, 85, 247, 0.16) !important;
}
body.service-subpage .service-faq-block.faq-accordion-root .faq-item {
  background: rgba(15, 23, 42, 0.86) !important;
  border: 1px solid rgba(148, 163, 184, 0.26) !important;
}
body.service-subpage .service-faq-block.faq-accordion-root .faq-question {
  background: rgba(15, 23, 42, 0.75) !important;
  color: #ffffff !important;
}
body.service-subpage .service-faq-block.faq-accordion-root .faq-question:hover {
  background: rgba(168, 85, 247, 0.16) !important;
}
body.service-subpage .service-faq-block.faq-accordion-root .faq-answer {
  color: rgba(241, 245, 249, 0.92) !important;
}

/* Homepage reviews: stronger cards */
.section-home-reviews .review-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.section-home-reviews .review-mini-text {
  color: rgba(255, 255, 255, 0.92) !important;
}
.section-home-reviews .review-mini-name {
  color: #fff !important;
}
.section-home-reviews .card {
  padding: 1.15rem 1.1rem;
}

/* About: light readable sections */
.about-main-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef1f4 100%);
}
.about-main-light .section-title,
.about-main-light .section-subtitle,
.about-main-light .eyebrow,
.about-main-light h2 {
  color: #111 !important;
}
.about-main-light .section-subtitle {
  color: #374151 !important;
}
.about-main-light .faq-question {
  color: #111 !important;
}
.about-main-light .faq-answer {
  color: #1f2937 !important;
}

.about-intro-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.about-intro-card {
  margin: 0;
  border-radius: 14px;
  padding: 1rem 1rem;
  line-height: 1.78;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.about-intro-card--dark {
  color: #e2e8f0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  border-color: rgba(148, 163, 184, 0.3);
}
.about-intro-card--blue {
  color: #dbeafe;
  background: linear-gradient(160deg, #0f3b75 0%, #1d4ed8 100%);
  border-color: rgba(147, 197, 253, 0.45);
}

.about-cards-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  justify-content: center;
}

.about-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s ease;
  border: 1px solid rgba(147, 197, 253, 0.35);
  margin: 0;
  line-height: 1.75;
  text-align: left;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer layout */
.footer-brand-block {
  padding: 2rem 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.footer-brand-block p {
  max-width: 34rem;
  margin: 0;
}

/* ============================================================
   Services Express — steam train with color-coded bogies
   ============================================================ */
.footer-announcement {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 980px;
  margin: 0.25rem auto 0.25rem;
  padding: 22px 22px 14px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(30, 64, 175, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 15, 30, 0.7) 100%);
  border: 1px solid rgba(148, 197, 255, 0.18);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow:
    0 14px 42px -16px rgba(59, 130, 246, 0.35),
    0 0 0 1px rgba(148, 197, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.footer-announcement::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg,
    rgba(125, 211, 252, 0.4) 0%,
    rgba(59, 130, 246, 0.2) 40%,
    rgba(125, 211, 252, 0) 65%,
    rgba(125, 211, 252, 0.35) 100%);
  background-size: 220% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  animation: fa-border-drift 9s linear infinite;
}
@keyframes fa-border-drift {
  to { background-position: -220% 0; }
}

.footer-announcement__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(45% 55% at 20% 50%, rgba(56, 189, 248, 0.22), transparent 70%),
    radial-gradient(45% 55% at 80% 50%, rgba(236, 72, 153, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
  opacity: 0.85;
  animation: fa-glow-shift 12s ease-in-out infinite;
}
@keyframes fa-glow-shift {
  0%, 100% { transform: translateX(-3%); }
  50%      { transform: translateX(3%); }
}

/* Railway rails the train runs on */
.footer-announcement__rails {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 6px;
  height: 14px;
  z-index: 1;
  pointer-events: none;
}
.footer-announcement__rails::before,
.footer-announcement__rails::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(148, 163, 184, 0.55) 10%,
    rgba(203, 213, 225, 0.85) 50%,
    rgba(148, 163, 184, 0.55) 90%,
    transparent 100%);
  box-shadow: 0 0 4px rgba(148, 197, 255, 0.35);
}
.footer-announcement__rails::before { top: 2px; }
.footer-announcement__rails::after {
  bottom: 2px;
  background-image:
    linear-gradient(90deg, rgba(100, 116, 139, 0.75) 0 10px, transparent 10px 22px),
    linear-gradient(90deg,
      transparent 0%,
      rgba(148, 163, 184, 0.55) 10%,
      rgba(203, 213, 225, 0.85) 50%,
      rgba(148, 163, 184, 0.55) 90%,
      transparent 100%);
  background-size: 22px 4px, 100% 1px;
  background-position: 0 -3px, 0 0;
  background-repeat: repeat-x, no-repeat;
  height: 4px;
}

.footer-announcement__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 65%);
  transform: translateX(-120%);
  mix-blend-mode: screen;
  animation: fa-sheen 7s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@keyframes fa-sheen {
  0%, 55%  { transform: translateX(-120%); }
  78%      { transform: translateX(120%); }
  100%     { transform: translateX(120%); }
}

.footer-announcement__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.footer-announcement__track {
  display: flex;
  width: max-content;
  /* train moves left -> right across the viewport */
  animation: fa-marquee 55s linear infinite;
  will-change: transform;
}
@keyframes fa-marquee {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
.footer-announcement:hover .footer-announcement__track {
  animation-play-state: paused;
}

.footer-announcement__group {
  display: flex;
  align-items: flex-end;
  padding: 0 40px;
  white-space: nowrap;
}

/* ---------------- TRAIN ---------------- */
.train {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding-bottom: 4px;
}

/* ---------------- ENGINE ---------------- */
.train__engine-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 110px;
  flex: 0 0 auto;
  margin-right: 4px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45));
}
.train__engine {
  width: 100%;
  height: auto;
  display: block;
}

.train__smoke {
  position: absolute;
  top: -6px;
  /* chimney sits around x=74 in a 96-wide viewBox => ~77% */
  left: 77%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
}
.train__smoke-puff {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    rgba(248, 250, 252, 0.95) 0%,
    rgba(203, 213, 225, 0.75) 40%,
    rgba(100, 116, 139, 0.1) 75%,
    transparent 100%);
  transform: translate(-50%, 0) scale(0.3);
  opacity: 0;
  filter: blur(0.5px);
  animation: train-smoke 2.6s ease-out infinite;
}
.train__smoke-puff:nth-child(2) { animation-delay: 0.65s; }
.train__smoke-puff:nth-child(3) { animation-delay: 1.30s; }
.train__smoke-puff:nth-child(4) { animation-delay: 1.95s; }
@keyframes train-smoke {
  0%   { transform: translate(-50%, 0) scale(0.3); opacity: 0; }
  10%  { opacity: 0.95; }
  60%  { opacity: 0.6; }
  100% { transform: translate(calc(-50% - 14px), -32px) scale(2.4); opacity: 0; }
}

.train__engine-wheels {
  display: flex;
  justify-content: space-between;
  padding: 0 8px 0 14px;
  margin-top: -4px;
}

/* ---------------- COACH / BOGIE ---------------- */
.train__coach {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 auto;
  margin-right: 6px;
  padding-top: 6px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4));
  animation: coach-bounce 0.45s ease-in-out infinite alternate;
  animation-delay: var(--coach-delay, 0s);
}
@keyframes coach-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-0.6px); }
}

.train__coupler {
  position: absolute;
  left: -10px;
  bottom: 14px;
  width: 12px;
  height: 3px;
  background: linear-gradient(180deg, #64748b, #334155);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
  z-index: 0;
}

.train__coach-body {
  position: relative;
  min-width: 148px;
  padding: 5px 14px 5px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--coach) 85%, white 15%) 0%,
    var(--coach) 45%,
    var(--coach-dark) 100%);
  border-radius: 8px 8px 4px 4px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 0 14px -2px color-mix(in srgb, var(--coach) 55%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
/* roof cap */
.train__coach-body::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 6px;
  right: 6px;
  height: 5px;
  background: linear-gradient(180deg, var(--coach-dark), color-mix(in srgb, var(--coach-dark) 70%, black 30%));
  border-radius: 5px 5px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
/* side shine */
.train__coach-body::after {
  content: "";
  position: absolute;
  inset: 6px 2px 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 30%);
  pointer-events: none;
}

.train__coach-windows {
  display: flex;
  gap: 3px;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.train__coach-windows > span {
  width: 14px;
  height: 8px;
  background: linear-gradient(180deg,
    var(--coach-light) 0%,
    rgba(255, 255, 255, 0.85) 45%,
    var(--coach-light) 100%);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 1.5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  animation: coach-window-flicker 4s ease-in-out infinite;
  animation-delay: var(--coach-delay, 0s);
}
.train__coach-windows > span:nth-child(2) { animation-delay: calc(var(--coach-delay, 0s) + 0.5s); }
.train__coach-windows > span:nth-child(3) { animation-delay: calc(var(--coach-delay, 0s) + 1s); }
@keyframes coach-window-flicker {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.3); }
}

.train__coach-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 2px 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.train__coach-wheels {
  display: flex;
  justify-content: space-between;
  padding: 2px 16px 0;
  margin-top: -3px;
}

/* ---------------- WHEELS ---------------- */
.train__wheel {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}
.train__wheel svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.train__wheel-spokes {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: train-wheel-spin 0.55s linear infinite;
}
@keyframes train-wheel-spin {
  to { transform: rotate(360deg); }
}
.train__wheel--lg { width: 17px; height: 17px; }
.train__wheel--sm { width: 11px; height: 11px; }
.train__wheel--lg .train__wheel-spokes { animation-duration: 0.65s; }
.train__wheel--sm .train__wheel-spokes { animation-duration: 0.42s; }


.footer-grid.footer-grid-balanced {
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0 1.5rem;
  align-items: start;
}
.footer-column {
  min-width: 0;
}
.footer-grid-balanced .footer-column h3 {
  margin-bottom: 0.65rem;
}
.footer-accordion-toggle {
  width: 100%;
  padding: 0;
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  font: inherit;
}
.footer-accordion-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.footer-accordion-icon {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid rgba(191, 219, 254, 0.92);
  border-bottom: 2px solid rgba(191, 219, 254, 0.92);
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  flex: 0 0 auto;
}
.footer-accordion-section.is-open .footer-accordion-icon {
  transform: rotate(225deg);
}
.footer-accordion-panel {
  overflow: hidden;
}
.footer-contact-column .footer-accordion-panel {
  position: relative;
  z-index: 0;
}
.footer-grid-balanced .footer-column ul li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.14rem;
  border-bottom: none;
  line-height: 1.7;
}
.footer-grid-balanced .footer-column ul li a {
  line-height: 1.7;
}
.footer-contact-column {
  text-align: left;
}
.footer-contact-column h3 {
  margin-bottom: 0.72rem;
}
.footer-contact-column p {
  margin: 0.2rem 0;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  position: relative;
  z-index: 2;
}
.social-icons a {
  width: 44px;
  height: 44px;
  background: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  font-size: 18px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none !important;
  border: 1px solid rgba(147, 197, 253, 0.45);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  overflow: visible;
  pointer-events: auto;
}
.footer .social-icons a i {
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
}
.social-icons a svg {
  width: 20px;
  height: 20px;
}
.social-icons a:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
.social-icons a[aria-label="Instagram"] { color: #e1306c !important; }
.social-icons a[aria-label="Facebook"] { color: #1877f2 !important; }
.social-icons a[aria-label="X"] { color: #ffffff !important; background: #1e3a8a; border-color: rgba(147, 197, 253, 0.45); }
.social-icons a[aria-label="LinkedIn"] { color: #0a66c2 !important; }
.social-icons a[aria-label="Quora"] { color: #b92b27 !important; }
.social-icons a[aria-label="Medium"] { color: #fff !important; background: #1a1a1a; border-color: rgba(255, 255, 255, 0.2); }
.social-icons a[aria-label="Medium"]:hover { background: #292929; color: #fff !important; }
.social-icons a[aria-label="X"]:hover { background: #2563eb; color: #ffffff !important; }
a, button, .social-icons a {
  cursor: pointer;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 0.85rem;
}




/* Add icon style for "Why Choose SMR ONEWAY" headings */
.why-title-icon {
  margin-right: 0.45rem;
  color: #7c3aed;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.45));
}

/* On mobile avoid "train movement" auto scrolling */


.details-popup-card select.form-input {
  width: 100%;
  color: #0f172a;
  background: #fff;
}

/* Services page: vertical rhythm between Growth / Product / Lead sections */
.service-zigzag-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-zigzag-stack .service-zigzag-item {
  margin: 0;
}

/* SEO page: Why SEO highlight + process grid */
.seo-why-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  margin: 1rem 0 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}
.seo-why-box ul {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.1rem;
  color: #111827;
  line-height: 1.65;
}
.seo-process-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.seo-process-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafc, #f5f3ff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.seo-process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.16);
}
.seo-process-card .icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.seo-process-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.seo-process-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.5;
}

/* Footer brand logo */
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.footer-brand-logo img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 0 14px rgba(125, 211, 252, 0.18));
}

/* Contact bridge section (matches homepage services band) */
.section-contact-bridge {
  background: linear-gradient(180deg, #070b14 0%, #0f172a 42%, #0c1220 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.contact-hero-block {
  margin-bottom: 0.5rem;
}

/* Contact hero: show headline and "why choose" in separate cards */
.contact-hero-frames {
  display: grid;
  gap: 1rem;
  margin-top: 0.9rem;
}
.contact-hero-frame {
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}
.contact-hero-frame .contact-hero-title {
  margin: 0;
}
.contact-hero-frame h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.25;
}
.contact-hero-frame .contact-hero-lead {
  margin: 0;
}
.page-contact main .section:first-child,
.contact-page main .section:first-child {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
.page-contact .contact-hero-title {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.page-contact .contact-hero-lead {
  line-height: 1.65;
  max-width: 40rem;
  margin: 0 auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.label-optional {
  font-weight: 500;
  font-size: 0.78em;
  opacity: 0.75;
}
.contact-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.45;
}
.contact-form-error {
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: rgba(254, 226, 226, 0.95);
  color: #991b1b;
  font-size: 0.8125rem;
}
/* Form field icons: neutral light tile, dark glyph → purple + white on focus / press */
.contact-icon-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
  border: 1px solid #d2d2d7;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.contact-icon-3d .icon {
  width: 1.15rem !important;
  height: 1.15rem !important;
  color: #1d1d1f !important;
  stroke-width: 2.25;
  filter: none;
}
.contact-input-wrap:focus-within .contact-icon-3d,
.contact-side-row:focus-within .contact-icon-3d,
.contact-input-wrap:active .contact-icon-3d,
.contact-side-row:active .contact-icon-3d,
.contact-icon-3d:active {
  background: linear-gradient(145deg, #6d28d9 0%, #7c3aed 52%, #9333ea 100%);
  border-color: #5b21b6;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.38);
}
.contact-input-wrap:focus-within .contact-icon-3d .icon,
.contact-side-row:focus-within .contact-icon-3d .icon,
.contact-input-wrap:active .contact-icon-3d .icon,
.contact-side-row:active .contact-icon-3d .icon,
.contact-icon-3d:active .icon {
  color: #ffffff !important;
}
.contact-icon-3d--sm {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
}
.contact-icon-3d--sm .icon {
  width: 1rem !important;
  height: 1rem !important;
}
.contact-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}
.contact-cc-wrap {
  flex: 1 1 200px;
  min-width: 0;
}
.contact-cc-select {
  width: 100%;
  height: 100%;
  min-height: 46px;
  cursor: pointer;
}
.contact-phone-input {
  flex: 2 1 180px;
  min-width: 0;
}
.contact-phone-input-full {
  width: 100%;
  flex: 1;
  min-width: 0;
}
.contact-field-intro {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.72);
}
.contact-loc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}
.contact-input-wrap--loc {
  flex: 1 1 200px;
  min-width: 0;
}
.contact-loc-detect-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 46px;
  font-size: 0.8125rem !important;
  padding-left: 0.85rem !important;
  padding-right: 0.85rem !important;
}
.contact-loc-status {
  margin-top: 0.35rem;
}
.contact-loc-status--error {
  color: #b91c1c;
}

/* Selects: override global .form-input (white text on dark) + visible dropdown chevron */
.page-contact .contact-form select.form-input,
.contact-page .contact-form select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-top: 0;
  padding-right: 2.5rem;
  cursor: pointer;
  background-color: #fff;
  color: #0f172a;
  border: 1px solid #94a3b8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1.15rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.page-contact .contact-form select.form-input:focus,
.contact-page .contact-form select.form-input:focus {
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.18);
}
.contact-cc-select.form-input {
  font-weight: 500;
  border-width: 2px;
  border-color: #64748b;
}
.contact-availability-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18) 0%, rgba(251, 191, 36, 0.12) 100%);
  border: 1px solid rgba(250, 204, 21, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  color: #f8fafc;
}
.contact-availability-banner strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.contact-availability-banner span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}
.contact-availability-icon {
  width: 1.75rem !important;
  height: 1.75rem !important;
  color: #facc15 !important;
  flex-shrink: 0;
}
.contact-wa-mini {
  flex-shrink: 0;
  font-size: 0.8125rem !important;
  padding: 0.5rem 1rem !important;
}
.contact-map-links {
  margin-top: 2rem;
}
.contact-map-links-inner {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.08);
}
/* Google Maps default UI–style labels */
.contact-map-links-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #202124;
}
.contact-map-links-address {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #5f6368;
  line-height: 1.5;
}
.contact-map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-map-btn:hover {
  transform: translateY(-1px);
}
/* Contact page: both chips same neutral grey; Google pin is the only blue accent */
.contact-map-btn--google,
.contact-map-btn--apple {
  background: #f1f3f4;
  color: #3c4043;
  border: 1px solid #e8eaed;
  box-shadow: none;
  font-weight: 500;
}
.contact-map-btn--google:hover,
.contact-map-btn--apple:hover {
  background: #e8eaed;
  color: #202124;
  border-color: #dadce0;
}
.contact-map-btn--google:active,
.contact-map-btn--apple:active {
  background: #e0e3e7;
}
.contact-map-svg--google-pin {
  color: #1a73e8;
  flex-shrink: 0;
}
.contact-map-svg--apple-icon {
  color: #5f6368;
  flex-shrink: 0;
}
.contact-map-btn--apple:hover .contact-map-svg--apple-icon,
.contact-map-btn--apple:active .contact-map-svg--apple-icon {
  color: #494c4f;
}
/* Footer: maps sit in Contact column free space (no extra strip / border) */
.footer .footer-map-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin-top: 0.65rem;
}
.footer a.footer-map-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transform: none;
}
.footer a.footer-map-chip:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  text-decoration: none;
}
.footer .footer-map-chip svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: block;
}
.footer .footer-map-chip--apple svg {
  color: rgba(255, 255, 255, 0.7);
}
.footer a.footer-map-chip--apple:hover svg {
  color: rgba(255, 255, 255, 0.9);
}
.contact-map-svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.contact-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
  margin-top: 2.5rem;
}

.page-contact .contact-form,
.contact-page .contact-form,
.contact-form-card-premium.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 50px rgba(15, 23, 42, 0.1),
    0 8px 20px rgba(15, 23, 42, 0.06);
}
.contact-field {
  margin-bottom: 1rem;
}
.contact-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 0.35rem;
}
.contact-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.contact-input-wrap:focus-within {
  box-shadow: none;
}
.contact-field-emoji {
  flex-shrink: 0;
  width: 1.75rem;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1;
  user-select: none;
}
.page-contact .contact-form input,
.page-contact .contact-form textarea,
.page-contact .contact-form select,
.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
  border: 1px solid #cbd5e1;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
  color: #0f172a;
  box-sizing: border-box;
}
.page-contact .contact-form .form-input::placeholder,
.page-contact .contact-form .form-textarea::placeholder,
.contact-page .contact-form .form-input::placeholder,
.contact-page .contact-form .form-textarea::placeholder {
  color: #64748b;
  opacity: 1;
}
.page-contact .contact-form textarea,
.contact-page .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.page-contact .contact-form input:focus,
.page-contact .contact-form textarea:focus,
.page-contact .contact-form select:focus,
.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus,
.contact-page .contact-form select:focus {
  outline: none;
  border-color: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.2);
}
.contact-input-wrap .form-input,
.contact-input-wrap .form-textarea {
  flex: 1 1 0;
  min-width: 0;
}
.contact-input-wrap .form-textarea {
  align-self: stretch;
}
.contact-input-wrap--textarea {
  align-items: flex-start;
}
.contact-input-wrap--textarea .contact-field-emoji {
  margin-top: 12px;
}
.contact-info,
.contact-side-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 50px rgba(15, 23, 42, 0.1),
    0 8px 20px rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
.contact-info h3,
.contact-side-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #0f172a;
}
.contact-side-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #334155;
}
.contact-side-row:last-child {
  margin-bottom: 0;
}
.contact-side-row .icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: #64748b;
  margin-top: 0.15rem;
}
.contact-info a,
.contact-side-card a {
  color: #2563eb;
}
.contact-bottom-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.22);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.875rem;
}

.page-contact .contact-map-card,
.contact-page .contact-map-card {
  margin-top: 2.75rem;
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 48px rgba(15, 23, 42, 0.1),
    0 8px 16px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.page-contact .contact-map-card::before,
.contact-page .contact-map-card::before {
  display: none;
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.92));
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.sticky-mobile-cta .btn {
  flex: 0 0 auto;
  max-width: 220px;
  width: auto;
  font-size: 0.8rem;
  padding: 0.55rem 0.75rem;
}

/* Section CTA band */
.section-cta-band {
  text-align: center;
  padding: 2rem 1rem;
  margin: 1.5rem 0 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 247, 204, 0.65));
  border: 1px solid rgba(234, 179, 8, 0.2);
}
.section-cta-band p {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: #0f172a;
}

/* SaaS-style CTA card (e.g. SEO services page) */
.saas-cta {
  max-width: 700px;
  margin: 40px auto;
  padding: 35px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.saas-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.saas-cta h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #fff;
}

.saas-cta p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.saas-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.saas-cta-btn:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.saas-cta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
.saas-cta-icon svg {
  width: 42px;
  height: 42px;
  color: #f8fafc;
  stroke: currentColor;
  filter: none !important;
  animation: none !important;
}
.saas-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* .service-prose forces dark text — restore SaaS CTA colors inside white article */
.service-prose .saas-cta h3 {
  color: #fff !important;
}
.service-prose .saas-cta p {
  color: #cbd5e1 !important;
}
.service-prose .saas-cta-btn,
.service-prose .saas-cta-btn:hover {
  color: #0f172a !important;
}

/* SEO page: related services heading in black */
.seo-lp-article--panel .related-services-block .service-h2 {
  color: #111111 !important;
}
.seo-lp-article--panel .related-services-block .service-h2 .icon {
  color: #7c3aed !important;
}

/* —— SEO service page (services/seo.html): white padded panel + Lucide sections —— */
.seo-lp-main {
  overflow-x: hidden;
}
.seo-lp-article--panel {
  max-width: 100%;
  margin-top: 2rem;
  padding: 2rem 1.35rem 2.25rem;
  background: linear-gradient(145deg, #06080f, #0f172a 55%, #1b2340);
  border-radius: 18px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.seo-lp-section {
  padding: 3.25rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.14);
}
.seo-lp-section:last-of-type {
  border-bottom: none;
}
.seo-lp-h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}
.seo-lp-h2-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #fbbf24;
  animation: none !important;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5)) !important;
}
.seo-lp-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(241, 245, 249, 0.92);
  margin: 0;
  max-width: 52rem;
}
.seo-lp-muted {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.82);
  margin: 0 0 1.25rem;
}
.seo-lp-note {
  font-size: 0.8125rem;
  color: rgba(191, 219, 254, 0.8);
  margin: 1rem 0 0;
  font-style: italic;
}

.seo-lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.seo-lp-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.seo-lp-card {
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.95));
  padding: 1.25rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.seo-lp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.72);
  box-shadow: 0 14px 32px rgba(168, 85, 247, 0.32), 0 0 26px rgba(250, 204, 21, 0.22);
}
.seo-lp-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.24), rgba(250, 204, 21, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(250, 204, 21, 0.38);
}
.seo-lp-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f8fafc;
  animation: none !important;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.45)) !important;
}
.seo-lp-card-icon--accent {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.28), rgba(168, 85, 247, 0.22));
}
.seo-lp-card-icon--accent svg {
  color: #fde68a;
}
.seo-lp-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}
.seo-lp-card-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
  margin: 0;
}

.seo-lp-timeline {
  border-left: 3px solid #fbbf24;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.seo-lp-timeline-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.92);
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.seo-lp-timeline-item:hover {
  background: rgba(168, 85, 247, 0.14);
  box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.3);
}
.seo-lp-timeline-item:last-child {
  margin-bottom: 0;
}
.seo-lp-timeline-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(250, 204, 21, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 204, 21, 0.45);
}
.seo-lp-timeline-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #fef3c7;
  animation: none !important;
  filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.4)) !important;
}

.seo-lp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.seo-lp-faq-item {
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.seo-lp-faq-item:hover {
  border-color: rgba(250, 204, 21, 0.48);
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.24);
}
.seo-lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.seo-lp-faq-q:hover {
  background: rgba(168, 85, 247, 0.14);
}
.seo-lp-faq-chevron {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: #facc15;
  transition: transform 0.25s ease;
  animation: none !important;
  filter: none !important;
}
.seo-lp-faq-item.is-open .seo-lp-faq-chevron {
  transform: rotate(180deg);
}
.seo-lp-faq-a {
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.9);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.seo-lp-faq-a[hidden] {
  display: none !important;
}

.service-detail-page .seo-lp-article--panel .saas-cta {
  margin-top: 0.5rem;
}
.service-detail-page .seo-lp-article--panel .service-cta-row {
  justify-content: center;
  margin-top: 2rem;
}

/* SEO page: trendy purple/gold CTA refinement */
.seo-lp-article--panel .saas-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2e1065, #4c1d95 55%, #5b21b6) !important;
  border: 1px solid rgba(250, 204, 21, 0.35) !important;
  box-shadow: 0 16px 38px rgba(91, 33, 182, 0.35), 0 0 0 1px rgba(250, 204, 21, 0.18) inset !important;
}
.seo-lp-article--panel .saas-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(250, 204, 21, 0.2), transparent 35%);
  pointer-events: none;
}
.seo-lp-article--panel .saas-cta:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(250, 204, 21, 0.62) !important;
  box-shadow: 0 24px 50px rgba(124, 58, 237, 0.45), 0 0 24px rgba(250, 204, 21, 0.25) !important;
}
.seo-lp-article--panel .saas-cta h3 {
  color: #ffffff !important;
  font-size: 1.6rem;
}
.seo-lp-article--panel .saas-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.seo-lp-article--panel .saas-cta-icon svg {
  color: #a855f7 !important;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.6)) !important;
}
.seo-lp-article--panel .saas-cta-btn {
  background: #ffffff !important;
  color: #050814 !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700;
}
.seo-lp-article--panel .saas-cta-btn svg {
  color: #2563eb !important;
}
.seo-lp-article--panel .saas-cta-btn:hover {
  background: #e2e8f0 !important;
  transform: scale(1.07) translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}

/* SEO page hero upgrade */
.seo-hero-trendy {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(59,130,246,0.18), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(168,85,247,0.16), transparent 24%),
    linear-gradient(180deg, #020817 0%, #04112d 100%);
}

.seo-hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}

.seo-hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(59,130,246,.24);
  left: 8%;
  top: 10%;
}

.hero-glow-2 {
  width: 180px;
  height: 180px;
  background: rgba(168,85,247,.20);
  right: 8%;
  bottom: 10%;
}

.seo-slider-shell {
  position: relative;
  width: min(100%, 560px);
  perspective: 1200px;
  animation: seoHeroFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

.seo-slider-frame {
  position: relative;
  border-radius: 30px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 90px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.seo-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #07111f, #0a1630);
}

.seo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s ease, transform 1s ease;
  padding: 14px;
}

.seo-slide.active {
  opacity: 1;
  transform: scale(1);
}

.ui-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,.95), rgba(8,15,28,.94));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}

.ui-browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}

.ui-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.ui-browser-search {
  margin-left: 10px;
  height: 10px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.ui-card-body {
  position: relative;
  padding: 18px;
  height: calc(100% - 42px);
}

.ui-side-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(96,165,250,.22), rgba(168,85,247,.22));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}

.ui-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.ui-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.ui-metric small,
.ui-local-stats small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ui-metric strong,
.ui-local-stats strong {
  color: #fff;
  font-size: 20px;
}

.ui-chart-bars {
  margin-top: 18px;
  height: 120px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.ui-chart-bars span {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  box-shadow: 0 8px 18px rgba(96,165,250,.18);
}

.ui-line-chart {
  margin-top: 18px;
  height: 150px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.ui-line-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 100% 36px, 44px 100%;
}

.ui-line-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ui-line-chart path {
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(125,211,252,.25));
}

.ui-ranking-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.ui-ranking-list div,
.ui-local-stats div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: #fff;
}

.ui-ranking-list span {
  color: rgba(255,255,255,.82);
}

.ui-map-area {
  position: relative;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(96,165,250,.18), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
}

.ui-map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 32px, 32px 100%;
}

.ui-map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  box-shadow: 0 0 0 8px rgba(96,165,250,.08);
}

.ui-map-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.pin-1 { left: 28%; top: 30%; }
.pin-2 { left: 56%; top: 42%; }
.pin-3 { left: 70%; top: 24%; }

.ui-map-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  background: rgba(7,18,38,.72);
  border: 1px solid rgba(255,255,255,.1);
}

.ui-local-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.ui-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ui-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.seo-slider-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.seo-badge-mini {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(9,18,40,.66);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.seo-dots {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.seo-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: .3s ease;
}

.seo-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
}

.floating-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(7,18,38,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  animation: seoChipFloat 4s ease-in-out infinite;
}

.chip-1 {
  top: 10%;
  left: -18px;
}

.chip-2 {
  right: -18px;
  top: 22%;
  animation-delay: .6s;
}

.chip-3 {
  left: 8%;
  bottom: -14px;
  animation-delay: 1.2s;
}

.seo-hero-content h1 {
  font-size: clamp(1.85rem, 2.85vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.seo-hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 620px;
}

.seo-eyebrow {
  margin-bottom: 12px;
  color: #a855f7;
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 700;
}

.seo-hero-trendy .seo-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@keyframes seoHeroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes seoChipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}





/* Content Marketing page: force key copy blocks to white (related-services title is black in page CSS) */
body[data-service-label="Content Marketing"] .service-content-depth p,
body[data-service-label="Content Marketing"] .service-content-depth li,
body[data-service-label="Content Marketing"] .service-content-section p,
body[data-service-label="Content Marketing"] .service-content-section li {
  color: #ffffff !important;
}

@keyframes btnShine {
  0%, 70% { transform: translateX(-100%); }
  85% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Shine sweep — home hero, Google trust CTAs, quick links, trust pill */
.btn.btn-primary.btn-shine,
.home-page .section-home-hero .hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
}
.home-page .section-home-hero .hero-actions .btn-secondary {
  position: relative;
  overflow: hidden;
}
.btn.btn-primary.btn-shine::after,
.home-page .section-home-hero .hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btnShine 4s ease-in-out infinite;
  pointer-events: none;
}
.home-page .section-home-hero .hero-actions .btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.16) 50%, transparent 58%);
  transform: translateX(-100%);
  animation: btnShine 4.6s ease-in-out infinite;
  animation-delay: 0.8s;
  pointer-events: none;
}
.hgt-cta {
  position: relative;
  overflow: hidden;
}
.hgt-cta > * {
  position: relative;
  z-index: 1;
}
.hgt-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btnShine 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hgt-cta.hgt-cta--secondary::after {
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
  animation-duration: 4.8s;
  animation-delay: 0.5s;
}
.section-home-hero .home-power-links a {
  position: relative;
  overflow: hidden;
}
.section-home-hero .home-power-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
  transform: translateX(-100%);
  animation: btnShine 5s ease-in-out infinite;
  pointer-events: none;
}
.section-home-hero .home-power-links a .icon,
.section-home-hero .home-power-links a span {
  position: relative;
  z-index: 1;
}
.section-home-hero .hero-trust-links {
  position: relative;
  overflow: hidden;
}
.section-home-hero .hero-trust-links::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.1) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: btnShine 5.2s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}
.section-home-hero .hero-trust-links a,
.section-home-hero .hero-trust-links span[aria-hidden="true"] {
  position: relative;
  z-index: 1;
}


/* Web app structured blocks */
.web-app-icon-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.web-app-icon-tile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8fafc, #f5f3ff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 600;
  font-size: 0.875rem;
  color: #0f172a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.web-app-icon-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(250, 204, 21, 0.18);
}
.web-app-icon-tile .icon {
  flex-shrink: 0;
}
.web-app-block.reveal {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  margin: 0.75rem 0;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.07);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.web-app-block.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.web-app-block .icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.web-app-benefits {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: #fff9db;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.web-app-benefits ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: #111827;
  line-height: 1.65;
}

/* Web application service page: royal black content + white text */
body[data-service-label="Web Application Development"] .service-prose,
body[data-service-label="Web Application Development"] .web-app-block.reveal,
body[data-service-label="Web Application Development"] .web-app-benefits,
body[data-service-label="Web Application Development"] .service-content-depth > p,
body[data-service-label="Web Application Development"] .service-content-depth > ul {
  background: linear-gradient(155deg, #05070f 0%, #0b1222 50%, #161f36 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34) !important;
}

body[data-service-label="Web Application Development"] .service-prose p,
body[data-service-label="Web Application Development"] .web-app-block p,
body[data-service-label="Web Application Development"] .web-app-benefits li,
body[data-service-label="Web Application Development"] .service-content-depth > p,
body[data-service-label="Web Application Development"] .service-content-depth > ul li {
  color: #ffffff !important;
}

body[data-service-label="Web Application Development"] .web-app-icon-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* Web app hero visual slider */
body[data-service-label="Web Application Development"] .service-hero-media {
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  box-shadow: none;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webapp-hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webapp-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
}

.webapp-glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(59,130,246,.24);
  left: 10%;
  top: 12%;
}

.webapp-glow-2 {
  width: 180px;
  height: 180px;
  background: rgba(168,85,247,.20);
  right: 10%;
  bottom: 12%;
}

.webapp-slider-shell {
  position: relative;
  width: min(100%, 560px);
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: webappFloat 5s ease-in-out infinite;
}

.webapp-slider-frame {
  position: relative;
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.webapp-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #07111f, #0a1630);
}

.webapp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s ease, transform 1s ease;
  padding: 14px;
}

.webapp-slide.active {
  opacity: 1;
  transform: scale(1);
}

.webapp-ui-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,15,28,.94));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.webapp-ui-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}

.webapp-ui-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
}

.webapp-ui-search {
  margin-left: 10px;
  height: 10px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.webapp-ui-body {
  position: relative;
  padding: 18px;
  height: calc(100% - 42px);
}

.webapp-ui-badge {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(96,165,250,.22), rgba(168,85,247,.22));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}

.webapp-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.webapp-stat-card,
.webapp-flow-list div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.webapp-stat-card small,
.webapp-flow-list span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.62);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.webapp-stat-card strong,
.webapp-flow-list strong {
  color: #fff;
  font-size: 20px;
}

.webapp-bars {
  margin-top: 18px;
  height: 120px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.webapp-bars i {
  flex: 1;
  display: block;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  box-shadow: 0 8px 18px rgba(96,165,250,.18);
}

.webapp-flow-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.webapp-flow-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.webapp-progress-wrap {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.webapp-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.webapp-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
}

.webapp-admin-layout {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  margin-top: 18px;
}

.webapp-admin-layout aside {
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.webapp-admin-layout section {
  display: grid;
  gap: 12px;
}

.webapp-admin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.webapp-admin-cards div,
.webapp-admin-chart {
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.webapp-admin-cards div {
  height: 54px;
}

.webapp-admin-chart {
  height: 110px;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96,165,250,.12), rgba(168,85,247,.10));
  background-size: 100% 30px, 40px 100%, cover;
}

.webapp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.webapp-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.webapp-slider-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.webapp-mini-label {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(9,18,40,.66);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.webapp-dots {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.webapp-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: .3s ease;
}

.webapp-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #60a5fa, #8b5cf6);
}

.webapp-floating-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(7,18,38,.72);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  animation: webappChipFloat 4s ease-in-out infinite;
}

.chip-a { top: 10%; left: -18px; }
.chip-b { top: 22%; right: -18px; animation-delay: .6s; }
.chip-c { left: 10%; bottom: -14px; animation-delay: 1.2s; }

@keyframes webappFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes webappChipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}





/* Web app page layout refinement: keep same colors, improve structure/depth */
.webapp-hero,
body[data-service-label="Web Application Development"] .webapp-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.08fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto 0;
  max-width: 1180px;
  width: 100%;
  box-sizing: border-box;
  padding: 90px 20px 56px;
}

.webapp-hero > *,
body[data-service-label="Web Application Development"] .webapp-hero-wrap > * {
  min-width: 0;
}

.webapp-text,
body[data-service-label="Web Application Development"] .webapp-hero-copy {
  max-width: 560px;
}



body[data-service-label="Web Application Development"] .webapp-hero-intro {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}

body[data-service-label="Web Application Development"] .webapp-hero-intro p {
  margin: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.72;
}

.webapp-cta,
body[data-service-label="Web Application Development"] .webapp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

body[data-service-label="Web Application Development"] .webapp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  max-width: 560px;
  width: 100%;
  box-sizing: border-box;
}

body[data-service-label="Web Application Development"] .webapp-feature-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

body[data-service-label="Web Application Development"] .webapp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.10);
}

body[data-service-label="Web Application Development"] .webapp-icon-3d {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c4b5fd;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(96,165,250,.14), rgba(168,85,247,.18));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 12px 24px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 24px rgba(37,99,235,.12);
  transform: translateZ(10px);
}

body[data-service-label="Web Application Development"] .webapp-slider-shell {
  position: relative;
  width: min(100%, 430px);
  max-width: 430px;
  perspective: 1600px;
  transform-style: preserve-3d;
  animation: webappFloat 5s ease-in-out infinite;
}

body[data-service-label="Web Application Development"] .webapp-slider-frame {
  position: relative;
  border-radius: 30px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 100px rgba(0,0,0,.46),
    0 18px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

body[data-service-label="Web Application Development"] .webapp-slider-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(96,165,250,.06), rgba(168,85,247,.06));
  transform: translateZ(-20px);
  filter: blur(8px);
  z-index: 0;
}

body[data-service-label="Web Application Development"] .webapp-slides,
body[data-service-label="Web Application Development"] .webapp-slider-overlay {
  position: relative;
  z-index: 2;
}

body[data-service-label="Web Application Development"] .webapp-ui-body {
  padding: 14px;
}

body[data-service-label="Web Application Development"] .webapp-bars {
  height: 96px;
  margin-top: 12px;
}

body[data-service-label="Web Application Development"] .webapp-flow-list,
body[data-service-label="Web Application Development"] .webapp-progress-wrap,
body[data-service-label="Web Application Development"] .webapp-admin-layout {
  margin-top: 12px;
}

body[data-service-label="Web Application Development"] .webapp-tags {
  margin-top: 12px;
}

body[data-service-label="Web Application Development"] .chip-a { top: 8%; left: -10px; }
body[data-service-label="Web Application Development"] .chip-b { top: 26%; right: -12px; }
body[data-service-label="Web Application Development"] .chip-c { left: 12%; bottom: -10px; }

body[data-service-label="Web Application Development"] .webapp-content-stack {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

body[data-service-label="Web Application Development"] .webapp-content-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

body[data-service-label="Web Application Development"] .webapp-content-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.45rem;
}

body[data-service-label="Web Application Development"] .webapp-content-card p {
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 14px;
}

body[data-service-label="Web Application Development"] .webapp-content-card p:last-child {
  margin-bottom: 0;
}

body[data-service-label="Web Application Development"] .webapp-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

body[data-service-label="Web Application Development"] .webapp-pill-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

body[data-service-label="Web Application Development"] .webapp-info-stack {
  margin-top: 24px;
}

body[data-service-label="Web Application Development"] .webapp-info-section {
  margin-top: 24px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

body[data-service-label="Web Application Development"] .webapp-info-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

body[data-service-label="Web Application Development"] .webapp-info-title h3 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
}

body[data-service-label="Web Application Development"] .webapp-info-section p,
body[data-service-label="Web Application Development"] .webapp-info-section li {
  color: rgba(255,255,255,.82) !important;
  line-height: 1.85;
}

body[data-service-label="Web Application Development"] .webapp-info-section ul {
  padding-left: 20px;
  margin: 0;
}

/* Web app page: related services black text + purple/gold hover */
body[data-service-label="Web Application Development"] .related-services-block {
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
}
body[data-service-label="Web Application Development"] .related-services-block .service-h2 {
  color: #111111 !important;
}
body[data-service-label="Web Application Development"] .related-services-list a {
  color: #111111 !important;
}
body[data-service-label="Web Application Development"] .related-services-list a:hover {
  color: #111111 !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(250, 204, 21, 0.28));
  border-radius: 8px;
  padding: 2px 8px;
  text-decoration: none;
}
body[data-service-label="Web Application Development"] .related-services-block:hover,
body[data-service-label="Web Application Development"] .webapp-content-card:hover,
body[data-service-label="Web Application Development"] .webapp-info-section:hover {
  border-color: rgba(250, 204, 21, 0.62) !important;
  box-shadow: 0 18px 42px rgba(168, 85, 247, 0.3), 0 0 24px rgba(250, 204, 21, 0.22) !important;
}

/* Web app page — premium hero (dashboard mockup, trust row, typography) */
body[data-service-label="Web Application Development"] .webapp-hero-premium .service-detail-h1.webapp-hero-h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

body[data-service-label="Web Application Development"] .webapp-hero-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 55%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

body[data-service-label="Web Application Development"] .webapp-hero-lede {
  margin: 0 0 1.35rem;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

body[data-service-label="Web Application Development"] .webapp-hero-eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  margin-bottom: 0.65rem;
}

body[data-service-label="Web Application Development"] .webapp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.35rem;
  margin-bottom: 0.25rem;
}

body[data-service-label="Web Application Development"] .webapp-trust-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

body[data-service-label="Web Application Development"] .webapp-hero-premium .webapp-feature-grid {
  margin-top: 1.65rem;
}

body[data-service-label="Web Application Development"] .webapp-hero-btn-primary,
body[data-service-label="Web Application Development"] .webapp-hero-btn-secondary {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body[data-service-label="Web Application Development"] .webapp-hero-btn-primary:hover,
body[data-service-label="Web Application Development"] .webapp-hero-btn-primary:focus-visible,
body[data-service-label="Web Application Development"] .webapp-hero-btn-secondary:hover,
body[data-service-label="Web Application Development"] .webapp-hero-btn-secondary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(96, 165, 250, 0.25), 0 12px 28px rgba(0, 0, 0, 0.35);
}

body[data-service-label="Web Application Development"] .webapp-hero-media-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

body[data-service-label="Web Application Development"] .webapp-console-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 0 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

body[data-service-label="Web Application Development"] .webapp-console-visual .webapp-console-glow-a {
  width: 280px;
  height: 280px;
  left: 0%;
  top: 5%;
  background: rgba(59, 130, 246, 0.28);
}

body[data-service-label="Web Application Development"] .webapp-console-visual .webapp-console-glow-b {
  width: 240px;
  height: 240px;
  right: -5%;
  bottom: 0;
  background: rgba(168, 85, 247, 0.24);
}

body[data-service-label="Web Application Development"] .webapp-console-radial {
  position: absolute;
  inset: -15% -5% -5% -5%;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(96, 165, 250, 0.2), rgba(129, 140, 248, 0.1) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

body[data-service-label="Web Application Development"] .webapp-console-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  animation: webappConsoleFloat 6s ease-in-out infinite;
}

body[data-service-label="Web Application Development"] .webapp-console-window {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.48),
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

body[data-service-label="Web Application Development"] .webapp-console-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 18, 0.45);
}

body[data-service-label="Web Application Development"] .webapp-console-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

body[data-service-label="Web Application Development"] .webapp-console-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

body[data-service-label="Web Application Development"] .webapp-console-dots span:nth-child(1) {
  background: #fb7185;
}
body[data-service-label="Web Application Development"] .webapp-console-dots span:nth-child(2) {
  background: #fbbf24;
}
body[data-service-label="Web Application Development"] .webapp-console-dots span:nth-child(3) {
  background: #34d399;
}

body[data-service-label="Web Application Development"] .webapp-console-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

body[data-service-label="Web Application Development"] .webapp-console-frame {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 300px;
  background: linear-gradient(165deg, rgba(7, 12, 28, 0.95) 0%, rgba(10, 18, 38, 0.92) 100%);
}

body[data-service-label="Web Application Development"] .webapp-console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

body[data-service-label="Web Application Development"] .webapp-console-nav-item {
  font-size: 11px;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.52);
  border: 1px solid transparent;
}

body[data-service-label="Web Application Development"] .webapp-console-nav-item.is-active {
  color: #fff;
  background: rgba(96, 165, 250, 0.14);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.12);
}

body[data-service-label="Web Application Development"] .webapp-console-main {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body[data-service-label="Web Application Development"] .webapp-console-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-service-label="Web Application Development"] .webapp-console-kpi {
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-service-label="Web Application Development"] .webapp-console-kpi-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

body[data-service-label="Web Application Development"] .webapp-console-kpi-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

body[data-service-label="Web Application Development"] .webapp-console-kpi-val strong {
  font-weight: 800;
  background: linear-gradient(135deg, #93c5fd, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-service-label="Web Application Development"] .webapp-console-pipeline-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

body[data-service-label="Web Application Development"] .webapp-console-pipeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body[data-service-label="Web Application Development"] .webapp-console-stage {
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  padding: 10px 4px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-service-label="Web Application Development"] .webapp-console-chart {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-service-label="Web Application Development"] .webapp-console-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

body[data-service-label="Web Application Development"] .webapp-console-chart-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

body[data-service-label="Web Application Development"] .webapp-console-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
  padding: 12px 10px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar {
  flex: 1;
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #60a5fa, #8b5cf6);
  box-shadow: 0 8px 18px rgba(96, 165, 250, 0.22);
  transform-origin: bottom center;
  animation: webappBarGrow 3.2s ease-in-out infinite;
}

body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(1) {
  animation-delay: 0s;
}
body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(2) {
  animation-delay: 0.15s;
}
body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(3) {
  animation-delay: 0.3s;
}
body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(4) {
  animation-delay: 0.45s;
}
body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(5) {
  animation-delay: 0.6s;
}
body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar:nth-child(6) {
  animation-delay: 0.75s;
}

body[data-service-label="Web Application Development"] .webapp-console-proglist {
  display: grid;
  gap: 10px;
}

body[data-service-label="Web Application Development"] .webapp-console-prow {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

body[data-service-label="Web Application Development"] .webapp-console-progbar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body[data-service-label="Web Application Development"] .webapp-console-progbar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #a855f7);
  animation: webappProgPulse 2.8s ease-in-out infinite;
  transform-origin: left center;
}

body[data-service-label="Web Application Development"] .webapp-float-tag {
  position: absolute;
  z-index: 4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 15, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  animation: webappFloatLabel 5s ease-in-out infinite;
}

body[data-service-label="Web Application Development"] .webapp-float-a {
  top: -2%;
  left: -6%;
  animation-delay: 0s;
}
body[data-service-label="Web Application Development"] .webapp-float-b {
  top: 22%;
  right: -10%;
  animation-delay: 0.5s;
}
body[data-service-label="Web Application Development"] .webapp-float-c {
  bottom: 16%;
  left: -8%;
  animation-delay: 1s;
}
body[data-service-label="Web Application Development"] .webapp-float-d {
  bottom: -4%;
  right: -6%;
  animation-delay: 1.5s;
}

body[data-service-label="Web Application Development"] .webapp-kpi-animate {
  animation: webappKpiFade 0.75s ease both;
}

body[data-service-label="Web Application Development"] .webapp-kpi-animate:nth-child(1) {
  animation-delay: 0.08s;
}
body[data-service-label="Web Application Development"] .webapp-kpi-animate:nth-child(2) {
  animation-delay: 0.18s;
}
body[data-service-label="Web Application Development"] .webapp-kpi-animate:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes webappConsoleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes webappKpiFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes webappBarGrow {
  0%,
  100% {
    transform: scaleY(1);
    filter: brightness(1);
  }
  50% {
    transform: scaleY(1.07);
    filter: brightness(1.08);
  }
}

@keyframes webappProgPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.92;
    transform: scaleX(1.02);
  }
}

@keyframes webappFloatLabel {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-7px) translateX(3px);
  }
}

body[data-service-label="Web Application Development"] .webapp-feature-card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-height: 118px;
  padding: 20px 18px;
  border-radius: 24px;
}

body[data-service-label="Web Application Development"] .webapp-feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 44px rgba(139, 92, 246, 0.18);
  border-color: rgba(168, 85, 247, 0.35);
}

body[data-service-label="Web Application Development"] .webapp-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(96, 165, 250, 0.12);
}

body[data-service-label="Web Application Development"] .webapp-feature-icon-wrap .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  animation: none !important;
  filter: none !important;
  color: #c4b5fd !important;
}

body[data-service-label="Web Application Development"] .webapp-feature-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
}

body[data-service-label="Web Application Development"] .webapp-content-stack {
  margin-top: 1.25rem;
}

body.service-detail-page[data-service-label="Web Application Development"] main > .section:first-of-type {
  padding-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  body[data-service-label="Web Application Development"] .webapp-console-shell,
  body[data-service-label="Web Application Development"] .webapp-float-tag,
  body[data-service-label="Web Application Development"] .webapp-console-bars .webapp-bar,
  body[data-service-label="Web Application Development"] .webapp-console-progbar-fill,
  body[data-service-label="Web Application Development"] .webapp-kpi-animate {
    animation: none !important;
  }

  body[data-service-label="Web Application Development"] .webapp-kpi-animate {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-service-label="Web Application Development"] .webapp-hero-btn-primary:hover,
  body[data-service-label="Web Application Development"] .webapp-hero-btn-secondary:hover {
    transform: none;
  }
}

/* Real estate service page (light article) */
.re-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.re-check-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.re-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8fafc, #f5f3ff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.re-check-item .icon {
  flex-shrink: 0;
  color: #facc15;
}

/* About: keywords strip */
.about-keywords-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about-keywords-strip li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #e0f2fe;
  border: 1px solid rgba(56, 189, 248, 0.4);
}


/* About: reviews + visuals */
.about-reviews-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.about-reviews-wrap {
  overflow: hidden;
}
.about-reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: aboutReviewSlide 18s linear infinite;
}
.about-review-card {
  min-width: min(320px, 86vw);
  max-width: 340px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}
.about-review-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}
.about-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e2e8f0;
}
.about-review-name { color: #0f172a !important; margin: 0; font-weight: 700; }
.about-review-stars { color: #7c3aed !important; margin: 0.12rem 0 0; }
.about-review-text { color: #334155 !important; margin: 0; line-height: 1.6; }
@keyframes aboutReviewSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}
@keyframes iconSparkleBurst {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0)); }
  50% { transform: scale(1.09); filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.55)); }
}
.about-main-light .about-review-name { color: #0f172a !important; }
.about-main-light .about-review-text { color: #334155 !important; }
.about-main-light .about-review-stars { color: #7c3aed !important; }
.about-visuals-section {
  background: transparent;
}
.about-founder-page .about-visuals-section.section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.about-visuals-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.about-visual-frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.about-visual-frame:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 20px 46px rgba(124, 58, 237, 0.18);
}
/* About page: icon strip (replaces single hero image) */
.about-visuals-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-visual-icon-card {
  margin: 0;
  border-radius: 14px;
  padding: 1rem 0.9rem 1.05rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}
.about-visual-icon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.42);
  background: rgba(30, 27, 75, 0.45);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.16);
}
.about-visual-icon-card:focus-within {
  outline: none;
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25), 0 18px 40px rgba(124, 58, 237, 0.14);
}
.about-visual-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  color: #c4b5fd;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.28), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(167, 139, 250, 0.22);
  transition: color 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.about-visual-icon-card:hover .about-visual-icon-wrap {
  color: #ede9fe;
  transform: scale(1.06);
  border-color: rgba(196, 181, 253, 0.45);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.28);
}
.about-visual-icon-title {
  margin: 0 0 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.02em;
}
.about-visual-icon-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(203, 213, 245, 0.88);
}
.about-visuals-follow {
  margin-top: 0.85rem;
}

.about-content-card-extended {
  max-width: 64rem;
}

.contact-seo-content {
  max-width: 64rem;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.contact-seo-content:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 22px 54px rgba(124, 58, 237, 0.22);
}
.contact-seo-content h2 {
  margin: 0 0 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: #111827;
}
.contact-seo-content p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}
.contact-seo-content p + p {
  margin-top: 0.9rem;
}

/* ========== Former inline styles (centralized for caching) ========== */

/* Homepage: reviews marquee */
.reviews-auto-wrap { overflow: hidden; }
.reviews-auto-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: homeReviewsMove 30s linear infinite;
  will-change: transform;
}
.reviews-auto-wrap:hover .reviews-auto-track { animation-play-state: paused; }
.review-mini-card {
  min-width: min(320px, 86vw);
  max-width: 340px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.85rem;
  padding: 0.95rem;
  background: rgba(255,255,255,0.03);
}
.review-mini-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; }
.review-mini-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  object-fit: cover; background: rgba(255,255,255,0.15);
}
.review-mini-name { margin: 0; font-size: 0.9rem; font-weight: 600; }
.review-mini-stars { margin: 0.1rem 0 0; font-size: 0.76rem; letter-spacing: 0.08em; }
.review-mini-text { margin: 0; font-size: 0.84rem; line-height: 1.65; color: rgba(255,255,255,0.78); }
@keyframes homeReviewsMove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* Homepage: hero metrics box (was inline styles) */
.metrics-inner-stack {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}
.metrics-label-upper {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.metrics-lead {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.5rem;
}
.metrics-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.metrics-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.mini-metric-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.mini-metric-value {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.hero-contact-hint {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
}
.hero-contact-hint strong { color: #fff; }

/* Homepage: defer layout work below first screen (Core Web Vitals) */
.home-cv-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}


.faq-section-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.faq-services-link {
  font-size: 0.6875rem;
  font-weight: 600;
}
.faq-services-link a { color: var(--cyan); }

/* About + about-digital pages */
.about-md-card-wrap { padding-top: 0.5rem; }
.about-md-card {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  padding: 1rem;
}
.about-md-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 0.9rem;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.08);
}
.about-md-copy h3 { margin: 0.25rem 0 0.75rem; font-size: 1.4rem; }
.about-md-copy p { margin: 0; line-height: 1.75; }

.about-reviews-wrap { overflow: hidden; }
.about-reviews-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: aboutReviewFlow 16s linear infinite;
}
.about-reviews-wrap:hover .about-reviews-track { animation-play-state: paused; }
.about-review-card {
  min-width: min(320px, 86vw);
  max-width: 340px;
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: 0.9rem;
  padding: 0.95rem;
  background: linear-gradient(155deg, #0f172a 0%, #1e3a8a 56%, #6d28d9 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.28);
}
.about-review-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.55rem; }
.about-review-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.16); object-fit: cover; }
.about-review-name { margin: 0; font-size: 0.9rem; font-weight: 600; color: #fff; }
.about-review-stars { margin: 0.08rem 0 0; font-size: 0.74rem; letter-spacing: 0.08em; color: #c4b5fd; }
.about-review-text { margin: 0; font-size: 0.84rem; line-height: 1.65; color: rgba(255,255,255,0.9); }
@keyframes aboutReviewFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* Blog view / blog post */
.blog-post { max-width: 900px; margin: 0 auto; }
.blog-post h1 { margin-top:0; }
.blog-post .featured { width:100%; max-height:430px; object-fit:cover; border-radius:14px; margin:.8rem 0 1rem; }
.blog-content { color:var(--muted); line-height:1.8; font-size:.95rem; }
.blog-gallery { margin-top:1rem; display:grid; gap:.6rem; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); }
.blog-gallery img { width:100%; height:120px; object-fit:cover; border-radius:10px; }
.video-wrap { margin-top:1rem; border-radius:12px; overflow:hidden; border:1px solid var(--line); }
.video-wrap iframe { width:100%; height:360px; display:block; }
.internal-links { margin-top:1rem; font-size:.88rem; }
.internal-links a { color:#bfdbfe; }

/* Blog listing */
.blog-grid { display:grid; gap:1rem; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
.blog-card img { width:100%; height:180px; object-fit:cover; border-radius:12px; }
.blog-card-body h2 { margin:0.75rem 0 0.35rem; font-size:1.05rem; }
.blog-card-body p { margin:0; color:var(--muted); font-size:.86rem; line-height:1.6; }
.blog-card .btn { margin-top:0.75rem; }
.blog-featured-links { display:grid; gap:1rem; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
.blog-subheading { font-size: 1.1rem; }
.blog-page .contact-seo-content,
.blog-page .contact-seo-content p,
.blog-page .contact-seo-content ul,
.blog-page .contact-seo-content li,
.blog-page .contact-seo-content h2,
.blog-page .contact-seo-content h3 { color: #000; }

/* Services page — brief: equal-height cards + grid rhythm */
.page-services .services-modern-card,
.page-services .services-modern-card.service-card,
.page-services .service-card {
  padding: 1.25rem 1.1rem 1.3rem;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.2), rgba(29, 78, 216, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  min-height: 170px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-services .services-modern-card h3 {
  color: #ffffff;
  margin-top: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-services .services-modern-icon {
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.55), rgba(29, 78, 216, 0.48));
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  margin: 0 auto 8px;
}
.page-services .services-modern-emoji { margin-top: 0.35rem; }
.services-demo-panel-inner {
  background: #ffffff;
  color: #0f172a;
}
.services-demo-panel-inner h3,
.services-demo-panel-inner .form-label { color: #0f172a !important; }
.services-demo-panel-inner .form-input,
.services-demo-panel-inner .form-textarea,
.services-demo-panel-inner select.form-input {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.2);
}
.services-demo-panel-inner .form-input::placeholder,
.services-demo-panel-inner .form-textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}
.services-only-highlight {
  background: #fff7f0;
  border-radius: 1rem;
  padding: 1.1rem;
  margin-top: 1.25rem;
}
.services-only-highlight .section-subtitle,
.services-only-highlight p,
.services-only-highlight li { line-height: 1.75; }
.services-why-grid-local {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.services-why-grid-local li {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255,255,255,0.04);
}
.services-why-grid-local h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.services-why-grid-local p { margin: 0; font-size: 0.88rem; }


/* Clients page */
.clients-reviews-wrap { overflow: hidden; }
.clients-reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: clientsReviewsFlow 28s linear infinite;
  will-change: transform;
}
.clients-reviews-wrap:hover .clients-reviews-track { animation-play-state: paused; }
.clients-review-card {
  min-width: min(320px, 86vw);
  max-width: 340px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.9rem;
  background: rgba(0,0,0,0.34);
  padding: 0.95rem;
}
.clients-review-head { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.6rem; }
.clients-review-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: rgba(255,255,255,0.16); }
.clients-review-name { margin: 0; font-size: 0.9rem; font-weight: 600; color: #fff; }
.clients-review-stars { margin: 0.1rem 0 0; letter-spacing: 0.08em; font-size: 0.74rem; }
.clients-review-text { margin: 0; font-size: 0.84rem; line-height: 1.65; color: rgba(255,255,255,0.8); }
@keyframes clientsReviewsFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

/* Local SEO landing pages */
.seo-local-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.seo-local-panel {
  padding: 1.5rem;
  border-radius: 1.1rem;
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}
.seo-local-panel h1,
.seo-local-panel h2,
.seo-local-panel h3 { margin-top: 0; }
.seo-local-media img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.seo-local-points {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}
.seo-local-points li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.seo-local-points .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--accent);
  flex: 0 0 auto;
}
.seo-local-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.seo-local-card {
  padding: 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.seo-local-card h3 { margin-bottom: 0.55rem; font-size: 1rem; }
.seo-local-prose { max-width: 70rem; }
.seo-local-prose p { color: var(--muted); line-height: 1.85; }
.seo-local-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(147, 197, 253, 0.25);
}

/* Long-form blog articles */
.blog-article-wrap { max-width: 920px; margin: 0 auto; }
.blog-breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.blog-breadcrumbs a { color: #bfdbfe; text-decoration: none; }
.blog-meta-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.84rem; color: var(--muted); margin: 0.85rem 0 1.1rem; }
.blog-featured-image { width: 100%; border-radius: 1rem; margin: 0 0 1.25rem; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 18px 44px rgba(0,0,0,0.22); }
.blog-article-content p { color: var(--muted); line-height: 1.9; }
.blog-article-content h2 { margin-top: 1.75rem; }
.blog-article-content ul { color: var(--muted); line-height: 1.8; }
.blog-cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(147, 197, 253, 0.25);
}

/* ——— Careers page (SMR ONEWAY) ——— */
.page-careers .max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.careers-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.careers-breadcrumb a {
  color: #bfdbfe;
  text-decoration: none;
}
.careers-breadcrumb a:hover { text-decoration: underline; }
.careers-breadcrumb-current { color: rgba(255, 255, 255, 0.92); font-weight: 600; }

.careers-hero-section { padding-top: 2.5rem; }


.careers-hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}


.careers-hero-eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 0.65rem;
}
.careers-hero-title { margin-bottom: 0.75rem; line-height: 1.15; }
.careers-hero-lead { margin-bottom: 1.35rem; }

.careers-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.careers-trust-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.careers-trust-chips li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(255, 255, 255, 0.92);
}

.careers-hero-visual-wrap { perspective: 1200px; }
.careers-hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.careers-glass-frame {
  position: relative;
  border-radius: 1.35rem;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  animation: careersGlassFloat 8s ease-in-out infinite;
}
@keyframes careersGlassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.careers-glass-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.careers-glass-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.careers-glass-dot:nth-child(1) { background: #f87171; }
.careers-glass-dot:nth-child(2) { background: #fbbf24; }
.careers-glass-dot:nth-child(3) { background: #4ade80; }
.careers-glass-title {
  margin-left: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.careers-slide-stack {
  position: relative;
  min-height: 200px;
}


.careers-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.94) translateY(10px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.careers-hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.careers-role-card {
  border-radius: 1rem;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.careers-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  margin-bottom: 0.65rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}
.careers-role-badge--cyan {
  background: linear-gradient(135deg, #0891b2, #2563eb);
}
.careers-role-badge--violet {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-family: Georgia, serif;
}
.careers-role-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.careers-role-card-desc {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.careers-role-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.careers-role-meta li {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.careers-hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.careers-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}
.careers-hero-dot.is-active {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  transform: scale(1.15);
}
.careers-hero-dot:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.careers-section-head { margin-bottom: 1.75rem; max-width: 42rem; }
.careers-section-sub { margin-top: 0.5rem; }

.careers-job-grid {
  display: grid;
  gap: 1.1rem;
}



.careers-job-card {
  border-radius: 1.1rem;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(165deg, rgba(18, 31, 56, 0.95), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.careers-job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 197, 253, 0.35);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.18);
}
.careers-job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.careers-job-icon {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(147, 197, 253, 0.25);
  font-size: 1.1rem;
}
.careers-job-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.careers-job-tags {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.careers-job-tags li {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}
.careers-job-desc {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.careers-skill-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.careers-skill-chips li {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.12);
}

.careers-why-grid {
  display: grid;
  gap: 1rem;
}



.careers-why-card {
  border-radius: 1rem;
  padding: 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.careers-why-card h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 0.98rem;
  color: #fff;
}
.careers-why-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.careers-why-icon {
  display: inline-flex;
  font-size: 1rem;
  color: #60a5fa;
  opacity: 0.95;
}

.careers-form-shell {
  padding: 1.5rem 1.35rem 1.65rem;
}


.careers-form-summary {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.careers-form-summary--error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fecaca;
}
.careers-form-summary--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #a7f3d0;
}

.careers-form-grid {
  display: grid;
  gap: 1rem 1.1rem;
}

.careers-form-field--full {
  grid-column: 1 / -1;
}

.careers-req { color: #f87171; }

.careers-field-error {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fecaca;
}

.page-careers .careers-form .form-input:focus,
.page-careers .careers-form .form-textarea:focus,
.page-careers .careers-form select.form-input:focus {
  outline: none;
  border-color: rgba(147, 197, 253, 0.65);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.28);
}

.careers-textarea { resize: vertical; min-height: 96px; }

.careers-upload-zone {
  position: relative;
  margin-top: 0.35rem;
  border-radius: 1rem;
  border: 2px dashed rgba(147, 197, 253, 0.45);
  background: rgba(15, 23, 42, 0.45);
  min-height: 140px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.careers-upload-zone.is-drag {
  border-color: #60a5fa;
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}
.careers-upload-zone:focus-within,
.careers-upload-zone:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.28);
}
.careers-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  font-size: 0;
}
.careers-upload-inner {
  position: relative;
  z-index: 1;
  pointer-events: none;
  padding: 1.25rem 1rem;
  text-align: center;
}
.careers-upload-title {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.careers-upload-hint {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.careers-upload-filename {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
}
.careers-upload-filename-label { color: rgba(255, 255, 255, 0.65); font-weight: 500; }

.careers-upload-note-light {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 0.8rem;
  line-height: 1.55;
  border: 1px solid #cbd5e1;
}

.careers-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.careers-timeline {
  list-style: none;
  padding: 0;
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}
.careers-timeline::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.5), rgba(124, 58, 237, 0.35));
  border-radius: 999px;
}

.careers-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.65rem 0 1.35rem 0;
}
.careers-timeline-num {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  z-index: 1;
}
.careers-timeline-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #fff;
}
.careers-timeline-step p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.careers-faq-accordion { margin-top: 1.5rem; }

.careers-final-cta-inner {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.35rem;
  border-radius: 1.25rem;
  background: linear-gradient(150deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.16));
  border: 1px solid rgba(147, 197, 253, 0.3);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}
.careers-final-cta-text { margin-bottom: 1.25rem !important; }
.careers-final-cta-btns { justify-content: center; margin-bottom: 0; }

/* Careers — purple + gold card system, form field contrast, HR mailto buttons */
.page-careers {
  --careers-gold: #eab308;
  --careers-gold-soft: #fde68a;
  --careers-purple: #7c3aed;
  --careers-purple-deep: #4c1d95;
}

.page-careers .careers-premium-card,
.page-careers .careers-job-card,
.page-careers .careers-why-card,
.page-careers .careers-glass-frame,
.page-careers .careers-role-card,
.page-careers .careers-final-cta-inner {
  border: 1px solid rgba(234, 179, 8, 0.48);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.42),
    0 22px 56px rgba(36, 8, 68, 0.52),
    inset 0 1px 0 rgba(253, 224, 71, 0.16);
  background: linear-gradient(
    160deg,
    rgba(88, 28, 135, 0.52) 0%,
    rgba(15, 23, 42, 0.96) 44%,
    rgba(26, 12, 52, 0.97) 100%
  );
}

.page-careers .careers-job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 224, 71, 0.72);
  box-shadow:
    0 0 0 1px rgba(192, 132, 252, 0.55),
    0 28px 68px rgba(88, 28, 135, 0.48),
    inset 0 1px 0 rgba(253, 224, 71, 0.22);
}

.page-careers .careers-why-card:hover {
  border-color: rgba(253, 224, 71, 0.55);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.35),
    0 18px 44px rgba(36, 8, 68, 0.4),
    inset 0 1px 0 rgba(253, 224, 71, 0.14);
}

.page-careers .careers-job-icon {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.32), rgba(124, 58, 237, 0.38));
  border: 1px solid rgba(253, 224, 71, 0.42);
  box-shadow: 0 6px 18px rgba(88, 28, 135, 0.35);
}

.page-careers .careers-skill-chips li {
  border: 1px solid rgba(196, 181, 253, 0.55);
  color: #fef9c3;
  background: rgba(76, 29, 149, 0.38);
}

.page-careers .careers-why-icon {
  color: #fde047;
  text-shadow: 0 0 18px rgba(234, 179, 8, 0.45);
}

.page-careers .careers-hero-dot.is-active {
  background: linear-gradient(135deg, #fde047, #a855f7);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.55);
}

.page-careers .careers-timeline::before {
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.85), rgba(124, 58, 237, 0.7));
}

.page-careers .careers-timeline-num {
  background: linear-gradient(135deg, #ca8a04, #6d28d9);
  box-shadow: 0 10px 28px rgba(234, 179, 8, 0.28);
}

.page-careers .careers-role-badge {
  background: linear-gradient(135deg, #a855f7, #eab308);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
}
.page-careers .careers-role-badge--cyan {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.page-careers .careers-role-badge--violet {
  background: linear-gradient(135deg, #eab308, #7c3aed);
}

.page-careers .careers-faq-accordion .faq-item {
  border: 1px solid rgba(196, 181, 253, 0.35);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: inset 0 1px 0 rgba(253, 224, 71, 0.06);
}
.page-careers .careers-faq-accordion .faq-question {
  color: #fefce8;
}
.page-careers .careers-faq-accordion .faq-answer {
  color: rgba(254, 252, 232, 0.9);
}

.page-careers .careers-hr-btn {
  border: 1px solid rgba(250, 204, 21, 0.7) !important;
  background: linear-gradient(135deg, rgba(91, 33, 212, 0.65), rgba(15, 23, 42, 0.92)) !important;
  color: #fef9c3 !important;
  box-shadow: 0 0 28px rgba(234, 179, 8, 0.18);
}
.page-careers .careers-hr-btn:hover {
  border-color: rgba(253, 224, 71, 0.95) !important;
  color: #fffbeb !important;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.78), rgba(15, 23, 42, 0.88)) !important;
  filter: brightness(1.05);
}

/* Application form: explicit light text on dark fields (fixes white-on-white from global .form-input) */
.page-careers .careers-form-shell .form-label {
  color: #fef3c7;
}
.page-careers .careers-form-shell .label-optional {
  color: rgba(253, 224, 71, 0.78);
  font-weight: 500;
}
.page-careers .careers-form-shell .form-input,
.page-careers .careers-form-shell .form-textarea,
.page-careers .careers-form-shell select.form-input {
  background: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(196, 181, 253, 0.5) !important;
  color: #f8fafc !important;
}
.page-careers .careers-form-shell .form-input::placeholder,
.page-careers .careers-form-shell .form-textarea::placeholder {
  color: rgba(226, 232, 240, 0.48) !important;
}
.page-careers .careers-form-shell select.form-input {
  color: #f8fafc !important;
}
.page-careers .careers-form-shell select.form-input option {
  background: #1e1034;
  color: #f8fafc;
}

.page-careers .careers-form-shell .form-input:focus,
.page-careers .careers-form-shell .form-textarea:focus,
.page-careers .careers-form-shell select.form-input:focus {
  outline: none !important;
  border-color: rgba(253, 224, 71, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.38) !important;
}

.page-careers .careers-upload-zone {
  border-color: rgba(196, 181, 253, 0.55);
  background: rgba(15, 23, 42, 0.65);
}
.page-careers .careers-upload-zone.is-drag {
  border-color: rgba(253, 224, 71, 0.75);
  background: rgba(76, 29, 149, 0.35);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.22);
}

.page-careers .careers-req {
  color: #fcd34d;
}

/* =====================================================================
   HOME — Our Core Services: Cinematic (atmospheric, no characters)
   Emphasis: real physics-feel — rain streaks with glowing heads + splash
   rings, light beams, radar pulses, 3D glass panels, lens flares.
   ===================================================================== */
.cinematic-scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 0%,  rgba(99, 102, 241, 0.32), transparent 62%),
    radial-gradient(ellipse at 15% 100%, rgba(139, 92, 246, 0.20), transparent 60%),
    radial-gradient(ellipse at 85% 100%, rgba(14, 165, 233, 0.14), transparent 60%),
    linear-gradient(165deg, #070b19 0%, #0b1226 55%, #04060d 100%);
  color: #e0e7ff;
  perspective: 800px;
}
.cinematic-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(224, 231, 255, 0.6),  transparent 55%),
    radial-gradient(1px 1px at 28% 62%, rgba(224, 231, 255, 0.35), transparent 55%),
    radial-gradient(1px 1px at 72% 34%, rgba(224, 231, 255, 0.5),  transparent 55%),
    radial-gradient(1px 1px at 86% 78%, rgba(224, 231, 255, 0.3),  transparent 55%),
    radial-gradient(1px 1px at 55% 14%, rgba(224, 231, 255, 0.55), transparent 55%),
    radial-gradient(1px 1px at 40% 88%, rgba(224, 231, 255, 0.3),  transparent 55%);
  opacity: 0.85;
  animation: csTwinkle 5s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes csTwinkle {
  from { opacity: 0.85; }
  to   { opacity: 0.35; }
}
.cinematic-scene > .cs-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(129, 140, 248, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.25) 0%, transparent 25%, transparent 70%, rgba(2, 6, 23, 0.55) 100%);
  z-index: 5;
}
.cs-bars::before,
.cs-bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 6.5%;
  background: #000;
  pointer-events: none;
  z-index: 7;
}
.cs-bars::before { top: 0; }
.cs-bars::after  { bottom: 0; }

/* Film grain overlay for filmic texture */
.cs-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.8px),
    radial-gradient(rgba(0,0,0,0.6) 0.6px, transparent 0.8px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  animation: csGrain 1.1s steps(4) infinite;
}
@keyframes csGrain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1px, 1px); }
  50%  { transform: translate(1px, -1px); }
  75%  { transform: translate(-1px, -1px); }
  100% { transform: translate(0, 0); }
}

/* Ground horizon glow (wet-looking surface) */
.cs-ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.55) 15%, rgba(167, 139, 250, 0.85) 50%, rgba(129, 140, 248, 0.55) 85%, transparent);
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.6), 0 0 40px rgba(139, 92, 246, 0.3);
  z-index: 2;
}
.cs-ground::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 28px;
  background: linear-gradient(180deg, rgba(99,102,241,0.18), transparent);
  filter: blur(6px);
}

/* ========================================================
   Cinematic "content reveal" — kinetic title, rotating keywords,
   animated CTA pill. Lives on every card above the scene fx.
   ======================================================== */
.cs-reveal {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translate(-50%, 12px) scale(0.96);
  z-index: 5;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  max-width: calc(100% - 24px);
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  animation: csRevealIn 8s ease-out infinite;
}
@keyframes csRevealIn {
  0%, 50%   { opacity: 0; transform: translate(-50%, 14px) scale(0.94); filter: blur(4px); }
  62%, 90%  { opacity: 1; transform: translate(-50%, 0)    scale(1);    filter: blur(0); }
  100%      { opacity: 0; transform: translate(-50%, -6px) scale(1.02); filter: blur(2.5px); }
}

/* Kinetic shimmer-sweep service title */
.cs-title {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.1;
  white-space: nowrap;
  background-image: linear-gradient(
    100deg,
    #c7d2fe 0%,
    #f5f3ff 18%,
    #ffffff 30%,
    #c4b5fd 45%,
    #e0e7ff 60%,
    #ffffff 78%,
    #c7d2fe 100%
  );
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 28px rgba(165, 180, 252, 0.5);
  filter: drop-shadow(0 1px 0 rgba(165, 180, 252, 0.35));
  animation: csShimmer 3.5s linear infinite;
}
@keyframes csShimmer {
  0%   { background-position: 220% 0; }
  100% { background-position: 0 0; }
}

/* Rotating keyword strip (3 items cycle) */
.cs-keywords {
  position: relative;
  height: 10px;
  width: 160px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(224, 231, 255, 0.78);
}
.cs-keywords li {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: csKwCycle 6s ease-in-out infinite;
}
.cs-keywords li::before,
.cs-keywords li::after {
  content: "";
  width: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 210, 254, 0.7), transparent);
}
.cs-keywords li:nth-child(1) { animation-delay: 0s;   }
.cs-keywords li:nth-child(2) { animation-delay: 2s;   }
.cs-keywords li:nth-child(3) { animation-delay: 4s;   }
@keyframes csKwCycle {
  0%, 2%    { opacity: 0; transform: translateY(5px); filter: blur(2px); }
  8%, 28%   { opacity: 1; transform: translateY(0);   filter: blur(0); }
  34%, 100% { opacity: 0; transform: translateY(-5px); filter: blur(2px); }
}

/* Animated CTA pill — gradient border, shine sweep, pulse glow */
.cs-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background:
    linear-gradient(#101830, #101830) padding-box,
    linear-gradient(120deg, #6366f1, #60a5fa, #2563eb, #6366f1) border-box;
  background-size: 100% 100%, 280% 100%;
  border: 1px solid transparent;
  box-shadow:
    0 6px 18px rgba(99, 102, 241, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
  isolation: isolate;
  animation:
    csCtaFlow 3.4s linear infinite,
    csCtaPulse 2.2s ease-in-out infinite;
}
.cs-cta > em {
  font-style: normal;
  display: inline-block;
  transform: translateY(-0.5px);
  text-shadow: 0 0 8px rgba(165, 180, 252, 0.7);
  animation: csCtaArrow 2.2s ease-in-out infinite;
}
.cs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(99,102,241,0.35), rgba(168,85,247,0.25), rgba(34,211,238,0.3));
  background-size: 200% 100%;
  animation: csCtaFlowBg 3.4s linear infinite;
}
.cs-cta::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -50%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: csCtaShine 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes csCtaFlow {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 0 0, 280% 0; }
}
@keyframes csCtaFlowBg {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}
@keyframes csCtaShine {
  0%, 30%  { left: -50%; }
  60%, 100%{ left: 110%; }
}
@keyframes csCtaPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
  50%      { box-shadow: 0 10px 26px rgba(168, 85, 247, 0.7),  inset 0 1px 0 rgba(255, 255, 255, 0.25); }
}
@keyframes csCtaArrow {
  0%, 100% { transform: translate(0, -0.5px); }
  50%      { transform: translate(2px, -0.5px); }
}

/* Slow sweeping light beam — reused across scenes */
.cs-beam {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 180px;
  height: 180%;
  margin-left: -90px;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(165, 180, 252, 0.22), rgba(165, 180, 252, 0.06) 40%, transparent 75%);
  filter: blur(10px);
  mix-blend-mode: screen;
  opacity: 0.75;
  z-index: 1;
  animation: csBeam 9s ease-in-out infinite;
}
@keyframes csBeam {
  0%, 100% { transform: rotate(-14deg); }
  50%      { transform: rotate(14deg); }
}



/* =====================================================================
   SHARED: Realistic rain
   - .cs-drop-line = long streak with soft gradient + motion blur
   - .cs-drop-line::after = bright "head" orb glow
   - .cs-ripple = expanding splash ring at the ground
   ===================================================================== */
.cs-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.cs-drop-line {
  position: absolute;
  top: -40%;
  width: 1.6px;
  height: 46px;
  background: linear-gradient(180deg,
    rgba(199, 210, 254, 0) 0%,
    rgba(199, 210, 254, 0.15) 35%,
    rgba(224, 231, 255, 0.85) 90%,
    rgba(255, 255, 255, 1) 100%);
  filter: blur(0.35px) drop-shadow(0 0 4px rgba(165, 180, 252, 0.55));
  opacity: 0.85;
  animation: csFall 1.6s linear infinite;
}
.cs-drop-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, rgba(199, 210, 254, 0.3) 55%, transparent 80%);
  filter: blur(0.4px);
  box-shadow:
    0 0 8px rgba(224, 231, 255, 0.9),
    0 0 14px rgba(129, 140, 248, 0.6);
}
@keyframes csFall {
  0%   { transform: translate3d(0, 0, 0)    scaleY(0.6); opacity: 0; }
  10%  { opacity: 0.9;  }
  90%  { opacity: 0.9;  }
  100% { transform: translate3d(0, 260px, 0) scaleY(1.1); opacity: 0; }
}
.cs-ripple {
  position: absolute;
  bottom: 13.5%;
  left: 50%;
  width: 18px;
  height: 3.5px;
  margin-left: -9px;
  border-radius: 50%;
  border: 1px solid rgba(199, 210, 254, 0.7);
  box-shadow: 0 0 8px rgba(165, 180, 252, 0.5);
  transform: scale(0.2);
  opacity: 0;
  animation: csRipple 1.6s ease-out infinite;
}
@keyframes csRipple {
  0%   { transform: scale(0.2); opacity: 0; }
  20%  { opacity: 0.8; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ============================ Scene 1 ============================
   Digital Marketing Services — broadcast pulse rings + god rays
   ================================================================ */
.cinematic-scene--digital-marketing .cs-core {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #a5b4fc 45%, #6366f1 100%);
  box-shadow:
    0 0 12px rgba(224, 231, 255, 1),
    0 0 30px rgba(129, 140, 248, 0.85),
    0 0 60px rgba(99, 102, 241, 0.65);
  z-index: 3;
  animation: dmCorePulse 2.4s ease-in-out infinite;
}
@keyframes dmCorePulse {
  0%, 100% { transform: scale(0.9); filter: brightness(0.9); }
  50%      { transform: scale(1.15); filter: brightness(1.4); }
}
.cinematic-scene--digital-marketing .cs-pulse {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(165, 180, 252, 0.85);
  box-shadow: 0 0 18px rgba(129, 140, 248, 0.5);
  transform: scale(0);
  opacity: 0;
  z-index: 3;
  animation: dmPulse 3s ease-out infinite;
}
.cinematic-scene--digital-marketing .cs-pulse:nth-child(2) { animation-delay: 1s; border-color: rgba(196, 181, 253, 0.85); }
.cinematic-scene--digital-marketing .cs-pulse:nth-child(3) { animation-delay: 2s; border-color: rgba(125, 211, 252, 0.85); }
@keyframes dmPulse {
  0%   { transform: scale(0.2); opacity: 0.9; border-width: 2px; }
  70%  { opacity: 0.4; }
  100% { transform: scale(4.8); opacity: 0; border-width: 0.3px; }
}
.cinematic-scene--digital-marketing .cs-spark {
  position: absolute;
  bottom: 14%;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #a5b4fc, 0 0 12px #6366f1;
  opacity: 0;
  z-index: 3;
  animation: dmSpark 4s ease-out infinite;
}
.cinematic-scene--digital-marketing .cs-spark:nth-child(4)  { left: 18%; animation-delay: 0s; }
.cinematic-scene--digital-marketing .cs-spark:nth-child(5)  { left: 30%; animation-delay: 0.6s; }
.cinematic-scene--digital-marketing .cs-spark:nth-child(6)  { left: 42%; animation-delay: 1.2s; }
.cinematic-scene--digital-marketing .cs-spark:nth-child(7)  { left: 58%; animation-delay: 0.3s; }
.cinematic-scene--digital-marketing .cs-spark:nth-child(8)  { left: 72%; animation-delay: 1.8s; }
.cinematic-scene--digital-marketing .cs-spark:nth-child(9)  { left: 86%; animation-delay: 0.9s; }
@keyframes dmSpark {
  0%   { transform: translateY(0)   scale(0.3); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translateY(-90px) scale(1); opacity: 0; }
}

/* ============================ Scene 2 ============================
   SEO — radar pulse rings + scanning line + crystal lens zoom
   ================================================================ */
.cinematic-scene--seo .cs-radar {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(125, 211, 252, 0.75);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
  transform: scale(0.2);
  opacity: 0;
  z-index: 3;
  animation: seoRadar 2.6s ease-out infinite;
}
.cinematic-scene--seo .cs-radar:nth-child(2) { animation-delay: 0.9s; }
.cinematic-scene--seo .cs-radar:nth-child(3) { animation-delay: 1.7s; border-color: rgba(165, 180, 252, 0.75); }
@keyframes seoRadar {
  0%   { transform: scale(0.2); opacity: 0.9; }
  100% { transform: scale(4); opacity: 0; }
}
.cinematic-scene--seo .cs-scan {
  position: absolute;
  left: 0; right: 0;
  top: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.85), transparent);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.7), 0 0 24px rgba(14, 165, 233, 0.45);
  filter: blur(0.4px);
  z-index: 3;
  animation: seoScan 3s ease-in-out infinite;
}
@keyframes seoScan {
  0%, 100% { top: 8%;  opacity: 0.2; }
  50%      { top: 78%; opacity: 1; }
}
.cinematic-scene--seo .cs-lens {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2.5px solid rgba(224, 231, 255, 0.95);
  box-shadow:
    inset 0 0 26px rgba(99, 102, 241, 0.4),
    inset 0 0 4px rgba(255, 255, 255, 0.85),
    0 0 30px rgba(167, 139, 250, 0.55);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.35) 0%, transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(165, 180, 252, 0.28), rgba(79, 70, 229, 0.1) 55%, transparent 72%);
  opacity: 0;
  transform-origin: 50% 50%;
  transform: scale(0.3) rotate(-8deg);
  z-index: 4;
  animation: seoLens 8s ease-in-out infinite;
}
.cinematic-scene--seo .cs-lens::after {
  content: "";
  position: absolute;
  bottom: -16px; right: -8px;
  width: 24px; height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(224, 231, 255, 0.95), rgba(165, 180, 252, 0.55));
  transform: rotate(42deg);
  box-shadow: 0 0 10px rgba(165, 180, 252, 0.55);
}
@keyframes seoLens {
  0%, 38%  { opacity: 0; transform: scale(0.3)   rotate(-12deg); filter: blur(4px); }
  55%      { opacity: 1; transform: scale(1)     rotate(0deg);   filter: blur(0); }
  90%      { opacity: 1; transform: scale(1.02)  rotate(2deg);   filter: blur(0); }
  100%     { opacity: 0; transform: scale(1.18)  rotate(6deg);   filter: blur(2.5px); }
}

/* ============================ Scene 3 ============================
   Social Media — diagonal liquid rain + splash ripples + puddle glow
   ================================================================ */
.cinematic-scene--social-media .cs-rain { transform: rotate(-12deg) scale(1.15); transform-origin: 50% 50%; }
.cinematic-scene--social-media .cs-drop-line {
  background: linear-gradient(180deg,
    rgba(244, 114, 182, 0) 0%,
    rgba(244, 114, 182, 0.18) 35%,
    rgba(244, 114, 182, 0.85) 90%,
    rgba(255, 255, 255, 1) 100%);
  filter: blur(0.35px) drop-shadow(0 0 5px rgba(244, 114, 182, 0.55));
}
.cinematic-scene--social-media .cs-drop-line:nth-child(1)  { left: 8%;  top: -45%; animation-duration: 1.3s; animation-delay: 0s; }
.cinematic-scene--social-media .cs-drop-line:nth-child(2)  { left: 18%; top: -40%; animation-duration: 1.6s; animation-delay: 0.2s; background: linear-gradient(180deg, rgba(96,165,250,0) 0%, rgba(96,165,250,0.2) 35%, rgba(96,165,250,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(59,130,246,0.6)); }
.cinematic-scene--social-media .cs-drop-line:nth-child(3)  { left: 26%; top: -50%; animation-duration: 1.4s; animation-delay: 0.7s; background: linear-gradient(180deg, rgba(52,211,153,0) 0%, rgba(52,211,153,0.18) 35%, rgba(52,211,153,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(16,185,129,0.6)); }
.cinematic-scene--social-media .cs-drop-line:nth-child(4)  { left: 36%; top: -35%; animation-duration: 1.7s; animation-delay: 0.4s; }
.cinematic-scene--social-media .cs-drop-line:nth-child(5)  { left: 46%; top: -48%; animation-duration: 1.5s; animation-delay: 1.1s; background: linear-gradient(180deg, rgba(250,204,21,0) 0%, rgba(250,204,21,0.2) 35%, rgba(250,204,21,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(245,158,11,0.6)); }
.cinematic-scene--social-media .cs-drop-line:nth-child(6)  { left: 56%; top: -42%; animation-duration: 1.4s; animation-delay: 0.9s; background: linear-gradient(180deg, rgba(34,211,238,0) 0%, rgba(34,211,238,0.22) 35%, rgba(34,211,238,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(6,182,212,0.6)); }
.cinematic-scene--social-media .cs-drop-line:nth-child(7)  { left: 66%; top: -38%; animation-duration: 1.6s; animation-delay: 0.3s; }
.cinematic-scene--social-media .cs-drop-line:nth-child(8)  { left: 76%; top: -46%; animation-duration: 1.5s; animation-delay: 1.3s; background: linear-gradient(180deg, rgba(168,85,247,0) 0%, rgba(168,85,247,0.2) 35%, rgba(168,85,247,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(147,51,234,0.6)); }
.cinematic-scene--social-media .cs-drop-line:nth-child(9)  { left: 86%; top: -40%; animation-duration: 1.3s; animation-delay: 0.6s; }
.cinematic-scene--social-media .cs-drop-line:nth-child(10) { left: 94%; top: -44%; animation-duration: 1.7s; animation-delay: 1.5s; background: linear-gradient(180deg, rgba(239,68,68,0) 0%, rgba(239,68,68,0.2) 35%, rgba(239,68,68,0.9) 90%, #fff 100%); filter: blur(0.3px) drop-shadow(0 0 5px rgba(220,38,38,0.6)); }
.cinematic-scene--social-media .cs-ripple:nth-child(1) { left: 22%; animation-delay: 0.3s; }
.cinematic-scene--social-media .cs-ripple:nth-child(2) { left: 48%; animation-delay: 0.9s; }
.cinematic-scene--social-media .cs-ripple:nth-child(3) { left: 72%; animation-delay: 1.3s; }
.cinematic-scene--social-media .cs-ripple:nth-child(4) { left: 58%; animation-delay: 1.9s; }
.cinematic-scene--social-media .cs-puddle {
  position: absolute;
  left: 0; right: 0;
  bottom: 10%;
  height: 26px;
  background: radial-gradient(ellipse at 50% 100%, rgba(129, 140, 248, 0.45), transparent 60%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  animation: smShimmer 3s ease-in-out infinite alternate;
}
@keyframes smShimmer {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* ============================ Scene 4 ============================
   Content Marketing — 3D paper pages + typewriter lines + cursor
   ================================================================ */
.cinematic-scene--content-marketing .cs-page {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 58%;
  height: 54%;
  margin-left: -29%;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 6px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 3px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform-origin: 50% 50%;
  transform: perspective(600px) rotateX(18deg) rotateY(-10deg);
  z-index: 3;
  overflow: hidden;
}
.cinematic-scene--content-marketing .cs-page::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}
.cinematic-scene--content-marketing .cs-page::after {
  content: "";
  position: absolute;
  inset: 18% 12% 12% 12%;
  background:
    linear-gradient(to right, #0f172a 0 30%, transparent 30% 100%) top/100% 8% no-repeat,
    linear-gradient(to right, #64748b 0 85%, transparent 85% 100%) 0 22%/100% 4% no-repeat,
    linear-gradient(to right, #64748b 0 70%, transparent 70% 100%) 0 36%/100% 4% no-repeat,
    linear-gradient(to right, #64748b 0 92%, transparent 92% 100%) 0 50%/100% 4% no-repeat,
    linear-gradient(to right, #64748b 0 60%, transparent 60% 100%) 0 64%/100% 4% no-repeat,
    linear-gradient(to right, #6366f1 0 40%, transparent 40% 100%) 0 82%/100% 5% no-repeat;
  opacity: 0;
  animation: cmTypewrite 8s ease-in-out infinite;
}
@keyframes cmTypewrite {
  0%, 10%  { opacity: 0; clip-path: inset(0 100% 0 0); }
  45%      { opacity: 1; clip-path: inset(0 0 0 0); }
  88%      { opacity: 1; clip-path: inset(0 0 0 0); }
  100%     { opacity: 0; clip-path: inset(0 0 0 0); }
}
.cinematic-scene--content-marketing .cs-cursor {
  position: absolute;
  right: 34%;
  top: 74%;
  width: 2px;
  height: 8px;
  background: #1e293b;
  z-index: 4;
  animation: cmCursor 0.9s steps(2) infinite;
}
@keyframes cmCursor {
  0%, 50%  { opacity: 1; }
  51%, 100%{ opacity: 0; }
}
.cinematic-scene--content-marketing .cs-page-bg {
  position: absolute;
  left: 50%;
  top: 24%;
  width: 56%;
  height: 52%;
  margin-left: -28%;
  background: linear-gradient(180deg, rgba(203, 213, 225, 0.35), rgba(148, 163, 184, 0.25));
  border-radius: 6px;
  transform: perspective(600px) rotateX(18deg) rotateY(-10deg) translate(10px, 8px) translateZ(-30px);
  filter: blur(1.5px);
  z-index: 2;
}

/* ============================ Scene 5 ============================
   Website Development — cinematic matrix code rain (streaks + heads)
   ================================================================ */
.cinematic-scene--website-development .cs-rain,
.cinematic-scene--web-applications .cs-rain,
.cinematic-scene--google-ads .cs-rain { overflow: hidden; }
.cinematic-scene--website-development .cs-stream {
  position: absolute;
  top: -60%;
  width: 1.6px;
  height: 90px;
  background: linear-gradient(180deg,
    rgba(52, 211, 153, 0) 0%,
    rgba(52, 211, 153, 0.25) 40%,
    rgba(110, 231, 183, 0.9) 85%,
    #ecfeff 100%);
  filter: blur(0.3px) drop-shadow(0 0 5px rgba(16, 185, 129, 0.65));
  animation: wdFall 1.4s linear infinite;
}
.cinematic-scene--website-development .cs-stream::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 50%;
  width: 6px; height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, #ecfeff, rgba(110,231,183,0.4) 55%, transparent 80%);
  box-shadow: 0 0 10px #34d399, 0 0 18px rgba(16,185,129,0.65);
}
.cinematic-scene--website-development .cs-stream:nth-child(1)  { left: 6%;  animation-duration: 1.2s; animation-delay: 0s; }
.cinematic-scene--website-development .cs-stream:nth-child(2)  { left: 14%; animation-duration: 1.6s; animation-delay: 0.3s; }
.cinematic-scene--website-development .cs-stream:nth-child(3)  { left: 22%; animation-duration: 1.4s; animation-delay: 0.8s; }
.cinematic-scene--website-development .cs-stream:nth-child(4)  { left: 30%; animation-duration: 1.7s; animation-delay: 0.2s; }
.cinematic-scene--website-development .cs-stream:nth-child(5)  { left: 38%; animation-duration: 1.3s; animation-delay: 1s; }
.cinematic-scene--website-development .cs-stream:nth-child(6)  { left: 48%; animation-duration: 1.5s; animation-delay: 0.4s; }
.cinematic-scene--website-development .cs-stream:nth-child(7)  { left: 56%; animation-duration: 1.6s; animation-delay: 1.2s; }
.cinematic-scene--website-development .cs-stream:nth-child(8)  { left: 64%; animation-duration: 1.3s; animation-delay: 0.1s; }
.cinematic-scene--website-development .cs-stream:nth-child(9)  { left: 72%; animation-duration: 1.7s; animation-delay: 0.6s; }
.cinematic-scene--website-development .cs-stream:nth-child(10) { left: 80%; animation-duration: 1.4s; animation-delay: 1.4s; }
.cinematic-scene--website-development .cs-stream:nth-child(11) { left: 88%; animation-duration: 1.5s; animation-delay: 0.5s; }
.cinematic-scene--website-development .cs-stream:nth-child(12) { left: 94%; animation-duration: 1.6s; animation-delay: 1.1s; }
@keyframes wdFall {
  0%   { transform: translateY(0)   scaleY(0.7); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(300px) scaleY(1.15); opacity: 0; }
}
.cinematic-scene--website-development .cs-groundglow {
  position: absolute;
  left: 0; right: 0;
  bottom: 12%;
  height: 30px;
  background: radial-gradient(ellipse at 50% 100%, rgba(52, 211, 153, 0.35), transparent 65%);
  filter: blur(8px);
  z-index: 1;
}

/* ============================ Scene 6 ============================
   Web Applications (SaaS / CRM) — 3D dashboard glass cards (stagger)
   ================================================================ */
.cinematic-scene--web-applications .cs-stage-3d {
  position: absolute;
  inset: 0;
  perspective: 700px;
  z-index: 3;
}
.cinematic-scene--web-applications .cs-card {
  position: absolute;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(224, 231, 255, 0.96), rgba(165, 180, 252, 0.55));
  box-shadow:
    0 18px 30px rgba(2, 6, 23, 0.55),
    0 4px 10px rgba(2, 6, 23, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform-style: preserve-3d;
  overflow: hidden;
  opacity: 0;
  transform: translateZ(-120px) translateY(14px) rotateY(-14deg) rotateX(14deg);
  animation: waCardIn 6s ease-out infinite;
}
.cinematic-scene--web-applications .cs-card::before {
  content: "";
  position: absolute;
  top: 6px; left: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 10px 0 0 #f59e0b, 20px 0 0 #10b981;
}
.cinematic-scene--web-applications .cs-card::after {
  content: "";
  position: absolute;
  inset: 22% 10% 10% 10%;
  background:
    linear-gradient(90deg, #4f46e5 0 30%, transparent 30%) top/100% 4px no-repeat,
    linear-gradient(90deg, #94a3b8 0 60%, transparent 60%) 0 10px/100% 3px no-repeat,
    linear-gradient(90deg, #94a3b8 0 80%, transparent 80%) 0 18px/100% 3px no-repeat,
    linear-gradient(90deg, #6366f1 0 50%, transparent 50%) 0 26px/100% 3px no-repeat;
}
.cinematic-scene--web-applications .cs-card-1 {
  left: 14%; top: 18%;
  width: 42%; height: 58%;
  animation-delay: 0s;
}
.cinematic-scene--web-applications .cs-card-2 {
  left: 34%; top: 24%;
  width: 42%; height: 58%;
  animation-delay: 0.4s;
  background: linear-gradient(180deg, rgba(199, 210, 254, 0.98), rgba(129, 140, 248, 0.5));
}
.cinematic-scene--web-applications .cs-card-3 {
  left: 54%; top: 30%;
  width: 42%; height: 58%;
  animation-delay: 0.8s;
  background: linear-gradient(180deg, rgba(254, 240, 138, 0.92), rgba(250, 204, 21, 0.5));
}
@keyframes waCardIn {
  0%   { opacity: 0; transform: translateZ(-160px) translateY(20px) rotateY(-18deg) rotateX(18deg); }
  25%  { opacity: 1; transform: translateZ(0)      translateY(0)    rotateY(-14deg) rotateX(14deg); }
  80%  { opacity: 1; transform: translateZ(0)      translateY(0)    rotateY(-14deg) rotateX(14deg); }
  100% { opacity: 0; transform: translateZ(80px)   translateY(-8px) rotateY(-10deg) rotateX(10deg); }
}
.cinematic-scene--web-applications .cs-chart-bar {
  position: absolute;
  bottom: 16%;
  width: 6px;
  background: linear-gradient(180deg, #a5b4fc, #4338ca);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 8px rgba(129, 140, 248, 0.55);
  transform-origin: 50% 100%;
  animation: waBar 3s ease-out infinite;
  z-index: 3;
}
.cinematic-scene--web-applications .cs-chart-bar:nth-child(5) { left: 62%; height: 22%; animation-delay: 0.0s; }
.cinematic-scene--web-applications .cs-chart-bar:nth-child(6) { left: 70%; height: 32%; animation-delay: 0.15s; }
.cinematic-scene--web-applications .cs-chart-bar:nth-child(7) { left: 78%; height: 18%; animation-delay: 0.3s; }
.cinematic-scene--web-applications .cs-chart-bar:nth-child(8) { left: 86%; height: 40%; animation-delay: 0.45s; }
@keyframes waBar {
  0%   { transform: scaleY(0); }
  45%  { transform: scaleY(1); }
  95%  { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* ============================ Scene 7 ============================
   Google Ads — isometric rising bars + click ripple + floating $
   ================================================================ */
.cinematic-scene--google-ads .cs-iso {
  position: absolute;
  left: 50%;
  bottom: 22%;
  margin-left: -70px;
  width: 140px;
  height: 70px;
  transform: rotateX(58deg) rotateZ(-30deg);
  transform-style: preserve-3d;
  z-index: 3;
}
.cinematic-scene--google-ads .cs-iso-bar {
  position: absolute;
  bottom: 0;
  width: 18px;
  border-radius: 3px 3px 0 0;
  transform-origin: 50% 100%;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
  animation: gaBar 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cinematic-scene--google-ads .cs-iso-bar:nth-child(1) { left: 12px; height: 28px; background: linear-gradient(180deg, #60a5fa, #1d4ed8); animation-delay: 0s;   }
.cinematic-scene--google-ads .cs-iso-bar:nth-child(2) { left: 40px; height: 42px; background: linear-gradient(180deg, #f87171, #b91c1c); animation-delay: 0.15s;}
.cinematic-scene--google-ads .cs-iso-bar:nth-child(3) { left: 68px; height: 36px; background: linear-gradient(180deg, #fbbf24, #b45309); animation-delay: 0.3s; }
.cinematic-scene--google-ads .cs-iso-bar:nth-child(4) { left: 96px; height: 58px; background: linear-gradient(180deg, #34d399, #047857); animation-delay: 0.45s;}
@keyframes gaBar {
  0%   { transform: scaleY(0); opacity: 0; }
  20%  { opacity: 1; }
  65%  { transform: scaleY(1); }
  90%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.95); opacity: 0; }
}
.cinematic-scene--google-ads .cs-cursor {
  position: absolute;
  left: 50%;
  top: 32%;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 2px solid transparent;
  border-top: 14px solid #e0e7ff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transform: translate(-50%, 0) rotate(-28deg);
  z-index: 4;
  animation: gaClick 3.4s ease-in-out infinite;
}
@keyframes gaClick {
  0%, 18%  { transform: translate(-20%, -18px) rotate(-28deg); }
  28%      { transform: translate(-50%, 10px)  rotate(-28deg); }
  32%, 42% { transform: translate(-50%, 0)     rotate(-28deg); }
  72%, 100%{ transform: translate(40%, -14px)  rotate(-28deg); }
}
.cinematic-scene--google-ads .cs-click-ring {
  position: absolute;
  left: 50%; top: 38%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(251, 191, 36, 0.9);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 3;
  animation: gaRing 3.4s ease-out infinite;
}
@keyframes gaRing {
  0%, 28%  { transform: scale(0);   opacity: 0; }
  32%      { transform: scale(0.4); opacity: 1; }
  60%      { transform: scale(2.5); opacity: 0; }
  100%     { transform: scale(2.5); opacity: 0; }
}
.cinematic-scene--google-ads .cs-dollar {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fde68a, #d97706);
  color: #78350f;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8), inset 0 1px 0 rgba(255,255,255,0.6);
  opacity: 0;
  z-index: 3;
  animation: gaDollar 3.4s ease-out infinite;
}
.cinematic-scene--google-ads .cs-dollar::before { content: "$"; }
.cinematic-scene--google-ads .cs-dollar:nth-child(10) { left: 28%; top: 54%; animation-delay: 0.5s; }
.cinematic-scene--google-ads .cs-dollar:nth-child(11) { left: 54%; top: 48%; animation-delay: 1.2s; }
.cinematic-scene--google-ads .cs-dollar:nth-child(12) { left: 72%; top: 58%; animation-delay: 1.8s; }
@keyframes gaDollar {
  0%   { opacity: 0; transform: translateY(0)   scale(0.4); }
  25%  { opacity: 1; transform: translateY(-18px) scale(1); }
  70%  { opacity: 1; transform: translateY(-32px) scale(1); }
  100% { opacity: 0; transform: translateY(-48px) scale(0.85); }
}

/* ============================ Scene 8 ============================
   Trainings — whiteboard with drawn line + chalk dust + text swap
   ================================================================ */
.cinematic-scene--trainings .cs-board {
  position: absolute;
  left: 50%;
  top: 12%;
  width: 78%;
  height: 60%;
  margin-left: -39%;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border: 2px solid #94a3b8;
  box-shadow:
    0 12px 30px rgba(2, 6, 23, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  color: #1e293b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 3;
}
.cinematic-scene--trainings .cs-board::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: -7px;
  height: 4px;
  background: linear-gradient(180deg, #64748b, #334155);
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(2,6,23,0.4);
}
.cinematic-scene--trainings .cs-board svg {
  position: absolute;
  inset: 18% 12% 36% 12%;
  width: 76%;
  height: 46%;
  overflow: visible;
}
.cinematic-scene--trainings .cs-board svg path {
  fill: none;
  stroke: #6366f1;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  filter: drop-shadow(0 1px 0 rgba(79, 70, 229, 0.35));
  animation: trDraw 8s ease-in-out infinite;
}
@keyframes trDraw {
  0%, 10%  { stroke-dashoffset: 220; opacity: 0.4; }
  45%      { stroke-dashoffset: 0;   opacity: 1; }
  88%      { stroke-dashoffset: 0;   opacity: 1; }
  100%     { stroke-dashoffset: -220; opacity: 0; }
}
.cinematic-scene--trainings .cs-board-line {
  position: absolute;
  left: 0; right: 0;
  bottom: 10%;
  text-align: center;
  padding: 0 10px;
  opacity: 0;
  color: #334155;
}
.cinematic-scene--trainings .cs-board-line-1 { animation: trFade1 8s ease-in-out infinite; }
.cinematic-scene--trainings .cs-board-line-2 { animation: trFade2 8s ease-in-out infinite; }
@keyframes trFade1 {
  0%, 5%   { opacity: 0; transform: translateY(6px); }
  14%, 42% { opacity: 1; transform: translateY(0); }
  52%, 100%{ opacity: 0; transform: translateY(-6px); }
}
@keyframes trFade2 {
  0%, 52%   { opacity: 0; transform: translateY(6px); }
  62%, 92%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(-6px); }
}
.cinematic-scene--trainings .cs-dust {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(224, 231, 255, 0.8);
  box-shadow: 0 0 4px rgba(224, 231, 255, 0.6);
  opacity: 0;
  z-index: 3;
  animation: trDust 6s linear infinite;
}
.cinematic-scene--trainings .cs-dust:nth-child(3) { left: 28%; bottom: 22%; animation-delay: 0s; }
.cinematic-scene--trainings .cs-dust:nth-child(4) { left: 48%; bottom: 22%; animation-delay: 1s; }
.cinematic-scene--trainings .cs-dust:nth-child(5) { left: 68%; bottom: 22%; animation-delay: 2s; }
.cinematic-scene--trainings .cs-dust:nth-child(6) { left: 36%; bottom: 22%; animation-delay: 3s; }
.cinematic-scene--trainings .cs-dust:nth-child(7) { left: 58%; bottom: 22%; animation-delay: 4s; }
@keyframes trDust {
  0%   { opacity: 0; transform: translateY(0)   scale(0.4); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-26px) scale(1); }
}

/* ============================ Scene 9 ============================
   Real Estate Lead Generation — building rises, key with lens flare,
   window lights glow in sequence, ground fog
   ================================================================ */
.cinematic-scene--real-estate-lead-generation .cs-fog {
  position: absolute;
  left: 0; right: 0;
  bottom: 10%;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(165, 180, 252, 0.45) 60%, rgba(129, 140, 248, 0.35));
  filter: blur(8px);
  z-index: 1;
  animation: reFog 5s ease-in-out infinite alternate;
}
@keyframes reFog {
  from { opacity: 0.6; transform: translateX(-6px); }
  to   { opacity: 1;   transform: translateX(6px); }
}
.cinematic-scene--real-estate-lead-generation .cs-building {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  z-index: 3;
  animation: reBuild 8s cubic-bezier(0.25, 1, 0.35, 1) infinite;
}
.cinematic-scene--real-estate-lead-generation .cs-building::before {
  content: "";
  position: absolute;
  inset: 30% 0 0 0;
  background: linear-gradient(180deg, #a78bfa, #4c1d95);
  border-radius: 5px 5px 2px 2px;
  box-shadow:
    0 8px 24px rgba(99, 102, 241, 0.5),
    inset 0 2px 0 rgba(255,255,255,0.15),
    inset 0 -8px 16px rgba(0,0,0,0.3);
}
.cinematic-scene--real-estate-lead-generation .cs-building::after {
  content: "";
  position: absolute;
  top: 4px; left: 50%;
  width: 0; height: 0;
  margin-left: -44px;
  border-left: 44px solid transparent;
  border-right: 44px solid transparent;
  border-bottom: 22px solid #c4b5fd;
  filter: drop-shadow(0 4px 10px rgba(99, 102, 241, 0.5));
}
@keyframes reBuild {
  0%, 15%   { transform: scaleY(0); }
  38%, 100% { transform: scaleY(1); }
}
.cinematic-scene--real-estate-lead-generation .cs-windows {
  position: absolute;
  inset: 45% 24% 17% 24%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  padding: 2px;
  z-index: 4;
}
.cinematic-scene--real-estate-lead-generation .cs-windows span {
  background: #475569;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.5);
  animation: reLight 8s ease-in-out infinite;
}
.cinematic-scene--real-estate-lead-generation .cs-windows span:nth-child(1) { animation-delay: 2.5s; }
.cinematic-scene--real-estate-lead-generation .cs-windows span:nth-child(2) { animation-delay: 3.0s; }
.cinematic-scene--real-estate-lead-generation .cs-windows span:nth-child(3) { animation-delay: 3.5s; }
.cinematic-scene--real-estate-lead-generation .cs-windows span:nth-child(4) { animation-delay: 4.0s; }
@keyframes reLight {
  0%, 30%   { background: #475569; box-shadow: inset 0 0 4px rgba(0,0,0,0.5); }
  45%, 95%  { background: #fde68a; box-shadow: 0 0 8px rgba(251, 191, 36, 0.7), inset 0 0 4px rgba(180, 83, 9, 0.4); }
  100%      { background: #475569; box-shadow: inset 0 0 4px rgba(0,0,0,0.5); }
}
.cinematic-scene--real-estate-lead-generation .cs-key {
  position: absolute;
  top: 28%;
  left: 12%;
  width: 42px;
  height: 14px;
  transform-origin: 100% 50%;
  z-index: 4;
  opacity: 0;
  animation: reKey 8s ease-in-out infinite;
}
.cinematic-scene--real-estate-lead-generation .cs-key::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 14px; height: 14px;
  border: 3px solid #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.75), inset 0 0 4px rgba(180,83,9,0.3);
  box-sizing: border-box;
}
.cinematic-scene--real-estate-lead-generation .cs-key::after {
  content: "";
  position: absolute;
  left: 12px; top: 5px;
  width: 26px; height: 4px;
  background: linear-gradient(180deg, #fde68a, #d97706);
  border-radius: 2px;
  box-shadow:
    -8px 3px 0 -1px #d97706,
    -4px 3px 0 -1px #d97706,
    0 0 8px rgba(251, 191, 36, 0.6);
}
@keyframes reKey {
  0%, 28%   { opacity: 0; transform: rotate(-40deg) translate(-20px, -10px); }
  42%       { opacity: 1; transform: rotate(-6deg)  translate(0, 0); }
  58%, 92%  { opacity: 1; transform: rotate(6deg)   translate(0, 0); }
  100%      { opacity: 0; transform: rotate(-40deg) translate(-20px, -10px); }
}
.cinematic-scene--real-estate-lead-generation .cs-flare {
  position: absolute;
  top: 28%;
  left: 6%;
  width: 80px;
  height: 80px;
  margin: -25px 0 0 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.75) 0%, rgba(251, 191, 36, 0.25) 30%, transparent 65%);
  filter: blur(3px);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: reFlare 8s ease-in-out infinite;
}
@keyframes reFlare {
  0%, 35%   { opacity: 0; }
  48%, 60%  { opacity: 1; }
  70%, 100% { opacity: 0; }
}

/* Badge above scene layers */
.section-core-services-premium .cinematic-scene {
  background-color: #05070e;
}
.section-core-services-premium .cinematic-scene .core-service-badge {
  z-index: 8;
}

/* ============================================================
   Homepage polish: typography, spacing & visual hierarchy
   ============================================================ */

/* Hero subline — cleaner lead tagline vs body copy separation */
.hero-subline {
  font-size: 0.95rem;
  line-height: 1.65;
}
.hero-subline--lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.005em;
  max-width: 38rem;
}

.hero-contact-hint { font-size: 0.78rem; }


/* Popular service links — dark-theme friendly pills */
.home-power-links {
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.home-power-links a {
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(147, 197, 253, 0.18);
  color: #dbeafe;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.home-power-links a:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(147, 197, 253, 0.42);
  color: #ffffff;
  transform: translateY(-1px);
}
.home-power-links a .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: #93c5fd;
}

/* Why-chain cards — larger, more readable text */
.why-chain-card h3 {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.why-chain-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.why-chain-icon {
  width: 2.25rem;
  height: 2.25rem;
}
.why-chain-icon .icon {
  width: 1.15rem !important;
  height: 1.15rem !important;
}

/* Reviews card — cleaner header */
.reviews-home-card {
  padding: 1.25rem 1.1rem 1.1rem;
}
.reviews-home-head {
  text-align: center;
  margin-bottom: 0.25rem;
}
.reviews-home-head .eyebrow {
  margin-bottom: 0.35rem;
}
.reviews-home-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.005em;
  line-height: 1.35;
}


/* FAQ home card — premium, readable, well-spaced */
.faq-home-card {
  padding: 1.5rem 1.15rem 1.35rem;
}


.faq-home-layout {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

.faq-home-visual {
  margin: 0 auto;
  max-width: 220px;
  padding: 1rem 0.85rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(30, 58, 138, 0.38) 0%, rgba(15, 23, 42, 0.72) 100%);
  border: 1px solid rgba(147, 197, 253, 0.24);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
}

.faq-home-visual__svg {
  width: min(160px, 72vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.45));
}
.faq-home-visual__emoji {
  margin: 0;
  font-size: clamp(1.2rem, 3.2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-align: center;
}
.faq-home-content {
  min-width: 0;
}
.faq-home-eyebrow__icons {
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.faq-home-title-emoji {
  font-weight: 400;
  margin-left: 0.12em;
  opacity: 0.92;
}

.faq-home-head {
  text-align: center;
  margin-bottom: 1.1rem;
}
.faq-home-eyebrow {
  margin-bottom: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
}
.faq-home-card .faq-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}


/* FAQ items — roomier, scannable */
.faq-home-card .faq-item {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 0.85rem;
  margin-bottom: 0.55rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-home-card .faq-item:last-of-type {
  margin-bottom: 0;
}
.faq-home-card .faq-item:hover {
  border-color: rgba(147, 197, 253, 0.28);
  background: rgba(255, 255, 255, 0.04);
}
.faq-home-card .faq-item.open {
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(30, 58, 138, 0.14);
}
.faq-home-card .faq-question {
  padding: 0.95rem 1.05rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  gap: 1rem;
}

.faq-home-card .faq-answer {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 1.05rem;
}
.faq-home-card .faq-item.open .faq-answer {
  padding: 0 1.05rem 1rem;
  max-height: 36rem;
}

.faq-home-card .faq-answer a {
  color: #93c5fd;
  text-decoration: none;
  border-bottom: 1px dashed rgba(147, 197, 253, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.faq-home-card .faq-answer a:hover {
  color: #ffffff;
  border-bottom-color: rgba(147, 197, 253, 0.9);
}
.faq-home-card .faq-sign {
  font-size: 1.25rem;
  color: rgba(147, 197, 253, 0.85);
  font-weight: 400;
  width: 1.75rem;
}

.faq-services-link {
  font-size: 0.82rem !important;
  font-weight: 600;
  text-align: center;
  margin-top: 1.1rem !important;
  color: rgba(255, 255, 255, 0.7);
}
.faq-services-link a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.faq-services-link a:hover {
  color: #ffffff;
}

/* Homepage mobile polish: typography scale-down */


/* Stats — slightly more readable labels */
.stat-number { font-size: 1.55rem; }

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}

/* Section CTA band — consistent weight with the dark theme */
.section-core-services-premium .section-cta-band {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.section-core-services-premium .section-cta-band p {
  font-size: 1.05rem;
  font-weight: 600;
}


/* Hero actions — tighter alignment of CTA + phone hint on desktop */


/* Section title — ever so slightly crisper on home */
.section-home-reviews .section-title,
.section-core-services-premium h2#core-services-heading {
  letter-spacing: -0.015em;
}

/* Homepage premium refresh (UI only, SEO untouched) */
.home-page {
  padding-bottom: 5.6rem;
}
.home-page .home-hero-split {
  align-items: center;
  gap: 2.4rem;
}
.home-page .hero {
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.45));
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.home-page .hero-title {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
}
.home-page .hero-subline {
  color: rgba(226, 232, 240, 0.88);
}
.home-page .hero-actions .btn-primary.btn-hero-primary {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  color: #0f172a;
  box-shadow: 0 16px 38px rgba(15,23,42,0.3), 0 0 0 1px rgba(255,255,255,0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.home-page .hero-actions .btn-secondary {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.58);
}
.home-page .btn-hero-primary {
  font-weight: 700;
  padding: 0.82rem 1.35rem;
}
.home-page .hero-actions .btn-primary.btn-hero-primary:hover {
  filter: brightness(1);
  background: #e2e8f0;
  box-shadow: 0 18px 42px rgba(15,23,42,0.34), 0 0 0 1px rgba(255,255,255,0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.home-page .btn-hero-secondary {
  font-weight: 500;
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(148, 163, 184, 0.32);
  color: rgba(248, 250, 252, 0.92);
  box-shadow: none;
}
.home-page .hero-actions .btn:hover {
  transform: translateY(-2px);
}

.home-page .stat-item {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.68), rgba(30, 41, 59, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-page .core-service-card {
  border-color: rgba(148, 163, 184, 0.2);
}
.home-page .core-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.24), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.home-page .core-service-card:hover::after {
  opacity: 1;
}
.home-page .core-service-card p {
  color: rgba(226, 232, 240, 0.8);
}

.reviews-home-grid {
  padding: 1.25rem;
  border-radius: 1.2rem;
}
.reviews-home-sub {
  margin-top: 0.5rem;
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.92rem;
}
/* Homepage reviews: horizontal auto-marquee (no inner scroll) */
.reviews-home-marquee {
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.2rem 0 0.35rem;
}
.reviews-home-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.85rem;
  width: max-content;
  animation: homeReviewsProofMarquee 42s linear infinite;
  will-change: transform;
}
.reviews-home-marquee:hover .reviews-home-marquee-track {
  animation-play-state: paused;
}
.reviews-home-marquee-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.85rem;
}
.section-home-reviews .reviews-home-marquee .review-proof-card {
  flex: 0 0 auto;
  width: min(288px, 82vw);
  max-width: 320px;
}
@keyframes homeReviewsProofMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-proof-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(170deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.55));
}
.review-proof-result {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #a5b4fc;
}
.review-proof-text {
  margin: 0.6rem 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}
.review-proof-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.review-proof-meta strong {
  font-size: 0.82rem;
  color: #fff;
}
.review-proof-meta span {
  font-size: 0.74rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer-identity {
  margin-top: 0.65rem;
  color: rgba(125, 211, 252, 0.9) !important;
  font-size: 0.74rem !important;
}

.sticky-quick-cta {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 65;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, calc(100% - 1.2rem));
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.55);
}
.sticky-quick-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  border-radius: 0.7rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.sticky-quick-cta__btn i { font-size: 0.88rem; }
.sticky-quick-cta__btn:hover { transform: translateY(-1px); filter: brightness(1.07); }
.sticky-quick-cta__btn--wa { background: linear-gradient(135deg, #16a34a, #22c55e); }
.sticky-quick-cta__btn--call { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.sticky-quick-cta__btn--quote { background: linear-gradient(135deg, #7c3aed, #9333ea); }

/* Homepage: keep floating WhatsApp + Chat visible (above sticky CTA on small screens) */
.home-page .whatsapp-btn,
.home-page .ai-btn {
  z-index: 70;
}





/* Homepage final polish */
:root {
  --home-radius: 12px;
  --home-transition: 220ms ease;
}

.home-page .card,
.home-page .btn,
.home-page .core-service-card,
.home-page .review-proof-card,
.home-page .faq-home-card .faq-item,
.home-page .sticky-quick-cta,
.home-page .sticky-quick-cta__btn {
  border-radius: var(--home-radius);
}

.home-page .hero {
  animation: none;
}

.section-home-hero .hero {
  gap: 1.05rem !important;
}

.section-home-hero .hero-title {
  margin-bottom: 0.7rem;
}

.section-home-hero .hero-subline--lead {
  line-height: 1.48;
  margin-bottom: 0.48rem;
}

.section-home-hero .hero-subline {
  color: rgba(248, 250, 252, 0.96);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.section-home-hero .hero-subline a {
  color: #60a5fa;
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 2px;
}

.section-home-hero .hero-subline a:hover {
  color: #93c5fd;
}

.card,
.service-sheet,
.intent-page-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-sheet {
  color: var(--foreground);
}
.service-sheet .section-title,
.service-sheet .section-subtitle,
.service-sheet .service-sheet-h2 {
  color: var(--foreground);
}
.service-sheet li,
.service-sheet p {
  color: rgba(241,245,249,0.85);
}

.section-home-hero .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem !important;
  margin-top: 0.35rem;
  width: 100%;
  max-width: 40rem;
}

.section-home-hero .hero-actions__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.section-home-hero .hero-trust-strip {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 0.75rem;
  width: 100%;
}

.section-home-hero .hero-trust-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
}

.section-home-hero .hero-trust-links a {
  color: #c7d2fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-home-hero .hero-trust-links a:hover {
  color: #ffffff;
}

.section-home-hero .hero-contact-hint {
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  color: rgba(203, 213, 225, 0.82);
}



.home-power-links {
  gap: 0.55rem;
  margin-top: 1rem;
}

.home-power-links a {
  transition: background var(--home-transition), border-color var(--home-transition), color var(--home-transition), transform var(--home-transition);
}

.home-hero-device {
  transform-style: preserve-3d;
  animation: homeHeroDeviceFloat 8s ease-in-out infinite;
  will-change: transform;
}

.home-hero-device-shell {
  transition: box-shadow var(--home-transition), border-color var(--home-transition), filter var(--home-transition);
}

.home-hero-device:hover .home-hero-device-shell {
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.hero-cine {
  filter: brightness(1.13) contrast(1.1) saturate(1.05);
}

@keyframes homeHeroDeviceFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translate3d(0, -7px, 0) rotateX(0.45deg) rotateY(-0.6deg); }
}

.section-trust-stats .logo-marquee {
  margin-top: 2.2rem !important;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.stats-grid {
  gap: 0.95rem;
}

.stat-item {
  transition: transform var(--home-transition), border-color var(--home-transition), box-shadow var(--home-transition), background var(--home-transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.46);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.15), 0 14px 28px rgba(15, 23, 42, 0.5), 0 0 22px rgba(56, 189, 248, 0.18);
}

.stat-number {
  font-size: 1.34rem;
}

.home-page .core-services-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}





.home-page .core-service-card {
  transition: transform var(--home-transition), border-color var(--home-transition), box-shadow var(--home-transition), filter var(--home-transition);
}

.home-page .core-service-card .cinematic-scene {
  filter: brightness(1.14) contrast(1.1);
}

.home-page .core-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.42);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.22),
    0 0 18px -4px rgba(99, 102, 241, 0.28),
    0 22px 44px -18px rgba(15, 23, 42, 0.55);
}

.home-page .core-service-card .mt-4.inline-flex {
  color: #bfdbfe;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
}

.section-home-reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #070b14;
  padding-top: 2.65rem !important;
  padding-bottom: 2.35rem !important;
}

/* Reviews + FAQ: soft top wash only (no photo background) */
.section-home-reviews::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(200px, 28vw, 360px);
  z-index: 0;
  background-image:
    radial-gradient(ellipse 72% 65% at 50% 28%, rgba(30, 58, 138, 0.22) 0%, transparent 68%),
    linear-gradient(180deg, rgba(3, 7, 20, 0.35) 0%, rgba(7, 11, 20, 0.92) 82%, #070b14 100%);
  background-size: 100% 100%, 100% 100%;
  background-position: center top, center top;
  background-repeat: no-repeat;
}

.section-home-reviews > .container {
  position: relative;
  z-index: 1;
}

.section-home-reviews-intro {
  position: relative;
}

.eyebrow--home-reviews-faq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
  color: rgba(226, 232, 240, 0.72) !important;
  margin-bottom: 0.85rem;
}

.eyebrow--home-reviews-faq::before,
.eyebrow--home-reviews-faq::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  flex-shrink: 0;
}



.eyebrow--home-reviews-faq::before {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.95));
}

.eyebrow--home-reviews-faq::after {
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.95), transparent);
}

.section-home-reviews-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  line-height: 1.18;
  text-wrap: balance;
}

.section-home-reviews-heading__plain {
  color: #f8fafc;
}

.section-home-reviews-heading__grad {
  background: linear-gradient(90deg, #93c5fd 0%, #c4b5fd 42%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-home-reviews-sub {
  color: rgba(203, 213, 225, 0.92) !important;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.section-home-reviews .reviews-home-marquee-track {
  align-items: stretch;
}

.section-home-reviews .review-proof-card {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.4rem;
}

.review-proof-stars {
  margin: 0;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

.review-proof-text {
  flex: 1;
}

.faq-home-card {
  margin-bottom: 0.4rem;
}

.sticky-quick-cta {
  width: min(640px, calc(100% - 1.4rem));
  bottom: max(0.55rem, env(safe-area-inset-bottom));
  padding: 0.42rem;
  gap: 0.42rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.46);
}

.sticky-quick-cta__btn {
  min-height: 38px;
  font-size: 0.76rem;
  transition: transform var(--home-transition), filter var(--home-transition);
}

.sticky-quick-cta__btn i {
  font-size: 0.82rem;
}

.sticky-quick-cta__btn:hover {
  transform: translateY(-1px);
}

.nav a,
.mobile-nav-link,
.mobile-nav-toggle,
.faq-home-card .faq-item,
.faq-home-card .faq-question {
  transition-duration: 220ms !important;
}







/* —— Homepage conversion pass: hero trust strip, Why SMR, How we work, polish —— */
.section-home-why-smr,
.section-home-how-work {
  padding-top: 3.15rem;
  padding-bottom: 3.15rem;
}


/* How we work: ambient glow + anchor clearance above sticky CTA */
.section-home-how-work {
  position: relative;
  isolation: isolate;
  scroll-margin-bottom: 5.5rem;
  padding-bottom: 2.65rem;
  overflow: hidden;
  /* Slightly darker than page --bg-0 so this band reads as a deeper plate */
  background-color: #040914;
}


.home-how-bg {
  position: absolute;
  inset: -12% -10% -16% -10%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-how-bg__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 50% at 10% 20%, rgba(91, 33, 182, 0.32), transparent 58%),
    radial-gradient(ellipse 52% 46% at 92% 55%, rgba(37, 99, 235, 0.22), transparent 56%),
    radial-gradient(ellipse 44% 42% at 48% 92%, rgba(6, 182, 212, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(4, 9, 20, 0.35) 0%, rgba(2, 4, 12, 0.82) 100%);
}

.home-how-bg__map {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: radial-gradient(circle, rgba(203, 213, 225, 0.55) 0.55px, transparent 0.65px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 38%, transparent 72%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 38%, transparent 72%);
}

.home-how-bg__city {
  position: absolute;
  right: -2%;
  bottom: -6%;
  width: min(56%, 480px);
  height: min(48%, 280px);
  opacity: 0.09;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 120'%3E%3Cg fill='%2394a3b8'%3E%3Crect x='0' y='52' width='20' height='68' rx='1'/%3E%3Crect x='26' y='32' width='24' height='88' rx='1'/%3E%3Crect x='56' y='58' width='16' height='62' rx='1'/%3E%3Crect x='78' y='22' width='28' height='98' rx='1'/%3E%3Crect x='112' y='48' width='22' height='72' rx='1'/%3E%3Crect x='140' y='38' width='26' height='82' rx='1'/%3E%3Crect x='172' y='62' width='18' height='58' rx='1'/%3E%3Crect x='196' y='42' width='28' height='78' rx='1'/%3E%3Crect x='230' y='28' width='30' height='92' rx='1'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat right bottom / contain;
}

.section-home-how-work > .container {
  position: relative;
  z-index: 1;
}

/* Why SMR: premium ambient layer + clearance above sticky mobile CTA */
.section-home-why-smr {
  position: relative;
  isolation: isolate;
  scroll-margin-bottom: 5.5rem;
  padding-bottom: 3.25rem;
}


.home-why-bg {
  position: absolute;
  inset: -8% -6% -12% -6%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.home-why-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 42% at 8% 18%, rgba(59, 130, 246, 0.16), transparent 58%),
    radial-gradient(ellipse 48% 40% at 94% 78%, rgba(168, 85, 247, 0.14), transparent 55%),
    radial-gradient(ellipse 42% 36% at 50% 100%, rgba(91, 33, 182, 0.12), transparent 52%),
    radial-gradient(ellipse 36% 32% at 18% 88%, rgba(34, 211, 238, 0.06), transparent 50%),
    radial-gradient(circle at 0% 40%, rgba(255, 255, 255, 0.03) 0, transparent 38%),
    repeating-radial-gradient(circle at 4% 35%, rgba(148, 163, 184, 0.045) 0 1px, transparent 1px 14px);
  opacity: 1;
}
.home-why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.section-home-why-smr > .container {
  position: relative;
  z-index: 1;
}

/* —— Why SMR: header —— */
.home-why-header {
  margin-bottom: 0.25rem;
}
.home-why-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
}
.home-why-eyebrow__rule {
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), rgba(168, 85, 247, 0.65), transparent);
  opacity: 0.9;
}
.home-why-eyebrow__rule--left {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(129, 140, 248, 0.55));
}
.home-why-eyebrow__rule--right {
  background: linear-gradient(90deg, rgba(129, 140, 248, 0.55), rgba(168, 85, 247, 0.55), transparent);
}
.home-why-eyebrow__label {
  flex-shrink: 0;
  white-space: nowrap;
}
.home-why-heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #f8fafc;
}
.home-why-heading__grad {
  background: linear-gradient(120deg, #93c5fd 0%, #a5b4fc 38%, #c4b5fd 72%, #e9d5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-why-lead {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.62;
  color: rgba(148, 163, 184, 0.95);
}

.section-trust-stats .logo-track {
  animation-duration: 46s;
  animation-timing-function: linear;
}

.section-trust-stats .stat-item {
  min-height: 7.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.section-trust-stats .stat-item__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-trust-stats .stat-item__icon .icon {
  width: 1.05rem;
  height: 1.05rem;
}
.section-trust-stats .stat-item--green .stat-item__icon {
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-trust-stats .stat-item--purple .stat-item__icon {
  color: #c084fc;
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-trust-stats .stat-item--blue .stat-item__icon {
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-trust-stats .stat-item--gold .stat-item__icon {
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.35);
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.section-trust-stats .stat-label {
  margin-top: 0;
}

.home-page .core-service-card .core-service-card-body {
  min-height: 9.75rem;
}

.home-page .core-service-card-body > span.inline-flex:last-of-type {
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(147, 197, 253, 0.35);
  padding-bottom: 0.1rem;
}


@keyframes homeHeroGlowDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(12px, -10px) scale(1.06); opacity: 0.88; }
}
@keyframes homeHeroGlowDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(-14px, 8px) scale(1.05); opacity: 0.9; }
}



.home-why-grid {
  list-style: none;
  margin: 2.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
  grid-template-columns: 1fr;
}



/* Per-card accent (subtle): space-separated R G B for rgb(var(--x) / a) */
.home-why-card--accent-blue {
  --why-a: 59 130 246;
  --why-a2: 96 165 250;
}
.home-why-card--accent-cyan {
  --why-a: 6 182 212;
  --why-a2: 45 212 191;
}
.home-why-card--accent-green {
  --why-a: 34 197 94;
  --why-a2: 52 211 153;
}
.home-why-card--accent-gold {
  --why-a: 234 179 8;
  --why-a2: 250 204 21;
}
.home-why-card--accent-purple {
  --why-a: 139 92 246;
  --why-a2: 167 139 250;
}
.home-why-card--accent-pink {
  --why-a: 236 72 153;
  --why-a2: 244 114 182;
}

.home-why-card {
  --why-border: rgb(var(--why-a) / 0.22);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.35rem;
  border: 1px solid var(--why-border);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgb(var(--why-a) / 0.12), transparent 55%),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgb(var(--why-a2) / 0.08), transparent 50%),
    linear-gradient(165deg, rgba(30, 41, 59, 0.72) 0%, rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.88) 100%);
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 48px rgb(var(--why-a) / 0.04),
    0 16px 40px rgba(2, 6, 23, 0.48),
    0 0 0 1px rgba(15, 23, 42, 0.4);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.home-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  /* Match each card accent (gold → amber glow, blue → blue, etc.) */
  background:
    radial-gradient(ellipse 80% 70% at 10% 0%, rgb(var(--why-a) / 0.22), transparent 50%),
    radial-gradient(ellipse 75% 65% at 95% 100%, rgb(var(--why-a2) / 0.2), transparent 52%),
    linear-gradient(
      135deg,
      rgb(var(--why-a) / 0.16) 0%,
      rgb(var(--why-a) / 0.09) 40%,
      rgb(var(--why-a2) / 0.15) 100%
    );
  background-size: auto, auto, 200% 200%;
  background-position: 0% 0%, 100% 100%, 0% 50%;
  transition: opacity 280ms ease;
}

.home-why-card:hover {
  transform: translateY(-8px);
  border-color: rgb(var(--why-a2) / 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgb(var(--why-a) / 0.32),
    0 0 40px rgb(var(--why-a) / 0.14),
    0 0 56px rgb(var(--why-a2) / 0.18),
    0 28px 56px rgba(2, 6, 23, 0.58);
}

.home-why-card:hover::before {
  opacity: 1;
}



@keyframes homeWhyCardAuraShift {
  0% {
    background-position: 0% 0%, 100% 100%, 0% 48%;
  }
  100% {
    background-position: 0% 0%, 100% 100%, 100% 52%;
  }
}

.home-why-card__inner {
  position: relative;
  z-index: 1;
}

.home-why-card__accent-line {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: min(72%, 9.5rem);
  height: 2px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.85;
}

.home-why-card__accent-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: center;
  transform: scaleX(0.28);
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgb(var(--why-a) / 0.15),
    rgb(var(--why-a) / 0.85),
    rgb(var(--why-a2) / 0.95)
  );
  box-shadow: 0 0 14px rgb(var(--why-a) / 0.45);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-why-card:hover .home-why-card__accent-line-fill {
  transform: scaleX(1);
}

.home-why-card__icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.7rem;
  background: rgb(var(--why-a) / 0.16);
  color: rgb(var(--why-a2));
  border: 1px solid rgb(var(--why-a) / 0.28);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.25),
    0 0 20px rgb(var(--why-a) / 0.2);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-why-card:hover .home-why-card__icon {
  background: rgb(var(--why-a) / 0.26);
  border-color: rgb(var(--why-a) / 0.5);
  color: rgb(248, 250, 252);
  box-shadow:
    0 0 0 1px rgb(var(--why-a) / 0.2),
    0 0 28px rgb(var(--why-a) / 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.home-why-card__icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.home-why-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-why-card__copy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: rgba(203, 213, 225, 0.88);
}

/* Stats strip */
.home-why-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  border-radius: 16px;
  background: linear-gradient(168deg, rgba(30, 27, 75, 0.55) 0%, rgba(15, 23, 42, 0.72) 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 36px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}



.home-why-stats__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-start;
  min-height: 2.5rem;
}


.home-why-stats__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.home-why-stats__icon .icon {
  width: 1rem;
  height: 1rem;
}
.home-why-stats__item--blue .home-why-stats__icon {
  color: #60a5fa;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}
.home-why-stats__item--purple .home-why-stats__icon {
  color: #c4b5fd;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}
.home-why-stats__item--green .home-why-stats__icon {
  color: #4ade80;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}
.home-why-stats__item--gold .home-why-stats__icon {
  color: #fcd34d;
  box-shadow: 0 0 16px rgba(234, 179, 8, 0.18);
}

.home-why-stats__text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.35;
}



/* —— How we work: dark premium 3×2 grid + stats (demo-aligned) —— */
.home-how-header {
  margin-bottom: 0.15rem;
}

.home-how-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
}

.home-how-eyebrow__rule {
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  border-radius: 1px;
  opacity: 0.85;
}
.home-how-eyebrow__rule--left {
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.85));
}
.home-how-eyebrow__rule--right {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.75), transparent);
}
.home-how-eyebrow__label {
  flex-shrink: 0;
  white-space: nowrap;
}

.home-how-heading {
  margin: 0 0 0.55rem;
  font-size: clamp(1.5rem, 4.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: #f8fafc;
}

.home-how-heading__grad {
  display: inline;
  background: linear-gradient(110deg, #c084fc 0%, #67e8f9 55%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-how-lead {
  margin: 0;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.58;
  color: rgba(148, 163, 184, 0.95);
}

.home-how-grid {
  list-style: none;
  margin: 1.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}





.home-how-tile--purple {
  --how-a: 139 92 246;
  --how-a2: 196 181 253;
}
.home-how-tile--blue {
  --how-a: 59 130 246;
  --how-a2: 147 197 253;
}
.home-how-tile--green {
  --how-a: 34 197 94;
  --how-a2: 134 239 172;
}
.home-how-tile--gold {
  --how-a: 234 179 8;
  --how-a2: 253 224 71;
}
.home-how-tile--pink {
  --how-a: 236 72 153;
  --how-a2: 251 113 133;
}
.home-how-tile--cyan {
  --how-a: 6 182 212;
  --how-a2: 103 232 249;
}

.home-how-tile {
  --how-border: rgb(var(--how-a) / 0.24);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.45rem;
  border: 1px solid var(--how-border);
  background:
    radial-gradient(ellipse 110% 70% at 100% 0%, rgb(var(--how-a) / 0.14), transparent 52%),
    radial-gradient(ellipse 90% 65% at 0% 100%, rgb(var(--how-a2) / 0.08), transparent 50%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 23, 42, 0.5) 42%, rgba(5, 7, 10, 0.72) 100%);
  background-color: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 40px rgb(var(--how-a) / 0.04),
    0 14px 40px rgba(2, 6, 23, 0.5),
    0 0 0 1px rgba(2, 6, 23, 0.45);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.home-how-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgb(var(--how-a) / 0.2), transparent 55%),
    radial-gradient(ellipse 65% 50% at 95% 100%, rgb(var(--how-a2) / 0.16), transparent 52%);
  transition: opacity 280ms ease;
}

.home-how-tile__inner {
  position: relative;
  z-index: 1;
  text-align: left;
}

.home-how-tile__icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: rgb(var(--how-a) / 0.18);
  color: rgb(var(--how-a2));
  border: 1px solid rgb(var(--how-a) / 0.32);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.3),
    0 0 22px rgb(var(--how-a) / 0.22);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.home-how-tile__icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.home-how-tile__title {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.home-how-tile__copy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: rgba(203, 213, 225, 0.88);
}

.home-how-tile__accent-line {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: min(78%, 10rem);
  height: 2px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.9;
}

.home-how-tile__accent-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: center;
  transform: scaleX(0.32);
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgb(var(--how-a) / 0.12),
    rgb(var(--how-a) / 0.88),
    rgb(var(--how-a2) / 0.95)
  );
  box-shadow: 0 0 16px rgb(var(--how-a) / 0.48);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}





.home-how-stats {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(172deg, rgba(255, 255, 255, 0.035) 0%, rgba(8, 12, 24, 0.78) 55%, rgba(5, 7, 10, 0.85) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 42px rgba(2, 6, 23, 0.48);
}

/* Two columns from ~phone landscape so stats read left→right with even gutters */






.home-how-stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  min-width: 0;
}



.home-how-stats__icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-how-stats__icon .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.home-how-stats__item--blue .home-how-stats__icon {
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.22);
}
.home-how-stats__item--purple .home-how-stats__icon {
  color: #c084fc;
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.22);
}
.home-how-stats__item--green .home-how-stats__icon {
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}
.home-how-stats__item--gold .home-how-stats__icon {
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.35);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.home-how-stats__value {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.home-how-stats__label {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(148, 163, 184, 0.92);
  max-width: 11rem;
}



.home-how-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.9);
}
.home-how-trust__icon {
  display: inline-flex;
  color: rgba(125, 211, 252, 0.82);
  flex-shrink: 0;
}
.home-how-trust__icon .icon {
  width: 0.95rem;
  height: 0.95rem;
}
.home-how-trust__text {
  max-width: 36rem;
}

.home-page main {
  padding-bottom: calc(124px + env(safe-area-inset-bottom));
}



.home-page .mobile-nav-toggle {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

/* Homepage hero premium polish (outer UI only, no cine/svg logic changes) */
.home-page .section-home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(34, 197, 94, 0.10), transparent 28%),
    linear-gradient(180deg, #050814 0%, #071126 100%);
}

.home-page .hero-title {
  color: #ffffff;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.home-page .hero-subline {
  color: rgba(241,245,249,0.86);
  max-width: 620px;
}

.home-page .hero-contact-hint,
.home-page .hero-trust-strip {
  color: rgba(241,245,249,0.74);
}

.home-page .btn-primary,
.home-page .btn-hero-primary {
  background: #ffffff;
  color: #050814;
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.home-page .btn-primary:hover,
.home-page .btn-hero-primary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.36);
}

.home-page .btn-primary:active,
.home-page .btn-hero-primary:active {
  transform: scale(0.97);
}

.home-page .btn-secondary,
.home-page .btn-hero-secondary {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.home-page .btn-secondary:hover,
.home-page .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(96,165,250,0.45);
  transform: translateY(-2px);
}

.home-page .home-hero-device {
  filter: drop-shadow(0 28px 70px rgba(0,0,0,0.45));
}

.home-page .home-hero-device-shell {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(15,27,45,0.92), rgba(6,12,28,0.96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 70px rgba(0,0,0,0.42);
}

.home-page .home-hero-device-chrome {
  background: rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.home-page .home-hero-visual {
  animation: heroVisualFloat 7s ease-in-out infinite;
}

@keyframes heroVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.home-page .home-power-links a {
  background: rgba(255,255,255,0.06);
  color: rgba(241,245,249,0.9);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.home-page .home-power-links a:hover {
  background: rgba(96,165,250,0.12);
  border-color: rgba(96,165,250,0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .home-page .section-home-hero {
    padding-top: 3.25rem;
  }

  .home-page .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .home-page .hero-subline {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-page .hero-actions__row {
    gap: 0.75rem;
  }

  .home-page .home-hero-visual {
    animation: none;
  }
}
