/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --bg-alt:      #111111;
  --white:       #ffffff;
  --yellow:      #F5B800;
  --yellow-dark: #C99900;
  --green:       #22c55e;
  --muted:       rgba(255,255,255,0.55);
  --border:      rgba(255,255,255,0.10);
  --radius:      999px;
  --radius-card: 16px;

  --font: 'Satoshi', sans-serif;

  --max-w: 1100px;
  --nav-h: 70px;
}

/* ─── BASE ───────────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.nav__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding: 10px 12px 10px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(12,12,12,0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  gap: 12px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Colored social buttons */
.nav__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, filter 0.15s;
  flex-shrink: 0;
}
.nav__social-btn:hover { transform: scale(1.08); filter: brightness(1.15); }
.nav__social-btn svg { width: 17px; height: 17px; }
.nav__social-btn--wa { background: #25D366; }
.nav__social-btn--li { background: #0A66C2; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s;
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav__mobile a {
  font-size: 28px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { font-size: 16px; }

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--yellow {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,184,0,0.3);
}
.btn--yellow:hover {
  background: #ffc800;
  box-shadow: 0 6px 28px rgba(245,184,0,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--outline:hover { background: rgba(255,255,255,0.06); }

/* ─── STATUS BADGE ───────────────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 14px var(--green), 0 0 24px rgba(34,197,94,0.3); }
}

/* ─── SECTION LABEL ──────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px;
  text-align: center;
}

#globe-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  opacity: 0.9;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
}

/* ─── SERVICES ───────────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(245,184,0,0.3);
  background: rgba(245,184,0,0.04);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Lightning bolt animation */
.service-card:nth-child(2) .service-card__icon svg {
  animation: lightning-idle 3s ease-in-out infinite;
}
@keyframes lightning-idle {
  0%, 85%, 100% { filter: drop-shadow(0 0 0px var(--yellow)); stroke: var(--white); }
  90% { filter: drop-shadow(0 0 8px var(--yellow)) drop-shadow(0 0 16px rgba(245,184,0,0.5)); stroke: var(--yellow); }
  95% { filter: drop-shadow(0 0 4px var(--yellow)); stroke: #fff; }
}
.service-card:hover .service-card__icon svg {
  animation: lightning-hover 0.4s ease-in-out forwards;
  stroke: var(--yellow);
  filter: drop-shadow(0 0 10px var(--yellow));
}
@keyframes lightning-hover {
  0% { transform: scale(1); }
  40% { transform: scale(1.2) rotate(-5deg); }
  70% { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1.05) rotate(0deg); }
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
}

.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ─── CLIENTS MARQUEE ────────────────────────────────────────────────── */
.clients {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color 0.2s;
  user-select: none;
  flex-shrink: 0;
}
.client-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.2s;
}
.marquee-track:hover .client-logo { color: rgba(255,255,255,0.6); }
.marquee-track:hover .client-logo img { opacity: 0.6; }

/* ─── TESTIMONIAL ────────────────────────────────────────────────────── */
.testimonial {
  padding: 100px 0;
}

.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.testimonial__content {
  padding: 60px;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.testimonial__author {
  font-size: 15px;
  font-weight: 700;
}
.testimonial__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.testimonial__image {
  height: 100%;
  min-height: 380px;
}
.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── DEVISE ─────────────────────────────────────────────────────────── */
.devise {
  padding: 100px 0;
  text-align: center;
}

.devise__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.devise__sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Tags marquee */
.tags-marquee {
  overflow: hidden;
  margin-top: 56px;
  padding: 0;
}
.tags-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 18s linear infinite reverse;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.tag svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1.6;
}

/* ─── MON RÔLE ───────────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
}

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

.about__text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.about__signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about__signature .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about__signature .title {
  font-size: 13px;
  color: var(--muted);
}

.about__image {
  position: relative;
  display: flex;
  justify-content: center;
}
.about__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-card);
  filter: grayscale(100%);
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
}
/* Élégant fond décalé */
.about__image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -16px;
  right: 16px;
  bottom: -24px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1;
}
/* Subtle ambient glow */
.about__image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,184,0,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
}

.faq__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: rgba(255,255,255,0.8); }

.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.faq__icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--white);
  stroke-width: 2;
  transition: transform 0.3s;
}

.faq__item.open .faq__icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
}
.faq__item.open .faq__icon svg { stroke: #000; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s;
}
.faq__answer p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── CTA FINAL ──────────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center bottom, rgba(245,184,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-final__sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__right .nav__social-btn { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  #globe-canvas {
    width: 500px;
    height: 500px;
    opacity: 0.4;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 48px;
  }

  .testimonial__inner {
    grid-template-columns: 1fr;
  }
  .testimonial__image {
    min-height: 260px;
    order: -1;
  }
  .testimonial__content {
    padding: 40px 32px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image { order: -1; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hero__content { max-width: 100%; }
  #globe-canvas { width: 360px; height: 360px; opacity: 0.3; }

  .testimonial__content { padding: 32px 24px; }

  .cta-final__glow { width: 100%; }
}
