/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* ═══════════════════════════════════════════════════════════════
   SUNCORP — STYLESHEET GLOBAL
   Toutes les pages du site (homepage, leads, sites-web, à propos)
   ═══════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

/* ─── VARIABLES ─── */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #181818;
  --dark4: #202020;
  --dark5: #2a2a2a;
  --text: #efefef;
  --text-muted: #7a7a7a;
  --green: #2ecc71;
  --border: rgba(201, 168, 76, 0.15);
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button:hover,
button:active,
button:focus {
  background-color: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5)) brightness(1.2);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
}

.logo-text .dot {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item a {
  color: var(--gold);
}

.nav-links .current-menu-item a::after {
  transform: scaleX(1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-contact {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-contact:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}

.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 400;
  position: relative;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.25s ease,
    width 0.3s ease;
  transform-origin: center;
}

/* Hamburger → ✕ */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu — slide-down + fade */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 299;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  list-style-type: none;
}

/* Links — staggered entrance */
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0;
  transform: translateY(18px);
  transition:
    color 0.2s ease,
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu.open a:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}

.mobile-menu.open a:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
}

.mobile-menu.open a:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.mobile-menu.open a:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.23s;
}

.mobile-menu.open a:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.mobile-menu.open a:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s;
}

.mobile-menu.open a:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.38s;
}

.mobile-menu a:hover,
.mobile-menu a.cta {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   BOUTONS GLOBAUX
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-soft);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: transparent;
}

.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.btn-gold:hover {
  opacity: 0.85;
}

.btn-gold-lg {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 40px;
  position: relative;
}

.section-alt {
  background: var(--dark2);
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 64px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-desc {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

h2.section-title .gold {
  color: var(--gold);
}

.section-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* Badges / tags */
.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════════════════════════ */
.hero-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
}

.hero-tag-dot {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-tag span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.hero-home h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-home h1 .line-gold {
  color: var(--gold);
  display: block;
}

.hero-home h1 .line-outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  color: transparent;
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -8px;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.t1 {
  background: linear-gradient(135deg, #c9a84c, #e2c97e);
  color: var(--dark);
}

.t2 {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
}

.t3 {
  background: linear-gradient(135deg, #3a86ff, #48bfe3);
  color: #fff;
}

.t4 {
  background: linear-gradient(135deg, #e63946, #f4a261);
  color: #fff;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: var(--text);
}

/* Hero Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    var(--shadow-gold);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent 60%);
  pointer-events: none;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-badge {
  background: rgba(45, 143, 78, 0.15);
  border: 1px solid rgba(45, 143, 78, 0.3);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.metric-big {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}

.metric-big .num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.metric-big .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mini-m {
  background: var(--dark4);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
}

.mini-m .n {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.mini-m .l {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-agefice-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-agefice-bar strong {
  color: var(--gold);
}

.agefice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.hero-accent {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: floatY 3s ease-in-out infinite;
  z-index: 10;
}

.hero-accent2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: floatY 4s ease-in-out infinite 0.5s;
  z-index: 10;
}

.accent-icon {
  font-size: 1.4rem;
}

.accent-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.accent-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.stars-row {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* Marquee */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.marquee-sep {
  width: 5px;
  height: 5px;
  background: var(--dark);
  border-radius: 50%;
  opacity: 0.4;
}

/* Stats Section */
.stats-section {
  padding: 80px 40px;
  background: var(--dark2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-block {
  background: var(--dark2);
  padding: 40px 32px;
  position: relative;
  transition: background 0.25s;
}

.stat-block:hover {
  background: var(--dark3);
}

.stat-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.stat-block:hover::after {
  opacity: 1;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-num .unit {
  font-size: 1.8rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.bento-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--border);
}

.bento-card.span-5 {
  grid-column: span 5;
}

.bento-card.span-7 {
  grid-column: span 7;
}

.bento-card.span-4 {
  grid-column: span 4;
}

.bento-card.span-8 {
  grid-column: span 8;
}

.bento-card.span-6 {
  grid-column: span 6;
}

.bento-card.featured {
  border-color: var(--border);
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
}

.bento-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bento-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.bento-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.bento-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 20px;
  transition: gap 0.2s;
}

.bento-cta:hover {
  gap: 10px;
}

/* Bento vizualisations */
.bento-visual {
  margin-top: 24px;
  background: var(--dark4);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mock-browser {
  background: var(--dark5);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.mock-bar {
  height: 30px;
  background: var(--dark4);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.d1 {
  background: #ff5f57;
}

.d2 {
  background: #febc2e;
}

.d3 {
  background: #28c840;
}

.mock-content-mini {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-line.gold {
  background: rgba(201, 168, 76, 0.25);
  width: 60%;
}

.mock-line.w80 {
  width: 80%;
}

.mock-line.w50 {
  width: 50%;
}

.mock-line.w70 {
  width: 70%;
}

.leads-viz {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--dark4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}

.lead-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.la1 {
  background: linear-gradient(135deg, #c9a84c, #e2c97e);
  color: var(--dark);
}

.la2 {
  background: linear-gradient(135deg, #3a86ff, #48bfe3);
  color: #fff;
}

.la3 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: var(--dark);
}

.lead-info {
  flex: 1;
}

.lead-name {
  font-size: 0.82rem;
  font-weight: 700;
}

.lead-sector {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.lead-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
}

.hot {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid var(--border);
}

.new-s {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

/* AGEFICE pack inside bento */
.agefice-pack {
  background: var(--dark4);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 20px;
}

.pack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.85rem;
}

.pack-item:last-child {
  border-bottom: none;
}

.pack-name {
  color: var(--text-muted);
}

.pack-price {
  font-weight: 700;
}

.pack-price.strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.pack-price.free {
  color: #4ade80;
  font-size: 1.1rem;
}

.pack-total {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pack-total .label {
  font-size: 0.85rem;
  font-weight: 800;
}

.pack-total .amount {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  z-index: 1;
}

.process-step:hover .step-circle {
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.2);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.step-icon {
  font-size: 1.6rem;
  margin-top: 2px;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* AGEFICE Section */
.agefice-section {
  background: var(--dark2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.agefice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.agefice-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.agefice-text p strong {
  color: var(--text);
}

.agefice-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.agefice-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.bullet-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.agefice-card-wrap {
  position: relative;
  padding-top: 28px;
  padding-right: 28px;
}

.agefice-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    var(--shadow-gold);
  position: relative;
}

.agefice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.agefice-card-header {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(201, 168, 76, 0.05));
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.agefice-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.agefice-card-header h3 {
  font-size: 1rem;
  font-weight: 800;
}

.agefice-card-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.agefice-eligible-pill {
  margin-left: auto;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.agefice-card-body {
  padding: 20px 24px 24px;
}

.pack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
}

.pack-row:last-of-type {
  border-bottom: none;
  margin-bottom: 4px;
}

.pack-row .name {
  font-size: 0.88rem;
  color: var(--text);
}

.pack-row .val {
  font-size: 0.85rem;
  font-weight: 600;
}

.pack-row .val.cross {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.pack-row .val.green {
  color: #4ade80;
}

.agefice-total {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin: 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
}

.agefice-total .t-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}

.agefice-total .t-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Float badge — z-index + espace garanti par le padding du wrapper */
.float-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 168, 76, 0.1);
  animation: floatY 3.5s ease-in-out infinite;
  z-index: 10;
  text-align: center;
  min-width: 110px;
}

.float-badge .fb-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.float-badge .fb-txt {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    border-color 0.25s,
    transform 0.25s;
  position: relative;
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-text strong {
  color: var(--text);
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, #c9a84c, #e2c97e);
  color: var(--dark);
}

.av2 {
  background: linear-gradient(135deg, #3a86ff, #48bfe3);
  color: #fff;
}

.av3 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: var(--dark);
}

.av4 {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border-color: var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.testi-featured-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  background: var(--dark2);
  border-top: 1px solid var(--border-soft);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES — HERO (Leads,Sites,Présentation)
   ═══════════════════════════════════════════════════════════════ */
.hero-inner-page {
  padding: 140px 40px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(201, 168, 76, 0.13) 0%, transparent 60%), var(--dark);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-inner-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-inner-page h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.h-stat .n {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.h-stat .l {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Stats Band (inner pages) */
.stats-band {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 40px;
}

.stats-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-item .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SITES WEB PAGE
   ═══════════════════════════════════════════════════════════════ */
.filters-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: sticky;
  top: 72px;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}

.filter-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.filter-count {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}

.templates-section {
  padding: 64px 40px;
}

.templates-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.template-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.template-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.template-card.hidden {
  display: none;
}

/* Browser Mockup */
.mockup {
  position: relative;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  height: 200px;
}

.mockup-bar {
  background: #1a1a1a;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.d-red {
  background: #ff5f57;
}

.d-yel {
  background: #febc2e;
}

.d-grn {
  background: #28c840;
}

.mock-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  height: 18px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mock-url span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}

.mock-content {
  position: relative;
  height: 168px;
  overflow: hidden;
}

/* Template previews */
.t-luxe {
  background: #0d0d0d;
}

.t-luxe .mk-nav {
  height: 24px;
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.t-luxe .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(201, 168, 76, 0.4);
}

.t-luxe .mk-hero {
  padding: 14px 10px;
  background: radial-gradient(ellipse at 60% 30%, rgba(201, 168, 76, 0.15), transparent 70%);
}

.t-luxe .mk-h1 {
  width: 70%;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.t-luxe .mk-h2 {
  width: 50%;
  height: 5px;
  background: rgba(201, 168, 76, 0.4);
  border-radius: 2px;
  margin-bottom: 10px;
}

.t-luxe .mk-btn {
  display: inline-block;
  width: 70px;
  height: 16px;
  background: var(--gold);
  border-radius: 8px;
}

.t-luxe .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-luxe .mk-card {
  flex: 1;
  height: 48px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
}

.t-minimal {
  background: #f8f8f8;
}

.t-minimal .mk-nav {
  height: 24px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.t-minimal .mk-dot {
  width: 20px;
  height: 2px;
  background: #ddd;
  border-radius: 2px;
}

.t-minimal .mk-hero {
  padding: 16px 10px;
  text-align: center;
}

.t-minimal .mk-h1 {
  width: 60%;
  height: 7px;
  background: #222;
  border-radius: 3px;
  margin: 0 auto 6px;
}

.t-minimal .mk-h2 {
  width: 45%;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 0 auto 10px;
}

.t-minimal .mk-btn {
  display: block;
  width: 60px;
  height: 14px;
  background: #222;
  border-radius: 7px;
  margin: 0 auto;
}

.t-minimal .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-minimal .mk-card {
  flex: 1;
  height: 44px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.t-bold {
  background: #1a0533;
}

.t-bold .mk-nav {
  height: 24px;
  background: #2d0a5c;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-bold .mk-dot {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.t-bold .mk-hero {
  padding: 12px 10px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.t-bold .mk-h1 {
  width: 65%;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.t-bold .mk-h2 {
  width: 48%;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-bottom: 10px;
}

.t-bold .mk-btn {
  display: inline-block;
  width: 65px;
  height: 16px;
  background: #fcd34d;
  border-radius: 8px;
}

.t-bold .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-bold .mk-card {
  flex: 1;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.t-nature {
  background: #0f1f0f;
}

.t-nature .mk-nav {
  height: 24px;
  background: #1a2e1a;
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-nature .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(74, 222, 128, 0.5);
}

.t-nature .mk-hero {
  padding: 12px 10px;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.15), transparent);
}

.t-nature .mk-h1 {
  width: 68%;
  height: 7px;
  background: #4ade80;
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.t-nature .mk-h2 {
  width: 50%;
  height: 4px;
  background: rgba(74, 222, 128, 0.35);
  border-radius: 2px;
  margin-bottom: 10px;
}

.t-nature .mk-btn {
  display: inline-block;
  width: 68px;
  height: 15px;
  background: #4ade80;
  border-radius: 8px;
}

.t-nature .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-nature .mk-card {
  flex: 1;
  height: 46px;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 6px;
}

.t-tech {
  background: #030712;
}

.t-tech .mk-nav {
  height: 24px;
  background: #0f172a;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-tech .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(56, 189, 248, 0.4);
}

.t-tech .mk-hero {
  padding: 12px 10px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), transparent);
}

.t-tech .mk-h1 {
  width: 72%;
  height: 8px;
  background: #38bdf8;
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.t-tech .mk-h2 {
  width: 52%;
  height: 4px;
  background: rgba(56, 189, 248, 0.35);
  border-radius: 2px;
  margin-bottom: 10px;
}

.t-tech .mk-btn {
  display: inline-block;
  width: 68px;
  height: 15px;
  background: #38bdf8;
  border-radius: 8px;
}

.t-tech .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-tech .mk-card {
  flex: 1;
  height: 46px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 6px;
}

.t-resto {
  background: #1a0a00;
}

.t-resto .mk-nav {
  height: 24px;
  background: #2c1500;
  border-bottom: 1px solid rgba(251, 146, 60, 0.25);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-resto .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(251, 146, 60, 0.5);
}

.t-resto .mk-hero {
  padding: 12px 10px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(239, 68, 68, 0.08));
}

.t-resto .mk-h1 {
  width: 65%;
  height: 8px;
  background: #fb923c;
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.t-resto .mk-h2 {
  width: 48%;
  height: 4px;
  background: rgba(251, 146, 60, 0.4);
  border-radius: 2px;
  margin-bottom: 10px;
}

.t-resto .mk-btn {
  display: inline-block;
  width: 65px;
  height: 15px;
  background: #ef4444;
  border-radius: 8px;
}

.t-resto .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-resto .mk-card {
  flex: 1;
  height: 46px;
  background: rgba(251, 146, 60, 0.08);
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 6px;
}

.t-portfolio {
  background: #0a0a14;
}

.t-portfolio .mk-nav {
  height: 24px;
  background: #12122a;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-portfolio .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(167, 139, 250, 0.5);
}

.t-portfolio .mk-hero {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 128px;
}

.t-portfolio .mk-img {
  border-radius: 5px;
}

.t-corp {
  background: #f1f5f9;
}

.t-corp .mk-nav {
  height: 24px;
  background: #1e3a5f;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.t-corp .mk-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.t-corp .mk-hero {
  padding: 12px 10px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  height: 80px;
}

.t-corp .mk-h1 {
  width: 60%;
  height: 7px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.t-corp .mk-h2 {
  width: 45%;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  margin-bottom: 8px;
}

.t-corp .mk-btn {
  display: inline-block;
  width: 60px;
  height: 13px;
  background: #fcd34d;
  border-radius: 6px;
}

.t-corp .mk-cards {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
}

.t-corp .mk-card {
  flex: 1;
  height: 44px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Card info */
.card-info {
  padding: 22px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
}

.card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.card-price.free {
  color: var(--green);
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.c-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.c-feat {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-feat::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

.card-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
}

.card-btn:hover {
  background: var(--gold-light);
}

.card-btn.outline {
  background: transparent;
  border: 2px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.card-btn.outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.agefice-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Why section (sites web) */
.why-section {
  background: var(--dark2);
  padding: 80px 40px;
}

.why-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s;
}

.why-card:hover {
  border-color: var(--border);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 24px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.modal-template-name {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-template-name span {
  color: var(--gold);
  font-weight: 700;
}

.m-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.m-group {
  margin-bottom: 14px;
}

.m-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.m-group input,
.m-group select,
.m-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 11px 13px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.m-group input:focus,
.m-group select:focus,
.m-group textarea:focus {
  border-color: var(--gold);
}

.m-group select option {
  background: var(--dark3);
}

.m-group textarea {
  resize: vertical;
  min-height: 80px;
}

.m-group input::placeholder,
.m-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.modal-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  margin-top: 6px;
  transition: background 0.2s;
}

.modal-submit:hover {
  background: var(--gold-light);
}

.modal-note {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   LEADS PAGE
   ═══════════════════════════════════════════════════════════════ */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.domain-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.domain-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.domain-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.domain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-tag {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.domain-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Steps */
.how-bg {
  background: var(--dark2);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps-row::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 20px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Quality */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.quality-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.q-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.q-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.q-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quality-visual {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.metric-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.metric-bar-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-top: 6px;
}

.metric-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition:
    transform 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--gold);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Contact Form */
.contact-bg {
  background: var(--dark2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.c-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-text {
  font-size: 0.9rem;
  color: var(--text);
}

form.contact-form {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field input,
.field select,
.field textarea {
  background: var(--dark4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  transition: border 0.2s;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field select option {
  background: var(--dark3);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: "Inter", sans-serif;
}

.form-submit:hover {
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   PRÉSENTATION PAGE
   ═══════════════════════════════════════════════════════════════ */
.hero-presentation {
  padding: 100px 40px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.07), transparent);
}

.hero-pres-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-pres-inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 14px 0 16px;
}

.hero-pres-inner span {
  color: var(--gold);
}

.hero-visual-pres {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  flex-shrink: 0;
}

.profile-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.profile-role {
  font-size: 0.8rem;
  color: var(--gold);
}

.mini-stats-pres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-stat-pres {
  text-align: center;
  padding: 14px 8px;
  background: var(--dark4);
  border-radius: 10px;
}

.mini-stat-pres .n {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}

.mini-stat-pres .l {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-text p strong {
  color: var(--text);
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tl-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tl-year {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.services-pres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-pres-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.service-pres-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-pres-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  position: absolute;
  right: 20px;
  top: 10px;
  line-height: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-pres-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-pres-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-link:hover {
  text-decoration: underline;
}

/* Why us (presentation) */
.why-pres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list-pres {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

.why-item-pres {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.why-item-pres:hover {
  border-color: var(--gold);
}

.w-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.w-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.w-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-visual {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.why-visual h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}

.review-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item:last-child {
  border-bottom: none;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.review-sector {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

/* CTA Présentation */
.cta-pres {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 40px;
}

.cta-pres h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-pres h2 span {
  color: var(--gold);
}

.cta-pres p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-btns-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-soft);
  padding: 80px 40px 40px;
}

.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 300px;
  margin-top: 16px;
}

.footer-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-brand .nav-logo {
  margin-bottom: 4px;
  display: inline-flex;
}

footer {
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE AGEFICE
   ═══════════════════════════════════════════════════════════════ */

/* Hero AGEFICE */
.agefice-page-hero {
  padding: 120px 40px 100px;
  background: radial-gradient(ellipse 100% 70% at 50% 0%, rgba(201, 168, 76, 0.1), transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agefice-page-hero::before {
  content: "0€";
  position: absolute;
  top: 60px;
  right: 8%;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
}

.agefice-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.agefice-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.agefice-hero-kicker span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}

.agefice-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.agefice-page-hero h1 .gold {
  color: var(--gold);
}

.agefice-page-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.agefice-hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.agefice-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.agefice-badge-item strong {
  color: var(--text);
}

.agefice-hero-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  margin: 0 auto;
}

.price-cross {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-big {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -3px;
}

.price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Bande stats AGEFICE */
.agefice-stats-band {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04), rgba(201, 168, 76, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}

.agefice-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.ag-stat .n {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
}

.ag-stat .l {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Eligibilité section */
.eligibilite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eligibilite-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.eligibilite-card-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eligibilite-card-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.eligibilite-card-header span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.7;
}

.eligibilite-checklist {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.check-item:last-child {
  border-bottom: none;
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.check-icon.yes {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.check-icon.no {
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.15);
}

.check-text {
  font-size: 0.9rem;
}

.check-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* Process AGEFICE */
.ag-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

.ag-process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.ag-step {
  text-align: center;
  position: relative;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.ag-step:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.ag-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 16px;
}

.ag-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ag-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ag-step .step-time {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* Pack détail */
.pack-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.pack-detail-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.pack-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.pack-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pack-detail-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pack-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pack-detail-card .val-barred {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pack-detail-card .val-free {
  font-size: 1.3rem;
  font-weight: 900;
  color: #4ade80;
  margin-bottom: 14px;
}

.pack-detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-detail-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pack-detail-card ul li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pack-total-banner {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pack-total-banner .ptb-left h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.pack-total-banner .ptb-left p {
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.7);
}

.pack-total-banner .ptb-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -2px;
}

/* FAQ AGEFICE */
.ag-faq {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.faq-q .faq-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 18px;
}

/* Formulaire contact AGEFICE */
.ag-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ag-contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.ag-contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.ag-contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ag-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.ag-point-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ag-point-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.ag-point-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ag-form {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.ag-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ag-form .form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.ag-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Responsive AGEFICE */
@media (max-width: 1024px) {
  .eligibilite-grid {
    grid-template-columns: 1fr;
  }

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

  .ag-process-grid::before {
    display: none;
  }

  .ag-contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .agefice-page-hero {
    padding: 110px 20px 80px;
  }

  .agefice-page-hero::before {
    display: none;
  }

  .agefice-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .agefice-stats-band {
    padding: 28px 20px;
  }

  .pack-detail-grid {
    grid-template-columns: 1fr;
  }

  .pack-total-banner {
    grid-column: span 1;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .ag-form-grid {
    grid-template-columns: 1fr;
  }

  .agefice-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .agefice-hero-price {
    padding: 20px 32px;
  }

  .price-big {
    font-size: 3.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGES LÉGALES (CGV / Mentions légales / RGPD)
   ═══════════════════════════════════════════════════════════════ */
.legal-hero {
  padding: 120px 40px 60px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.06), transparent);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.legal-hero .hero-badge {
  margin-bottom: 20px;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.legal-hero h1 span {
  color: var(--gold);
}

.legal-hero p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}

.legal-toc {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 56px;
}

.legal-toc h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.legal-toc ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc ol li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.legal-toc ol li a:hover {
  color: var(--gold);
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-section p strong {
  color: var(--text);
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin: 12px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-section ul li strong,
.legal-section ol li strong {
  color: var(--text);
}

.legal-info-box {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-info-box strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.legal-table th {
  background: var(--dark3);
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 48px;
}

.legal-update span {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 110px 20px 50px;
  }

  .legal-body {
    padding: 48px 20px 80px;
  }

  .legal-toc {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .bento-card.span-5,
  .bento-card.span-7,
  .bento-card.span-4,
  .bento-card.span-8,
  .bento-card.span-6 {
    grid-column: span 12;
  }

  .agefice-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .testi-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

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

  .process-grid::before {
    display: none;
  }

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

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

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

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

  .why-pres-grid {
    grid-template-columns: 1fr;
  }

  .hero-pres-inner {
    grid-template-columns: 1fr;
  }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  /* Hero */
  .hero-home {
    padding: 120px 20px 80px;
  }

  .hero-home h1 {
    letter-spacing: -0.5px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  /* Dashboard hero card */
  .mini-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mini-m .n {
    font-size: 1.05rem;
  }

  .mini-m .l {
    font-size: 0.65rem;
  }

  .card-agefice-bar {
    font-size: 0.74rem;
  }

  .service-pills {
    gap: 6px;
  }

  .pill {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Sections */
  .section {
    padding: 70px 20px;
  }

  .stats-section {
    padding: 60px 20px;
  }

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

  .stat-block {
    padding: 28px 20px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

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

  /* CTA homepage */
  .cta-section {
    padding: 80px 20px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Marquee */
  .marquee-band {
    display: none;
  }

  /* Inner pages hero */
  .hero-inner-page {
    padding: 100px 20px 60px;
  }

  .hero-inner-page h1 {
    font-size: 1.9rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Sites web */
  .filters-bar {
    padding: 16px 20px;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .templates-section {
    padding: 40px 16px;
  }

  .templates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-section {
    padding: 60px 20px;
  }

  .modal {
    padding: 28px 20px;
  }

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

  /* Leads */
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps-row::before {
    display: none;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .quality-grid {
    gap: 12px;
  }

  /* Stats band */
  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band {
    padding: 28px 20px;
  }

  /* À propos */
  .cta-pres {
    padding: 60px 20px;
  }

  .hero-presentation {
    padding: 100px 20px 60px;
  }

  .cta-btns-row {
    flex-direction: column;
    align-items: stretch;
  }

  /* AGEFICE card */
  .agefice-card-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .agefice-eligible-pill {
    margin-left: 0;
  }

  .agefice-total .t-amount {
    font-size: 1.8rem;
  }

  /* Bento */
  .bento-grid {
    gap: 12px;
  }

  /* Section wrap padding */
  .section-wrap {
    padding: 0 4px;
  }
}

/* ════ SCROLL TO TOP ════ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 999;
  line-height: 1;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: #e0b84a;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

/* ════ WHATSAPP FLOATING BUTTON ════ */
#waBtn {
  position: fixed;
  bottom: 86px;
  /* au-dessus du scrollTop */
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 998;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  text-decoration: none;
}

#waBtn.visible {
  opacity: 1;
  transform: scale(1);
}

#waBtn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: scale(1.1);
}

#waBtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}

/* Ripple autour du bouton */
#waBtn::before,
#waBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waRipple 2.4s ease-out infinite;
  pointer-events: none;
}

#waBtn::after {
  animation-delay: 1.2s;
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ════ SCROLL PROGRESS BAR ════ */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d070, #c9a84c);
  background-size: 200% 100%;
  animation: shimmerBar 2s linear infinite;
  z-index: 10001;
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
}

@keyframes shimmerBar {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* ════ HERO TYPING CURSOR ════ */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   BLOG — Pages liste & articles
   ═══════════════════════════════════════════ */

/* Hero blog */
.blog-hero {
  padding: 130px 24px 70px;
  text-align: center;
  background: var(--dark2);
  border-bottom: 1px solid var(--border-soft);
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 14px 0 16px;
}

.blog-hero h1 span {
  color: var(--gold);
}

.blog-hero p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Blog grid */
.blog-section {
  padding: 70px 24px 100px;
  max-width: 1160px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Article card */
.article-card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.article-card-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.art-vis-1 {
  background: linear-gradient(135deg, #1a1400, #3a2e00);
}

.art-vis-2 {
  background: linear-gradient(135deg, #001a10, #003020);
}

.art-vis-3 {
  background: linear-gradient(135deg, #100018, #200030);
}

.art-vis-4 {
  background: linear-gradient(135deg, #1a0800, #3a1500);
}

.art-vis-5 {
  background: linear-gradient(135deg, #00101a, #001830);
}

.art-vis-6 {
  background: linear-gradient(135deg, #180010, #2a0020);
}

.art-vis-7 {
  background: linear-gradient(135deg, #001520, #003045);
}

.art-vis-8 {
  background: linear-gradient(135deg, #001028, #00204a);
}

.article-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.12), transparent 60%);
}

.article-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.badge-agefice {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.badge-leads {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-business {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.article-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.article-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  transition: gap 0.2s;
}

.article-read-link:hover {
  gap: 10px;
}

/* ── Article page ── */
.article-page-hero {
  padding: 120px 24px 60px;
  max-width: 780px;
  margin: 0 auto;
}

.article-page-hero .article-badge {
  font-size: 0.75rem;
}

.article-page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 16px 0 20px;
}

.article-page-hero h1 span {
  color: var(--gold);
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  margin-top: 20px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e0b84a);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-info {
  font-size: 0.82rem;
}

.author-info strong {
  color: #fff;
  display: block;
}

.author-info span {
  color: var(--text-muted);
}

/* Article body */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 44px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 10px;
}

.article-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.article-body strong {
  color: #e0e0e0;
}

.article-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.article-body ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 6px 0 6px 22px;
  position: relative;
}

.article-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Tip box */
.tip-box {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 28px 0;
}

.tip-box-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.tip-box p {
  margin: 0;
  font-size: 0.9rem;
}

/* Info grid inside article */
.article-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.article-info-card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.article-info-card .n {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.article-info-card .l {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* CTA box inside article */
.article-cta-box {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 48px 0 0;
  text-align: center;
}

.article-cta-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.article-cta-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.article-cta-box .btn-primary {
  display: inline-flex;
}

/* Back to blog */
.back-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.back-blog:hover {
  color: var(--gold);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ════ LIVE NOTIFICATIONS ════ */
#liveNotif {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  z-index: 996;
  transform: translateX(calc(-100% - 40px));
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.45s ease;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

#liveNotif.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.notif-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notif-body {
  min-width: 0;
}

.notif-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-action {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

.notif-time {
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  display: inline-block;
  animation: blink 1.2s ease-in-out infinite;
}

/* ════ TILT 3D CARDS ════ */
.bento-card,
.domain-card,
.template-card,
.testi-card,
.value-card,
.why-card,
.article-card,
.price-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ════ TESTIMONIALS CREDBAR ════ */
.testi-credbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 40px;
  padding: 14px 28px;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  width: fit-content;
  flex-wrap: wrap;
}

.credbar-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.credbar-score {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.credbar-score span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.credbar-sep {
  width: 1px;
  height: 20px;
  background: var(--border-soft);
}

.credbar-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.credbar-text strong {
  color: #fff;
}

.credbar-avatars {
  display: flex;
}

.credbar-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  margin-left: -8px;
}

.credbar-avatars span:first-child {
  margin-left: 0;
}

.credbar-avatars .t1 {
  background: linear-gradient(135deg, #c9a84c, #e2c97e);
  color: #0a0a0a;
}

.credbar-avatars .t2 {
  background: linear-gradient(135deg, #3a86ff, #48bfe3);
  color: #fff;
}

.credbar-avatars .t3 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0a0a0a;
}

.credbar-avatars .t4 {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Éléments flottants & ajouts récents
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Live notif — plus compact, réduit la largeur */
  #liveNotif {
    max-width: 240px;
    padding: 11px 13px;
    gap: 10px;
    left: 16px;
    bottom: 16px;
    border-radius: 12px;
  }

  .notif-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .notif-name {
    font-size: 0.78rem;
  }

  .notif-action {
    font-size: 0.7rem;
  }

  .notif-time {
    font-size: 0.63rem;
  }

  /* Boutons flottants — légèrement plus petits */
  #waBtn {
    width: 46px;
    height: 46px;
    bottom: 76px;
    right: 16px;
  }

  #waBtn svg {
    width: 24px;
    height: 24px;
  }

  #scrollTop {
    width: 40px;
    height: 40px;
    bottom: 22px;
    right: 16px;
    font-size: 1rem;
  }

  /* Credbar témoignages — masquer séparateurs,resserrer */
  .testi-credbar {
    gap: 10px;
    padding: 12px 18px;
  }

  .credbar-sep {
    display: none;
  }

  .credbar-score {
    font-size: 1rem;
  }

  /* Blog article */
  .article-page-hero {
    padding: 100px 20px 40px;
  }

  .article-body {
    padding: 0 20px 60px;
  }

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

  .article-cta-box {
    padding: 24px 18px;
  }

  .back-blog {
    font-size: 0.8rem;
  }

  /* Blog liste */
  .blog-hero {
    padding: 110px 20px 50px;
  }

  .blog-section {
    padding: 40px 20px 60px;
  }
}

@media (max-width: 480px) {
  /* Sur très petits écrans — notif encore plus discrète */
  #liveNotif {
    max-width: 210px;
  }

  /* Credbar — empiler sur 2 lignes proprement */
  .testi-credbar {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }

  .credbar-sep {
    display: none;
  }

  .credbar-stars,
  .credbar-score,
  .credbar-text,
  .credbar-avatars {
    text-align: center;
  }

  /* Article info grid — 1 colonne */
  .article-info-grid {
    grid-template-columns: 1fr;
  }
}
