:root {
  --bg: #020617;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(15, 23, 42, 0.82);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.55);
  --cyan: #67e8f9;
  --emerald: #6ee7b7;
  --fuchsia: #f0abfc;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(240, 171, 252, 0.08), transparent 30%),
    linear-gradient(180deg, #0f172a 0%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(2, 6, 23, 0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(110, 231, 183, 0.28);
  background: rgba(110, 231, 183, 0.1);
  color: #d1fae5;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
  max-width: 780px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: #0f172a;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
  max-width: 520px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.92rem;
}

.card,
.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: 26px;
}

.panel h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.55);
  border-radius: 18px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
}

section {
  padding: 34px 0 22px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.service-card,
.price-card,
.faq-card,
.step-card,
.info-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
}

.service-card .icon,
.price-card .icon {
  font-size: 2rem;
}

.service-card h3,
.price-card h3,
.step-card h3,
.faq-card h3 {
  margin: 14px 0 8px;
  font-size: 1.4rem;
}

.service-card p,
.price-card p,
.faq-card p,
.step-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.2);
  color: #d1fae5;
  font-size: 0.92rem;
}

.table-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

tr:last-child td {
  border-bottom: none;
}

td {
  color: var(--muted);
}

td:first-child {
  color: #fff;
  font-weight: 700;
}

.notes {
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.72);
  border-radius: 20px;
  padding: 18px;
}

.contact-item small {
  display: block;
  color: var(--soft);
  margin-bottom: 6px;
}

.contact-item a,
.contact-item strong {
  font-size: 1.1rem;
  word-break: break-word;
}

.form-panel {
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.86);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin: 10px 0 0;
  font-size: 1.7rem;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.field,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.field::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help {
  color: var(--soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  color: #a7f3d0;
}

.form-status.error {
  color: #fca5a5;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding: 24px 0 40px;
  color: var(--soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.notice {
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.72);
  padding: 18px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .hero {
    padding-top: 48px;
  }

  th,
  td {
    padding: 14px 14px;
    font-size: 0.95rem;
  }

  .panel,
  .service-card,
  .price-card,
  .faq-card,
  .step-card,
  .info-card,
  .form-panel {
    padding: 18px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: #25d366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.quick-proof {
  margin-top: 18px;
  color: #d1fae5;
  font-weight: 700;
  line-height: 1.7;
}

#avis .faq-card strong {
  color: #ffffff;
}

#zone .notice,
#infos-plus .service-card {
  min-height: 100%;
}

.legal-page .section {
  padding: 60px 20px;
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
  line-height: 1.7;
}

.footer-legal {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-legal a {
  text-decoration: none;
  color: var(--soft);
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--text);
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.consent-line input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--emerald);
  transform: scale(1.08);
  flex-shrink: 0;
}

.consent-line a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  max-width: 760px;
  margin: 0 auto;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.cookie-actions button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

#accept-cookies {
  background: #ffffff;
  color: #0f172a;
}

#refuse-cookies {
  background: transparent;
  color: #ffffff;
}

#refuse-cookies:hover {
  background: rgba(255, 255, 255, 0.06);
}
