:root {
  --bg: #050608;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f7fb;
  --muted: #b9bed1;
  --accent-1: #ff9d00;
  --accent-2: #d9f520;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --container: 1280px;
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.16), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(214, 255, 37, 0.10), transparent 22%),
    linear-gradient(180deg, #050608 0%, #0a0c12 35%, #050608 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 64px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #f3f4f8;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

.nav-item > a:hover {
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(235, 235, 235, 0.95);
  color: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  gap: 8px;
}

.dropdown-menu.small {
  min-width: 160px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}

.burger span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 2px;
  background: white;
}

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #121212;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 14px 40px rgba(255, 166, 0, 0.25);
}

.btn-small {
  min-height: 50px;
  padding: 0 24px;
}

/* PAGE */
.home-page {
  width: 100%;
}

.image-section {
  width: min(100% - 40px, var(--container));
  margin: 28px auto 0;
}

.hero-section {
  margin-top: 28px;
}

.image-section img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
}

/* CONTENU CARDS */
.content-section {
  width: min(100% - 40px, var(--container));
  margin: 28px auto 0;
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.panel {
  padding: 28px;
}

.panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-kicker {
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffb469;
  margin: 0 0 14px;
}

.panel h2 {
  font-family: "Syne", sans-serif;
  line-height: .92;
  letter-spacing: -0.06em;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255,138,0,.16), rgba(214,255,37,.08));
  border-color: rgba(255,193,94,.34);
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #201400;
  background: linear-gradient(90deg, #ffb24b, #e8ff7b);
}

.price-card__name {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}

.price-card h3 {
  margin: 12px 0 18px;
  font-size: 2.3rem;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 4px;
}

.price-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

/* NEWSLETTER */
.newsletter p {
  color: var(--muted);
  max-width: 52ch;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.newsletter-form input {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  outline: none;
}

/* FOOTER */
.footer {
  width: 100%;
  margin-top: 36px;
  padding: 0 0 24px;
}

.footer-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}

.logo-footer img {
  height: 52px;
  margin-bottom: 14px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: .94rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .image-section,
  .content-section,
  .footer-inner {
    width: min(100% - 18px, var(--container));
  }

  .topbar-inner {
    min-height: 84px;
  }

  .logo img {
    height: 44px;
  }

  .btn-small {
    display: none;
  }

  .panel {
    padding: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .image-section img {
    border-radius: 20px;
  }
}

.values-panel {
  padding: 0;
}

.values-head {
  margin-bottom: 20px;
}

.values-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-box {
  min-height: 240px;
  padding: 26px 24px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.value-icon {
  margin-bottom: 22px;
  font-size: 2rem;
  line-height: 1;
  color: #d61f32;
}

.value-box h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.value-box p {
  margin: 0;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.45;
  font-size: 0.98rem;
  max-width: 32ch;
}

@media (max-width: 1080px) {
  .values-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .values-grid-modern {
    grid-template-columns: 1fr;
  }

  .value-box {
    min-height: auto;
  }
}

.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  display: block;
  padding: 12px 16px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: black;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.logo-dropdown {
  position: relative;
  display: inline-block;
}

.logo {
  display: block;
}

.logo img {
  display: block;
}

.logo-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  z-index: 1000;
}

.logo-dropdown:hover .logo-menu {
  display: block;
}