/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #0b1a33;
  line-height: 1.5;
  scroll-behavior: smooth;
  padding-top: 80px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER FIXE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b1a33;
}

.logo i {
  color: #2563eb;
  font-size: 1.8rem;
}

.logo span {
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #2563eb;
}

.btn-outline {
  border: 1.5px solid #2563eb;
  background: transparent;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  color: #2563eb;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.btn-outline i {
  margin-right: 6px;
}

.btn-outline:hover {
  background: #2563eb;
  color: white !important;
}

/* HAMBURGER & DRAWER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #0b1a33;
  border-radius: 4px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  padding: 30px 24px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer.open {
  left: 0;
}

.drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer .drawer-header .logo {
  font-size: 1.4rem;
}

.drawer .close-drawer {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #64748b;
  cursor: pointer;
}

.drawer .drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.drawer .drawer-links a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}

.drawer .drawer-links a:hover {
  color: #2563eb;
}

.drawer .drawer-links .btn-outline {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
}

/* HERO améliorée */
.hero {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 60px 0 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Fond décoratif */
.hero::before {
  content: "";
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100px;
  position: absolute;
  top: -50%;
  right: -50px;
  width: 40%;
  height: 200%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(37, 99, 235, 0.3) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/*.hero-bg-pattern {
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }*/

.hero-content {
  flex: 1 1 480px;
  position: relative;
  z-index: 1;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  background: #dbeafe;
  color: #1e4f8a;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge.offer {
  background: #fef9c3;
  color: #854d0e;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero h1 i {
  color: #2563eb;
}

.hero p {
  font-size: 1.2rem;
  color: #334155;
  max-width: 520px;
  margin-bottom: 28px;
}

.price-highlight {
  background: #0b1a33;
  color: white;
  padding: 14px 32px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.price-highlight small {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.price-highlight i {
  color: #facc15;
  font-size: 1.6rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #0b1a33;
  border: 1.5px solid #e2e8f0;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary i {
  color: #2563eb;
}

.btn-secondary:hover {
  background: #f1f5f9;
}

/* Image hero */
.hero-image {
  flex: 1 1 380px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-phone-img {
  max-width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}

.hero-phone-img:hover {
  transform: scale(1.02) rotate(-2deg);
  box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.25);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  border-radius: 32px;
  pointer-events: none;
  z-index: 3;
}

/* Bulles flottantes */
.floating-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0b1a33;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 50;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-bubble i {
  color: #2563eb;
  font-size: 1rem;
}

.bubble-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 20%;
  right: -8%;
  animation-delay: 2s;
}

.bubble-3 {
  top: 50%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* On cache l'ancien contenu de hero-image */
.hero-image-content {
  display: none;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 20px 0 30px;
}

.feature-card {
  background: white;
  padding: 28px 20px;
  border-radius: 28px;
  border: 1px solid #edf2f7;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.feature-card i {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: #475569;
  font-size: 0.9rem;
}

/* WHY US */
.why-section {
  background: #0b1a33;
  color: white;
  border-radius: 48px;
  padding: 50px 40px;
  margin: 40px 0 20px;
}

.why-section .section-title {
  color: white;
  margin-top: 0;
}

.why-section .section-title p {
  color: #a0b8d9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.why-item {
  text-align: center;
  padding: 16px;
  transition: transform 0.3s;
}

.why-item:hover {
  transform: scale(1.03);
}

.why-item i {
  font-size: 2.8rem;
  color: #facc15;
  margin-bottom: 16px;
}

.why-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* USE CASES */
.use-section {
  padding: 30px 0 20px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 24px;
}

.use-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  border: 1px solid #edf2f7;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.use-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.use-card i {
  font-size: 2.8rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.use-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
}

.use-card p {
  color: #475569;
  margin-top: 8px;
}

/* PRICING */
.section-title {
  text-align: center;
  margin: 50px 0 20px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title p {
  color: #475569;
  max-width: 560px;
  margin: 8px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 20px 0 40px;
}

.pricing-card {
  background: white;
  border-radius: 36px;
  padding: 32px 24px;
  border: 1px solid #e9eef3;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card.popular {
  border: 2px solid #2563eb;
  background: #fafcff;
  position: relative;
}

.popular-badge {
  background: #2563eb;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  position: absolute;
  top: -12px;
  right: 24px;
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 12px 0 4px;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.pricing-card .description {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin: 16px 0 24px;
  flex: 1;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.pricing-card ul li i {
  color: #2563eb;
  width: 20px;
}

.btn-price {
  background: #f1f5f9;
  border: none;
  padding: 14px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  color: #0b1a33;
  transition: 0.2s;
  cursor: pointer;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.pricing-card.popular .btn-price {
  background: #2563eb;
  color: white;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.btn-price:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* COVERAGE */
.coverage {
  background: #f1f5f9;
  border-radius: 48px;
  padding: 40px 32px;
  margin: 30px 0 20px;
  text-align: center;
}

.coverage h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.coverage .countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 20px;
}

.coverage .countries span {
  background: white;
  padding: 6px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0b1a33;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.2s,
    background 0.2s;
}

.coverage .countries span:hover {
  transform: scale(1.05);
  background: #eef4ff;
}

.coverage .countries span i {
  color: #2563eb;
}

/* SIMULATOR */
.simulator {
  background: white;
  border-radius: 48px;
  padding: 40px 32px;
  margin: 30px 0 20px;
  border: 1px solid #e9eef3;
  text-align: center;
}

.simulator h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.simulator p {
  color: #475569;
  margin-bottom: 24px;
}

.simulator .sim-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.simulator input {
  padding: 14px 20px;
  border-radius: 60px;
  border: 1.5px solid #e2e8f0;
  font-size: 1.1rem;
  width: 200px;
  text-align: center;
  font-weight: 600;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.simulator input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.simulator .result {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b1a33;
  background: #f1f5f9;
  padding: 12px 32px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}

.simulator .result small {
  font-weight: 400;
  font-size: 1rem;
  color: #64748b;
}

/* FAQ */
.faq-section {
  padding: 40px 0 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid #edf2f7;
  cursor: pointer;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-item .question i {
  transition: transform 0.3s;
  color: #2563eb;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding-top 0.3s;
  color: #475569;
  padding-top: 0;
}

.faq-item.open .answer {
  max-height: 300px;
  padding-top: 12px;
}

.faq-item.open .question i {
  transform: rotate(180deg);
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 48px;
  padding: 50px 40px;
  margin: 40px 0 20px;
  text-align: center;
  transition: transform 0.3s;
}

.cta-final:hover {
  transform: scale(1.01);
}

.cta-final h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-final p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.cta-final .btn-white {
  background: white;
  color: #1d4ed8;
  border: none;
  padding: 16px 48px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.cta-final .btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* FOOTER */
.footer-design {
  margin-top: 50px;
  background: #0b1a33;
  color: #cbd5e1;
  border-radius: 48px 48px 0 0;
  padding: 50px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-col .social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-col .social a {
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: 0.2s;
}

.footer-col .social a:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom i {
  color: #2563eb;
}

/* ANIMATIONS REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .container {
    padding: 0 16px;
  }
  .navbar .container {
    padding: 0 16px;
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .logo {
    font-size: 1.4rem;
  }
  .hero {
    padding: 30px 0 40px;
    overflow: hidden;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
  .price-highlight {
    font-size: 1.4rem;
    padding: 10px 20px;
  }
  .hero-image {
    flex: 1 1 100%;
    padding: 0 16px;
  }
  .hero-phone-img {
    max-width: 300px;
  }
  .floating-bubble {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
  .bubble-1 {
    top: 5%;
    left: 0%;
  }
  .bubble-2 {
    bottom: 10%;
    right: 0%;
  }
  .bubble-3 {
    top: 40%;
    right: 0%;
  }
  .why-section,
  .cta-final,
  .coverage,
  .simulator {
    padding: 30px 20px;
  }
  .simulator .sim-row {
    flex-direction: column;
  }
  .footer-design {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-badge-group {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .price-highlight {
    font-size: 1.2rem;
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-phone-img {
    max-width: 240px;
  }
  .floating-bubble {
    display: none;
  }
}
