/* ── 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: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #171717;
  --gray-900: #0a0a0a;
  --red: #dc2626;
  --blue-50: #eff6ff;
  --blue-600: #2563eb;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Semantic Theme variables (Light Mode default) */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-surface: var(--white);
  --text-primary: var(--black);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border-color: var(--gray-200);
  --border-accent: var(--gray-300);
  --bg-spotlight: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.9) 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='%23e5e5e5'/%3E%3C/svg%3E");
  --nav-bg: rgba(255, 255, 255, 0.98);
  --card-bg: var(--white);
  --card-hover-bg: var(--gray-50);
  --card-shine: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.02) 50%, transparent 100%);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
  --cursor-blend: normal;
  --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);
  --cursor-blend: difference;
  --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;
  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;
}

/* ── MAGNETIC CURSOR ── */
body.magnetic-cursor-active {
  cursor: none;
}

body.magnetic-cursor-active a,
body.magnetic-cursor-active button,
body.magnetic-cursor-active [role="button"],
body.magnetic-cursor-active label,
body.magnetic-cursor-active select,
body.magnetic-cursor-active input,
body.magnetic-cursor-active textarea {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform;
  mix-blend-mode: var(--cursor-blend);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--text-secondary);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  will-change: transform;
}

body.cursor-visible .cursor-dot,
body.cursor-visible .cursor-ring {
  opacity: 1;
}

body.cursor-hovering .cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--text-primary);
}

body.cursor-hovering .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.dark .cursor-hovering .cursor-ring {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, border-bottom 0.3s ease;
}

.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: 8px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  transition: background 0.12s, 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.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: 12px;
  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 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

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

/* ── SCHEDULE CONSULTATION PILL BADGE ── */
.btn-consult {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-consult::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  60%  { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-consult:hover {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
}

.dark .btn-consult {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.dark .btn-consult:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15), 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.btn-solid {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-solid:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

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

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

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
}

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

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

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

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

/* ── SECTION ── */
.section {
  padding: 120px 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: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-300) 100%);
}

.dark .section-label::before {
  background: linear-gradient(90deg, var(--text-secondary) 0%, var(--border-accent) 100%);
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--black) 0%, var(--gray-300) 100%);
  border-radius: 2px;
}

.dark .section-title::after {
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--border-accent) 100%);
}

.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: 40px;
  align-items: end;
  margin-bottom: 56px;
}

/* ── 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: 40px 36px;
  transition: all 0.2s ease;
}

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

.cell.featured {
  background: var(--text-primary);
  color: var(--bg-primary);
}

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

/* ── 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: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  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(--text-primary);
  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: 80px 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: 160px 0 90px;
  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;
  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: 120px 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--black);
  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: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
  border-radius: 2px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  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: 64px;
  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: 8px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
}

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

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

.nav-group {
  position: relative;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-family: inherit;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease;
}

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

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

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

.nav-group-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  min-width: 560px;
  padding: 18px;
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.dark .nav-group-menu {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(20px);
}

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

.nav-group-item {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.15s 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: 6px 10px;
}

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

.nav-group-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

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

.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% + 8px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 80px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.dark .lang-menu {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.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(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-solid:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

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

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

.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: 160px 0 110px;
  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='%23e5e5e5' stroke-width='0.5' opacity='0.4' fill='none'/%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%23d4d4d4' opacity='0.3'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--bg-secondary) 0%, transparent 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 / geometric shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 200, 255, 0.15) 0%, rgba(180, 255, 200, 0.1) 50%, transparent 70%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 220, 180, 0.12) 0%, transparent 60%);
  border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: blobDrift 18s ease-in-out infinite alternate;
  opacity: calc(0.8 - 0.4 * 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: var(--text-primary);
  margin-bottom: 36px;
  max-width: 880px;
  transition: color 0.3s ease;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  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: 56px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

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

.stat-num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--text-primary) 0%, transparent 100%);
  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(--text-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ind-item:hover {
  color: var(--text-primary);
  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='%23e5e5e5' stroke-width='0.5' opacity='0.3' 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(--border-accent);
  border-left: 2px solid var(--border-accent);
  opacity: 0.5;
  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(--border-accent);
  border-right: 2px solid var(--border-accent);
  opacity: 0.5;
  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(--text-primary) 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(--text-primary);
}

.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(--text-muted);
  border-left: 2px solid var(--text-muted);
  opacity: 0.4;
  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(--text-muted);
  border-right: 2px solid var(--text-muted);
  opacity: 0.4;
  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(--text-primary);
}

.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(--gray-200) 0%, var(--gray-800) 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(--border-color) 0%, var(--text-primary) 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(--text-primary);
}

.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(--border-accent);
  border-radius: 2px;
  flex-shrink: 0;
  background: 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='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  filter: invert(var(--dark-mode-invert, 0));
}

/* 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 {
  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: 6px;
  transition: background 0.15s ease;
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 24px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dark .nav-mobile {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

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

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s 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: 15px;
  font-weight: 600;
  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(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  font-weight: 700;
}

/* WHATSAPP BUTTON */
.wa-btn {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wa-btn:hover {
  transform: translateY(-6px) scale(1.08);
  background: #20ba59;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* 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;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    gap: 32px;
  }

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

  .contact-row {
    grid-template-columns: 1fr;
  }

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

  .wa-btn {
    width: 54px;
    height: 54px;
    bottom: 24px;
    left: 24px;
  }
}

/* ─── 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: 12px;
  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: 24px;
  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: 24px;
  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: 14px;
  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(--text-primary);
  background: var(--bg-surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.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(--text-primary);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  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(--text-primary);
  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: 16px;
  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: 16px;
  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(--border-color);
  color: var(--text-primary);
  border-radius: 99px;
  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: linear-gradient(90deg, #2563eb 0%, #8b5cf6 50%, #f97316 100%);
  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(--text-primary);
  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: 16px;
  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(--text-secondary);
  box-shadow: var(--shadow-md);
}

.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(--blue-600);
}

.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(--text-primary);
}

.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;
}