/* =========================================================================
   inyx.io — V5 Modern Indigo
   Inter + Indigo + aéré · inspiré Stripe / Linear / Vercel
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-muted: #475569;
  --text-faint: #94A3B8;
  --indigo-50: #EEF2FF;
  --indigo-100: #E0E7FF;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --green: #10B981;
  --green-50: #ECFDF5;
  --amber: #F59E0B;
  --red: #EF4444;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(15,23,42,0.10), 0 8px 10px -6px rgba(15,23,42,0.06);
  --ring: 0 0 0 3px rgba(99,102,241,0.18);
  --ease: 150ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11','ss01','ss03';
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo-600); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--indigo-700); }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.2; }
p { color: var(--text-muted); }

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

/* ============================ NAVBAR ============================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.03em;
  color: var(--text);
}
.nav-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  color: #fff; font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; gap: 4px; margin-left: auto; flex-wrap: nowrap; }
.nav-links a {
  color: var(--text-muted); font-weight: 500; font-size: 14px;
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--bg-alt); color: var(--text); }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-lang {
  font-size: 12.5px; color: var(--text-faint);
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--bg-alt); font-weight: 500;
  white-space: nowrap;
}
.nav-lang a { color: var(--text-faint); }
.nav-lang a.active { color: var(--indigo-700); font-weight: 600; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 500; font-size: 14px;
  padding: 10px 18px; min-height: 40px;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  border-radius: var(--r-md); cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--bg-alt); border-color: var(--border-strong); color: var(--text); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--indigo-500) 0%, var(--indigo-600) 100%);
  border-color: var(--indigo-600); color: #fff !important;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--indigo-600) 0%, var(--indigo-700) 100%);
  border-color: var(--indigo-700); color: #fff !important;
}
.btn-lg { padding: 13px 24px; font-size: 15px; min-height: 46px; }
.btn-sm { padding: 7px 14px; font-size: 13px; min-height: 32px; }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { background: var(--bg-alt); border-color: transparent; }

/* ============================ SECTION BASE ============================ */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--indigo-600); background: var(--indigo-50);
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
  border: 1px solid var(--indigo-100);
}
.section-title { font-size: 36px; margin-bottom: 14px; letter-spacing: -0.03em; }
.section-sub { font-size: 17px; color: var(--text-muted); }

/* ============================ HERO ============================ */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(1000px 500px at 50% -100px, var(--indigo-50) 0%, transparent 60%),
    var(--bg);
  text-align: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 1.05; margin-bottom: 20px;
  max-width: 900px; margin-inline: auto;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--indigo-500), #A855F7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; color: var(--text-muted);
  max-width: 640px; margin: 0 auto 40px; line-height: 1.5;
}
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-faint); font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--green); font-weight: 700; }

/* ============================ STATS ============================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 64px;
}
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.stat-num {
  font-size: 32px; font-weight: 700; color: var(--indigo-700);
  letter-spacing: -0.03em; line-height: 1;
}
.stat-label {
  margin-top: 8px; font-size: 13px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500;
}

/* ============================ PRODUCT CARDS ============================ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-500);
}
.product.featured {
  border: 2px solid var(--indigo-500);
  background: linear-gradient(180deg, #fff 0%, var(--indigo-50) 100%);
}
.product-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--indigo-500), var(--indigo-600));
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 14px; border-radius: var(--r-pill);
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.product-icon {
  width: 48px; height: 48px;
  background: var(--indigo-50); color: var(--indigo-600);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.product h3 { font-size: 22px; margin-bottom: 4px; }
.product-desc { font-size: 14px; color: var(--text-muted); min-height: 40px; }
.product-price {
  font-size: 36px; font-weight: 700; letter-spacing: -0.02em; color: var(--text);
  line-height: 1;
}
.product-price small { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.product-price-sub { font-size: 12.5px; color: var(--text-faint); margin-top: 4px; }
.product-features {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.product-features li { display: flex; align-items: flex-start; gap: 10px; }
.product-features li::before {
  content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0;
}
.product .btn { margin-top: auto; }

/* ============================ FEATURE GRID ============================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--indigo-50); color: var(--indigo-600);
  border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ============================ LOCATIONS ============================ */
.locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px;
  display: flex; align-items: center; gap: 12px;
}
.loc-flag { font-size: 28px; }
.loc h4 { font-size: 15px; margin-bottom: 2px; font-weight: 600; color: var(--text); text-transform: none; letter-spacing: 0; }
.loc p { font-size: 12.5px; color: var(--text-faint); margin: 0; }

/* ============================ COMPARE TABLE ============================ */
.compare-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.compare th, .compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: var(--bg-alt); font-size: 12px;
  font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--green); font-weight: 600; }
.compare .no { color: var(--text-faint); }
.compare .col-inyx {
  background: var(--indigo-50); color: var(--indigo-700); font-weight: 500;
}

/* ============================ FAQ ============================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 4px 0;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 500; color: var(--text);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; color: var(--indigo-500); font-weight: 300;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

/* ============================ CTA band ============================ */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-600) 0%, #7C3AED 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; max-width: 560px; margin-inline: auto; }
.cta-band .btn-primary {
  background: #fff; color: var(--indigo-700) !important; border-color: #fff;
}
.cta-band .btn-primary:hover {
  background: var(--indigo-50); color: var(--indigo-700) !important; border-color: var(--indigo-50);
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 64px 0 32px; font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand p { margin-top: 14px; color: var(--text-muted); font-size: 13.5px; }
.footer h4 { font-size: 13px; margin-bottom: 16px; color: var(--text); text-transform: uppercase;
             letter-spacing: 0.08em; font-weight: 600; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-muted); font-size: 14px; }
.footer ul a:hover { color: var(--indigo-700); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-faint); font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--bg-alt); color: var(--text-muted);
  font-size: 12px; font-weight: 500;
}

/* ============================ SUBSECTION TITLE ============================ */
.subsection-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text); margin: 48px 0 24px;
  text-align: center;
  position: relative;
}
.subsection-title::before,
.subsection-title::after {
  content: ""; display: inline-block; width: 40px; height: 1px;
  background: var(--border-strong); vertical-align: middle;
  margin: 0 16px;
}
.products + .subsection-title { margin-top: 64px; }

/* ============================ NŒUD EXCLUSIF ============================ */
.node-exclusif {
  margin-top: 48px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #312E81 100%);
  border: 1px solid #1E293B;
  border-radius: var(--r-xl);
  padding: 40px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.node-exclusif::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(99,102,241,0.25), transparent 60%);
  pointer-events: none;
}
.node-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-700));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(99,102,241,0.55);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.node-body { position: relative; z-index: 1; }
.node-body h3 {
  font-size: 24px; color: #fff; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.node-body > p {
  color: rgba(255,255,255,0.75); font-size: 15px;
  margin-bottom: 16px; max-width: 640px;
}
.node-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}
.node-features li { display: flex; align-items: flex-start; gap: 8px; }
.node-features li::before {
  content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0;
}
.node-cta {
  text-align: center; position: relative; z-index: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 20px 24px;
  min-width: 200px;
}
.node-cta .product-price { color: #fff; font-size: 22px; margin-bottom: 4px; }
.node-cta .product-price-sub { color: rgba(255,255,255,0.6); margin-bottom: 14px; }

/* ============================ GUARANTEES ============================ */
.guarantees {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  max-width: 760px; margin-inline: auto;
}
.guarantees h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--indigo-600); font-weight: 600; margin-bottom: 14px;
}
.guarantees ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.guarantees li { display: flex; align-items: flex-start; gap: 10px; }
.guarantees li::before {
  content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* ============================ ABOUT ============================ */
.about-text {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.about-text p {
  font-size: 16px; line-height: 1.7; color: var(--text-muted);
}

/* ============================ CONTACT ============================ */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 880px; margin: 0 auto;
}
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-500);
}
.contact-card .feature-icon {
  margin-inline: auto;
}
.contact-card h4 {
  font-size: 14px; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.contact-card p { font-size: 15px; color: var(--text-muted); margin: 0; }
.contact-card a { color: var(--indigo-600); font-weight: 500; }
.contact-card a:hover { color: var(--indigo-700); }

/* ============================ CONTACT FORM ============================ */
.contact-form {
  max-width: 680px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form .hp {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important; pointer-events: none !important;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: -0.005em;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font); font-size: 14.5px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  width: 100%;
}
.form-field textarea {
  resize: vertical; min-height: 140px; line-height: 1.55;
}
.form-field select {
  appearance: none; -webkit-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' fill='none'><path d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: var(--border-strong);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--indigo-500);
  background: var(--surface);
  box-shadow: var(--ring);
}
.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 6px;
}
.form-meta {
  font-size: 12.5px; color: var(--text-faint); font-weight: 500;
}
.form-status {
  font-size: 14px; padding: 12px 16px; border-radius: var(--r-md);
  display: none;
}
.form-status.form-status-ok {
  display: block;
  background: var(--green-50); color: #065F46;
  border: 1px solid #A7F3D0;
}
.form-status.form-status-err {
  display: block;
  background: #FEF2F2; color: #991B1B;
  border: 1px solid #FECACA;
}
.contact-form button[disabled] { opacity: 0.6; cursor: wait; }

@media (max-width: 620px) {
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================ RESPONSIVE ============================ */
/* ============================ DATACENTER MODAL ============================ */
.dc-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms ease;
}
.dc-modal[hidden] { display: none; }
.dc-modal.open { opacity: 1; pointer-events: auto; }
.dc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.dc-modal-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  max-width: 460px; width: 100%;
  transform: translateY(8px) scale(0.98);
  transition: transform 200ms ease;
}
.dc-modal.open .dc-modal-card { transform: translateY(0) scale(1); }
.dc-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.dc-modal-close:hover { background: var(--bg-alt); color: var(--text); }
.dc-modal-card h3 { font-size: 20px; margin-bottom: 6px; letter-spacing: -0.02em; }
.dc-modal-sub {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 20px; line-height: 1.5;
}
.dc-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.dc-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  text-decoration: none; color: var(--text);
  background: var(--surface);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
a.dc-opt:hover {
  border-color: var(--indigo-500);
  background: var(--indigo-50);
  transform: translateX(2px);
  color: var(--text);
}
.dc-opt.dc-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: var(--bg-alt);
}
.dc-flag { font-size: 24px; line-height: 1; flex-shrink: 0; }
.dc-info { display: flex; flex-direction: column; flex: 1; min-width: 0; gap: 2px; }
.dc-info strong { font-size: 14px; font-weight: 600; color: var(--text); }
.dc-info span { font-size: 12px; color: var(--text-faint); }
.dc-arrow { color: var(--indigo-500); font-weight: 600; font-size: 18px; }
.dc-soon {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #B45309;
  background: #FEF3C7;
  padding: 4px 10px; border-radius: var(--r-pill);
  border: 1px solid #FDE68A;
  flex-shrink: 0;
  white-space: nowrap;
}
.dc-foot {
  font-size: 12px; color: var(--text-faint);
  text-align: center; margin: 0; line-height: 1.5;
}

@media (max-width: 480px) {
  .dc-modal-card { padding: 24px 20px; }
  .dc-modal-card h3 { font-size: 18px; }
}

@media (max-width: 960px) {
  .products, .features, .locations { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .node-exclusif { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .node-icon { margin-inline: auto; }
  .node-features { grid-template-columns: 1fr; text-align: left; max-width: 360px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .products, .features, .locations { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 64px 0 48px; }
  .hero-sub { font-size: 16px; }
  .cta-band { padding: 40px 24px; }
  .cta-band h2 { font-size: 26px; }
  .subsection-title::before, .subsection-title::after { width: 24px; margin: 0 10px; }
  .guarantees { padding: 20px; }
}
