/* ══════════════════════════════════════
   AppelLocal.fr — Feuille de style principale
   ══════════════════════════════════════ */

/* ══ TOKENS ══ */
:root {
  --bg: #030303;
  --bg2: #0d0d0d;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #F2EFE9;
  --muted: #B7AFA2;
  --gold: #D4943A;
  --gold2: #F5C572;
  --gold3: #FFDE9E;
  --wa: #25D366;
  --wa2: #1aab52;
  --max: 1200px;
  --r: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

.sec {
  padding: 96px 0;
}

/* ══ ANIMATIONS ══ */
@keyframes orbDrift {
  0%   { transform: translate(-20%,-20%) scale(1);   opacity: .5; }
  100% { transform: translate(25%,25%)  scale(1.3);  opacity: .85; }
}

@keyframes floatY {
  0%,100% { transform: translateY(0)    rotateY(5deg) rotateX(3deg); }
  50%      { transform: translateY(-18px) rotateY(3deg) rotateX(5deg); }
}

@keyframes pulseBadge {
  0%  { border-color: rgba(212,148,58,.2); box-shadow: 0 0 0 0 rgba(212,148,58,.2); }
  70% { border-color: rgba(212,148,58,.7); box-shadow: 0 0 0 8px rgba(212,148,58,0); }
  100%{ border-color: rgba(212,148,58,.2); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes waveRing {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes pulseWA {
  0%   { transform: scale(.9); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

@keyframes gradBorder {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ══ REVEAL ══ */
.rv  { opacity: 0; transform: translateY(38px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rvl { opacity: 0; transform: translateX(-38px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rvr { opacity: 0; transform: translateX(38px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: none; }

.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .55s !important; }
.d6 { transition-delay: .7s !important; }

/* ══ GOLD TEXT ══ */
.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 40%, var(--gold3) 65%, var(--gold2) 80%, var(--gold) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ══ ORB CINÉTIQUE ══ */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  animation: orbDrift 20s infinite alternate ease-in-out;
}

/* ══ NAV ══ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 16px;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.nav-pill {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(8,8,8,.75);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 10px 14px 10px 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.4px;
}

.brand-ico {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), #7a4a10);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(212,148,58,.4);
}

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

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

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  transition: all .2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
}

.nav-ctas { display: flex; gap: 8px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.9,.4,1.1), box-shadow .3s;
}

.btn:hover { transform: scale(1.04) translateY(-3px); }

.btn-gold {
  background: linear-gradient(105deg, var(--gold), #b8721e);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(212,148,58,.32);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(212,148,58,.52); }

.btn-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.28);
}
.btn-wa:hover { box-shadow: 0 16px 36px rgba(37,211,102,.48); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.15);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ══ HERO ══ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; min-width: 280px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,148,58,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,148,58,.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold3);
  margin-bottom: 28px;
  animation: pulseBadge 2.5s infinite;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold2);
}

h1.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.hero-sub strong {
  color: rgba(255,255,255,.85);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

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

.stat-pill {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 14px 20px;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl { font-size: 12px; color: var(--muted); }

/* ══ PHONE ══ */
.phone-wrap {
  flex: 1; min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-anim { animation: floatY 7s ease-in-out infinite; }

.phone-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(circle, rgba(212,148,58,.26) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.phone-frame {
  width: 285px;
  background: #111;
  border-radius: 46px;
  border: 8px solid #1e1e1e;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 40px 80px rgba(0,0,0,.65),
    0 0 60px rgba(212,148,58,.14);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 100px; height: 26px;
  background: #111;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #0f0a05 0%, #0d0d0d 100%);
  min-height: 500px;
  padding: 15px;
}

.phone-header {
  background: linear-gradient(135deg, rgba(212,148,58,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(212,148,58,.24);
  border-radius: 16px;
  padding: 13px;
  margin-bottom: 10px;
}

.phone-logo { font-size: 11px; font-weight: 800; color: var(--gold2); margin-bottom: 4px; }
.phone-title-sm { font-size: 13px; font-weight: 700; line-height: 1.3; color: #fff; }

.phone-avail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(37,211,102,.18);
  color: #7ef0a8;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  margin-top: 7px;
}

.phone-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 8px;
}

.phone-card-label { font-size: 10px; color: var(--muted); margin-bottom: 5px; }
.phone-card-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; }

.phone-line {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  margin: 4px 0;
}
.phone-line.s { width: 50%; }
.phone-line.m { width: 72%; }
.phone-line.l { width: 100%; }

.phone-btns { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }

.phone-btn-wa {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #1aab52);
  border-radius: 999px;
  padding: 9px;
  text-align: center;
  font-size: 11px; font-weight: 800; color: #fff;
}

.phone-btn-call {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 999px;
  padding: 9px;
  text-align: center;
  font-size: 11px; font-weight: 800; color: #0a0500;
}

.phone-typing {
  display: flex; align-items: center; gap: 6px;
  margin-top: 9px;
  background: rgba(37,211,102,.08);
  border-radius: 10px;
  padding: 8px;
}

.phone-typing-dots { display: flex; gap: 3px; }
.phone-typing-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--wa);
  animation: floatY 1.2s ease-in-out infinite;
}
.phone-typing-dots span:nth-child(2) { animation-delay: .15s; }
.phone-typing-dots span:nth-child(3) { animation-delay: .3s; }

.phone-typing-text { font-size: 9px; color: #7ef0a8; font-family: 'Inter', sans-serif; }

/* Badges flottants */
.f-badge {
  position: absolute;
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  animation: floatY 5s ease-in-out infinite;
}

.f-badge-1 { top: 8%; right: -20px; animation-delay: -2s; }
.f-badge-2 { bottom: 16%; left: -20px; animation-delay: -4s; }

.fb-num { font-size: 15px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.fb-lbl { font-size: 10px; color: var(--muted); }

/* ══ TICKER ══ */
.ticker {
  overflow: hidden;
  background: rgba(212,148,58,.07);
  padding: 14px 0;
  border-top: 1px solid rgba(212,148,58,.18);
  border-bottom: 1px solid rgba(212,148,58,.18);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  font-size: 13px; font-weight: 600;
  color: var(--gold2);
  white-space: nowrap;
}

.ticker-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
  flex-shrink: 0;
}

/* ══ SECTION HEADERS ══ */
.sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  display: inline-block;
  margin-bottom: 14px;
}

h2.sec-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  font-family: 'Inter', sans-serif;
}

.sec-head { margin-bottom: 48px; }

/* ══ FEATURES CARDS ══ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feat-card {
  padding: 28px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  cursor: default;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s;
}

.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,148,58,.08), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.feat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,148,58,.35);
  box-shadow: 0 30px 60px -15px rgba(212,148,58,.3);
}

.feat-card:hover::before { opacity: 1; }

.feat-ico {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212,148,58,.2), rgba(212,148,58,.05));
  border: 1px solid rgba(212,148,58,.22);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform .3s;
}

.feat-card:hover .feat-ico { transform: scale(1.1) rotate(-6deg); }

.feat-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.03em; }
.feat-card p  { color: var(--muted); line-height: 1.7; font-size: 14.5px; font-family: 'Inter', sans-serif; }

/* ══ IMAGE CARDS (Pour qui) ══ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.who-card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.who-card:hover { transform: scale(1.023); }
.who-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.who-card:hover img { transform: scale(1.07); }

.who-ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(3,3,3,.92) 0%, rgba(3,3,3,.25) 55%, transparent 100%);
}

.who-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }

.who-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,148,58,.18);
  border: 1px solid rgba(212,148,58,.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px; font-weight: 700; color: var(--gold2);
  margin-bottom: 10px;
}

.who-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.03em; }

.who-list {
  list-style: none;
  color: var(--muted);
  font-size: 13px; line-height: 2;
  font-family: 'Inter', sans-serif;
}
.who-list li::before { content: '→ '; color: var(--gold2); font-family: 'Space Grotesk', sans-serif; }

/* ══ HIGHLIGHT ══ */
.hl-box {
  padding: 56px;
  border-radius: 36px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(212,148,58,.13) 0%, rgba(255,255,255,.03) 60%);
  border: 1px solid rgba(212,148,58,.24);
  box-shadow: 0 0 80px rgba(212,148,58,.1);
}

.hl-box::before {
  content: '"';
  position: absolute; top: -20px; left: 24px;
  font-size: 220px; line-height: 1;
  color: rgba(212,148,58,.07);
  font-family: Georgia, serif;
  pointer-events: none;
}

.hl-box blockquote {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800; line-height: 1.25; letter-spacing: -.03em;
  max-width: 860px;
  position: relative; z-index: 1;
  margin-bottom: 18px;
}

.hl-box p {
  color: var(--muted);
  font-size: 17px; line-height: 1.75; max-width: 660px;
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif;
}

/* ══ STATS ══ */
.stats-box {
  background: linear-gradient(135deg, rgba(212,148,58,.1), rgba(255,255,255,.02));
  border: 1px solid rgba(212,148,58,.18);
  border-radius: 36px;
  padding: 52px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-col {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-col:last-child { border-right: none; }

.stat-big-num {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-big-lbl { font-size: 14px; color: var(--muted); line-height: 1.55; font-family: 'Inter', sans-serif; }
.stat-emoji { font-size: 26px; margin-bottom: 8px; display: block; }

/* ══ STEPS ══ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 25px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,148,58,.35), rgba(212,148,58,.35), transparent);
  pointer-events: none;
}

.step-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,148,58,.3);
  box-shadow: 0 0 40px rgba(212,148,58,.12);
}

.step-n {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #0a0a0a;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(212,148,58,.4);
}

.step-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.step-card p  { color: var(--muted); font-size: 13.5px; line-height: 1.7; font-family: 'Inter', sans-serif; }

/* ══ CE QUE ÇA CHANGE ══ */
.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.change-card {
  padding: 28px;
  border-radius: var(--r);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,148,58,.18);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.change-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,148,58,.4);
  box-shadow: 0 0 50px rgba(212,148,58,.12);
}

.change-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.change-ico  { font-size: 28px; }

.change-type { font-size: 13px; font-weight: 700; color: var(--gold2); display: block; }
.change-zone { font-size: 11px; color: var(--muted); }

.change-quote {
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  margin-bottom: 14px;
}

.change-result {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: #7ef0a8;
}

/* ══ FAQ ══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-list details {
  background: rgba(255,255,255,.03);
  border-radius: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  transition: background .2s;
}

.faq-list details[open] { background: rgba(212,148,58,.06); }

.faq-list summary {
  font-weight: 700; font-size: 16px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 22px; color: var(--gold2);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75; font-size: 15px;
  font-family: 'Inter', sans-serif;
}

/* ══ CTA SECTION ══ */
.cta-wrap {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(212,148,58,.25), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.cta-inner {
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255,255,255,.65);
  font-size: 18px; line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.cta-btns { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }

/* ══ ZONES SEO ══ */
.zones-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.zone-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 13px; color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* ══ FLOAT WA ══ */
.float-wa { position: fixed; bottom: 26px; right: 26px; z-index: 999; }

.float-wa-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: pulseWA 2s ease-out infinite;
}

.float-wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa2));
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  position: relative; z-index: 2;
  transition: transform .3s, box-shadow .3s;
}

.float-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 38px rgba(37,211,102,.65);
}

.float-wa-tip {
  position: absolute;
  right: 70px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(6,6,6,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 7px 13px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.float-wa:hover .float-wa-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ══ FOOTER ══ */
footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #6e6558;
  font-size: 14px;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}

.foot-brand { font-size: 18px; font-weight: 800; color: var(--muted); margin-bottom: 6px; }

.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: #6e6558; transition: color .2s; }
.foot-links a:hover { color: var(--gold2); }

.foot-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: 12px; color: #444;
  text-align: center;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .grid-3,
  .who-grid,
  .steps-row,
  .stats-row,
  .change-grid { grid-template-columns: 1fr; }

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

  .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-col:last-child { border-bottom: none; }

  .steps-line { display: none; }
}

@media (max-width: 820px) {
  .nav-links,
  .hide-mob { display: none !important; }

  .hero { padding-top: 110px; }
  .hl-box, .cta-inner { padding: 28px; }
  .stats-box { padding: 28px; }
  .f-badge-1 { right: -5px; }
  .f-badge-2 { left: -5px; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
}
