/* ═══════════════════════════════════════════════════════════════
   INTERNATIONAL GOLD — Premium Stylesheet
   Colors: Gold #C9A646 · Dark #0d0d0d · Light #f8f6f0
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold: #C9A646;
  --gold-light: #e2c97e;
  --gold-dark: #a0803a;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --light: #f8f6f0;
  --light-2: #f0ece0;
  --white: #ffffff;
  --text-muted: #888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,166,70,0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: rgba(255,255,255,0.75); }

.section-light p { color: rgba(0,0,0,0.65); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--dark); }

.gold-text { color: var(--gold); }
.lead { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.8; }
.section-light .lead { color: rgba(0,0,0,0.8); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 7rem 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light); color: var(--dark); }
.section-gold-dark { background: #111008; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-desc { max-width: 600px; margin: 1rem auto 0; opacity: 0.75; }
.section-light .section-desc { color: rgba(0,0,0,0.6); }

.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════ NAVIGATION */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201,166,70,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav-logo strong { font-weight: 700; color: var(--gold); }
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #1a1200 0%, var(--dark) 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,166,70,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,166,70,0.05) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float linear infinite;
}
@keyframes float {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; padding: 0 1.5rem;
  margin-top: 5rem;
}
.hero-pre {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-title .gold-text {
  display: block;
  background: linear-gradient(135deg, #a0803a, #e2c97e, #C9A646);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 0.9rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem; max-width: 580px; margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.65); line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════ STATS BAR */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid rgba(201,166,70,0.2);
  border-bottom: 1px solid rgba(201,166,70,0.2);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-suffix { font-size: 1.5rem; color: var(--gold); }
.stat-item p {
  font-size: 0.78rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════ À PROPOS */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p { margin-bottom: 1rem; color: rgba(255,255,255,0.7); }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,166,70,0.15);
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(201,166,70,0.06);
  transform: translateY(-3px);
}
.value-icon { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.value-card h4 { font-family: var(--font-serif); margin-bottom: 0.25rem; color: var(--white); }
.value-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

.about-mvv { display: flex; flex-direction: column; gap: 1.5rem; }
.mvv-card {
  background: rgba(201,166,70,0.06);
  border: 1px solid rgba(201,166,70,0.2);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mvv-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.mvv-card h3 { font-family: var(--font-serif); color: var(--gold); margin-bottom: 0.75rem; }
.mvv-card p { color: rgba(255,255,255,0.7); margin: 0; }

/* ═══════════════════════════════════════════════ SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(0,0,0,0.06);
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1;
}
.service-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-serif); color: var(--dark); margin-bottom: 0.75rem; }
.service-card p { color: rgba(0,0,0,0.6); font-size: 0.9rem; margin-bottom: 1rem; }
.service-list { margin-top: 1rem; }
.service-list li {
  font-size: 0.82rem; color: rgba(0,0,0,0.55);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-list li:last-child { border: none; }
.service-list li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.5rem; top: 50%; transform: translateY(-50%);
}

.service-card--cta {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1200 100%);
  border-color: rgba(201,166,70,0.3);
  display: flex; align-items: center; justify-content: center;
}
.service-cta-content { text-align: center; }
.service-cta-content span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.service-cta-content h3 { color: var(--white); margin: 0.75rem 0; font-size: 1.4rem; }
.service-cta-content p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════ PROCESSUS */
.process-timeline { max-width: 800px; margin: 0 auto; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,166,70,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(201,166,70,0.06);
  border-color: rgba(201,166,70,0.3);
  transform: translateX(6px);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  text-align: center;
}
.step-content h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.05rem; }
.step-content p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; }
.step-icon { font-size: 1.5rem; color: var(--gold); text-align: center; opacity: 0.5; }

.process-connector {
  width: 2px; height: 30px;
  background: linear-gradient(to bottom, rgba(201,166,70,0.3), rgba(201,166,70,0.1));
  margin: 0 auto;
}
.process-note {
  text-align: center; margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(201,166,70,0.08);
  border: 1px solid rgba(201,166,70,0.2);
  border-radius: var(--radius);
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 0.75rem; justify-content: center;
}

/* ═══════════════════════════════════════════════ CONFORMITÉ */
.compliance-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start;
}
.compliance-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.compliance-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.comp-icon { width: 44px; height: 44px; flex-shrink: 0; }
.compliance-item h4 { color: var(--dark); margin-bottom: 0.3rem; }
.compliance-item p { color: rgba(0,0,0,0.6); font-size: 0.88rem; margin: 0; }

.compliance-docs {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,166,70,0.2);
}
.compliance-docs h3 { margin-bottom: 1.5rem; color: var(--white); }
.doc-list { display: flex; flex-direction: column; gap: 0.75rem; }
.doc-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  font-size: 0.88rem;
}
.doc-item span:nth-child(2) { flex: 1; color: rgba(255,255,255,0.8); }
.doc-badge {
  font-size: 0.7rem !important; font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: rgba(201,166,70,0.15);
  color: var(--gold) !important;
  border-radius: 99px;
  border: 1px solid rgba(201,166,70,0.3);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════ TRUST */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,166,70,0.15);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: var(--gold);
  background: rgba(201,166,70,0.06);
  transform: translateY(-4px);
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 700;
  color: rgba(201,166,70,0.2);
  display: block; margin-bottom: 0.5rem;
}
.trust-card h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 0.75rem; }
.trust-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ═══════════════════════════════════════════════ MARCHÉ */
.market-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start;
}
.map-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,166,70,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.map-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.africa-map { width: 100%; max-width: 280px; margin: 0 auto; }

.market-info { display: flex; flex-direction: column; gap: 1.5rem; }
.market-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,166,70,0.12);
  border-radius: var(--radius);
}
.market-card h3 { color: var(--gold); margin-bottom: 0.75rem; font-size: 1.05rem; }
.market-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mstat {
  text-align: center; padding: 1.25rem 0.75rem;
  background: rgba(201,166,70,0.06);
  border: 1px solid rgba(201,166,70,0.15);
  border-radius: var(--radius);
}
.mstat-val { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.mstat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; display: block; }

.opp-list { margin-top: 0.5rem; }
.opp-list li {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  padding: 0.4rem 0;
  padding-left: 1.25rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.opp-list li:last-child { border: none; }
.opp-list li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.45rem; top: 50%; transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════ PARTENAIRES */
.partners-section { }
.partners-categories {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}
.partner-cat {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.partner-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.partner-cat-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.partner-cat h4 { color: var(--dark); margin-bottom: 0.5rem; }
.partner-cat p { font-size: 0.83rem; color: rgba(0,0,0,0.55); margin: 0; }

.partners-note {
  text-align: center; font-size: 0.88rem;
  color: rgba(0,0,0,0.5) !important;
  font-style: italic;
  max-width: 600px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════ ACTUALITÉS */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.news-card:hover { border-color: rgba(201,166,70,0.3); transform: translateY(-4px); }
.news-cat {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.news-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.news-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.news-meta { display: flex; justify-content: space-between; align-items: center; }
.news-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.news-link { font-size: 0.82rem; color: var(--gold); font-weight: 600; transition: var(--transition); }
.news-link:hover { color: var(--gold-light); }

.newsletter-box {
  text-align: center; padding: 3rem;
  background: rgba(201,166,70,0.06);
  border: 1px solid rgba(201,166,70,0.2);
  border-radius: var(--radius);
}
.newsletter-box h3 { color: var(--gold); margin-bottom: 0.5rem; }
.newsletter-box p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem;
  outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); background: rgba(201,166,70,0.08); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════ CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { color: var(--dark); font-size: 0.85rem; margin-bottom: 0.2rem; letter-spacing: 0.05em; }
.contact-item p, .contact-item a { color: rgba(0,0,0,0.6); font-size: 0.9rem; margin: 0; }
.contact-item a { transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-dark); }
.whatsapp-btn { margin-top: 0.5rem; }

.contact-form {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,166,70,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem;
  outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,166,70,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.form-success {
  margin-top: 1rem; padding: 1rem;
  background: rgba(201,166,70,0.15);
  border: 1px solid rgba(201,166,70,0.3);
  border-radius: var(--radius);
  color: var(--gold); text-align: center;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════ FOOTER */
.footer {
  background: #080808;
  border-top: 1px solid rgba(201,166,70,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.footer-logo strong { color: var(--gold); }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.footer-brand .footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

.footer h4 {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-services ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-services li { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: #25D366;
  margin-top: 0.5rem; transition: opacity var(--transition);
}
.footer-wa:hover { opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { margin-top: 0.25rem; }

/* ═══════════════════════════════════════════════ WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ═══════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .market-grid { grid-template-columns: 1fr; }
  .map-container { max-width: 350px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero-ctas { flex-direction: column; align-items: center; }

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

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-step { grid-template-columns: 60px 1fr; }
  .step-icon { display: none; }

  /* Compliance */
  .compliance-grid { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }

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

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

  /* Partners */
  .partners-categories { grid-template-columns: 1fr 1fr; }

  /* Market stats */
  .market-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .partners-categories { grid-template-columns: 1fr; }
}
