/* =======================
   RESET & BASE
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  background-color: #141316;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  padding-top: 100px;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =======================
   BOUTONS
======================= */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-primary {
  background: linear-gradient(to bottom, #D7002E, #FF2352);
  text-align: center;
}

.btn-secondary {
  background: linear-gradient(
    to bottom,
    rgba(255, 221, 228, 0.1) 0%,
    rgba(255, 87, 123, 0.1) 100%
  );
  text-align: center;
}

.btn:hover {
  opacity: 0.7;
}

.btn-full {
  display: block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 0.65rem 1rem;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* Gradient blanc animé sur le texte des boutons (identique à index) */
.gradient-text {
  background-image: linear-gradient(
    to left,
    #FFFFFF,
    #999999,
    #FFFFFF,
    #999999,
    #FFFFFF
  );
  background-size: 300% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 8s linear infinite;
}

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

/* Rouge vif pour les mots mis en avant */
.text-red {
  color: #FF2352;
}

/* =======================
   TITRES DE SECTION
======================= */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(to bottom, #FFFFFF, #999999);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 60px;
  max-width: 680px;
}

/* =======================
   HERO (header + lumières + contenu)
   Structure identique à index.html
======================= */
.hero {
  position: relative;
  width: 100%;
}

/* Lumières rouges — mêmes valeurs que index.html */
.hero-lumiere {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-lumiere-left {
  width: 1230px;
  top: 0;
  left: 0;
  transform: translate(-20%, -20%);
}

.hero-lumiere-right {
  width: 1230px;
  top: 0;
  right: 0;
  transform: translate(20%, -20%);
}

/* Barre du haut (logo) — identique à index.html */
.hero-header {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  z-index: 1;
  position: relative;
}

.hero-logo {
  height: 65px;
}

/* Contenu hero */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 80px;
}

/* Colonne gauche */
.hero-left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 280px;
  max-width: 600px;
  margin-top: -160px;
}

.hero-badge {
  display: inline-block;
  background: rgba(215, 0, 46, 0.12);
  border: 1px solid rgba(215, 0, 46, 0.4);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  opacity: 0.85;
  width: fit-content;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero-subtitle {
  color: #ccc;
  font-size: 1.15rem;
  max-width: 500px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-cta .btn-primary  { white-space: nowrap; }
.hero-cta .btn-secondary { width: 200px; }

/* Colonne droite — photo */
.hero-right {
  flex: 0 1 60%;
  justify-content: flex-end;
  align-items: center;
  min-width: 250px;
  max-width: 450px;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
}

.hero-pc-img {
  margin-top: 0px;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  position: relative;
  top: 10px;
}

.hero-img-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #444;
}

.hero-img-placeholder i {
  font-size: 3rem;
  color: #2a2a2a;
}

.hero-img-placeholder span {
  font-size: 0.9rem;
}

/* =======================
   SECTION GAMING
======================= */
.section-gaming {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(215, 0, 46, 0.12);
  border: 1px solid rgba(215, 0, 46, 0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 12px;
  opacity: 0.85;
}

.section-gaming .section-subtitle {
  text-align: left;
}

.gaming-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Photo gaming */
.gaming-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #1A181E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gaming-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gaming-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #444;
}

.gaming-photo-fallback i {
  font-size: 4rem;
  color: #2a2a2a;
}

.gaming-fps-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #D7002E, #FF2352);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(215, 0, 46, 0.45);
}

.fps-big {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.fps-unit {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

/* Arguments gaming */
.gaming-args {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.arg-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.arg-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(215, 0, 46, 0.1);
  border: 1px solid rgba(215, 0, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF2352;
  font-size: 1.1rem;
}

.arg-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.arg-item p {
  font-size: 0.93rem;
  color: #999;
  line-height: 1.6;
}

/* =======================
   SECTION CONFIGURATIONS
======================= */
.section-configs {
  padding: 80px 0;
  text-align: center;
}

.section-configs .section-subtitle {
  margin: 0 auto 60px;
}

.configs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.config-card {
  background: #1A181E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.config-card:hover {
  border-color: rgba(255, 35, 82, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.config-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(215, 0, 46, 0.1);
  border: 1px solid rgba(215, 0, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF2352;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.config-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.config-card p {
  font-size: 0.92rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 18px;
}

.config-list {
  list-style: none;
  margin-bottom: 22px;
}

.config-list li {
  font-size: 0.88rem;
  color: #ccc;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}

.config-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00cc0a;
  font-weight: 700;
}

.config-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D7002E;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}

.config-link:hover {
  gap: 10px;
  opacity: 0.75;
}

/* Bannière "demande particulière" */
.config-cta-banner {
  background: #1A181E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  transition: border-color 0.25s;
}

.config-cta-banner:hover {
  border-color: rgba(255, 35, 82, 0.25);
}

.cta-banner-left {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.cta-banner-left > i {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: #FF2352;
  margin-top: 3px;
}

.cta-banner-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cta-banner-left p {
  font-size: 0.92rem;
  color: #999;
  line-height: 1.55;
}

.config-cta-banner .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
  width: 230px;
}

/* =======================
   SECTION PROCESSUS
======================= */
.section-process {
  padding: 80px 0;
  text-align: center;
}

.section-process .section-subtitle {
  margin: 0 auto 60px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #D7002E, #FF2352);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(215, 0, 46, 0.4);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
}

.process-arrow {
  flex-shrink: 0;
  color: rgba(215, 0, 46, 0.4);
  font-size: 1.2rem;
  padding-top: 16px;
}

/* =======================
   CTA FINAL
======================= */
.section-cta {
  padding: 40px 0 100px;
}

.cta-box {
  background: #1A181E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.cta-box p {
  font-size: 1rem;
  color: #888;
  margin-bottom: 2.2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =======================
   FOOTER (identique à index.html)
======================= */
.footer {
  background-color: #141316;
  color: #fff;
  font-size: 0.95rem;
  padding: 30px 0;
  box-shadow: 0 0px 80px rgba(255, 255, 255, 0.1);
}

.footer-container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
  margin-left: -8px;
}

.footer-baseline {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-baseline-2,
.footer-baseline-3 {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #FFFFFF, #999999);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-baseline-3 {
  margin-bottom: 60px;
}

.footer-baseline-2 i,
.footer-baseline-3 i {
  margin-right: 5px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.7;
}

.footer-bottom {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  margin: 0;
  opacity: 0.6;
  font-size: 0.85rem;
}

.footer-mentions {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: right;
}

.footer-mentions a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
  transition: opacity 0.2s;
}

.footer-mentions a:hover {
  opacity: 0.8;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
  .gaming-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gaming-photo-wrap {
    aspect-ratio: 16 / 9;
    max-width: 600px;
    margin: 0 auto;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    padding-bottom: 50px;
  }

  .hero-left {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-right {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .config-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .config-cta-banner .btn-primary {
    width: 100%;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
