/* ==========================================================================
   Body / One-page CyberNem
   ========================================================================== */

:root {
  --cn-bg: #050505;
  --cn-sand: #E2C191;
  --cn-accent: #ac1600;
  --cn-text: #111111;
  --cn-muted: #666666;
  --cn-radius: 18px;
  --cn-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Police d'écriture custom */

@font-face {
  font-family: CyberNem; /* set name */
  src: url(../fonts/VPSLGANH.TTF); /* url of the font */
}

/* Reset léger pour la page principale */
.page-main {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cn-text);
  background-color: #ffffff;
}

/* ============================
   HERO
   ============================ */

.hero {
  background: radial-gradient(circle at 10% 0, #444 0, #050505 40%, #000 100%);
  color: #ffffff;
  padding: 80px 20px 70px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-title {
  font-family: CyberNem;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-title span {
  display: inline-block;
}

.hero-title span:nth-child(2) {
  font-weight: 700;
}

.hero-title span.hero-sub {
  display: block;
  font-family: "Pacifico", "Brush Script MT", system-ui;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: none;
  margin-top: 8px;
}

.hero-tagline {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

/* Boutons génériques */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background-color: var(--cn-sand);
  color: #111111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  background-color: #f1c87c;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Infos sous le CTA */
.hero-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #36ff9a;
  box-shadow: 0 0 10px rgba(54, 255, 154, 0.9);
}

/* Visuel hero */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-light {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #333 50%, transparent 75%);
  opacity: 0.18;
  filter: blur(2px);
}

.hero-img {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 50% 50% 40% 40%;
  box-shadow: var(--cn-shadow-soft);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-img:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

/* ============================
   CONCEPT SPLIT (texte + logo)
   ============================ */

.concept-split {
  background: #f6f6f6;
  padding: 70px 20px;
}

.concept-split > .concept-text,
.concept-split > .concept-logo {
  box-sizing: border-box;
}

.concept-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.concept-text h2 {
  font-size: 2rem;
  margin: 0 0 10px;
  color: var(--cn-accent);
}

.concept-intro {
  margin: 0 0 24px;
  color: var(--cn-muted);
  max-width: 650px;
  line-height: 1.6;
}

.concept-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.concept-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.concept-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cn-sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.concept-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.concept-item p {
  margin: 0;
  color: var(--cn-muted);
  font-size: 0.95rem;
}

/* Bloc logo */
.concept-logo {
  display: flex;
  justify-content: center;
}

.concept-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 26px 26px 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.concept-logo-img {
  display: block;
  max-width: 260px;
  width: 100%;
}

/* ============================
   ÉTAPES DE COMMANDE
   ============================ */

.steps {
  padding: 70px 20px 60px;
  background-color: #ffffff;
  text-align: center;
}

.steps h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: var(--cn-accent);
}

.steps-intro {
  margin: 0 0 30px;
  color: var(--cn-muted);
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  background: #fafafa;
  border-radius: 18px;
  padding: 18px 16px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--cn-sand);
  font-weight: 700;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cn-muted);
}

/* ============================
   HIGHLIGHTS (zones / moments)
   ============================ */

.highlights {
  padding: 70px 20px;
  background: #f3ede4;
}

.highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.highlight-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.highlight-block h3 {
  margin: 0 0 10px;
  color: var(--cn-accent);
}

.highlight-block p {
  margin: 0 0 10px;
  color: var(--cn-muted);
  font-size: 0.95rem;
}

.highlight-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--cn-muted);
  font-size: 0.95rem;
}

.highlight-note {
  font-size: 0.9rem;
  color: var(--cn-muted);
  font-style: italic;
}

/* ============================
   CONTACT CTA
   ============================ */

.contact-cta {
  background: var(--cn-sand);
  padding: 50px 20px 60px;
}

.contact-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.contact-text h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: #000;
}

.contact-text p {
  margin: 0;
  max-width: 520px;
  color: #3c2b13;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-cta,
  .hero-info {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .concept-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-logo {
    justify-content: flex-start;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 16px 50px;
  }

  .concept-split,
  .steps,
  .highlights,
  .contact-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-text h2 {
    font-size: 1.5rem;
  }
}
