/* ===== RESET & BASE ===== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ===== NAV ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 64px;
}

.nav__logo-img {
  position: absolute;
  top: 3px;
  left: 0;
  height: 80px;
  width: auto;
  z-index: 20;
}

/* Affichage conditionnel logo selon thème */
[data-theme="dark"] .nav__logo-img--light,
[data-theme="light"] .nav__logo-img--dark {
  display: none;
}

[data-theme="dark"] .nav__logo-img--dark,
[data-theme="light"] .nav__logo-img--light {
  display: block;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Toggle langue */
.nav__lang {
  position: relative;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav__lang-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.nav__lang-arrow {
  transition: transform 0.2s ease;
}

.nav__lang.active .nav__lang-arrow {
  transform: rotate(180deg);
}

.nav__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  min-width: 80px;
}

.nav__lang.active .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__lang-option:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.nav__lang-option.active {
  color: var(--accent);
}

/* Toggle thème */
.nav__theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav__theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

[data-theme="dark"] .nav__theme-icon--sun,
[data-theme="light"] .nav__theme-icon--moon {
  display: none;
}

[data-theme="dark"] .nav__theme-icon--moon,
[data-theme="light"] .nav__theme-icon--sun {
  display: block;
}

/* CTA Nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: #0d0f14;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav__cta:hover {
  background: var(--accent-hover);
}

/* Burger mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile-link {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.nav__mobile-link:hover {
  color: var(--text-primary);
}

.nav__mobile-cta {
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0d0f14;
  font-weight: 500;
  border-radius: 10px;
  text-align: center;
}

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

.hero {
  padding-top: 64px;
  background: radial-gradient(ellipse at 50% 60%, rgba(231, 180, 37, 0.05) 0%, transparent 60%);
  overflow: clip visible;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  text-align: left;
}

.hero__title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.hero__cta--primary {
  background: var(--accent);
  color: #0d0f14;
}

.hero__cta--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.hero__cta--secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.hero__cta--secondary:hover {
  background: rgba(231, 180, 37, 0.1);
  transform: translateY(-2px);
}

.hero__badge {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Visuels Hero — 2 fenêtres */  
.hero__visuals {
  position: relative;
  height: 480px;
}

.hero__window {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  animation-play-state: paused;
}

.hero__window--floating {
  animation-play-state: running;
}

.hero__window img {
  width: 100%;
  border-radius: 12px;
}

/* Animation flottement continu */
@keyframes float-front {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1.02); }
  50% { transform: translateY(-12px) rotate(-1.5deg) scale(1.02); }
}

@keyframes float-back {
  0%, 100% { transform: translateY(0) rotate(2deg) scale(0.92); }
  50% { transform: translateY(-8px) rotate(2.5deg) scale(0.92); }
}

/* Dark mode (défaut) : dark devant, light derrière */
[data-theme="dark"] .hero__window--dark {
  z-index: 2;
  left: 0;
  top: 10%;
  width: 90%;
  animation: float-front 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
}

[data-theme="dark"] .hero__window--light {
  z-index: 1;
  right: -8%;
  top: 0;
  width: 90%;
  animation: float-back 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Light mode : light devant, dark derrière */
[data-theme="light"] .hero__window--light {
  z-index: 2;
  left: 0;
  top: 10%;
  width: 90%;
  animation: float-front 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
}

[data-theme="light"] .hero__window--dark {
  z-index: 1;
  right: -8%;
  top: 0;
  width: 90%;
  animation: float-back 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
}

/* ===== DEMO ===== */

.demo {
  padding: 100px 24px;
}

.demo__container {
  max-width: 1000px;
  margin: 0 auto;
}

.demo__title {
  margin-bottom: 12px;
}

.demo__subtitle {
  margin-bottom: 48px;
}

.demo__mockup {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}

[data-theme="light"] .demo__mockup {
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.1);
}

.demo__titlebar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.demo__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo__dot--red { background: #ff5f57; }
.demo__dot--yellow { background: #febd2f; }
.demo__dot--green { background: #28c840; }

.demo__video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d0f14;
}

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

.demo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-card);
}

/* Masquer le placeholder si la vidéo se charge */
.demo__video-wrapper .demo__video:not([src=""]) ~ .demo__placeholder {
  display: none;
}

/* ===== PROBLEM / SOLUTION ===== */

.problem {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.problem__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.problem__title {
  margin-bottom: 32px;
}

.problem__text {
  max-width: 720px;
  margin: 0 auto 64px;
  color: var(--text-secondary);
  font-size: 17px;
}

.problem__text p + p {
  margin-top: 20px;
}

.problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.problem__stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
}

.problem__stat-label {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ===== FEATURES ===== */

.features {
  padding: 100px 24px;
}

.features__container {
  max-width: 1000px;
  margin: 0 auto;
}

.features__title {
  margin-bottom: 56px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(231, 180, 37, 0.08);
}

.feature-card__icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 180, 37, 0.1);
  border-radius: 12px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FORMATS ===== */

.formats {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.formats__container {
  max-width: 1100px;
  margin: 0 auto;
}

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.format-card:hover {
  transform: translateY(-4px);
}

.format-card--featured {
  border-color: var(--webm-primary);
  transform: scale(1.04);
}

.format-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.format-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.format-card__badge--free {
  background: rgba(40, 200, 64, 0.15);
  color: #28c840;
}

.format-card__badge--pro {
  background: var(--accent);
  color: #0d0f14;
}

.format-card__icon {
  margin-bottom: 16px;
}

.format-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.format-card__text {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.format-card__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format-card__stat {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

/* ===== TRIM ===== */

.trim {
  padding: 100px 24px;
}

.trim__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trim__title {
  text-align: left;
  margin-bottom: 20px;
}

.trim__text {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.trim__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trim__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
}

.trim__bullet svg {
  flex-shrink: 0;
}

/* Trim visual — slider animé */
.trim__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.trim__slider {
  position: relative;
}

.trim__track {
  position: relative;
  height: 64px;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
}

.trim__waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
  padding: 12px 8px;
}

.trim__waveform span {
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  min-height: 8px;
}

.trim__waveform span:nth-child(1) { height: 40%; }
.trim__waveform span:nth-child(2) { height: 65%; }
.trim__waveform span:nth-child(3) { height: 45%; }
.trim__waveform span:nth-child(4) { height: 80%; }
.trim__waveform span:nth-child(5) { height: 55%; }
.trim__waveform span:nth-child(6) { height: 90%; }
.trim__waveform span:nth-child(7) { height: 70%; }
.trim__waveform span:nth-child(8) { height: 50%; }
.trim__waveform span:nth-child(9) { height: 85%; }
.trim__waveform span:nth-child(10) { height: 60%; }
.trim__waveform span:nth-child(11) { height: 75%; }
.trim__waveform span:nth-child(12) { height: 95%; }
.trim__waveform span:nth-child(13) { height: 55%; }
.trim__waveform span:nth-child(14) { height: 70%; }
.trim__waveform span:nth-child(15) { height: 40%; }
.trim__waveform span:nth-child(16) { height: 60%; }
.trim__waveform span:nth-child(17) { height: 85%; }
.trim__waveform span:nth-child(18) { height: 50%; }
.trim__waveform span:nth-child(19) { height: 75%; }
.trim__waveform span:nth-child(20) { height: 45%; }

.trim__selection {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20%;
  right: 30%;
  background: rgba(231, 180, 37, 0.15);
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
}

.trim__handle {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  transform: translateY(-50%);
}

.trim__handle--in {
  left: 20%;
  margin-left: -7px;
}

.trim__handle--out {
  right: 30%;
  margin-right: -7px;
}

.trim__playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 2px;
  background: var(--text-primary);
}

.trim__times {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.trim__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== THEME SECTION ===== */

.theme-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.theme-section__container {
  max-width: 1000px;
  margin: 0 auto;
}

.theme-section__title {
  margin-bottom: 12px;
}

.theme-section__text {
  margin-bottom: 48px;
}

.theme-section__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.theme-section__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, z-index 0s;
}

.theme-section__card:hover {
  transform: scale(1.03);
  z-index: 2;
}

.theme-section__card img {
  width: 100%;
  display: block;
}

.theme-section__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ===== PRIVACY ===== */

.privacy {
  padding: 100px 24px;
}

.privacy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy__title {
  margin-bottom: 16px;
}

.privacy__text {
  margin-bottom: 56px;
}

.privacy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

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

.privacy-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 180, 37, 0.1);
  border-radius: 12px;
}

.privacy-card__text {
  font-size: 16px;
  color: var(--text-primary);
  padding-top: 10px;
}

/* ===== PRICING ===== */

.pricing {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.pricing__container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing__title {
  margin-bottom: 56px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--pro {
  border: 2px solid var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0f14;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 32px;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-card__amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card__period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-card__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}

.pricing-card__cta--outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.pricing-card__cta--outline:hover {
  background: rgba(231, 180, 37, 0.1);
}

.pricing-card__cta--filled {
  background: var(--accent);
  color: #0d0f14;
}

.pricing-card__cta--filled:hover {
  background: var(--accent-hover);
}

.pricing__note {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--footer-bg);
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 50px;
}

/* Affichage conditionnel logo footer */
[data-theme="dark"] .footer__logo-img--light,
[data-theme="light"] .footer__logo-img--dark {
  display: none;
}

[data-theme="dark"] .footer__logo-img--dark,
[data-theme="light"] .footer__logo-img--light {
  display: block;
}

.footer__tagline {
  color: var(--text-secondary);
  font-size: 15px;
}

.footer__columns {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-secondary);
}

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

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visuals {
    height: 420px;
    max-width: 700px;
    margin: 0 auto;
  }

  .trim__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trim__title {
    text-align: center;
  }

  .formats__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .format-card--featured {
    transform: none;
  }

  .format-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 24px 60px;
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .hero__cta {
    flex: auto;
    width: 100%;
  }

  .hero__visuals {
    height: 300px;
  }

  [data-theme="dark"] .hero__window--dark,
  [data-theme="light"] .hero__window--light {
    left: 0;
    width: 85%;
  }

  [data-theme="dark"] .hero__window--light,
  [data-theme="light"] .hero__window--dark {
    right: 0;
    width: 85%;
  }

  .problem__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .theme-section__visuals {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 32px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__columns {
    flex-wrap: wrap;
    gap: 32px;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }

  .nav__lang {
    display: none;
  }
}
