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

/* ── TOKENS ── */
:root {
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #a0a0a0;
  --gray-600: #4a4a4a;
  --gray-800: #1a1a1a;
  --gray-900: #0a0a0a;
  --red: #dc2626;
  /* Logo brand blue */
  --blue-50: #eff6ff;
  --blue-600: #2563eb;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: rgba(37, 99, 235, 0.08);
  --accent-mid: rgba(37, 99, 235, 0.15);
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  /* Sharper radii — X/Tesla aesthetic */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.08);

  /* Semantic Theme variables (Light Mode default) */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-surface: #ffffff;
  --text-primary: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-muted: #9a9a9a;
  --border-color: #e8e8e8;
  --border-accent: #d1d1d1;
  --bg-spotlight: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  --dot-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e0e0e0'/%3E%3C/svg%3E");
  --nav-bg: rgba(255, 255, 255, 0.97);
  --card-bg: #ffffff;
  --card-hover-bg: #f7f7f7;
  --card-shine: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.02) 50%,
    transparent 100%
  );
  --shadow-card-hover:
    0 8px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(37, 99, 235, 0.08);
  --dark-mode-invert: 0;
}

/* Dark Mode Overrides */
.dark {
  --bg-primary: #0a0c10;
  --bg-secondary: #12151e;
  --bg-surface: #161922;
  --text-primary: #fafafa;
  --text-secondary: #a8b0c0;
  --text-muted: #757d8a;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(255, 255, 255, 0.18);
  --bg-spotlight: linear-gradient(
    135deg,
    rgba(22, 25, 35, 0.88) 0%,
    rgba(18, 21, 30, 0.97) 100%
  );
  --dot-grid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23252935'/%3E%3C/svg%3E");
  --nav-bg: rgba(10, 12, 16, 0.97);
  --card-bg: #161922;
  --card-hover-bg: #1e2230;
  --card-shine: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  --shadow-card-hover:
    0 24px 60px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(59, 130, 246, 0.08);
  --dark-mode-invert: 1;
}

/* ── HOME BUTTON ── */
.home-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  outline: none;
  flex-shrink: 0;
  text-decoration: none;
}

.home-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
  transform: scale(1.06);
}

.home-btn:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

.home-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

/* ── THEME TOGGLE SWITCH ── */
.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  outline: none;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--border-color);
  color: var(--text-primary);
  transform: scale(1.06);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  stroke: currentColor;
  fill: none;
}

/* Light Mode: display moon, hide sun */
.theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.4);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Dark Mode Active States */
.dark .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.dark .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.4);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle dot grid across entire page */
  background-image: var(--dot-grid);
  background-size: 32px 32px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    background-image 0.3s ease;
}

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

/* ── GEO LANGUAGE BANNER ── */
#geo-lang-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 44px;
  background: #0a0a0a;
  border-bottom: 1px solid #222222;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#geo-lang-banner.geo-banner--visible {
  transform: translateY(0);
}

.geo-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.geo-banner__flag {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.geo-banner__msg {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo-banner__switch {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 16px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.geo-banner__switch:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.geo-banner__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555555;
  flex-shrink: 0;
  transition: color 0.15s;
  padding: 0;
}

.geo-banner__close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .geo-banner__inner {
    padding: 0 24px;
    gap: 10px;
  }
  .geo-banner__msg {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .geo-banner__inner {
    padding: 0 16px;
  }
  .geo-banner__msg {
    display: none;
  }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: var(--geo-banner-offset, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.dark .nav {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LANGUAGE SWITCHER (WORLD ICON) ── */
.lang-dropdown {
  position: relative;
}

.lang-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  transition: color 0.12s;
  color: var(--text-secondary);
}

.lang-trigger:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.lang-trigger-icon,
.lang-trigger-caret {
  flex: none;
}

.lang-trigger-icon {
  width: 18px;
  height: 18px;
}

.lang-trigger-caret {
  width: 12px;
  height: 12px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.12s;
}

.lang-option:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.lang-option.active {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
}

/* .nav-inner moved to line 983 for grid layout */

.logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
  transition: filter 0.25s ease;
}

.dark .logo-img {
  filter: invert(1) hue-rotate(180deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.12s;
}

.back-link:hover {
  color: var(--text-primary);
}

/* ── BUTTONS ── */
/* Base button styles moved to line 1345 - consolidated to avoid duplication */

/* ── SCHEDULE CONSULTATION PILL BADGE ── */
.btn-consult {
  background: transparent;
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
  border-radius: 0;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  position: relative;
}

.btn-consult::before {
  display: none;
}

.btn-consult:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.dark .btn-consult {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.dark .btn-consult:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
  box-shadow: none;
}

/* Button variants moved to consolidated section at line 1368+ */

/* ── UTILITIES ── */
.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.pt-0 {
  padding-top: 0;
}

.pb-80 {
  padding-bottom: 52px;
}

/* ── SECTION ── */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

.section:nth-child(odd) {
  background: var(--bg-primary);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-accent) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: var(--accent);
}

.dark .section-label::before {
  background: var(--accent);
}

.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #0a0a0a;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 0;
}

.dark .section-title::after {
  background: var(--accent);
}

.dark .section-title {
  color: #fafafa;
}

.dark .page-title {
  color: #fafafa;
}

.dark .hero-title {
  color: #fafafa;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

/* ── CELL GRID ── */
.cell-grid {
  display: grid;
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.cell-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cell-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cell-4 {
  grid-template-columns: repeat(4, 1fr);
}

.svc-auto {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cell {
  background: var(--bg-surface);
  padding: 24px 20px;
  transition: all 0.2s ease;
}

.cell:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.cell.featured {
  background: var(--accent);
  color: #ffffff;
}

.cell.featured:hover {
  background: var(--accent-hover);
}

/* ── TAGS ── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.tag:hover {
  border-color: var(--border-accent);
  background: var(--border-color);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 36px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: start;
}

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

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-link,
.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-col a:hover {
  color: var(--text-primary);
}

/* ── FOCUS STATES ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PULSE ── */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .cell-3,
  .cell-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cell-2,
  .cell-3,
  .cell-4 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: column;
    gap: 28px;
  }

  .lang-menu {
    right: auto;
    left: 0;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .quick-points li {
    font-size: 14px;
  }
}

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  padding: 100px 0 56px;
  border-bottom: 1px solid var(--border-color);
}

.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.02;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.page-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* ── CTA SECTION (shared) ── */
.cta-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-color);
  background: #0f1929;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
  opacity: 0.3;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 0;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── NAV-RIGHT (simplified nav pages) ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  grid-column: 3;
  justify-self: end;
}

/* ─── INDEX.HTML SPECIFIC STYLES ─── */

/* NAV ADVANCED */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  gap: 0;
}

.logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 0;
  background: transparent;
}

.nav-link:hover {
  color: var(--text-primary);
  background: transparent;
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 600;
  background: transparent;
}

.nav-group {
  position: relative;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  font-family: inherit;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.15s ease;
}

.nav-group-trigger:hover {
  color: var(--text-primary);
  background: transparent;
}

.nav-group-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

.nav-group.open .nav-group-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-group-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  box-shadow: none;
  min-width: 520px;
  padding: 20px;
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
}

.dark .nav-group-menu {
  background: #0a0c10;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.nav-group.open .nav-group-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-group-item {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 0;
  transition:
    color 0.12s ease,
    background 0.12s ease;
  white-space: nowrap;
}

.nav-group-item:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.nav-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.nav-group-col {
  padding: 4px 12px;
}

.nav-group-col:first-child {
  border-right: 1px solid var(--border-color);
}

.nav-group-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.nav-group-list {
  display: grid;
  gap: 0;
}

.quick-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 720px;
}

.quick-points li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.quick-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
  position: absolute;
  left: 0;
  top: 0.65em;
}

.freshness-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.trust-proof-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: var(--border-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  overflow: hidden;
}

.trust-proof-card {
  background: var(--bg-surface);
  padding: 28px;
  transition: background 0.2s ease;
}

.trust-proof-card:hover {
  background: var(--bg-secondary);
}

.trust-proof-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.trust-proof-meta {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.logo-chip {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.logo-chip:hover {
  border-color: var(--border-accent);
  background: var(--border-color);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .nav-group-menu {
    min-width: 440px;
  }
}

/* LANG SWITCHER ADVANCED */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.lang-trigger:hover {
  background: var(--border-color);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.lang-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-trigger svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  box-shadow: none;
  min-width: 80px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
}

.dark .lang-menu {
  background: #0a0c10;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.12s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-option:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.lang-option.active {
  background: var(--border-color);
  color: var(--text-primary);
}

.lang-option .check {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.lang-option.active .check {
  opacity: 1;
}

/* BUTTONS ADVANCED */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text-secondary);
  border-color: var(--border-color);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.btn-solid {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-solid:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-invert {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-invert:hover {
  background: var(--bg-secondary);
}

/* HERO */
.hero {
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L50 50M50 0L0 50M50 50L100 100M100 50L50 100' stroke='%232563eb' stroke-width='0.3' opacity='0.08' fill='none'/%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%232563eb' opacity='0.06'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5f8ff 0%, #ffffff 60%);
  background-size:
    100px 100px,
    100%;
  background-position:
    0 0,
    0 0;
  transition:
    background 0.3s ease,
    border-bottom 0.3s ease;
}

/* Hero dot grid layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23d4d4d4'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 30%,
    black 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 30%,
    black 100%
  );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  filter: invert(var(--dark-mode-invert, 0)) opacity(0.35);
}

/* Abstract blob — brand blue */
.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 700px;
  height: 700px;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(37, 99, 235, 0.12) 0%,
      rgba(37, 99, 235, 0.05) 50%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(29, 78, 216, 0.06) 0%,
      transparent 60%
    );
  border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: blobDrift 18s ease-in-out infinite alternate;
  opacity: calc(1 - 0.3 * var(--dark-mode-invert, 0));
}

@keyframes blobDrift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(30px, -20px) rotate(8deg) scale(1.04);
  }

  66% {
    transform: translate(-20px, 30px) rotate(-6deg) scale(0.97);
  }

  100% {
    transform: translate(10px, -10px) rotate(4deg) scale(1.02);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 640px;
  height: 640px;
  top: -180px;
  right: -80px;
  animation: blobDrift 22s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: -60px;
  animation: blobDrift 16s ease-in-out infinite alternate-reverse;
}

.dark .hero-blob {
  opacity: 0;
}

.dark .hero {
  background-image: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    transparent 60%
  );
  background-size: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -3.5px;
  color: #0a0a0a;
  margin-bottom: 36px;
  max-width: 880px;
  transition: color 0.3s ease;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  position: relative;
}

.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}

.stat-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.stat-num::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-stats > div:hover .stat-num::after {
  opacity: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* INDUSTRIES STRIP */
.industries-strip {
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
  background: linear-gradient(
    90deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  position: relative;
  transition:
    background 0.3s ease,
    border-bottom 0.3s ease;
}

.industries-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='%23d4d4d4'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
  filter: invert(var(--dark-mode-invert, 0)) opacity(0.3);
}

.industries-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.ind-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.ind-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.ind-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.ind-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ind-item:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.ind-item:hover::after {
  transform: scaleX(1);
}

.ind-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-color);
  flex-shrink: 0;
}

/* PRODUCT SPOTLIGHT */
.product-spotlight {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-color);
  background:
    var(--bg-spotlight),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%232563eb' stroke-width='0.4' opacity='0.07' fill='none'/%3E%3C/svg%3E");
  background-size:
    100%,
    80px 80px;
  position: relative;
}

.dark .product-spotlight {
  background: var(--bg-spotlight);
  background-size: 100%;
}

.product-spotlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-accent) 50%,
    transparent 100%
  );
}

.spot-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.spot-title {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -1px;
  line-height: 1.1;
  font-weight: 700;
}

.spot-sub {
  color: var(--text-secondary);
  max-width: 680px;
  font-size: 14px;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

@media (max-width: 1100px) {
  .spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spot-grid {
    grid-template-columns: 1fr;
  }
}

.spot-card {
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 28px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.spot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--platform-color, var(--text-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spot-card:hover::before {
  transform: scaleX(1);
}

.spot-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.07),
    0 0 0 1px var(--platform-color, var(--border-color)),
    0 8px 24px -4px
      color-mix(in srgb, var(--platform-color, transparent) 18%, transparent);
}

/* Per-platform brand colours */
.spot-card[href*="netsuite"] {
  --platform-color: #7b2fbe;
}
.spot-card[href*="odoo"] {
  --platform-color: #714b67;
}
.spot-card[href*="erpnext"] {
  --platform-color: #0089ff;
}
.spot-card[href*="n8n"] {
  --platform-color: #ea4b71;
}

.spot-card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--platform-color, var(--text-primary));
  transition: color 0.2s ease;
}

.spot-card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.spot-card-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--platform-color, var(--text-primary));
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.spot-card-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s ease;
}

.spot-card:hover .spot-card-link {
  gap: 10px;
}

.spot-card:hover .spot-card-link::after {
  transform: translateX(4px);
}

/* GRID CARDS ADVANCED */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  position: relative;
}

.grid-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.grid-4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.card {
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::after {
  opacity: 1;
}

.card-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.card-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--border-accent);
  transition: all 0.3s ease;
}

.card:hover .card-num::before {
  width: 12px;
  background: var(--accent);
}

.card:hover .card-num {
  color: var(--text-primary);
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SERVICES GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  position: relative;
}

.svc-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.svc-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.svc-col {
  background: var(--bg-surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s ease;
}

.svc-col:hover {
  background: linear-gradient(
    180deg,
    var(--bg-surface) 0%,
    var(--bg-secondary) 100%
  );
}

.svc-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.svc-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.svc-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
  position: relative;
  padding-left: 12px;
}

.svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-accent);
  transition: all 0.2s ease;
}

.svc-item:hover {
  padding-left: 16px;
  background: var(--bg-secondary);
}

.svc-item:hover::before {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.svc-item:last-child {
  border-bottom: none;
}

.svc-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.svc-outcome {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.process-cell {
  background: var(--bg-surface);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-hover) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark .process-cell::before {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-hover) 100%
  );
}

.process-cell:hover::before {
  transform: scaleX(1);
}

.process-cell:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.proc-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proc-num::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--border-accent);
  transition: all 0.3s ease;
}

.process-cell:hover .proc-num {
  color: var(--text-primary);
}

.process-cell:hover .proc-num::after {
  width: 30px;
  background: var(--accent);
}

.proc-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.proc-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ENGAGEMENT MODELS */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.engage-card {
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.engage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--card-shine);
  transition: left 0.6s ease;
}

.engage-card:hover::before {
  left: 100%;
}

.engage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: var(--card-hover-bg);
}

.engage-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.engage-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.engage-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.engage-features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.engage-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.engage-features li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--accent-mid);
  border-radius: 2px;
  flex-shrink: 0;
  background: var(--accent-light)
    url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center no-repeat;
}

/* PORTFOLIO */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.port-card {
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 36px 32px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.3s ease;
}

.port-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  background: var(--card-hover-bg);
}

.port-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.port-result {
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

.port-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.port-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CREDENTIALS */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.cred-cell {
  background: var(--bg-surface);
  padding: 32px;
  transition: background 0.3s ease;
}

.cred-cell:hover {
  background: var(--card-hover-bg);
}

.cred-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cred-val {
  font-size: 15px;
  font-weight: 700;
}

/* CONTACT */
.contact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  margin-top: 56px;
}

.contact-cell {
  background: var(--bg-surface);
  padding: 32px;
  transition: background 0.3s ease;
}

.contact-cell:hover {
  background: var(--card-hover-bg);
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.contact-val:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 0;
  transition: background 0.15s ease;
}

.nav-toggle:hover {
  background: var(--bg-secondary);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #0a0a0a;
  padding: 28px 24px;
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  box-shadow: none;
}

.dark .nav-mobile {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.nav-mobile.open {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.15s ease;
}

.nav-mobile a:hover {
  color: var(--text-primary);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile-group {
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-mobile-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-mobile-group.open .nav-mobile-trigger svg {
  transform: rotate(180deg);
}

.nav-mobile-submenu {
  display: none;
  padding-bottom: 8px;
}

.nav-mobile-group.open .nav-mobile-submenu {
  display: block;
}

.nav-mobile-submenu a {
  padding: 10px 0 10px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: none;
}

.nav-mobile-submenu a:hover {
  color: var(--text-primary);
}

.nav-mobile .lang-row {
  display: flex;
  gap: 6px;
  padding-top: 20px;
}

.nav-mobile .lang-row .lang-btn {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.nav-mobile .lang-row .lang-btn:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-accent);
}

.nav-mobile .lang-row .lang-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  font-weight: 700;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .creds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .hero-title {
    font-size: clamp(40px, 7vw, 72px);
    letter-spacing: -2px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-stats {
    gap: 40px;
    margin-top: 56px;
  }

  .stat-num {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .section {
    padding: 90px 0;
  }

  .cta-section {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  /* ── NAV ── */
  .nav-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
  }

  /* Logo fills available space, pushing icons + hamburger to the right */
  .nav-inner .logo {
    flex: 1;
  }

  .nav-links {
    display: none;
  }

  /* Hide the consultation pill & client portal on mobile, keep theme+lang */
  .nav-actions .btn-consult,
  .nav-actions .btn-solid {
    display: none;
  }

  /* Keep nav-actions compact and flush right */
  .nav-actions {
    gap: 2px;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  /* ── HERO ── */
  .hero {
    padding: 110px 0 70px;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 64px);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }

  .hero-label {
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 44px);
    letter-spacing: -1px;
  }

  .section-sub {
    font-size: 15px;
  }

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

  .cta-title {
    font-size: clamp(32px, 7vw, 56px);
    letter-spacing: -1.5px;
  }

  .cta-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  /* ── PROCESS ── */
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── CONTACT ── */
  .contact-row {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .contact-cell {
    padding: 24px 20px;
  }

  /* ── FOOTER ── */
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 110px 0 60px;
  }

  .page-title {
    font-size: clamp(36px, 8vw, 60px);
    letter-spacing: -2px;
  }

  .page-sub {
    font-size: 16px;
  }

  /* ── BACK TO TOP ── */

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  /* ── ENGAGE / CARDS ── */
  .engage-card {
    padding: 28px 24px;
  }

  .card {
    padding: 28px 24px;
  }

  .svc-col {
    padding: 24px;
  }

  /* ── SPOT GRID ── */
  .spot-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── TRUST PROOF ── */
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* ── CONTAINER ── */
  .container {
    padding: 0 16px;
  }

  /* ── HERO ── */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 28px;
    letter-spacing: -1px;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: -0.5px;
    display: block;
  }

  .section-title::after {
    display: none;
  }

  .section-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  /* ── NAV MOBILE ── */
  .nav-mobile {
    padding: 20px 16px;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: clamp(28px, 8vw, 44px);
    letter-spacing: -1px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* ── GRIDS ── */
  .cell-2,
  .cell-3,
  .cell-4 {
    grid-template-columns: 1fr;
  }

  .spot-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .engage-grid {
    grid-template-columns: 1fr;
  }

  .port-grid {
    grid-template-columns: 1fr;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 48px 0 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  /* ── BUTTONS ── */
  .btn-lg {
    padding: 13px 22px;
    font-size: 14px;
  }

  /* ── LANG MENU ── */
  .lang-menu {
    right: auto;
    left: 0;
  }

  /* ── CARDS ── */
  .card {
    padding: 24px 20px;
  }

  .engage-card {
    padding: 24px 20px;
  }

  .port-card {
    padding: 28px 20px;
  }

  .svc-col {
    padding: 20px;
  }

  .process-cell {
    padding: 24px 20px;
  }

  /* ── CONTACT ── */
  .contact-cell {
    padding: 20px 16px;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 96px 0 48px;
  }

  .page-title {
    font-size: clamp(30px, 9vw, 48px);
    letter-spacing: -1.5px;
  }

  .page-sub {
    font-size: 15px;
  }

  /* ── BACK TO TOP ── */

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* ── QUICK POINTS ── */
  .quick-points li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* ── NAV ── */
  .nav-inner {
    height: 56px;
  }

  html {
    scroll-padding-top: 56px;
  }

  .nav-mobile {
    top: 56px;
    padding: 16px;
  }

  .logo-img {
    height: 20px;
  }

  /* ── HERO ── */
  .hero {
    padding: 90px 0 52px;
  }

  .hero-title {
    font-size: clamp(28px, 11vw, 40px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .hero-label {
    font-size: 10px;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .stat-num {
    font-size: 26px;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: clamp(22px, 8vw, 32px);
    letter-spacing: 0;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 52px 0;
  }

  .cta-title {
    font-size: clamp(24px, 9vw, 36px);
    letter-spacing: -0.5px;
  }

  /* ── INDUSTRIES STRIP ── */
  .ind-list {
    gap: 14px;
  }

  .ind-item {
    font-size: 12px;
  }

  /* ── CARDS ── */
  .card {
    padding: 20px 16px;
  }

  .engage-card {
    padding: 20px 16px;
  }

  .spot-card {
    padding: 20px;
  }

  .port-card {
    padding: 20px 16px;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 40px 0 28px;
  }

  /* ── FIXED BUTTONS ── */

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 14px;
    right: 14px;
  }

  .progress-circle {
    width: 40px;
    height: 40px;
  }

  .chevron-up-icon {
    width: 16px;
    height: 16px;
  }

  /* ── FAQ ── */
  .faq-trigger {
    font-size: 15px;
    padding: 18px 16px;
  }

  .faq-content {
    padding: 0 16px;
  }

  .faq-item.active .faq-content {
    padding: 0 16px 18px;
  }
}

/* ─── ADVANCED EXPERIENCE UPGRADES ─── */

/* 1. BACKGROUND GLOW BLOBS */
.gradient-blob {
  position: absolute;
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.025;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.dark .gradient-blob {
  opacity: 0 !important;
}

.blob-blue {
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

.blob-purple {
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.blob-orange {
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
}

@keyframes float-blob-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -60px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.96);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes float-blob-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.12);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.blob-animate-1 {
  animation: float-blob-1 16s infinite ease-in-out;
}

.blob-animate-2 {
  animation: float-blob-2 20s infinite ease-in-out;
}

/* 2. TEXT REVEAL MASKING */
.text-reveal-mask {
  overflow: hidden;
  display: block;
}

.text-reveal-line {
  display: block;
  transform: translateY(105%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible .text-reveal-line {
  transform: translateY(0);
}

/* 3. PULSING SKELETON SCREENS */
@keyframes skeleton-pulse {
  0% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    opacity: 0.55;
  }
}

.skeleton-loading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.skeleton-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 24px;
  animation: skeleton-pulse 1.4s infinite ease-in-out;
}

.skeleton-bar {
  height: 12px;
  background: var(--border-accent);
  border-radius: 6px;
  width: 100%;
}

.skeleton-bar.short {
  width: 60%;
}

.skeleton-bar.medium {
  width: 80%;
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border-accent);
  margin-bottom: 8px;
}

/* 4. ROI CALCULATOR WIDGET */
.calc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 880px;
  margin: 0 auto;
}

.calc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.calc-header {
  text-align: center;
  margin-bottom: 32px;
}

.calc-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.calc-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.calc-step {
  display: none;
  animation: calc-fade-slide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-step.active {
  display: block;
}

@keyframes calc-fade-slide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step 1 Options Grid */
.calc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .calc-options {
    grid-template-columns: 1fr;
  }
}

.calc-opt {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 4px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.calc-opt:hover {
  border-color: var(--border-accent);
  background: var(--bg-surface);
  transform: translateY(-2px);
}

.calc-opt.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.calc-opt-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.calc-opt-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Step 2 Inputs */
.calc-range-wrapper {
  padding: 16px 8px;
}

.calc-range-val {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.calc-slider {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Step Navigation Footer */
.calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.calc-progress-container {
  flex-grow: 1;
  max-width: 180px;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin: 0 16px;
}

.calc-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 33.33%;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Results panel styles */
.calc-results {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  text-align: left;
}

@media (max-width: 768px) {
  .calc-results {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.result-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.result-stat-val {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.result-stat-lbl {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.result-rec-card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.02) 0%,
    rgba(139, 92, 246, 0.02) 100%
  );
}

.result-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.result-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.result-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* 5. SCROLL PROGRESS BAR */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.08s ease-out;
}

/* 6. CIRCULAR BACK-TO-TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  outline: none;
  padding: 0;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--border-accent);
  background: var(--bg-secondary);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  pointer-events: none;
  width: 48px;
  height: 48px;
}

.progress-circle-bg {
  fill: none;
  stroke: var(--border-color);
  stroke-width: 2.5;
}

.progress-circle-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 125.6; /* 2 * PI * r (20) */
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 0.08s ease-out;
}

.chevron-up-icon {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.back-to-top:hover .chevron-up-icon {
  transform: translateY(-2px);
}

/* 7. FAQ ACCORDION SECTION */
.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  outline: none;
  transition: color 0.2s ease;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-secondary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-content {
  padding: 0 24px 24px;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
} /* Force light/white mode baseline for all new sections */
.ew-section {
  background: #ffffff;
}
.ew-section-alt {
  background: #f5f5f5;
}
.ew-section-dark {
  background: #000000;
}

/* ── HERO ── */
.ew-hero {
  background: #ffffff;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--geo-banner-offset, 0px) + 80px) 0 80px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
}
.ew-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Large decorative arc — top-right */
.ew-hero-arc {
  position: absolute;
  top: -320px;
  right: -320px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.055);
  pointer-events: none;
  z-index: 0;
}
.ew-hero-arc::after {
  content: "";
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.035);
}
/* Accent dot cluster */
.ew-hero-dots {
  position: absolute;
  top: 100px;
  right: 100px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.ew-hero-dots span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000000;
}
.ew-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.ew-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ew-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  animation: ew-pulse 2.4s ease-in-out infinite;
}
@keyframes ew-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.ew-hero-eyebrow::before {
  display: none;
}
.ew-hero-headline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #374151;
  margin-bottom: 48px;
  max-width: 960px;
}
.ew-hero-headline em {
  font-style: normal;
  color: #2563eb;
  position: relative;
}
.ew-hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 400;
}
.ew-hero-actions {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
  align-items: center;
}
.ew-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid #000000;
  border-radius: 0;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.ew-btn-primary:hover {
  background: #111111;
  box-shadow: none;
}
.ew-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.15s;
}
.ew-btn-ghost:hover {
  color: #000000;
}
.ew-btn-ghost svg {
  transition: transform 0.2s;
}
.ew-btn-ghost:hover svg {
  transform: translateX(4px);
}
.ew-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
  gap: 0;
}
.ew-stat {
  padding: 0 40px 0 0;
  border-right: 1px solid #e5e5e5;
  position: relative;
}
.ew-stat:first-child {
  padding-left: 0;
}
.ew-stat:last-child {
  border-right: none;
  padding-right: 0;
}
.ew-stat-num {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 10px;
}
.ew-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}
@media (max-width: 768px) {
  .ew-hero {
    padding-bottom: 56px;
  }
  .ew-hero-container {
    padding: 0 24px;
  }
  .ew-hero-headline {
    font-size: clamp(40px, 9vw, 72px);
    margin-bottom: 28px;
  }
  .ew-hero-body {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .ew-hero-actions {
    margin-bottom: 56px;
  }
  .ew-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .ew-stat {
    border-right: none;
    padding-right: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .ew-stat:nth-child(odd) {
    padding-right: 16px;
  }
  .ew-hero-dots {
    display: none;
  }
  .ew-stat:nth-child(3),
  .ew-stat:nth-child(4) {
    border-bottom: none;
  }
  .ew-stat-num {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .ew-hero {
    padding-bottom: 40px;
  }
  .ew-hero-container {
    padding: 0 20px;
  }
  .ew-hero-headline {
    font-size: clamp(36px, 12vw, 56px);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }
  .ew-hero-eyebrow {
    font-size: 9px;
    margin-bottom: 28px;
  }
  .ew-hero-body {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .ew-hero-actions {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
  .ew-btn-primary,
  .ew-btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }
  .ew-hero-stats {
    gap: 0;
  }
  .ew-stat-num {
    font-size: 32px;
  }
}

/* ── CHINESE LANGUAGE OVERRIDES ── */
[lang="zh"] .ew-hero-headline {
  letter-spacing: 0;
  line-height: 1.1;
  word-break: keep-all;
}
[lang="zh"] .ew-hero-eyebrow,
[lang="zh"] .ew-label,
[lang="zh"] .ew-svc-cat,
[lang="zh"] .ew-case-tag,
[lang="zh"] .ew-stat-label,
[lang="zh"] .ew-platform-num,
[lang="zh"] .ew-why-num,
[lang="zh"] .ew-proc-num,
[lang="zh"] .ew-ticker-item,
[lang="zh"] .ew-platform-link,
[lang="zh"] .ew-btn-primary,
[lang="zh"] .ew-btn-ghost {
  letter-spacing: 0.04em;
  text-transform: none;
}
[lang="zh"] .ew-h2 {
  letter-spacing: -0.01em;
  line-height: 1.25;
  word-break: keep-all;
}
[lang="zh"] .ew-stat-num {
  letter-spacing: -0.02em;
}
[lang="zh"] .ew-why-num {
  letter-spacing: 0;
}
[lang="zh"] .ew-case-result {
  letter-spacing: 0;
}
[lang="zh"] .ew-platform-name {
  letter-spacing: 0;
}
[lang="zh"] .ew-sub {
  word-break: keep-all;
}

/* ── INDUSTRIES TICKER ── */
.ew-ticker {
  background: #000000;
  padding: 13px 0;
  overflow: hidden;
  border-bottom: 1px solid #111111;
}
.ew-ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ew-ticker-scroll 32s linear infinite;
}
@keyframes ew-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ew-ticker-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  flex-shrink: 0;
}
.ew-ticker-sep {
  color: #2563eb;
  flex-shrink: 0;
  font-weight: 700;
}

/* ── SHARED SECTION CHROME ── */
.ew-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.ew-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 20px;
}
.ew-h2 {
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 16px;
}
.ew-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 560px;
}
.ew-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}
@media (max-width: 768px) {
  .ew-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .ew-wrap {
    padding: 0 20px;
  }
}

/* ── PLATFORMS ── */
.ew-platforms {
  padding: 104px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.ew-platforms-head {
  margin-bottom: 64px;
}
.ew-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
}
.ew-platform-card {
  padding: 44px 36px;
  border-right: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.18s;
  position: relative;
}
.ew-platform-card:last-child {
  border-right: none;
}
.ew-platform-card:hover {
  background: #f5f5f5;
}
.ew-platform-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ew-platform-card:hover::after {
  transform: scaleX(1);
}
.ew-platform-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cccccc;
}
.ew-platform-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  margin: 12px 0 16px 0;
  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.ew-platform-card:hover .ew-platform-logo {
  opacity: 1;
  transform: translateY(-2px);
}
.ew-platform-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}
.ew-platform-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  flex: 1;
}
.ew-platform-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.ew-platform-card:hover .ew-platform-link {
  gap: 10px;
}
@media (max-width: 900px) {
  .ew-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ew-platform-card:nth-child(2) {
    border-right: none;
  }
  .ew-platform-card:nth-child(1),
  .ew-platform-card:nth-child(2) {
    border-bottom: 1px solid #e5e5e5;
  }
}
@media (max-width: 768px) {
  .ew-platforms {
    padding: 72px 0;
  }
  .ew-platforms-head {
    margin-bottom: 40px;
  }
  .ew-platform-card {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .ew-platforms {
    padding: 56px 0;
  }
  .ew-platform-grid {
    grid-template-columns: 1fr;
  }
  .ew-platform-card {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 28px 20px;
  }
}

/* ── WHY ── */
.ew-why {
  padding: 112px 0;
  background: #000000;
  border-bottom: 1px solid #111111;
}
.ew-why .ew-label {
  color: #444444;
}
.ew-why .ew-h2 {
  color: #ffffff;
}
.ew-why .ew-sub {
  color: #555555;
}
.ew-why-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.ew-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #111111;
}
.ew-why-card {
  padding: 52px 40px;
  background: #060606;
  border-right: 1px solid #111111;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
}
.ew-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.ew-why-card:hover {
  background: #0d0d0d;
}
.ew-why-card:hover::before {
  transform: scaleX(1);
}
.ew-why-card:last-child {
  border-right: none;
}
.ew-why-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 36px;
}
.ew-why-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.ew-why-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}
@media (max-width: 900px) {
  .ew-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ew-why-card:nth-child(2) {
    border-right: none;
  }
  .ew-why-card:nth-child(1),
  .ew-why-card:nth-child(2) {
    border-bottom: 1px solid #111111;
  }
}
@media (max-width: 768px) {
  .ew-why {
    padding: 72px 0;
  }
  .ew-why-head {
    margin-bottom: 44px;
    gap: 24px;
  }
  .ew-why-card {
    padding: 36px 28px;
  }
}
@media (max-width: 480px) {
  .ew-why {
    padding: 56px 0;
  }
  .ew-why-grid {
    grid-template-columns: 1fr;
  }
  .ew-why-card {
    border-right: none;
    border-bottom: 1px solid #111111;
    padding: 28px 20px;
  }
}

/* ── SERVICES ── */
.ew-services {
  padding: 104px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.ew-svc-head {
  margin-bottom: 64px;
}
.ew-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.ew-svc-col {
  padding: 40px 28px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.ew-svc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #2563eb;
}
.ew-svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ew-svc-name {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.ew-svc-outcome {
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  letter-spacing: 0.02em;
}
.ew-svc-cta {
  margin-top: 48px;
}
@media (max-width: 900px) {
  .ew-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ew-services {
    padding: 72px 0;
  }
  .ew-svc-head {
    margin-bottom: 40px;
  }
  .ew-svc-col {
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .ew-services {
    padding: 56px 0;
  }
  .ew-svc-grid {
    grid-template-columns: 1fr;
  }
  .ew-svc-col {
    padding: 24px 16px;
  }
}

/* ── PROCESS ── */
.ew-process {
  padding: 104px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.ew-process-head {
  margin-bottom: 64px;
}
.ew-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e5e5;
}
.ew-process-step {
  padding: 44px 28px;
  border-right: 1px solid #e5e5e5;
  background: #ffffff;
  position: relative;
}
.ew-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s;
}
.ew-process-step:hover::before {
  background: #2563eb;
}
.ew-process-step:last-child {
  border-right: none;
}
.ew-proc-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #eeeeee;
  line-height: 1;
  margin-bottom: 20px;
}
.ew-proc-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ew-proc-text {
  font-size: 13px;
  line-height: 1.75;
  color: #6b7280;
}
@media (max-width: 900px) {
  .ew-process-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .ew-process-step:nth-child(2) {
    border-right: none;
  }
  .ew-process-step {
    border-bottom: 1px solid #e5e5e5;
  }
  .ew-process-step:last-child {
    border-right: none;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .ew-process {
    padding: 72px 0;
  }
  .ew-process-head {
    margin-bottom: 40px;
  }
  .ew-process-step {
    padding: 28px 20px;
  }
  .ew-proc-num {
    font-size: 48px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .ew-process {
    padding: 56px 0;
  }
  .ew-process-track {
    grid-template-columns: 1fr;
  }
  .ew-process-step {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 16px;
  }
}

/* ── CASE STUDIES ── */
.ew-cases {
  padding: 112px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.ew-cases .ew-label {
  color: #2563eb;
}
.ew-cases .ew-h2 {
  color: #000000;
}
.ew-cases .ew-sub {
  color: #666666;
}
.ew-cases-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.ew-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5e5e5;
}
.ew-case-card {
  padding: 56px 44px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.ew-case-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: #2563eb;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.ew-case-card:hover {
  background: #fafafa;
}
.ew-case-card:hover::after {
  transform: scaleY(1);
}
.ew-case-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 32px;
}
.ew-case-result {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 24px;
}
.ew-case-result-unit {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  margin-top: 8px;
}
.ew-case-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ew-case-text {
  font-size: 13px;
  line-height: 1.85;
  color: #6b7280;
  flex: 1;
}
.ew-cases-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ew-btn-outline-dark-cases {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}
.ew-btn-outline-dark-cases:hover {
  background: #000000;
  color: #ffffff;
}
.ew-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid #333333;
  border-radius: 0;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.ew-btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 900px) {
  .ew-case-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ew-cases {
    padding: 72px 0;
  }
  .ew-cases-head {
    margin-bottom: 40px;
    gap: 24px;
  }
  .ew-case-card {
    padding: 40px 32px;
  }
  .ew-case-result {
    font-size: clamp(40px, 8vw, 56px);
  }
}
@media (max-width: 480px) {
  .ew-cases {
    padding: 56px 0;
  }
  .ew-case-card {
    padding: 32px 24px;
  }
}

/* ── ENGAGEMENT ── */
.ew-engage {
  padding: 104px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.ew-engage-head {
  margin-bottom: 64px;
}
.ew-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e5e5;
}
.ew-engage-card {
  padding: 52px 40px;
  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.ew-engage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ew-engage-card:hover::before {
  transform: scaleX(1);
}
.ew-engage-card:last-child {
  border-right: none;
}
.ew-engage-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}
.ew-engage-price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0a0a0a;
  margin-bottom: 20px;
  line-height: 1;
}
.ew-engage-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 32px;
  flex: 1;
}
.ew-engage-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.ew-engage-features li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ew-engage-features li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000000;
  flex-shrink: 0;
}
.ew-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
  align-self: flex-start;
}
.ew-btn-outline-dark:hover {
  background: #000000;
  color: #ffffff;
}
@media (max-width: 900px) {
  .ew-engage-grid {
    grid-template-columns: 1fr;
  }
  .ew-engage-card {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .ew-engage-card:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .ew-engage {
    padding: 72px 0;
  }
  .ew-engage-head {
    margin-bottom: 40px;
  }
  .ew-engage-card {
    padding: 36px 28px;
  }
  .ew-engage-price {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .ew-engage {
    padding: 56px 0;
  }
  .ew-engage-card {
    padding: 28px 20px;
  }
}

/* ── TESTIMONIALS ── */
.ew-proof {
  padding: 104px 0;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.ew-proof-head {
  margin-bottom: 64px;
}
.ew-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e5e5;
}
.ew-proof-card {
  padding: 52px 40px;
  background: #ffffff;
  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ew-proof-card:last-child {
  border-right: none;
}
.ew-proof-quote-mark {
  font-size: 72px;
  line-height: 0.8;
  color: #eeeeee;
  font-family: Georgia, serif;
  font-weight: 900;
}
.ew-proof-quote {
  font-size: 15px;
  line-height: 1.8;
  color: #0a0a0a;
  font-style: italic;
  flex: 1;
}
.ew-proof-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.ew-industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.ew-industry-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 8px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #ffffff;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  cursor: default;
}
.ew-industry-chip:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
@media (max-width: 900px) {
  .ew-proof-grid {
    grid-template-columns: 1fr;
  }
  .ew-proof-card {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
  .ew-proof-card:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .ew-proof {
    padding: 72px 0;
  }
  .ew-proof-head {
    margin-bottom: 40px;
  }
  .ew-proof-card {
    padding: 36px 28px;
  }
}
@media (max-width: 480px) {
  .ew-proof {
    padding: 56px 0;
  }
  .ew-proof-card {
    padding: 28px 20px;
  }
}

/* ── FAQ ── */
.ew-faq {
  padding: 104px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .ew-faq {
    padding: 72px 0;
  }
  .ew-faq-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .ew-faq {
    padding: 56px 0;
  }
  .ew-faq-trigger {
    font-size: 14px;
    padding: 20px 0;
  }
}
.ew-faq-head {
  margin-bottom: 64px;
}
.ew-faq-list {
  max-width: 800px;
}
.ew-faq-item {
  border-top: 1px solid #e5e5e5;
}
.ew-faq-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.ew-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  font-family: inherit;
  transition: color 0.18s;
  letter-spacing: -0.01em;
}
.ew-faq-trigger:hover {
  color: #2563eb;
}
.ew-faq-trigger svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.ew-faq-item.open .ew-faq-trigger svg {
  transform: rotate(45deg);
}
.ew-faq-body {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.ew-faq-item.open .ew-faq-body {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ── CTA ── */
.ew-cta {
  padding: 160px 0;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ew-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ew-cta-inner {
  position: relative;
  z-index: 1;
}
.ew-cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 28px;
}
.ew-cta-headline {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 32px;
}
.ew-cta-headline em {
  font-style: normal;
  color: #2563eb;
}
.ew-cta-sub {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 56px;
}
.ew-cta-actions {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .ew-cta {
    padding: 104px 0;
  }
  .ew-cta-headline {
    font-size: clamp(40px, 10vw, 72px);
  }
  .ew-cta-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .ew-cta {
    padding: 80px 0;
  }
  .ew-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .ew-btn-white {
    width: 100%;
    justify-content: center;
  }
}
.ew-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid #ffffff;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s;
}
.ew-btn-white:hover {
  background: #eeeeee;
  box-shadow: none;
}

/* ── CONTACT ── */
.ew-contact {
  padding: 112px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.ew-contact-head {
  margin-bottom: 64px;
}
.ew-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e5e5e5;
}
.ew-contact-cell {
  padding: 48px 36px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.18s;
  position: relative;
  overflow: hidden;
}
.ew-contact-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ew-contact-cell:hover::before {
  transform: scaleX(1);
}
.ew-contact-cell:hover {
  background: #f9f9f9;
}
.ew-contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #0a0a0a;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0a0a0a;
  flex-shrink: 0;
}
.ew-contact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
}
.ew-contact-val {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  display: block;
  transition: color 0.18s;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.ew-contact-val:hover {
  color: #2563eb;
}
.contact-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #000000;
  color: #fff;
  border-radius: 0;
  vertical-align: middle;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}
.contact-call-btn:hover {
  background: #2563eb;
}
.ew-contact-sub {
  font-size: 12px;
  line-height: 1.75;
  color: #bbbbbb;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .ew-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ew-contact {
    padding: 72px 0;
  }
  .ew-contact-head {
    margin-bottom: 40px;
  }
  .ew-contact-cell {
    padding: 36px 28px;
  }
}
@media (max-width: 480px) {
  .ew-contact {
    padding: 56px 0;
  }
  .ew-contact-grid {
    grid-template-columns: 1fr;
  }
  .ew-contact-cell {
    padding: 28px 20px;
  }
}

/* ── CONTACT SOCIAL STRIP ── */
.ew-contact-social {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 36px;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}
.ew-contact-social-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9ca3af;
  flex-shrink: 0;
}
.ew-contact-social-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ew-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #3a3a3a;
  text-decoration: none;
  border: 1px solid #d1d1d1;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.ew-social-chip:hover {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
@media (max-width: 768px) {
  .ew-contact-social {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .ew-contact-social {
    padding: 20px;
  }
}
.dark .ew-contact-social {
  background: #0a0c10;
  border-top-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-contact-social-label {
  color: #606068;
}
.dark .ew-social-chip {
  color: #aaaaaa;
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-social-chip:hover {
  background: #fafafa;
  color: #0a0a0a;
  border-color: #fafafa;
}

/* ── FOOTER ── */
.ew-footer {
  padding: 72px 0 40px;
  background: #000000;
}
.ew-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #111111;
}
.ew-footer-brand {
  max-width: 280px;
}
.ew-footer-logo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}
.ew-footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: #444444;
}
.ew-footer-nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.ew-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ew-footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 4px;
}
.ew-footer-link {
  font-size: 13px;
  color: #444444;
  text-decoration: none;
  transition: color 0.15s;
}
.ew-footer-link:hover {
  color: #ffffff;
}
.ew-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ew-footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #444444;
}
@media (max-width: 768px) {
  .ew-footer {
    padding: 56px 0 32px;
  }
  .ew-footer-inner {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .ew-footer-brand {
    max-width: 100%;
  }
  .ew-footer-nav {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .ew-footer {
    padding: 40px 0 24px;
  }
  .ew-footer-nav {
    gap: 24px;
    flex-wrap: wrap;
  }
  .ew-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── GLOBAL MOBILE H2 SCALING ── */
@media (max-width: 768px) {
  .ew-h2 {
    font-size: clamp(28px, 6.5vw, 44px);
    margin-bottom: 12px;
  }
  .ew-sub {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .ew-h2 {
    font-size: clamp(24px, 7.5vw, 36px);
  }
  .ew-label {
    font-size: 9px;
  }
}

/* ══ DARK MODE OVERRIDES FOR EW COMPONENTS ══ */
.dark .ew-section {
  background: #0a0c10;
}
.dark .ew-section-alt {
  background: #12151e;
}

/* Hero */
.dark .ew-hero {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-hero-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 80px 80px;
}
.dark .ew-hero-eyebrow {
  color: #757d8a;
}
.dark .ew-hero-eyebrow-dot {
  background: #2563eb;
}
.dark .ew-hero-headline {
  color: rgba(255, 255, 255, 0.25);
}
.dark .ew-hero-headline em {
  color: #2563eb;
}
.dark .ew-hero-body {
  color: #a8b0c0;
}
.dark .ew-btn-primary {
  background: #fafafa;
  color: #0a0c10;
  border-color: #fafafa;
}
.dark .ew-btn-primary:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}
.dark .ew-btn-ghost {
  color: #a8b0c0;
}
.dark .ew-btn-ghost:hover {
  color: #fafafa;
}
.dark .ew-hero-stats {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-stat {
  border-right-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-stat-num {
  color: #fafafa;
}
.dark .ew-stat-label {
  color: #757d8a;
}
@media (max-width: 768px) {
  .dark .ew-stat {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* Shared chrome */
.dark .ew-h2 {
  color: #fafafa;
}
.dark .ew-sub {
  color: #a8b0c0;
}
.dark .ew-divider {
  background: rgba(255, 255, 255, 0.1);
}

/* Ticker */
.dark .ew-ticker {
  background: #12151e;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-ticker-item {
  color: #757d8a;
}

/* Platforms */
.dark .ew-platforms {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-platform-grid {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-platform-card {
  border-right-color: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.dark .ew-platform-card:hover {
  background: #12151e;
}
.dark .ew-platform-card::after {
  background: #fafafa;
}
.dark .ew-platform-num {
  color: rgba(255, 255, 255, 0.2);
}
.dark .ew-platform-logo {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.dark .ew-platform-card:hover .ew-platform-logo {
  opacity: 0.9;
}
.dark .ew-platform-name {
  color: #fafafa;
}
.dark .ew-platform-desc {
  color: #a8b0c0;
}
.dark .ew-platform-link {
  color: #fafafa;
}
@media (max-width: 900px) {
  .dark .ew-platform-card:nth-child(1),
  .dark .ew-platform-card:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 480px) {
  .dark .ew-platform-card {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* Why — already dark bg, dark mode = deepen slightly */
.dark .ew-why {
  background: #060608;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.dark .ew-why-grid {
  border-color: rgba(255, 255, 255, 0.07);
}
.dark .ew-why-card {
  background: #0a0a0c;
  border-right-color: rgba(255, 255, 255, 0.07);
}
.dark .ew-why-card:hover {
  background: #0e0e10;
}
.dark .ew-why-card::before {
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) {
  .dark .ew-why-card:nth-child(1),
  .dark .ew-why-card:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 480px) {
  .dark .ew-why-card {
    border-bottom-color: rgba(255, 255, 255, 0.07);
  }
}

/* Services */
.dark .ew-services {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-svc-grid {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-svc-col {
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-svc-cat {
  color: #fafafa;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.dark .ew-svc-name {
  color: #fafafa;
}

/* Process */
.dark .ew-process {
  background: #12151e;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-process-track {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-process-step {
  background: #161922;
  border-right-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-process-step::before {
  background: rgba(255, 255, 255, 0.7);
}
.dark .ew-proc-num {
  color: rgba(255, 255, 255, 0.1);
}
.dark .ew-proc-title {
  color: #fafafa;
}
.dark .ew-proc-text {
  color: #a8b0c0;
}
@media (max-width: 900px) {
  .dark .ew-process-step {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 480px) {
  .dark .ew-process-step {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* Case Studies */
.dark .ew-cases {
  background: #12151e;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-cases .ew-h2 {
  color: #fafafa;
}
.dark .ew-cases .ew-sub {
  color: #a8b0c0;
}
.dark .ew-case-grid {
  background: rgba(255, 255, 255, 0.06);
}
.dark .ew-case-card {
  background: #161922;
}
.dark .ew-case-card:hover {
  background: #1a1d26;
}
.dark .ew-case-card::after {
  background: #fafafa;
}
.dark .ew-case-tag {
  color: #757d8a;
}
.dark .ew-case-result {
  color: #fafafa;
}
.dark .ew-case-title {
  color: #fafafa;
}
.dark .ew-case-text {
  color: #a8b0c0;
}
.dark .ew-btn-outline-dark-cases {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.3);
}
.dark .ew-btn-outline-dark-cases:hover {
  background: #fafafa;
  color: #0a0a0a;
}

/* Engagement */
.dark .ew-engage {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-engage-grid {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-engage-card {
  border-right-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-engage-name {
  color: #757d8a;
}
.dark .ew-engage-price {
  color: #fafafa;
}
.dark .ew-engage-desc {
  color: #a8b0c0;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-engage-features li {
  color: #a8b0c0;
}
.dark .ew-engage-features li::before {
  background: rgba(255, 255, 255, 0.5);
}
.dark .ew-btn-outline-dark {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.4);
}
.dark .ew-btn-outline-dark:hover {
  background: #fafafa;
  color: #0a0c10;
  border-color: #fafafa;
}
@media (max-width: 900px) {
  .dark .ew-engage-card {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* Testimonials */
.dark .ew-proof {
  background: #12151e;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-proof-grid {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-proof-card {
  background: #161922;
  border-right-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-proof-quote-mark {
  color: rgba(255, 255, 255, 0.1);
}
.dark .ew-proof-quote {
  color: #fafafa;
}
.dark .ew-proof-meta {
  color: #757d8a;
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-industry-strip {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-industry-chip {
  color: #a8b0c0;
  border-color: rgba(255, 255, 255, 0.1);
  background: #12151e;
}
.dark .ew-industry-chip:hover {
  background: #fafafa;
  color: #0a0c10;
  border-color: #fafafa;
}
@media (max-width: 900px) {
  .dark .ew-proof-card {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* FAQ */
.dark .ew-faq {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-faq-item {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-faq-item:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark .ew-faq-trigger {
  color: #fafafa;
}
.dark .ew-faq-body {
  color: #a8b0c0;
}

/* CTA — pure black */
.dark .ew-cta {
  background: #000000;
}

/* Contact */
.dark .ew-contact {
  background: #0a0c10;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.dark .ew-contact-grid {
  background: rgba(255, 255, 255, 0.07);
}
.dark .ew-contact-cell {
  background: #12151e;
}
.dark .ew-contact-cell:hover {
  background: #161922;
}
.dark .ew-contact-icon {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.dark .ew-contact-label {
  color: #757d8a;
}
.dark .ew-contact-val {
  color: #fafafa;
}
.dark .ew-contact-sub {
  color: #757d8a;
}
.dark .contact-call-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fafafa;
}
.dark .contact-call-btn:hover {
  background: #2563eb;
}

/* Footer — pure black */
.dark .ew-footer {
  background: #000000;
}
