/* ============================================================
   Elqano - main.css
   CSS partagé entre toutes les pages du thème WordPress
   ============================================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Roboto+Mono:wght@400;500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --purple: #9747FF;
  --orange: #FB6D26;
  --black: #0D0D0D;
  --dark: #07070A;
  --gray: #5A5A5A;
  --muted: #9A9A9A;
  --div: #E5E5E5;
  --white: #FFFFFF;
  --cream: #F9F8F5;
}

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

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--dark);
  overflow-x: hidden;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 56px;
  height: 64px;
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

/* Barre d'admin WP (utilisateur connecte) : la nav est en position fixed donc
   elle ignore le padding-top que WP ajoute sur <html> - on la decale nous-memes
   pour ne pas qu'elle passe sous la admin bar. Hauteurs alignees sur WP core :
   32px en desktop (>=783px), 46px en dessous. */
body.admin-bar nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar nav {
    top: 46px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-logo svg {
  display: block;
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
}

.nav-links a,
.nav-links span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a {
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a {
  color: var(--white);
}

/* Scope au <a> uniquement (pas .btn-nav tout court) : les boutons CTA du menu
   "Navigation principale"/"Footer" (Apparence > Menus) portent leur classe a
   la fois sur le <li> et le <a> genere par WP - sans le prefixe "a", la regle
   s'appliquait aux deux et empilait 2x le padding/fond (bouton dans un bouton). */
a.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--white);
  color: var(--black) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

a.btn-nav:hover {
  background: #f0f0f0 !important;
  transform: translateY(-1px);
}

a.btn-nav-free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--purple);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

a.btn-nav-free:hover {
  background: #8535f0 !important;
  transform: translateY(-1px);
}

/* Language selector */
.lang-select { position: relative; }

.lang-current {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
  transition: color 0.2s;
}

.lang-current:hover { color: rgba(255,255,255,0.8); }

.lang-chevron { transition: transform 0.15s; }

.lang-select.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -12px;
  background: rgba(14,14,18,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  backdrop-filter: blur(16px);
  z-index: 300;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 7px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.01em;
}

.lang-option:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.lang-option-code {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px 2px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.15s ease;
}

nav.open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 56px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--dark);
}

.f-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-logo {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.f-logo svg {
  display: block;
  height: 22px;
  width: auto;
}

.f-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.f-meta a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.f-meta a:hover { color: var(--white); }

.f-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.f-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.f-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover { color: var(--white); }

.f-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.f-copy {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.01em;
}

.f-linkedin {
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.f-linkedin:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */

/* Primary button (white/dark CTA) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Ghost dark (text link style on dark background) */
.btn-ghost-dark {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost-dark:hover { color: var(--white); }

/* CTA button (full-width style for CTA section) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  width: fit-content;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

/* Primary CTA variant (purple, used on product hero) */
.btn-primary-cta {
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.btn-cta-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-hint {
  font-family: 'Roboto Mono', monospace;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, color 0.25s ease, margin-top 0.25s ease;
}

.btn-primary-cta:hover .btn-cta-hint {
  color: rgba(255,255,255,0.65);
  max-height: 20px;
  margin-top: 4px;
}

/* ============================================================
   SHARED CTA SECTION (used on all pages)
   ============================================================ */
.cta {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 440px;
  overflow: hidden;
  border-top: 1px solid var(--div);
}

/* Dark variant (product, pricing, company) */
.cta.dark-cta {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta-l {
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--div);
}

.dark-cta .cta-l {
  border-right-color: rgba(255,255,255,0.05);
}

.ct-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.dark-cta .ct-eyebrow {
  color: rgba(255,255,255,0.18);
}

.ct-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
}

.dark-cta .ct-title {
  color: var(--white);
}

.ct-title em {
  font-style: italic;
  color: var(--orange);
}

.cta-r {
  padding: 72px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.ct-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.dark-cta .ct-sub {
  color: rgba(255,255,255,0.35);
}

.ct-proof {
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: -0.01em;
  line-height: 1.7;
}

.dark-cta .ct-proof {
  color: rgba(255,255,255,0.15);
}

.dark-cta .btn-cta {
  background: var(--white);
  color: var(--black);
}

/* ============================================================
   SHARED VERSUS SECTION
   ============================================================ */
.versus-section {
  background: var(--cream);
  padding: 120px 56px;
  border-bottom: 1px solid var(--div);
}

.versus-head {
  text-align: center;
  margin-bottom: 80px;
}

.vs-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vs-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--black);
}

.vs-title em {
  font-style: italic;
  color: var(--purple);
  letter-spacing: -0.02em;
}

.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 1040px;
  margin: 0 auto;
}

.versus-divider-line { background: var(--div); }

.versus-col { padding: 0 60px; }
.versus-col:first-child { padding-left: 0; }
.versus-col:last-child { padding-right: 0; }

.versus-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--div);
}

.vs-col-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-col-icon.bad { background: rgba(0,0,0,0.06); }
.vs-col-icon.good { background: rgba(151,71,255,0.1); }

.vs-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vs-label.bad { color: var(--muted); }
.vs-label.good { color: var(--purple); }

.versus-list { list-style: none; display: flex; flex-direction: column; }

.versus-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--div);
}

.versus-list li:last-child { border-bottom: none; }
.versus-before .versus-list li:last-child { border-bottom: none !important; }

.vs-li-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.vs-li-text { font-size: 15px; line-height: 1.55; }
.versus-before .vs-li-text { color: var(--muted); }
.versus-after .vs-li-text { color: var(--black); font-weight: 500; }

/* ============================================================
   SHARED VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 120px 56px;
  background: var(--dark);
}

.video-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 72px;
  max-width: clamp(900px, 85vw, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.v-right { max-width: 440px; flex-shrink: 0; }

.v-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.v-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.91;
  letter-spacing: -0.025em;
  color: var(--white);
}

.v-title em { font-style: italic; color: rgba(255,255,255,0.4); }

.v-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 24px;
}

.v-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.v-link:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateX(4px);
}

.video-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 32px 80px rgba(0,0,0,0.6);
  aspect-ratio: 16/9;
  background: #111;
  max-width: clamp(900px, 85vw, 1400px);
  margin: 0 auto;
}

.video-frame iframe,
.video-frame-el {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

/* ============================================================
   SHARED INTEGRATIONS SECTION
   ============================================================ */
.integrations-section {
  padding: 56px 48px;
  background: var(--white);
  border-top: 1px solid var(--div);
  border-bottom: 1px solid var(--div);
  overflow: hidden;
}

.int-inner {
  position: relative;
  max-width: 1100px;
  margin: 32px auto 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-center {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 440px;
}

.int-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.int-title {
  font-family: 'Crimson Text', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}

.int-title em { font-style: italic; }

.int-sub { font-size: 15px; color: var(--gray); line-height: 1.65; }

.int-logo-icon-only {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--div);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.int-logo-icon-only:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.int-logo-icon-only img { width: 28px; height: 28px; object-fit: contain; }

.int-logo-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--div);
  border-radius: 10px;
  background: var(--cream);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.int-logo-img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.int-logo-name { font-size: 12.5px; font-weight: 500; color: var(--black); letter-spacing: -0.01em; }

.int-custom-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px dashed #C4C4C4;
  border-radius: 10px;
  background: var(--cream);
  white-space: nowrap;
}

.int-custom-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px dashed #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
}

.int-custom-pill-text { font-size: 12.5px; font-weight: 500; color: var(--muted); letter-spacing: -0.01em; }

@keyframes floatA { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-8px);} }
@keyframes floatB { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-6px);} }
@keyframes floatC { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-10px);} }

.int-custom-card {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  border: 1px dashed #C4C4C4;
  border-radius: 14px;
  background: var(--cream);
}

.int-custom-card-left { display: flex; align-items: center; gap: 16px; }

.int-custom-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px dashed #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

.int-custom-card-title { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; margin-bottom: 3px; }
.int-custom-card-body { font-size: 13px; color: var(--gray); line-height: 1.5; }

.int-custom-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.int-custom-card-cta:hover { background: #1a1a1a; transform: translateY(-1px); }

/* Toggle bar */
.int-toggle-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0;
  padding: 56px 0 0;
}

.int-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--div);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.int-toggle-btn:hover { color: var(--black); border-color: #bbb; }
.int-toggle-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Option A : icones seules (defaut) */
.int-logo-icon-only { display: flex; }
.int-logo-item.int-b { display: none; }
.int-custom-pill.int-b { display: none; }

/* Option B : avec labels */
.show-labels .int-logo-icon-only { display: none; }
.show-labels .int-logo-item.int-b { display: flex; }
.show-labels .int-custom-pill.int-b { display: flex; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ANIMATIONS COMMUNES
   ============================================================ */
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* Italic letter-spacing compensation (shared across pages) */
.a-title em, .v-title em, .te-title em, .ind-title em,
.se-title em, .vs-title em, .panel-title em, .ct-title em {
  letter-spacing: -0.01em;
}

/* ============================================================
   RESPONSIVE - NAV / FOOTER
   ============================================================ */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  footer { padding: 32px; flex-direction: column; gap: 24px; text-align: center; }
  .f-right { align-items: center; }
  .f-links { justify-content: center; }

  .cta { grid-template-columns: 1fr; min-height: auto; }
  .cta-l { padding: 72px 32px 40px; border-right: none; border-bottom: 1px solid var(--div); }
  .dark-cta .cta-l { border-bottom-color: rgba(255,255,255,0.05); }
  .cta-r { padding: 40px 32px 72px; }

  .versus-section { padding: 80px 32px; }
  .versus-col { padding: 0 32px; }
  .video-section { padding: 80px 32px; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }

  nav.open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100dvh - 64px);
    background: rgba(7,7,10,0.97);
    backdrop-filter: blur(24px);
    padding: 20px 24px 48px;
    overflow-y: auto;
    z-index: 199;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 0;
  }

  nav.open .nav-links li { display: list-item !important; }

  nav.open .nav-links > li > a {
    display: block !important;
    font-size: 19px !important;
    font-weight: 500;
    color: rgba(255,255,255,0.6) !important;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: -0.02em;
  }

  nav.open .nav-links > li > a.current,
  nav.open .nav-links > li > a:hover { color: var(--white) !important; }

  nav.open a.btn-nav-free,
  nav.open a.btn-nav {
    display: flex !important;
    width: 100% !important;
    justify-content: center;
    margin-top: 12px;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  .lang-select { margin-left: auto; }

  footer { padding: 28px 20px !important; flex-direction: column; gap: 20px; text-align: center; }
  .f-right { align-items: center; }
  .f-links { justify-content: center; }

  .cta-l { padding: 60px 20px 32px !important; }
  .cta-r { padding: 32px 20px 60px !important; }

  .versus-grid { grid-template-columns: 1fr; }
  .versus-divider-line { height: 1px; width: auto; }
  .versus-col { padding: 40px 0; }
  .versus-col:first-child { padding-top: 0; }

  .video-section { padding: 60px 20px; }
  .video-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 36px; max-width: none; }
  .v-right { max-width: none; align-self: auto; }

  .integrations-section { padding: 40px 20px; }
  .int-logo-icon-only, .int-logo-item, .int-custom-pill { display: none !important; }
  .int-inner { min-height: 0 !important; position: static; }
  .int-center { position: static; max-width: none; }
  .int-custom-card { flex-direction: column; gap: 20px; padding: 20px; }
  .int-custom-card-cta { width: 100%; justify-content: center; }
}
