/* =============================================
   HONTAS MANAGER — LANDING PAGE
   Premium SaaS · Light Mode
   ============================================= */

/* ── Variables ── */
:root {
  --white: #ffffff;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --surface: #ffffff;
  --surface2: #f8fafc;

  --navy: #0f172a;
  --navy2: #1e293b;
  --navy3: #334155;
  --slate: #64748b;
  --slate2: #94a3b8;
  --border: #e2e8f0;
  --border2: #cbd5e1;

  --blue: #1d4ed8;
  --blue2: #2563eb;
  --blue3: #3b82f6;
  --blue-light: #dbeafe;
  --blue-glow: rgba(37,99,235,0.12);

  --teal: #0d9488;
  --teal2: #14b8a6;
  --teal-light: #ccfbf1;

  --green: #059669;
  --green2: #10b981;
  --green-light: #d1fae5;

  --orange: #d97706;
  --orange2: #f59e0b;
  --orange-light: #fef3c7;

  --red: #dc2626;
  --red2: #ef4444;
  --red-light: #fee2e2;

  --purple: #7c3aed;
  --purple2: #8b5cf6;
  --purple-light: #ede9fe;

  --grad: linear-gradient(135deg, #1d4ed8 0%, #0d9488 100%);
  --grad2: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.16);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;

  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: 0.28s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--navy); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease), background var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 36px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--navy);
}
.brand-icon {
  width: 36px; height: 36px; background: var(--grad); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; box-shadow: 0 2px 10px rgba(29,78,216,0.3);
}
.brand-name { font-weight: 600; }
.brand-name strong { color: var(--blue2); }

.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--slate);
  transition: color var(--t); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--grad); border-radius: 2px;
  transition: right var(--t) var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-ghost {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; color: var(--navy3);
  transition: all var(--t);
}
.btn-ghost:hover { border-color: var(--blue2); color: var(--blue2); background: var(--blue-light); }

.btn-primary-sm {
  display: flex; align-items: center; gap: 6px; padding: 9px 20px;
  background: var(--grad); border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; color: white;
  box-shadow: 0 2px 10px rgba(29,78,216,0.3);
  transition: all var(--t); white-space: nowrap;
}
.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(29,78,216,0.4); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative; padding: 132px 0 80px; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
}
.blob1 { width: 700px; height: 700px; background: radial-gradient(circle, #1d4ed8, transparent 70%); top: -200px; right: -150px; }
.blob2 { width: 500px; height: 500px; background: radial-gradient(circle, #0d9488, transparent 70%); bottom: -100px; left: -100px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.5;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
}

.hero-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: var(--blue-light); border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue2); font-size: 0.78rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; letter-spacing: 0.01em;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  50% { box-shadow: 0 0 0 4px rgba(37,99,235,0); }
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--navy); margin-bottom: 24px;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: var(--slate); max-width: 540px; margin-bottom: 40px; line-height: 1.7; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px;
  background: var(--grad); border-radius: var(--radius); color: white;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(29,78,216,0.35); transition: all var(--t);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(29,78,216,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px;
  border: 1.5px solid var(--border2); border-radius: var(--radius);
  color: var(--navy3); font-size: 0.95rem; font-weight: 500;
  transition: all var(--t); background: white;
}
.btn-outline:hover { border-color: var(--blue2); color: var(--blue2); background: var(--blue-light); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.hstat { display: flex; flex-direction: column; }
.hstat-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hstat-val small { font-size: 1rem; font-weight: 600; color: var(--slate); }
.hstat-label { font-size: 0.75rem; color: var(--slate2); margin-top: 2px; }
.hstat-sep { width: 1px; height: 36px; background: var(--border2); }

/* ── Dashboard Mock ── */
.hero-visual { position: relative; }
.mock-dashboard {
  background: #0f172a; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.07);
}
.mock-topbar {
  display: flex; align-items: center; gap: 16px; padding: 12px 16px;
  background: rgba(0,0,0,0.35); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }
.mock-tabs { display: flex; gap: 2px; flex: 1; }
.mtab { padding: 4px 12px; font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.4); border-radius: 6px; cursor: pointer; transition: all var(--t); }
.mtab.active { background: rgba(37,99,235,0.25); color: #93c5fd; border: 1px solid rgba(37,99,235,0.3); }
.mock-cta-pill { padding: 5px 14px; background: linear-gradient(135deg, #2563eb, #7c3aed); border-radius: 6px; font-size: 0.72rem; font-weight: 600; color: white; white-space: nowrap; }

.mock-body { display: grid; grid-template-columns: 44px 1fr 200px; }
.mock-sidebar {
  padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.2); border-right: 1px solid rgba(255,255,255,0.05);
}
.msb-icon {
  width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 0.85rem; cursor: pointer; transition: all var(--t);
}
.msb-icon.active { background: rgba(37,99,235,0.25); color: #93c5fd; }
.msb-icon:hover:not(.active) { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }

.mock-main { padding: 14px; }
.mock-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.mkpi { padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
.mkpi.green { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.mkpi.blue { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.2); }
.mkpi.purple { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }
.mkpi.orange { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
.mkpi-val { font-size: 1rem; font-weight: 800; color: white; line-height: 1; }
.mkpi.green .mkpi-val { color: #34d399; }
.mkpi.blue .mkpi-val { color: #93c5fd; }
.mkpi.purple .mkpi-val { color: #c4b5fd; }
.mkpi.orange .mkpi-val { color: #fcd34d; }
.mkpi-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

.mock-map-wrap { }
.mock-map-title { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.mock-map { display: flex; flex-direction: column; gap: 4px; }
.mmap-row { display: flex; gap: 4px; }
.munit { flex: 1; height: 30px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.58rem; font-weight: 600; cursor: pointer; transition: transform var(--t); border: 1px solid transparent; }
.munit:hover { transform: scale(1.08); }
.munit.occ { background: rgba(99,102,241,0.25); border-color: rgba(99,102,241,0.4); color: #a5b4fc; }
.munit.free { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.35); color: #6ee7b7; }
.munit.res { background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.35); color: #fcd34d; }
.mmap-legend { display: flex; gap: 10px; margin-top: 8px; }
.mmap-legend span { font-size: 0.62rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 4px; }

.mock-right { padding: 14px; border-left: 1px solid rgba(255,255,255,0.05); }
.mock-right-title { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.mock-activity { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.mact-item { display: flex; align-items: center; gap: 7px; padding: 7px 8px; background: rgba(255,255,255,0.03); border-radius: 7px; border: 1px solid rgba(255,255,255,0.04); }
.mact-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.new-dot { background: #6366f1; }
.warn-dot { background: #f59e0b; }
.ok-dot { background: #10b981; }
.ai-dot { background: #8b5cf6; }
.mact-name { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.mact-info { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.mact-badge { font-size: 0.58rem; font-weight: 600; padding: 2px 6px; border-radius: 4px; margin-left: auto; text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; }
.badge-new { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.badge-warn { background: rgba(245,158,11,0.2); color: #fcd34d; }
.badge-ok { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.badge-ai { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.mock-gabriel-mini { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); border-radius: 8px; padding: 10px; }
.mgab-head { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.mgab-score { font-size: 1.4rem; font-weight: 800; color: white; line-height: 1; }
.mgab-score span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.mgab-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 6px; overflow: hidden; }
.mgab-fill { height: 100%; width: 78%; background: linear-gradient(90deg, #2563eb, #7c3aed); border-radius: 4px; }

/* ═══════════════════════════════
   SOCIAL PROOF
═══════════════════════════════ */
.social-proof { padding: 24px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-proof .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.sp-label { font-size: 0.8rem; color: var(--slate2); flex-shrink: 0; }
.sp-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.sp-badge { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 500; color: var(--slate); background: var(--bg); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; }
.sp-badge i { color: var(--green2); font-size: 0.75rem; }

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
.section { padding: 96px 0; position: relative; }

.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.problem-label { background: #fef2f2; color: var(--red2); border: 1px solid #fecaca; }
.promise-label { background: var(--blue-light); color: var(--blue); border: 1px solid #bfdbfe; }
.features-label { background: #f0f9ff; color: #0284c7; border: 1px solid #bae6fd; }
.gabriel-label { background: rgba(124,58,237,0.1); color: #7c3aed; border: 1px solid rgba(124,58,237,0.2); }
.benefits-label { background: var(--green-light); color: var(--green); border: 1px solid #a7f3d0; }
.targets-label { background: var(--orange-light); color: var(--orange); border: 1px solid #fde68a; }
.proof-label { background: var(--teal-light); color: var(--teal); border: 1px solid #99f6e4; }
.faq-label { background: var(--purple-light); color: var(--purple); border: 1px solid #ddd6fe; }

.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem,3.5vw,2.4rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 20px;
}
.section-title.centered { text-align: center; }
.section-title.white { color: white; }
.u-text { text-decoration: underline; text-decoration-color: var(--teal2); text-underline-offset: 6px; }

.section-lead { font-size: 1rem; color: var(--slate); max-width: 640px; margin-bottom: 48px; line-height: 1.7; }
.section-lead.centered { text-align: center; margin: 0 auto 48px; }
.section-lead.white-sub { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════
   PROBLÈME
═══════════════════════════════ */
.section-problem { background: var(--white); }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 40px; }

.pn-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.pn-list { display: flex; flex-direction: column; gap: 10px; }
.pn-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--navy3); font-weight: 500; transition: all var(--t);
}
.pn-item:hover { border-color: var(--blue3); background: var(--blue-light); }
.pn-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue2); font-size: 0.85rem; flex-shrink: 0; }
.pn-item.highlight-need { background: var(--green-light); border-color: #a7f3d0; color: var(--green); }
.pn-item.highlight-need .pn-icon { background: rgba(5,150,105,0.15); color: var(--green); }
.pn-item.highlight-need { font-weight: 700; }

.problem-vs { display: flex; flex-direction: column; gap: 20px; }
.vs-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.vs-header { padding: 14px 20px; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.vs-card.bad .vs-header { background: #fef2f2; color: var(--red2); border-bottom: 1px solid #fecaca; }
.vs-card.good .vs-header { background: var(--green-light); color: var(--green); border-bottom: 1px solid #a7f3d0; }
.vs-card ul { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; background: white; }
.vs-card li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.vs-card li i { width: 16px; text-align: center; flex-shrink: 0; }
.vs-card.bad li { color: var(--slate); }
.vs-card.bad li .fa-times { color: var(--red2); }
.vs-card.bad li .fa-minus { color: var(--orange2); }
.vs-card.good li { color: var(--navy3); font-weight: 500; }
.vs-card.good li .fa-check { color: var(--green); }

.problem-conclusion {
  background: var(--bg); border-left: 4px solid var(--blue2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; font-size: 0.95rem; color: var(--navy3); font-style: italic; line-height: 1.7;
  display: flex; gap: 12px; align-items: flex-start;
}
.problem-conclusion .fa-quote-left { color: var(--blue3); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════
   PROMESSE
═══════════════════════════════ */
.section-promise { background: var(--bg); }
.promise-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.promise-desc { font-size: 1.05rem; color: var(--slate); line-height: 1.75; margin-bottom: 36px; }
.promise-pillars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.pillar { display: flex; align-items: center; gap: 16px; padding: 14px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all var(--t); }
.pillar:hover { border-color: var(--blue3); box-shadow: var(--shadow); transform: translateX(4px); }
.pillar-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--blue2); opacity: 0.5; width: 32px; flex-shrink: 0; }
.pillar-body { display: flex; flex-direction: column; }
.pillar-body strong { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.pillar-body span { font-size: 0.8rem; color: var(--slate2); }

.promise-card-wrap { position: relative; padding: 24px; }
.promise-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.promise-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.pc-icon { width: 60px; height: 60px; background: var(--grad); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; margin: 0 auto 24px; box-shadow: 0 4px 16px rgba(29,78,216,0.3); }
.pc-quote { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.5; margin-bottom: 24px; }
.pc-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pc-tags span { padding: 5px 14px; background: var(--blue-light); border: 1px solid rgba(37,99,235,0.2); color: var(--blue2); border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

.promise-float-1, .promise-float-2 {
  position: absolute; background: white; border-radius: 100px;
  padding: 8px 16px; font-size: 0.78rem; font-weight: 600; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); display: flex; align-items: center; gap: 6px;
  animation: float-y 3s ease-in-out infinite;
}
.promise-float-1 { top: 12px; left: -10px; color: var(--green); }
.promise-float-1 i { color: var(--green); }
.promise-float-2 { bottom: 20px; right: -10px; color: var(--purple); animation-delay: 1.5s; }
.promise-float-2 i { color: var(--purple); }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ═══════════════════════════════
   FONCTIONNALITÉS
═══════════════════════════════ */
.section-features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: relative; overflow: hidden; transition: all var(--t);
}
.feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); opacity: 0; transition: opacity var(--t); }
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(37,99,235,0.2); }
.feat-card:hover::after { opacity: 1; }
.feat-card.feat-featured { grid-row: span 2; background: linear-gradient(160deg, #eff6ff 0%, #f0fdfa 100%); border-color: rgba(37,99,235,0.15); }
.feat-card.feat-wide { grid-column: span 2; }

.feat-num { position: absolute; top: 20px; right: 20px; font-size: 0.68rem; font-weight: 700; color: var(--slate2); letter-spacing: 0.08em; }
.feat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.map-ic { background: #dbeafe; color: var(--blue2); }
.dyn-ic { background: #fef3c7; color: #d97706; }
.crm-ic { background: #d1fae5; color: var(--green); }
.quote-ic { background: #fae8ff; color: #a21caf; }
.relance-ic { background: #fee2e2; color: var(--red2); }
.resa-ic { background: #ccfbf1; color: var(--teal); }
.admin-ic { background: #e0e7ff; color: #4338ca; }

.feat-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }

.feat-map-demo { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fmap-row { display: flex; gap: 5px; }
.fmu { flex: 1; height: 28px; border-radius: 5px; border: 1px solid transparent; }
.fmu.occ { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.25); }
.fmu.free { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.25); }
.fmu.res { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.25); }
.fmu.pulse { animation: pulse-unit 2s ease-in-out infinite; }
@keyframes pulse-unit { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.feat-badge { display: inline-block; background: var(--green-light); color: var(--green); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.feat-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-tags span { background: var(--bg); border: 1px solid var(--border); color: var(--slate); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; }
.feat-pipeline { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.feat-pipeline span { padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; font-size: 0.72rem; font-weight: 500; color: var(--slate); }
.feat-pipeline i { color: var(--slate2); font-size: 0.65rem; }
.feat-pipeline .active-pipe { background: var(--green-light); border-color: #a7f3d0; color: var(--green); font-weight: 700; }
.feat-stat-big { display: flex; align-items: baseline; gap: 6px; }
.fsb-val { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--blue2); line-height: 1; }
.fsb-unit { font-size: 1rem; font-weight: 700; color: var(--blue3); }
.fsb-lbl { font-size: 0.78rem; color: var(--slate2); }
.feat-timeline { display: flex; align-items: center; }
.ftl-dot { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; background: var(--bg); border: 1.5px solid var(--border); color: var(--slate2); flex-shrink: 0; }
.ftl-dot.done { background: var(--green-light); border-color: #a7f3d0; color: var(--green); }
.ftl-dot.active { background: linear-gradient(135deg, #1d4ed8, #0d9488); color: white; border: none; box-shadow: 0 0 12px rgba(29,78,216,0.4); }
.ftl-line { flex: 1; height: 1.5px; background: var(--border); }
.feat-avail { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--green); }
.feat-avail i { font-size: 0.6rem; animation: pulse-dot 2s infinite; }
.feat-admin-modules { display: flex; gap: 10px; flex-wrap: wrap; }
.feat-admin-modules span { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 500; color: var(--navy3); }
.feat-admin-modules span i { color: #4338ca; font-size: 0.75rem; }

/* ═══════════════════════════════
   GABRIEL
═══════════════════════════════ */
.section-gabriel {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 40%, #0c1a2e 100%);
  position: relative; overflow: hidden;
}
.gabriel-bg { position: absolute; inset: 0; pointer-events: none; }
.gab-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.gab-blob1 { width: 600px; height: 600px; background: radial-gradient(circle, #7c3aed, transparent 70%); top: -200px; right: -100px; }
.gab-blob2 { width: 500px; height: 500px; background: radial-gradient(circle, #2563eb, transparent 70%); bottom: -150px; left: -100px; }

.gabriel-header { text-align: center; margin-bottom: 64px; position: relative; }
.gabriel-name { background: linear-gradient(135deg, #a78bfa, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.gabriel-main { display: grid; grid-template-columns: 320px 1fr; gap: 48px; position: relative; }

/* Avatar */
.gabriel-avatar-wrap {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 24px;
  position: relative;
}
.gabriel-avatar-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  border-radius: 50%; filter: blur(30px);
  pointer-events: none;
  animation: gab-glow-pulse 3s ease-in-out infinite;
}
@keyframes gab-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
/* ── Gabriel Avatar Photo ── */
.gabriel-avatar { position: relative; width: 150px; height: 150px; margin-bottom: 12px; }
.gabriel-avatar-photo { width: 170px; height: 170px; }

.gav-ring {
  position: absolute; border-radius: 50%; border: 2px solid transparent; inset: 0;
  animation: spin-ring 8s linear infinite;
}
.ring1 { border-top-color: rgba(124,58,237,0.6); border-right-color: rgba(124,58,237,0.2); inset: -10px; }
.ring2 { border-bottom-color: rgba(37,99,235,0.6); border-left-color: rgba(37,99,235,0.2); inset: -20px; animation-direction: reverse; animation-duration: 12s; }
@keyframes spin-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Real photo avatar */
.gav-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover; object-position: center top;
  border: 3px solid rgba(124,58,237,0.6);
  box-shadow: 0 0 40px rgba(124,58,237,0.45), 0 0 80px rgba(37,99,235,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gabriel-avatar-photo:hover .gav-photo {
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(124,58,237,0.65), 0 0 100px rgba(37,99,235,0.3);
}
.gav-badge-ai-float {
  position: absolute; bottom: 6px; right: 6px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white; font-size: 0.62rem; font-weight: 800;
  padding: 3px 9px; border-radius: 6px; letter-spacing: 0.1em;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 12px rgba(37,99,235,0.5);
  z-index: 2;
}

/* Legacy icon fallback */
.gav-inner {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, #1e1b4b, #0c1a2e);
  border: 2px solid rgba(124,58,237,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  box-shadow: 0 0 40px rgba(124,58,237,0.3), inset 0 0 20px rgba(37,99,235,0.1);
}
.gav-icon-wrap { font-size: 2rem; color: #a78bfa; }
.gav-badge-ai { background: linear-gradient(135deg, #2563eb, #7c3aed); color: white; font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; letter-spacing: 0.08em; }

/* Promise card Gabriel icon */
.pc-gabriel-icon {
  width: 80px !important; height: 80px !important; border-radius: 50% !important;
  overflow: hidden; padding: 0 !important; border: 3px solid rgba(37,99,235,0.3);
  box-shadow: 0 4px 20px rgba(37,99,235,0.25);
}
.pc-gabriel-icon img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.gab-name-tag { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: white; letter-spacing: 0.12em; }
.gab-status { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #10b981; animation: pulse-dot 2s infinite; }

/* Score card */
.gabriel-score-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(10px);
}
.gsc-title { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.gsc-big { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: white; line-height: 1; }
.gsc-big span { font-size: 1.2rem; color: rgba(255,255,255,0.3); }
.gsc-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 6px; margin: 12px 0 20px; overflow: hidden; }
.gsc-fill { height: 100%; width: 78%; background: linear-gradient(90deg, #2563eb, #7c3aed); border-radius: 6px; }
.gsc-details { display: flex; flex-direction: column; gap: 10px; }
.gsc-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; }
.gsc-row > span:first-child { color: rgba(255,255,255,0.5); width: 80px; flex-shrink: 0; }
.gsc-mini { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.gsc-mini-fill { height: 100%; background: linear-gradient(90deg, #2563eb, #7c3aed); border-radius: 4px; }
.gsc-mini-fill.gsc-good { background: linear-gradient(90deg, #059669, #10b981); }
.gsc-mini-fill.gsc-warn { background: linear-gradient(90deg, #d97706, #f59e0b); }
.gsc-pct { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7); width: 36px; text-align: right; }
.gsc-warn-text { color: #fcd34d; }

/* Gabriel sub-grid */
.gabriel-right { display: flex; flex-direction: column; gap: 24px; }
.gab-subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gab-subcard {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 24px; backdrop-filter: blur(10px);
  transition: all var(--t);
}
.gab-subcard:hover { background: rgba(255,255,255,0.08); border-color: rgba(124,58,237,0.3); transform: translateY(-2px); }
.gab-subcard.gab-highlighted { border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.08); }
.gab-sub-icon { width: 38px; height: 38px; background: rgba(124,58,237,0.2); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #a78bfa; font-size: 0.95rem; margin-bottom: 12px; }
.gab-subcard h4 { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.4; }
.gab-subcard p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.gab-subcard strong { color: rgba(255,255,255,0.7); }

/* Missions */
.gab-missions { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 20px; }
.gm-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.gm-list { display: flex; flex-direction: column; gap: 8px; }
.gm-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.82rem; border: 1px solid transparent; }
.gm-item span:first-of-type { flex: 1; }
.gm-pts { font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.gm-done { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #6ee7b7; }
.gm-done .fa-check-circle { color: #34d399; }
.gm-done .gm-pts { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.gm-active { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.2); color: #93c5fd; }
.gm-active .fa-circle-notch { color: #60a5fa; }
.gm-active .gm-pts { background: rgba(37,99,235,0.15); color: #93c5fd; }
.gm-pending { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.15); color: rgba(255,255,255,0.4); }
.gm-pending .fa-clock { color: #fcd34d; }
.gm-pending .gm-pts { background: rgba(245,158,11,0.12); color: #fcd34d; }

/* Feedback */
.gab-feedback { display: flex; gap: 10px; flex-wrap: wrap; }
.gfb-item { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 500; border: 1px solid transparent; flex: 1; min-width: 200px; }
.gfb-positive { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #6ee7b7; }
.gfb-warning { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); color: #fcd34d; }
.gfb-info { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.2); color: #93c5fd; }

/* ═══════════════════════════════
   BÉNÉFICES
═══════════════════════════════ */
.section-benefits { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ben-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all var(--t); position: relative; overflow: hidden;
}
.ben-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background: var(--grad); transition: right var(--t) var(--ease); }
.ben-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(29,78,216,0.15); }
.ben-card:hover::before { right: 0; }
.ben-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue2); font-size: 1.15rem; margin: 0 auto 14px; transition: all var(--t); }
.ben-card:hover .ben-icon { background: var(--grad); color: white; box-shadow: 0 4px 16px rgba(29,78,216,0.3); }
.ben-card p { font-size: 0.875rem; color: var(--navy3); font-weight: 500; line-height: 1.5; }

/* ═══════════════════════════════
   CIBLES
═══════════════════════════════ */
.section-targets { background: var(--white); }
.targets-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.target-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: all var(--t); position: relative; overflow: hidden;
}
.target-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); background: var(--grad); opacity: 0; transition: opacity var(--t); pointer-events: none; }
.target-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.target-card.featured-target { background: linear-gradient(160deg, #eff6ff, #f0fdfa); border-color: rgba(29,78,216,0.2); }
.tgt-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue2); font-size: 1.3rem; margin: 0 auto 16px; transition: all var(--t); }
.target-card:hover .tgt-icon { background: var(--grad); color: white; box-shadow: 0 4px 16px rgba(29,78,216,0.3); }
.target-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.target-card p { font-size: 0.82rem; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════
   PREUVE
═══════════════════════════════ */
.section-proof { background: var(--bg); }
.proof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-text p { font-size: 1rem; color: var(--slate); line-height: 1.75; margin-bottom: 28px; }
.proof-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.proof-b { display: flex; align-items: center; gap: 7px; padding: 7px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--teal); }
.proof-b i { color: var(--teal2); }

.proof-kpi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); margin-bottom: 20px; }
.pkc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.pkc-row:last-child { margin-bottom: 0; }
.pkc-item { text-align: center; }
.pkc-val { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pkc-lbl { font-size: 0.78rem; color: var(--slate2); margin-top: 4px; }

.proof-quote-card { background: var(--navy); border-radius: var(--radius); padding: 24px 28px; color: white; }
.proof-quote-card i { color: var(--blue3); font-size: 1.2rem; margin-bottom: 12px; display: block; }
.proof-quote-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.pqc-author { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.section-faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t); }
.faq-item.open { border-color: var(--blue3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 600; color: var(--navy);
  text-align: left; transition: all var(--t);
}
.faq-q:hover { color: var(--blue2); }
.faq-q i { color: var(--blue2); flex-shrink: 0; transition: transform var(--t); font-size: 0.8rem; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding var(--t); }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.section-cta { background: var(--navy); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-blob1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%); filter: blur(80px); top: -200px; left: -100px; }
.cta-blob2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(13,148,136,0.2), transparent 70%); filter: blur(80px); bottom: -150px; right: -100px; }

.cta-content { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.cta-icon-wrap { width: 72px; height: 72px; background: var(--grad); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin: 0 auto 32px; box-shadow: 0 0 40px rgba(29,78,216,0.4); }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-title span { background: linear-gradient(90deg, #60a5fa, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 48px; line-height: 1.7; }

.cta-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 40px; backdrop-filter: blur(10px); text-align: left; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field.full { margin-bottom: 28px; }
.cta-field label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.cta-field input {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: white; font-size: 0.9rem; font-family: var(--font); outline: none; transition: all var(--t);
}
.cta-field input::placeholder { color: rgba(255,255,255,0.25); }
.cta-field input:focus { border-color: rgba(37,99,235,0.6); background: rgba(37,99,235,0.1); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }

.btn-cta-big {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad); border: none; border-radius: var(--radius); padding: 17px 32px;
  color: white; font-size: 1rem; font-weight: 700; font-family: var(--font);
  box-shadow: 0 4px 24px rgba(29,78,216,0.4); cursor: pointer; transition: all var(--t);
  letter-spacing: 0.01em;
}
.btn-cta-big:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(29,78,216,0.55); }
.btn-cta-big:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.cta-mention { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 14px; }

.cta-success {
  display: none; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius); padding: 32px; color: #6ee7b7; font-size: 1rem; text-align: center;
}
.cta-success i { font-size: 2.5rem; color: #34d399; }
.cta-success.show { display: flex; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: #060d1a; padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.1rem; color: white; margin-bottom: 16px; }
.footer-brand-col p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; transition: all var(--t); }
.footer-social a:hover { background: var(--blue2); color: white; border-color: transparent; }
.footer-nav-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color var(--t); }
.footer-nav-col a:hover { color: rgba(255,255,255,0.85); }
.footer-cta-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-cta-col p { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.btn-footer-cta { display: inline-flex; align-items: center; padding: 10px 22px; background: var(--grad); border-radius: var(--radius-sm); color: white; font-size: 0.85rem; font-weight: 600; transition: all var(--t); }
.btn-footer-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,78,216,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-aos].aos-in { opacity: 1; transform: none; }
.gab-subcard[data-aos]:nth-child(2) { transition-delay: 0.1s; }
.gab-subcard[data-aos]:nth-child(3) { transition-delay: 0.15s; }
.gab-subcard[data-aos]:nth-child(4) { transition-delay: 0.2s; }
.ben-card[data-aos]:nth-child(2) { transition-delay: 0.07s; }
.ben-card[data-aos]:nth-child(3) { transition-delay: 0.14s; }
.ben-card[data-aos]:nth-child(4) { transition-delay: 0.07s; }
.ben-card[data-aos]:nth-child(5) { transition-delay: 0.14s; }
.ben-card[data-aos]:nth-child(6) { transition-delay: 0.21s; }
.ben-card[data-aos]:nth-child(7) { transition-delay: 0.07s; }
.ben-card[data-aos]:nth-child(8) { transition-delay: 0.14s; }
.ben-card[data-aos]:nth-child(9) { transition-delay: 0.21s; }
.target-card[data-aos]:nth-child(2) { transition-delay: 0.1s; }
.target-card[data-aos]:nth-child(3) { transition-delay: 0.2s; }
.target-card[data-aos]:nth-child(4) { transition-delay: 0.3s; }
.feat-card[data-aos]:nth-child(2) { transition-delay: 0.08s; }
.feat-card[data-aos]:nth-child(3) { transition-delay: 0.16s; }
.feat-card[data-aos]:nth-child(4) { transition-delay: 0.08s; }
.feat-card[data-aos]:nth-child(5) { transition-delay: 0.16s; }
.feat-card[data-aos]:nth-child(6) { transition-delay: 0.24s; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .mock-dashboard { max-width: 660px; margin: 0 auto; }
  .mock-body { grid-template-columns: 44px 1fr; }
  .mock-right { display: none; }
  .gabriel-main { grid-template-columns: 260px 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-actions.open { display: flex; position: fixed; top: 240px; left: 0; right: 0; flex-direction: column; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 0 24px 24px; gap: 10px; z-index: 999; }
  .problem-grid, .promise-layout, .proof-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.feat-featured, .feat-card.feat-wide { grid-row: span 1; grid-column: span 2; }
  .benefits-grid { grid-template-columns: repeat(3,1fr); }
  .targets-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gabriel-main { grid-template-columns: 1fr; }
  .gabriel-left { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
  .gabriel-avatar-wrap { margin-bottom: 0; }
  .gab-subgrid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 110px 0 64px; }
  .hero-btns { flex-direction: column; }
  .btn-cta, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hstat-sep { display: none; }
  .features-grid, .benefits-grid { grid-template-columns: 1fr; }
  .feat-card.feat-featured, .feat-card.feat-wide { grid-column: span 1; }
  .targets-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
  .gabriel-left { grid-template-columns: 1fr; }
  .gab-subgrid, .mock-kpi-row { grid-template-columns: 1fr 1fr; }
  .mock-body { grid-template-columns: 44px 1fr; }
  .pkc-row { grid-template-columns: 1fr; gap: 16px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue3); }
