/* ============================================================
   inyx.io — Editorial / Minimal Light Theme
   ============================================================ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #F7F6F3;
  --bg-alt:      #EFEFEB;
  --surface:     #FFFFFF;
  --border:      #E5E3DC;
  --accent:      #111111;
  --accent-dim:  #333333;
  --accent-glow: rgba(0,0,0,0.04);
  --eu:          #1D4ED8;
  --eu-glow:     rgba(29,78,216,0.08);
  --green:       #16A34A;
  --green-glow:  rgba(22,163,74,0.10);
  --text:        #111111;
  --muted:       #666666;
  --faint:       #9CA3AF;
  --success:     #16A34A;
  --warning:     #D97706;
  --danger:      #DC2626;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --mono:        'JetBrains Mono', 'Fira Code', monospace;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --shadow-card: 0 1px 4px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.05);
  --shadow-glow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ─── Utilitaires ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }

/* No gradient in editorial theme — plain bold text */
.gradient-text { color: var(--text); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--faint);
}
.section-title { font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px; }
.section-sub   { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
.text-center   { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ─── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--muted);
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge-accent  { color: var(--green); border-color: rgba(22,163,74,0.25); background: var(--green-glow); }
.badge-eu      { color: var(--eu); border-color: rgba(29,78,216,0.2); background: var(--eu-glow); }
.badge-neutral { color: var(--muted); }
.badge-success { color: var(--green); border-color: rgba(22,163,74,0.25); background: var(--green-glow); }

/* ─── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.18s ease; white-space: nowrap;
}
.btn-primary         { background: var(--text); color: var(--bg); }
.btn-primary:hover   { background: #333; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-secondary       { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: #999; }
.btn-ghost           { background: transparent; color: var(--muted); }
.btn-ghost:hover     { color: var(--text); }
.btn-lg   { padding: 14px 32px; font-size: 15px; border-radius: var(--r-lg); }
.btn-sm   { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ─── Logo ───────────────────────────────────────────────────── */
.logo          { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon     { width: 34px; height: 34px; flex-shrink: 0; }
.logo-wordmark { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.logo-wordmark em    { font-style: normal; color: var(--text); opacity: 0.3; }
.logo-wordmark small { font-weight: 300; color: var(--muted); font-size: inherit; }

/* logo-b — texte seul */
.logo-b .logo-icon { display: none; }

/* logo-c — texte + trait */
.logo-c .logo-icon { display: none; }
.logo-c .logo-wordmark { position: relative; padding-bottom: 5px; }
.logo-c .logo-wordmark::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--text); border-radius: 1px;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,243,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 24px; min-width: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 16px; flex: 1 1 auto; min-width: 0; overflow: hidden; flex-wrap: nowrap;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.2s; padding-block: 4px;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active   { color: var(--text); }
.nav-links a.active   { border-bottom-color: var(--text); }
.nav-actions  { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--faint); font-weight: 500;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 4px 10px; transition: all 0.2s;
}
.nav-lang:hover { color: var(--text); border-color: #bbb; }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* ─── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative; overflow: hidden;
  padding-block: 100px 84px;
  border-bottom: 1px solid var(--border);
}
/* Éléments décoratifs dark mode — masqués */
.hero-grid, .hero-glow-a, .hero-glow-b { display: none; }

.hero-content  { position: relative; max-width: 700px; }
.hero-eyebrow  { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-title {
  font-size: clamp(44px, 6.5vw, 72px); font-weight: 900;
  line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 24px;
  color: var(--text);
}
.hero-subtitle {
  font-size: 18px; color: var(--muted); max-width: 520px;
  margin-bottom: 40px; line-height: 1.7; font-weight: 400;
}
.hero-cta   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-sep  { width: 1px; height: 14px; background: var(--border); }

/* ─── Hero split layout ──────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: center;
}

/* ─── Hero panel ─────────────────────────────────────────────── */
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}
.panel-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.panel-title { font-size: 13px; font-weight: 600; }
.panel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
  animation: panel-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes panel-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
  50%       { box-shadow: 0 0 0 7px rgba(22,163,74,0.04); }
}
.panel-flags { display: flex; gap: 8px; font-size: 20px; margin-bottom: 12px; }
.panel-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Stats ──────────────────────────────────────────────────── */
#stats {
  border-block: 1px solid var(--border);
  background: var(--bg);
  padding-block: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item  { text-align: center; padding: 52px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 48px; font-weight: 900; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ─── Section générique ─────────────────────────────────────── */
.section        { padding-block: 96px; }
.section-header { margin-bottom: 56px; }

/* ─── Products ───────────────────────────────────────────────── */
.products-grid { display: flex; flex-direction: column; gap: 48px; }

.products-section-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.products-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.products-section-line { flex: 1; height: 1px; background: var(--border); }
.products-section-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}

/* Private Node */
.private-node-block {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 36px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 32px;
  transition: border-color 0.2s;
}
.private-node-block:hover { border-color: #bbb; }
.pn-header   { display: flex; align-items: flex-start; gap: 16px; }
.pn-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--bg-alt); flex-shrink: 0;
}
.pn-name      { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pn-desc      { font-size: 13px; color: var(--muted); line-height: 1.55; max-width: 260px; }
.pn-features-row { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.pn-feature   {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--muted);
}
.pn-feature::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.pn-cta       { text-align: right; flex-shrink: 0; }
.pn-quote     { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; white-space: nowrap; }
.pn-quote-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }

/* Product cards */
.product-card {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
  transition: background 0.2s;
}
.product-card:hover { background: #FAFAF8; }
.product-card.featured {
  background: var(--text);
  color: rgba(255,255,255,0.95);
}
.product-card.featured:hover { background: #1A1A1A; }
.product-card.featured .product-desc  { color: rgba(255,255,255,0.6); }
.product-card.featured .price-period  { color: rgba(255,255,255,0.5); }
.product-card.featured .price-annual  { color: rgba(110,231,183,0.9); }
.product-card.featured .product-features li { color: rgba(255,255,255,0.7); }
.product-card.featured .product-features li::before { color: #6EE7B7; }
.product-card.featured .btn-primary   { background: var(--bg); color: var(--text); }
.product-card.featured .btn-primary:hover { background: #EEE; }
.product-card.featured .btn-secondary { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.product-card.featured .btn-secondary:hover { border-color: rgba(255,255,255,0.6); }

.product-featured-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.product-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.icon-green { background: rgba(22,163,74,0.08); }
.icon-blue  { background: rgba(29,78,216,0.08); }
.icon-amber { background: rgba(215,119,0,0.08); }
.product-name  { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.product-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.product-price { margin-bottom: 24px; }
.price-main    { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-cur     { font-size: 22px; font-weight: 700; vertical-align: super; line-height: 1; }
.price-period  { font-size: 13px; color: var(--muted); margin-left: 2px; }
.price-annual  { font-size: 12px; color: var(--green); margin-top: 6px; }
.price-quote   { font-size: 24px; font-weight: 700; color: var(--text); }
.price-quote-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.product-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.product-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.45;
}
.product-features li::before {
  content: '✓'; color: var(--green); font-weight: 800;
  font-size: 12px; margin-top: 1px; flex-shrink: 0;
}

/* ─── Features ───────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #FAFAF8; }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--bg-alt); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── Locations ──────────────────────────────────────────────── */
#locations { background: var(--bg-alt); }
.locations-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.locations-text .section-sub { margin-bottom: 32px; }
.location-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.location-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 20px; transition: background 0.15s;
}
.location-item:last-child { border-bottom: none; }
.location-item:hover { background: #FAFAF8; }
.location-flag    { font-size: 22px; }
.location-info    { flex: 1; }
.location-country { font-size: 14px; font-weight: 600; }
.location-city    { font-size: 12px; color: var(--muted); }
.location-status  {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green); font-weight: 600;
}
.location-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.location-soon { color: var(--faint); font-size: 11px; font-weight: 500; font-style: italic; }
.locations-visual { display: flex; flex-direction: column; gap: 12px; }
.data-sovereignty-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px; width: 100%;
  box-shadow: var(--shadow-card);
}
.dsov-title { font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.dsov-items { display: flex; flex-direction: column; gap: 14px; }
.dsov-item  { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.dsov-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ─── Compare ────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid var(--border); font-size: 13px;
}
.compare-table thead th { font-size: 15px; font-weight: 700; padding-block: 22px; }
.compare-table thead th.col-feature {
  text-align: left; color: var(--muted);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.compare-table tbody td.col-feature { text-align: left; color: var(--muted); font-size: 13px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: #FAFAF8; }
.check-yes   { color: var(--green); font-size: 16px; font-weight: 700; }
.check-no    { color: var(--faint); font-size: 16px; }
.col-featured { background: rgba(0,0,0,0.02); border-inline: 1px solid var(--border); }

/* ─── About ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.about-values {
  display: flex; flex-direction: column;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px 22px; background: var(--surface);
  transition: background 0.15s;
}
.value-item:hover { background: #FAFAF8; }
.value-icon  { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.value-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── Contact ────────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info {
  display: flex; flex-direction: column;
  margin-top: 8px;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.contact-info-item {
  display: flex; gap: 14px; align-items: center;
  padding: 20px 22px; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--bg-alt); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-info-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.contact-info-value { font-size: 14px; font-weight: 600; margin-top: 1px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; position: relative; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; }
.form-label   { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.form-control {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px;
  color: var(--text); font-size: 14px; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control::placeholder { color: var(--faint); }
.form-control:focus { outline: none; border-color: var(--text); box-shadow: 0 0 0 3px rgba(0,0,0,0.07); }
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }
select.form-control {
  cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23999' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-control.is-invalid {
  border-color: var(--danger);
  background: rgba(220,38,38,0.03);
  animation: shake 0.4s cubic-bezier(.36,.07,.19,.97);
}
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-error {
  font-size: 12px; color: var(--danger);
  min-height: 0; max-height: 0; overflow: hidden;
  opacity: 0; transition: max-height 0.25s, opacity 0.25s, margin-top 0.25s; margin-top: 0;
}
.form-error.is-visible { max-height: 40px; opacity: 1; margin-top: 2px; }
.form-error-global {
  padding: 12px 16px; background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.2); border-radius: var(--r-md);
  font-size: 13px; display: none;
}
.form-error-global.is-visible { display: block; animation: fadeSlideUp 0.3s ease; }
.form-notice { font-size: 11px; color: var(--faint); line-height: 1.5; }
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

/* Bouton submit */
.btn-submit { position: relative; min-height: 48px; transition: opacity 0.2s, transform 0.15s; }
.btn-submit .btn-spinner {
  display: none; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.btn-submit.is-loading { cursor: wait; opacity: 0.85; }
.btn-submit.is-loading .btn-label   { opacity: 0; }
.btn-submit.is-loading .btn-spinner { display: block; }
.btn-submit:disabled { cursor: not-allowed; }

/* Succès */
.form-success {
  display: none; padding: 32px 28px;
  background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: var(--r-lg); color: var(--text); text-align: center;
}
.form-success.is-visible { display: block; animation: fadeSlideUp 0.5s ease; }
.form-success-icon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
  animation: pop 0.5s cubic-bezier(.2,.9,.3,1.3) 0.15s backwards;
}
.form-success-text {
  font-size: 15px; color: var(--muted); line-height: 1.6;
  max-width: 360px; margin: 0 auto;
}

/* Animations */
@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  0%   { transform: scale(0); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .form-control.is-invalid,
  .form-error-global.is-visible,
  .form-success.is-visible,
  .form-success-icon,
  .btn-submit .btn-spinner { animation: none; }
  .form-error { transition: none; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 64px; padding-bottom: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-badges  { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.footer-col h4  {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 16px;
}
.footer-links   { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--faint); flex-wrap: wrap; gap: 12px;
}
.footer-rgpd {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(29,78,216,0.06); border: 1px solid rgba(29,78,216,0.15);
  font-size: 11px; color: var(--eu); font-weight: 600;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-section-grid { grid-template-columns: 1fr 1fr; }
  .private-node-block    { grid-template-columns: 1fr; }
  .pn-cta                { text-align: left; }
  .features-grid         { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .about-grid            { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .locations-wrapper     { grid-template-columns: 1fr; }
  .hero-split            { grid-template-columns: 1fr; }
  .hero-panel            { display: none; }
}
@media (max-width: 1100px) {
  .nav-links             { display: none; }
  .nav-hamburger         { display: block; }
}
@media (max-width: 768px) {
  .nav-links             { display: none; }
  .nav-hamburger         { display: block; }
  .products-section-grid {
    grid-template-columns: 1fr;
    background: transparent; border: none; border-radius: 0;
  }
  .product-card          { border: 1px solid var(--border); border-radius: var(--r-lg); }
  .features-grid         { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .form-row              { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .compare-table         { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--bg-alt); }
::-webkit-scrollbar-thumb  { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--faint); }

/* ─── Selection ──────────────────────────────────────────────── */
::selection { background: rgba(0,0,0,0.1); color: var(--text); }

/* ─── Reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; } }

/* ─── Scroll-to-top ─────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s, color 0.2s;
  transform: translateY(8px);
  box-shadow: var(--shadow-card);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scroll-top:hover   { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ─── Stat counter ───────────────────────────────────────────── */
.stat-num { transition: color 0.3s; }


/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.faq-item { background: var(--surface, #fff); border: 3px solid var(--text, #0A0A0A); box-shadow: var(--shadow-card, 4px 4px 0 #0A0A0A); transition: box-shadow 0.1s, transform 0.1s; }
.faq-item[open] { box-shadow: 2px 2px 0 var(--accent, #F5C800); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--bg-alt, #F5F2D0); }
.faq-q-text { flex: 1; line-height: 1.4; }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s ease; color: var(--text, #0A0A0A); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 22px 20px; color: var(--muted, #3a3a3a); line-height: 1.7; font-size: 15px; border-top: 2px solid var(--text, #0A0A0A); margin-top: -2px; padding-top: 18px; }
@media (max-width: 640px) { .faq-q { padding: 16px 18px; font-size: 14px; } .faq-a { padding: 0 18px 16px; padding-top: 14px; font-size: 14px; } }
