/* ═══════════════════════════════════════════
   ALEXANDRE LAURAIN — Expert Financier
   Style: Luxury Finance · Dark Gold · Refined
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale:  #f5e9c8;
  --dark:       #0c0c0e;
  --dark-2:     #111114;
  --dark-3:     #18181d;
  --dark-4:     #1f1f27;
  --border:     rgba(201,168,76,0.12);
  --border-sub: rgba(255,255,255,0.06);
  --text:       #e8e8ec;
  --text-muted: #8a8a9a;
  --text-sub:   #5a5a6a;
  --white:      #ffffff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 24px 64px rgba(0,0,0,0.5);
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.3);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', monospace;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--ff-body); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════ */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 4px; height: 4px; }
body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 60px; height: 60px; border-color: var(--gold); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(12,12,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-al {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-full { color: var(--text); font-size: 14.5px; }
.nav-links {
  display: flex; list-style: none; gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px; color: var(--text-muted);
  font-weight: 400; letter-spacing: 0.01em;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); font-size: 13.5px; font-weight: 600;
  border-radius: 8px; letter-spacing: 0.01em;
  transition: var(--transition); white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: var(--dark-2);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 20px; color: var(--text-muted); cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 8px 0; }
.mm-link {
  font-size: 28px; font-family: var(--ff-display);
  color: var(--text); font-weight: 400;
  transition: color 0.2s;
}
.mm-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 140px 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,25,10,0.8) 0%, var(--dark) 70%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  right: 5%; top: 50%; transform: translateY(-50%);
}
.glow-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  left: 10%; bottom: 20%;
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Photo Frame */
.hero-photo-frame {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.hero-photo-inner {
  width: 340px; height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.hero-photo-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s ease;
}
.hero-photo-frame:hover .hero-photo-img { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.5) 0%, transparent 50%);
}
.hero-photo-badge {
  position: absolute; bottom: -16px; left: 20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 12px; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; white-space: nowrap;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  max-width: 560px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.eyebrow-line {
  display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.title-line {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.55s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }
.title-line.italic {
  font-style: italic; color: var(--gold);
}
.hero-desc {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 1s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); font-weight: 600; font-size: 14.5px;
  border-radius: 10px; transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.4); }
.btn-ghost {
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text-muted); font-size: 14.5px;
  border-radius: 10px; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust {
  display: flex; align-items: center; gap: 0;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-sub);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 1.15s forwards;
}
.trust-item { padding: 0 28px 0 0; }
.trust-item:first-child { padding-left: 0; }
.trust-num {
  display: block; font-family: var(--ff-display);
  font-size: 28px; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.trust-label { font-size: 11.5px; color: var(--text-sub); margin-top: 4px; }
.trust-sep { width: 1px; height: 36px; background: var(--border-sub); margin-right: 28px; flex-shrink: 0; }
/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 60px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}
.hero-scroll span { font-size: 10px; color: var(--text-sub); letter-spacing: 0.12em; text-transform: uppercase; writing-mode: vertical-rl; }

/* ── FADE UP ANIM ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── DATA REVEAL ── */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════════
   BAND
══════════════════════════════════════════ */
.band {
  background: var(--dark-3);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 14px 0; overflow: hidden;
}
.band-inner {
  display: flex; gap: 40px; align-items: center;
  animation: marquee 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.band-inner span { font-size: 12px; color: var(--text-sub); letter-spacing: 0.06em; }
.band-dot { color: var(--gold) !important; font-size: 8px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { padding: 120px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; z-index: 1;
}
.about-img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  filter: grayscale(10%) contrast(1.05);
}
.about-img-deco {
  position: absolute; inset: -16px -16px 16px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-card-float {
  position: absolute; bottom: -24px; right: -20px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(10px); z-index: 2;
}
.float-icon { font-size: 24px; }
.float-title { font-size: 14px; font-weight: 600; color: var(--white); }
.float-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

/* About text */
.section-label {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--gold); }
.about-lead {
  font-size: 17px; font-weight: 400;
  color: var(--text); line-height: 1.6; margin-bottom: 16px;
}
.about-body {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 14px;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.tag {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 12px; color: var(--text-muted);
  transition: var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.services-bg { position: absolute; inset: 0; }
.services-bg-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.section-header-centered { text-align: center; margin-bottom: 64px; }
.section-header-centered .section-label::before { display: none; }
.section-header-centered .section-label { justify-content: center; }
.section-desc {
  font-size: 15.5px; color: var(--text-muted); max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, var(--dark-3) 60%);
  border-color: var(--border);
}
.sc-featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  color: var(--gold); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.sc-num {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--text-sub); letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.sc-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.sc-title {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.sc-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.sc-list {
  list-style: none; margin-bottom: 24px;
}
.sc-list li {
  font-size: 13px; color: var(--text-sub);
  padding: 5px 0;
  padding-left: 16px; position: relative;
}
.sc-list li::before {
  content: '◆'; position: absolute; left: 0;
  color: var(--gold); font-size: 7px;
  top: 8px;
}
.sc-link {
  font-size: 13px; color: var(--gold);
  font-weight: 500; letter-spacing: 0.02em;
  transition: gap 0.2s;
}
.sc-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--dark-2);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid var(--border-sub);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--ff-display);
  font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 400;
  color: var(--gold-light); display: inline;
}
.stat-label {
  font-size: 13px; color: var(--text-sub);
  margin-top: 10px; line-height: 1.4;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process { padding: 120px 0; }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 64px;
}
.process-step {
  flex: 1; padding: 32px 28px;
  background: var(--dark-3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover { border-color: var(--border); transform: translateY(-3px); }
.process-arrow {
  align-self: center; padding: 0 12px;
  font-size: 20px; color: var(--gold);
  opacity: 0.4; flex-shrink: 0;
}
.ps-number {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ps-content h4 {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.ps-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  padding: 120px 0; position: relative;
}
.testimonials-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.testimonials-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%);
}
.testimonials-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(12,12,14,0.88);
}
.testimonials .container { position: relative; z-index: 1; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.testi-card {
  background: rgba(24,24,29,0.9);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testi-card--gold {
  border-color: var(--border);
  background: rgba(201,168,76,0.04);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border); }
.testi-quote {
  font-family: var(--ff-display);
  font-size: 64px; color: var(--gold);
  opacity: 0.3; line-height: 0.6;
  margin-bottom: 20px;
}
.testi-text {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--text-sub); margin-top: 2px; }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 13px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: 120px 0; background: var(--dark-2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-intro {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.ci-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.ci-label { font-size: 11px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.ci-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* FORM */
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12.5px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.03em;
}
.req { color: var(--gold); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-4);
  border: 1px solid var(--border-sub);
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 14px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a8a9a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--dark-3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-sub); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 11.5px; color: #f87171; min-height: 16px; }
textarea { resize: vertical; min-height: 120px; }

/* RGPD */
.form-rgpd {
  display: flex; align-items: flex-start; gap: 10px;
}
.form-rgpd input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--gold); cursor: pointer; margin-top: 2px;
}
.form-rgpd label { font-size: 12.5px; color: var(--text-sub); line-height: 1.6; cursor: pointer; }
.rgpd-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* SUBMIT */
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); font-weight: 700; font-size: 15px;
  border-radius: 10px; transition: var(--transition);
  letter-spacing: 0.01em; cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.4); }
.btn-submit:hover::before { opacity: 1; }
.btn-submit span { position: relative; z-index: 1; }
.spin { animation: spinAnim 1s linear infinite; }
@keyframes spinAnim { to { stroke-dashoffset: -44; } }

/* SUCCESS */
.form-success {
  text-align: center; padding: 48px 32px;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.15);
  border: 2px solid #22c55e;
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #22c55e;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.form-success h4 { font-family: var(--ff-display); font-size: 24px; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-sub);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; font-weight: 500;
}
.footer-tagline { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-sub);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px; color: var(--text-sub);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border-sub);
  font-size: 12.5px; color: var(--text-sub);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-sub); font-size: 12.5px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { padding: 120px 32px 80px; }
  .hero-photo-frame { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-sub); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-sub); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); align-self: center; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 48px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .hero { padding: 100px 24px 60px; }
  .hero-title { font-size: 36px; }
  .hero-trust { gap: 0; }
  .trust-item { padding: 0 16px 0 0; }
  .trust-num { font-size: 22px; }
  .container { padding: 0 20px; }
  .about { padding: 80px 0; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .band-inner { animation-duration: 15s; }
}
