* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Palette Premium Harmonisée */
  --noir-profond: #0a0a0f;
  --noir: #0f0f10;
  --noir-soft: #1a1a24;
  --anthracite: #2a2a35;

  /* Or Premium Champagne */
  --or-premium: #c9a14e;
  --or: #d4af37;
  --or-light: #e8d4a0;
  --or-dark: #9b7e32;
  --or-ultra-light: #f5e8c8;

  /* Blanc & Gris */
  --blanc: #ffffff;
  --blanc-pur: #ffffff;
  --off-white: #fafafa;
  --gris-ultra-light: #f5f5f7;
  --gris-light: #e8e8ea;
  --gris: #8e8e93;
  --gris-dark: #636366;

  /* Gradients Premium */
  --gradient-or: linear-gradient(
    135deg,
    var(--or-dark) 0%,
    var(--or-premium) 50%,
    var(--or-light) 100%
  );
  --gradient-noir-premium: linear-gradient(
    180deg,
    var(--noir-profond) 0%,
    var(--noir-soft) 100%
  );
  --gradient-noir: linear-gradient(
    180deg,
    var(--noir) 0%,
    var(--noir-soft) 100%
  );
  --gradient-hero: radial-gradient(
    ellipse at top,
    rgba(201, 161, 78, 0.12) 0%,
    transparent 60%
  );
  --gradient-premium-card: linear-gradient(
    135deg,
    rgba(201, 161, 78, 0.15) 0%,
    rgba(232, 212, 160, 0.08) 100%
  );

  /* Ombres Premium */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.24);
  --shadow-gold: 0 12px 40px rgba(201, 161, 78, 0.35);
  --shadow-gold-soft: 0 8px 32px rgba(201, 161, 78, 0.2);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px;
}
body.loaded {
  background: var(--gradient-noir-premium);
}
.hero-phone {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
  border-radius: 2.5rem;
  animation: float 6s ease-in-out infinite;
}
/* Typography Premium */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--blanc);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}
p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
/* Header Ultra Minimal */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 161, 78, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blanc);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 8px rgba(201, 161, 78, 0.4));
}
.logo-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(201, 161, 78, 0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:not(.btn-primary):hover {
  color: var(--or-premium);
}
.nav-links a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-or);
  transition: width 0.3s ease;
}
.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 161, 78, 0.1);
  border: 1px solid rgba(201, 161, 78, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--or-premium);
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-switch:hover {
  background: rgba(201, 161, 78, 0.15);
  border-color: rgba(201, 161, 78, 0.3);
  transform: translateY(-1px);
}
/* Buttons Premium */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-or);
  color: var(--noir-profond);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 161, 78, 0.3);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201, 161, 78, 0.5),
    0 0 40px rgba(201, 161, 78, 0.3);
  border-color: rgba(201, 161, 78, 0.5);
}
.btn-large {
  padding: 1.5rem 3.5rem;
  font-size: 1.125rem;
  gap: 1rem;
}
.btn-pulse {
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  }
}
/* Hero Ultra Premium */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem 2rem;
  background: var(--gradient-hero), var(--gradient-noir-premium);
  position: relative;
  overflow: hidden;
}
.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem 4rem;
  }
  .hero-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 8rem 2rem 5rem;
  }
  .hero-wrapper {
    gap: 6rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.1);
  }
}
.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gris-dark);
}
.btn-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  display: block;
  margin-top: 0.25rem;
}
/* Hero Stats */
/* Sections Premium */
section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.section-header h2 {
  margin-bottom: 1.5rem;
}
.section-header p {
  font-size: 1.2rem;
  color: var(--gris-dark);
}
/* Feature Cards Ultra Premium */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 53, 0.5) 0%,
    rgba(26, 26, 36, 0.5) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 161, 78, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-or);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.feature-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 161, 78, 0.15);
  border-color: rgba(201, 161, 78, 0.3);
  transform: translateY(-5px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
/* Badge Premium Subtil */
.feature-icon {
  /* Conteneur fixe pour uniformiser toutes les icônes */
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  line-height: 80px; /* Force la hauteur de ligne égale au conteneur */
  vertical-align: middle;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  position: relative;
}
.feature-icon::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
}
.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.feature-card p {
  color: var(--gris-dark);
  line-height: 1.7;
}
/* Premium Section Ultra Luxe */
.premium {
  background: linear-gradient(
    135deg,
    rgba(15, 15, 16, 0.95) 0%,
    rgba(26, 26, 36, 0.95) 100%
  );
  color: var(--blanc);
  padding: 8rem 2rem;
  margin: 4rem 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(201, 161, 78, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.premium .section-header {
  position: relative;
  z-index: 1;
}
.premium h2,
.premium h3 {
  color: var(--blanc);
}
.premium p {
  color: rgba(255, 255, 255, 0.8);
}
.premium-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}
.premium-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.premium-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.price {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
  background: var(--gradient-or);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}
/* Premium Section Elements */
.premium-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--or-light);
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.premium-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5rem 0 3rem;
}
.premium-trial-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 0 3rem 3rem;
  margin: 0 0 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.premium-trial-info h3 {
  color: var(--blanc);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.trial-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.trial-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trial-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--noir);
  flex-shrink: 0;
}
.trial-step p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: left;
}
.trial-step strong {
  color: var(--or-light);
}
.trial-note {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: left;
  border-left: 4px solid var(--or);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}
.premium-value {
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.value-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}
.value-text strong {
  display: block;
  color: var(--or-light);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.value-text p {
  color: rgba(255, 255, 255, 0.8);
}
.premium-features {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .premium-features {
    gap: 1.75rem;
  }
}
.premium-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .premium-feature {
    gap: 1.5rem;
    padding: 2rem;
  }
}
.premium-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.2);
}
.premium-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(212, 175, 55, 0.1)
  );
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .premium-feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 2rem;
  }
}
.premium-feature:hover .premium-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.3),
    rgba(212, 175, 55, 0.15)
  );
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.premium-feature-content {
  flex: 1;
}
.premium-feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blanc);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .premium-feature-content h4 {
    font-size: 1.125rem;
  }
}
.premium-feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .premium-feature-content p {
    font-size: 1rem;
  }
}
.premium-feature:hover .premium-feature-content h4 {
  color: var(--or-light);
}
.premium-feature:hover .premium-feature-content p {
  color: rgba(255, 255, 255, 0.9);
}
.premium-price {
  margin: 4rem 0;
  display: none;
}
.price-options-dual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.price-option-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  position: relative;
}
.price-option-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}
.recommended-card {
  background: var(--blanc);
  border: 2px solid var(--or);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}
.recommended-card:hover {
}
.recommended-badge-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-or);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--noir);
  white-space: nowrap;
}
.price-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.recommended-card .price-card-label {
  color: rgba(255, 255, 255, 0.9);
}
.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-or);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.price-period {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin: 0.5rem 0 2rem;
}
.recommended-card .price-period {
  color: var(--or);
}
.price-feature-mini {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-feature-mini:last-child {
  border-bottom: none;
}
.recommended-card .price-feature-mini {
  color: var(--gris-dark);
  border-color: var(--gris-light);
}
.premium-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.8;
}
/* FAQ Premium */
.faq {
  max-width: 900px;
  margin: 0 auto;
}
/* How It Works Section */
.how-it-works {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 36, 0.4) 0%,
    rgba(15, 15, 16, 0.6) 100%
  );
  border-radius: 0;
  padding: 6rem 3rem;
  margin: 0;
  border: 1px solid rgba(201, 161, 78, 0.1);
}
.steps {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris-light);
  transition: all 0.5s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--noir);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.step-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}
.step-content p {
  color: var(--gris-dark);
  line-height: 1.7;
}

/* How it works CTA */
.how-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.how-cta-link {
  color: var(--or-premium);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.how-cta-link:hover {
  color: var(--or-light);
  text-decoration-thickness: 2px;
}

/* Mini CTA between sections */
.mini-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(232, 212, 160, 0.05) 100%
  );
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.mini-cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--or-premium);
  margin-bottom: 1rem;
}

.mini-cta-link {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(
    135deg,
    var(--or-premium) 0%,
    var(--or-light) 100%
  );
  color: #1a1a2e;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201, 161, 78, 0.3);
}

.mini-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 161, 78, 0.4);
}

/* Security Section */
.security {
  padding: 6rem 2rem;
}
/* Problem/Solution Section Premium */
.problem-solution {
  padding: 3rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 36, 0.6) 0%,
    rgba(15, 15, 16, 0.8) 100%
  );
}
@media (min-width: 768px) {
  .problem-solution {
    padding: 4rem 2rem;
  }
}
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 968px) {
  .problem-solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.problem-card,
.use-cases-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .problem-card,
  .use-cases-card {
    padding: 3rem;
  }
}
.problem-card::before,
.use-cases-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.problem-card::before {
  background: linear-gradient(
    90deg,
    rgba(255, 59, 48, 0.7),
    rgba(255, 149, 0, 0.7)
  );
  transform: scaleX(0);
  transform-origin: left;
}
.use-cases-card::before {
  background: linear-gradient(90deg, var(--or-dark), var(--or-light));
  transform: scaleX(0);
  transform-origin: left;
}
.problem-card:hover::before,
.use-cases-card:hover::before {
  transform: scaleX(1);
}
.problem-card:hover,
.use-cases-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: transparent;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid transparent;
  background: linear-gradient(90deg, var(--gris-light) 0%, transparent 100%);
  background-position: bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .card-header {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }
}
.problem-card:hover .card-header {
  background: linear-gradient(
    90deg,
    rgba(255, 59, 48, 0.3) 0%,
    transparent 100%
  );
  background-position: bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}
.use-cases-card:hover .card-header {
  background: linear-gradient(90deg, var(--or) 0%, transparent 100%);
  background-position: bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}
.icon-large {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .icon-large {
    font-size: 3.5rem;
  }
}
.problem-card:hover .icon-large {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 8px 24px rgba(255, 59, 48, 0.4));
}
.use-cases-card:hover .icon-large {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.4));
}
.card-header h3 {
  font-size: 1.625rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .card-header h3 {
    font-size: 2rem;
  }
}
.problem-card:hover .card-header h3 {
  color: rgba(255, 59, 48, 0.9);
}
.use-cases-card:hover .card-header h3 {
  background: var(--gradient-or);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-items,
.use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .problem-items,
  .use-cases-list {
    gap: 2rem;
  }
}
.problem-item,
.use-case-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 248, 250, 0.9)
  );
  border-radius: var(--radius-md);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .problem-item,
  .use-case-item {
    gap: 1.5rem;
    padding: 2rem;
  }
}
.problem-item::before,
.use-case-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(255, 59, 48, 0.6),
    rgba(255, 149, 0, 0.6)
  );
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.use-case-item::before {
  background: linear-gradient(180deg, var(--or-dark), var(--or-light));
}
.problem-item:hover::before,
.use-case-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.problem-item:hover,
.use-case-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 245, 240, 0.95)
  );
  transform: translateX(12px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 59, 48, 0.15);
}
.use-case-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 250, 240, 0.95)
  );
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.15);
}
.problem-emoji,
.use-case-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
@media (min-width: 768px) {
  .problem-emoji,
  .use-case-emoji {
    font-size: 2rem;
  }
}
.problem-item:hover .problem-emoji,
.use-case-item:hover .use-case-emoji {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 16px rgba(255, 59, 48, 0.3));
}
.use-case-item:hover .use-case-emoji {
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.3));
}
.problem-content,
.use-case-content {
  flex: 1;
}
.problem-content h4,
.use-case-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blanc-pur);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .problem-content h4,
  .use-case-content h4 {
    font-size: 1.125rem;
  }
}
.problem-item:hover .problem-content h4 {
  color: rgba(255, 59, 48, 0.9);
}
.use-case-item:hover .use-case-content h4 {
  background: var(--gradient-or);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-content p,
.use-case-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .problem-content p,
  .use-case-content p {
    font-size: 1rem;
  }
}
.problem-item:hover .problem-content p,
.use-case-item:hover .use-case-content p {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}
/* Security Section */
.security {
  padding: 6rem 2rem;
}
.security-content {
  max-width: 1000px;
  margin: 0 auto;
}
.security-content h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.security-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris-light);
  transition: all 0.5s ease;
}
.security-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.security-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}
.security-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.security-item p {
  color: var(--gris-dark);
  font-size: 1rem;
  line-height: 1.6;
}
/* Download Section */
.download {
  text-align: center;
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  padding: 6rem 2rem;
  margin: 4rem 0;
  border: 1px solid rgba(201, 161, 78, 0.1);
}
.download-content {
  max-width: 800px;
  margin: 0 auto;
}
.download-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.download-stat {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 78, 0.15) 0%,
    rgba(232, 212, 160, 0.1) 100%
  );
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 161, 78, 0.3);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(201, 161, 78, 0.15);
}
.download-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}
.android-coming-soon {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gris-light);
}
.android-coming-soon h3 {
  color: var(--noir);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.android-coming-soon p {
  color: var(--gris-dark);
  margin-bottom: 1.5rem;
}
/* Footer Premium */
footer {
  background: var(--noir-profond);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201, 161, 78, 0.15);
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section:first-child {
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-section:first-child {
    margin-bottom: 0;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-icon-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blanc-pur);
}

.footer-section:first-child p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer-section h4 {
  color: var(--blanc);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-section h3 {
  color: var(--blanc);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
/* Why TrustWords Section - Premium Design */
.why-trustwords {
  padding: 2rem 1.25rem;
  background: linear-gradient(
    180deg,
    var(--blanc-pur) 0%,
    var(--blanc-casse) 100%
  );
  position: relative;
  overflow: hidden;
}
.why-trustwords .section-title-centered {
  color: var(--noir-profond);
  -webkit-text-fill-color: var(--noir-profond);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .why-trustwords {
    padding: 2.5rem 2rem;
  }
  .why-trustwords .section-title-centered {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .why-trustwords {
    padding: 3rem 2rem;
  }
  .why-trustwords .section-title-centered {
    font-size: 2rem;
  }
}
.why-trustwords::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.section-title-centered {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  background: linear-gradient(135deg, var(--noir-profond), var(--text-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  position: relative;
}
.section-title-centered::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--or-luxe), var(--or-clair));
  border-radius: 2px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-card {
  position: relative;
  perspective: 1000px;
}
.why-card-inner {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}
.why-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--or-luxe), var(--or-clair));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover .why-card-inner::before {
  transform: scaleX(1);
}
.why-card:hover .why-card-inner {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}
.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.25rem auto;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.03)
  );
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (min-width: 768px) {
  .why-icon {
    width: 72px;
    height: 72px;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}
.why-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.08)
  );
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}
.why-card:hover .why-icon::after {
  opacity: 1;
}
.why-card-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--noir-profond);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.why-card:hover .why-card-inner h3 {
  color: var(--or-dark);
}
.why-card-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.why-card:hover .why-card-inner p {
  opacity: 1;
}
@media (max-width: 768px) {
  .why-trustwords {
    padding: 5rem 1.5rem;
  }
  .section-title-centered {
    margin-bottom: 3rem;
  }
  .why-card-inner {
    padding: 2.5rem 2rem;
  }
}
/* ========================================
   TRUST & SECURITY PROOF SECTION
   ======================================== */
.trust-proof-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2a2a35 0%, #1a1a24 100%);
  position: relative;
}

.trust-proof-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-proof-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff !important;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.trust-proof-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(232, 212, 160, 0.08) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    var(--or-premium) 0%,
    var(--or-light) 100%
  );
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  flex-shrink: 0;
}

.social-proof-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(42, 42, 53, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 161, 78, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--or-premium);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    135deg,
    var(--or-light) 0%,
    var(--or-premium) 100%
  );
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  box-shadow: var(--shadow-gold-soft);
}

.trust-item h4 {
  font-size: 1.125rem;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.trust-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.5;
}

.testimonials-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(42, 42, 53, 0.5);
  border-left: 4px solid var(--or-premium);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(4px);
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 768px) {
  .trust-proof-section {
    padding: 4rem 1.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-mini {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-badge {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
}

/* Free Forever Section - Premium Design */
.free-forever-section {
  padding: 8rem 2rem;
  background: var(--blanc-pur);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.free-forever-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(52, 199, 89, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.free-forever-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 78, 0.25),
    rgba(232, 212, 160, 0.15)
  );
  border: 2px solid var(--or-premium);
  border-radius: 50px;
  color: var(--or-light);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(201, 161, 78, 0.3);
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 32px rgba(52, 199, 89, 0.25);
    transform: scale(1.02);
  }
}
.free-forever-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  color: var(--blanc-pur);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.free-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .free-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .free-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.free-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .free-feature-card {
    padding: 1.75rem 1.25rem;
  }
}

.free-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--or-light) 0%,
    var(--or-premium) 100%
  );
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .free-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.free-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(52, 199, 89, 0.6),
    rgba(52, 199, 89, 0.3)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.free-feature-card:hover::before {
  transform: scaleX(1);
}
.free-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 161, 78, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(201, 161, 78, 0.2);
  transform: translateY(-4px);
}

.free-feature-card:hover .free-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(201, 161, 78, 0.4);
}

.free-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--blanc-pur);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .free-feature-card h3 {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .free-feature-card h3 {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}

.free-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.75rem;
}

@media (min-width: 1024px) {
  .free-feature-card p {
    display: none;
  }
}

.free-feature-desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: color 0.3s ease;
}
.free-feature-card:hover .free-feature-desc {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .free-forever-section {
    padding: 5rem 1rem;
  }
  .free-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .free-feature-card {
    padding: 0.625rem 0.375rem;
  }
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--or);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--or);
  transform: translateY(-4px);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}
/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--noir);
  position: relative;
  transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--noir);
  transition: all 0.3s ease;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}
/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(
      180deg,
      rgba(245, 235, 210, 0.98) 0%,
      rgba(240, 230, 200, 0.98) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(201, 161, 78, 0.3);
    z-index: 999;
  }
  .nav-links a {
    color: rgba(26, 26, 36, 0.85);
  }
  .nav-links a:hover {
    color: var(--or-premium);
  }
  .nav-links .btn-primary {
    background: var(--gradient-or);
    color: var(--noir-profond);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }
  .btn-large {
    padding: 1.25rem 2.5rem;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card {
    padding: 2rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
}
/* Mobile-First Spacing Optimization */
/* Email Capture Section - Fusionnée */
.email-capture-section {
  padding: 4rem 1.25rem;
  background: linear-gradient(135deg, #2a2a35 0%, #1a1a24 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .email-capture-section {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .email-capture-section {
    padding: 6rem 2rem;
  }
}
.email-capture-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 161, 78, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.email-capture-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 161, 78, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .email-capture-card {
    padding: 3.5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .email-capture-card {
    padding: 4rem 4rem;
  }
}
.email-capture-card:hover {
  box-shadow: 0 16px 48px rgba(201, 161, 78, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 161, 78, 0.35);
}
.email-capture-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(201, 161, 78, 0.2),
    rgba(232, 212, 160, 0.1)
  );
  border-radius: 50%;
  border: 2px solid rgba(201, 161, 78, 0.3);
  box-shadow: 0 4px 16px rgba(201, 161, 78, 0.2);
}
.email-capture-intro {
  font-size: 1.125rem;
  color: #1a1a2e !important;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}
.email-capture-form {
  margin-bottom: 1.5rem;
}
.email-capture-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .email-capture-group {
    flex-direction: row;
  }
}
.email-capture-group input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #e8e8ea;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: white;
  color: #1a1a2e;
  transition: all 0.3s ease;
}
.email-capture-group input[type="email"]::placeholder {
  color: #999;
}
.email-capture-group input[type="email"]:focus {
  outline: none;
  border-color: var(--or-premium);
  box-shadow: 0 0 0 3px rgba(201, 161, 78, 0.15);
  background: white;
}
.btn-email-submit {
  padding: 1rem 2rem;
  background: var(--gradient-or);
  color: var(--noir-profond);
  border: 1px solid rgba(201, 161, 78, 0.3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-gold-soft);
  white-space: nowrap;
  font-family: inherit;
}
.btn-email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201, 161, 78, 0.5),
    0 0 40px rgba(201, 161, 78, 0.3);
  border-color: rgba(201, 161, 78, 0.5);
}
.email-capture-trust {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Newsletter Premium Section */
.newsletter-premium {
  padding: 4rem 1.25rem !important;
  background: linear-gradient(
    135deg,
    var(--blanc-casse) 0%,
    var(--blanc-pur) 100%
  );
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .newsletter-premium {
    padding: 5rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .newsletter-premium {
    padding: 6rem 2rem !important;
  }
}
.newsletter-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.newsletter-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .newsletter-card {
    padding: 3.5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .newsletter-card {
    padding: 4rem 4rem;
  }
}
.newsletter-card:hover {
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}
.newsletter-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.06)
  );
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
  animation: float-gentle 4s ease-in-out infinite;
}
@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}
.newsletter-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--noir-profond);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .newsletter-title {
    margin-bottom: 1rem;
  }
}
.newsletter-subtitle {
  font-size: 1.0625rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
.newsletter-form {
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .form-group {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gris-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--blanc-pur);
  color: var(--noir);
  font-family: inherit;
  width: 100%;
}
@media (min-width: 640px) {
  .newsletter-form input[type="email"] {
    width: auto;
  }
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--or-luxe);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: var(--blanc-pur);
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--gris-dark);
  opacity: 0.6;
}
.btn-newsletter {
  padding: 0.875rem 2rem;
  background: var(--gradient-noir);
  color: #d4af37;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-family: inherit;
}
@media (min-width: 640px) {
  .btn-newsletter {
    width: auto;
    padding: 0.875rem 2.5rem;
  }
}
.btn-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}
.btn-newsletter:hover::before {
  left: 100%;
}
.btn-newsletter:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-newsletter:active {
  transform: translateY(0);
}
.newsletter-trust {
  font-size: 0.9375rem;
  color: var(--gris-dark);
  margin: 0;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .newsletter-trust {
    font-size: 1rem;
  }
}
/* Sections - Base mobile */
section {
  padding: 2.5rem 1.25rem;
}
@media (min-width: 768px) {
  section {
    padding: 3.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  section {
    padding: 4.5rem 2rem;
  }
}
/* Hero specific */
.hero {
  padding: 4rem 1.25rem 2.5rem !important;
  min-height: auto;
}
@media (min-width: 768px) {
  .hero {
    padding: 3rem 2rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 4rem 2rem 2.5rem !important;
  }
}
/* Hero Content & Visual Split */
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-visual {
  flex: 0 0 auto;
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
  .hero-visual {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .hero-visual {
    max-width: 450px;
  }
}
.hero-phone {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
  border-radius: 2.5rem;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.particule-or {
  position: fixed;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #d4af6a 0%, #c9a14e 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 8px rgba(212, 175, 106, 0.6);
}

/* Hero elements spacing */
.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--noir-profond);
  text-align: center;
  letter-spacing: -0.02em;
}
.hero-highlight {
  background: var(--gradient-or);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
@media (min-width: 768px) {
  .hero h1 {
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
.hero-description {
  font-size: 1.25rem;
  line-height: 1.65;
  margin: 0 auto 1.25rem;
  padding: 0 1rem;
  max-width: 700px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    margin-left: 0;
    padding: 0;
    text-align: left;
  }
}
/* Hero Value Proposition */
.hero-value-prop {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  max-width: 650px;
  color: var(--or-dark);
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .hero-value-prop {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    margin-left: 0;
    text-align: left;
    padding: 0;
  }
}
/* Hero Primary CTA */
.hero-primary-cta {
  margin-bottom: 1rem;
  text-align: center;
}

.hero-social-proof {
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-primary-cta {
    text-align: left;
  }
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--gradient-or);
  color: var(--noir-profond);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 161, 78, 0.3);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  min-width: 280px;
}
@media (min-width: 768px) {
  .btn-hero-primary {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    min-width: 320px;
  }
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}
.btn-hero-primary:hover::before {
  left: 100%;
}
.btn-hero-primary:hover {
  box-shadow: 0 20px 60px rgba(201, 161, 78, 0.5),
    0 0 40px rgba(201, 161, 78, 0.3);
  border-color: rgba(201, 161, 78, 0.5);
  transform: translateY(-2px);
}
.btn-hero-primary:active {
  transform: translateY(-2px) scale(1);
}
/* Hero Secondary Option */
.hero-secondary-option {
  max-width: 500px;
  margin: 1rem auto 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-secondary-option {
    margin-left: 0;
    text-align: left;
  }
}
.hero-email-link {
  color: var(--or-premium);
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-email-link:hover {
  color: var(--or-light);
  text-decoration: none;
}
.hero-trust-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero-trust-note {
    text-align: left;
    margin-left: 0;
  }
}
.hero-email-label {
  font-size: 0.9375rem;
  color: var(--gris-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-email-inline {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  .hero-email-inline {
    flex-wrap: nowrap;
  }
}
.hero-email-inline input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gris-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--blanc-pur);
}
.hero-email-inline input[type="email"]:focus {
  outline: none;
  border-color: var(--or-luxe);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.hero-email-inline .btn-hero-email {
  padding: 0.875rem 2rem;
  white-space: nowrap;
  min-width: auto;
  flex-shrink: 0;
}
/* Hero Email Form */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-hero-email {
  padding: 0.875rem 2rem;
  background: var(--gradient-or);
  color: var(--noir-profond);
  border: 1px solid rgba(201, 161, 78, 0.3);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-gold-soft);
  white-space: nowrap;
  font-family: inherit;
}
@media (min-width: 640px) {
  .btn-hero-email {
    padding: 0.875rem 2rem;
  }
}
.btn-hero-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201, 161, 78, 0.5),
    0 0 40px rgba(201, 161, 78, 0.3);
  border-color: rgba(201, 161, 78, 0.5);
}
/* Why TrustWords */
.why-trustwords {
  padding: 2rem 1.25rem !important;
}
@media (min-width: 768px) {
  .why-trustwords {
    padding: 2.5rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .why-trustwords {
    padding: 3rem 2rem !important;
  }
}
.section-title-centered {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-title-centered {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .section-title-centered {
    margin-bottom: 2rem;
  }
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .why-grid {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .why-grid {
    gap: 1.25rem;
  }
}
.why-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.why-card-inner {
  padding: 1rem 0.875rem;
}
@media (min-width: 768px) {
  .why-card-inner {
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 1024px) {
  .why-card-inner {
    padding: 1.5rem 1.25rem;
  }
}
.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
/* Free Forever Section */
.free-forever-section {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .free-forever-section {
    padding: 3.5rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .free-forever-section {
    padding: 4rem 2rem !important;
  }
}
.free-forever-badge {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .free-forever-badge {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}
.free-forever-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .free-forever-title {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .free-forever-title {
    margin-bottom: 1rem;
  }
}
.free-features-grid {
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .free-features-grid {
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .free-features-grid {
    gap: 1.25rem;
  }
}
.free-feature-card {
  padding: 0.75rem 0.5rem;
}
@media (min-width: 768px) {
  .free-feature-card {
    padding: 1rem 0.75rem;
  }
}
@media (min-width: 1024px) {
  .free-feature-card {
    padding: 1.125rem 0.875rem;
  }
}
.free-feature-card h3 {
  font-size: 0.6875rem;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .free-feature-card h3 {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1024px) {
  .free-feature-card h3 {
    font-size: 0.875rem;
  }
}
/* Features section */
.features {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .features {
    padding: 4rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .features {
    padding: 4.5rem 2rem !important;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .features-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    gap: 1.5rem;
  }
}
.feature-card {
  padding: 1.25rem 1rem;
}
.feature-card h3 {
  font-size: 0.9375rem;
  line-height: 1.3;
  margin-bottom: 0;
}
/* Premium section */
.premium {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .premium {
    padding: 4rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .premium {
    padding: 5rem 2rem !important;
  }
}
/* Problem Solution */
.problem-solution {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .problem-solution {
    padding: 4rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .problem-solution {
    padding: 4.5rem 2rem !important;
  }
}
/* FAQ */
.faq {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .faq {
    padding: 4rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .faq {
    padding: 4.5rem 2rem !important;
  }
}
/* Download section */
.download {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .download {
    padding: 4rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .download {
    padding: 4.5rem 2rem !important;
  }
}
/* Newsletter */
.newsletter-premium {
  padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
  .newsletter-premium {
    padding: 3.5rem 2rem !important;
  }
}
@media (min-width: 1024px) {
  .newsletter-premium {
    padding: 4rem 2rem !important;
  }
}
/* Container width optimization */
.container {
  max-width: 100%;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
  }
}
/* Animations supplémentaires */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Cursor personnalisé (optionnel premium) */
@media (hover: hover) {
  .feature-card,
  .premium-card {
    cursor: pointer;
  }
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.98) 0%,
    rgba(26, 26, 36, 0.98) 100%
  );
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 161, 78, 0.2);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201, 161, 78, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blanc-pur);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.final-cta .btn-large {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 4rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .final-cta-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
  }
}

/* ========================================
   HARMONISATION GLOBALE DES SECTIONS
   ======================================== */

/* Section headers uniformes */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blanc-pur);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Padding uniforme pour toutes les sections */
.problem-solution,
.how-it-works,
.free-forever-section,
.premium,
.download {
  padding: 6rem 2rem;
}

/* Backgrounds alternés pour créer du rythme */
.hero {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.newsletter-premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}

.problem-solution {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.how-it-works {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.free-forever-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  position: relative;
}

.free-forever-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(52, 199, 89, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.download {
  background: #ffffff !important;
}

/* Titres de section uniformes */
.free-forever-section h2,
.premium h3:first-of-type {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--blanc-pur);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Cards uniformes */
.problem-card,
.use-cases-card,
.premium-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.problem-card:hover,
.use-cases-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(52, 199, 89, 0.2);
  transform: translateY(-4px);
}

/* Responsive uniforme */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .problem-solution,
  .how-it-works,
  .free-forever-section,
  .premium,
  .download {
    padding: 4rem 1.5rem;
  }

  .free-forever-section h2,
  .premium h3:first-of-type {
    font-size: 1.75rem;
  }

  .problem-card,
  .use-cases-card,
  .premium-card {
    padding: 1.5rem;
  }
}

/* ========================================
   NOUVELLE PALETTE - FONDS CLAIRS ET CLASSE
   ======================================== */

/* Redéfinition des backgrounds avec palette claire */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.newsletter-premium {
  background: linear-gradient(135deg, #fff8f0 0%, #fef5eb 100%) !important;
}

.problem-solution {
  background: #ffffff !important;
}

.how-it-works {
  background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%) !important;
}

.free-forever-section {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%) !important;
  position: relative;
}

.free-forever-section::before {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 60%
  ) !important;
}

.premium {
  background: linear-gradient(135deg, #f8f9fa 0%, #f5f7fa 100%) !important;
}

.final-cta {
  background: linear-gradient(135deg, #fff8f0 0%, #fef5eb 100%) !important;
}

.download {
  background: #ffffff !important;
}

/* Ajustement des couleurs de texte pour fond clair */
.hero h1,
.section-header h2,
.final-cta h2,
.download h2,
.free-forever-section h2,
.premium h3 {
  color: #1a1a2e !important;
}

.hero-description,
.hero-value-prop,
.section-header p,
.final-cta-subtitle,
.download p,
.problem-content h4,
.use-case-content h4,
.premium-subtitle {
  color: #4a5568 !important;
}

.problem-content p,
.use-case-content p {
  color: #718096 !important;
}

/* Ajustement des cards pour fond clair */
.problem-card,
.use-cases-card,
.premium-card,
.newsletter-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.problem-card:hover,
.use-cases-card:hover {
  background: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* Ajustement des feature cards */
.free-feature-card {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.free-feature-card:hover {
  background: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

.free-feature-card h3 {
  color: #2d3748 !important;
}

/* Ajustement des steps */
.step {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.step:hover {
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

.step h3 {
  color: #2d3748 !important;
}

.step p {
  color: #718096 !important;
}

/* Ajustement premium features */
.premium-feature {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(212, 175, 55, 0.12) !important;
}

.premium-feature:hover {
  background: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.25) !important;
}

.premium-feature-content h4 {
  color: #2d3748 !important;
}

.premium-feature-content p {
  color: #718096 !important;
}

/* Price cards */
.price-option-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.price-option-card:hover,
.recommended-card {
  background: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
}

/* Newsletter card */
.newsletter-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

.newsletter-title {
  color: #2d3748 !important;
}

.newsletter-subtitle {
  color: #4a5568 !important;
}

/* Ajustement header */
header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.logo-text,
.nav-links a {
  color: #2d3748 !important;
}

.nav-links a:hover {
  color: #d4af37 !important;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #f5f7fa 100%) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
}

footer h4,
footer .logo-text {
  color: #2d3748 !important;
}

footer p,
footer a {
  color: #4a5568 !important;
}

footer a:hover {
  color: #d4af37 !important;
}

/* Download stats */
.download-stat {
  background: rgba(212, 175, 55, 0.08) !important;
  color: #2d3748 !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

/* ========================================
   CORRECTION CONTRASTE - TEXTES SUR FONDS CLAIRS
   ======================================== */

/* S'assurer que TOUS les textes sont foncés sur fonds clairs */
body {
  color: #2d3748 !important;
}

/* Hero section */
.hero h1,
.hero-highlight {
  color: #1a1a2e !important;
}

.hero-description,
.hero-value-prop {
  color: #4a5568 !important;
}

.hero-social-proof {
  color: #718096 !important;
}

/* Tous les titres de sections */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a2e !important;
}

/* Tous les paragraphes */
p {
  color: #4a5568 !important;
}

/* Steps section */
.step-number {
  color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 2px solid #d4af37 !important;
}

.step-content h3 {
  color: #1a1a2e !important;
}

.step-content p {
  color: #4a5568 !important;
}

.how-cta-text {
  color: #4a5568 !important;
}

.how-cta-link {
  color: var(--or-premium) !important;
}

.how-cta-link:hover {
  color: var(--or-dark) !important;
}

.mini-cta {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(232, 212, 160, 0.05) 100%
  ) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.mini-cta-text {
  color: var(--or-premium) !important;
}

.mini-cta-link {
  background: linear-gradient(
    135deg,
    var(--or-premium) 0%,
    var(--or-light) 100%
  ) !important;
  color: #1a1a2e !important;
}

/* Problem/Solution */
.card-header h3 {
  color: #1a1a2e !important;
}

.problem-content h4,
.use-case-content h4 {
  color: #1a1a2e !important;
}

.problem-content p,
.use-case-content p {
  color: #4a5568 !important;
}

/* Free features */
.free-forever-badge {
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%) !important;
  color: #1a1a2e !important;
}

.free-forever-title {
  color: #1a1a2e !important;
}

.free-feature-card h3 {
  color: #2d3748 !important;
}

.free-feature-icon {
  color: #d4af37 !important;
}

/* Premium section */
.premium-urgency {
  background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%) !important;
  color: #1a1a2e !important;
}

.premium-subtitle {
  color: #4a5568 !important;
}

.premium-trial-info h3 {
  color: #1a1a2e !important;
}

.trial-step p {
  color: #4a5568 !important;
}

.trial-step strong {
  color: #d4af37 !important;
}

.trial-note {
  color: #4a5568 !important;
}

.premium-feature-content h4 {
  color: #1a1a2e !important;
}

.premium-feature-content p {
  color: #4a5568 !important;
}

/* Prix */
.price-card-label {
  color: #4a5568 !important;
}

.price-amount {
  color: #1a1a2e !important;
}

.price-period {
  color: #4a5568 !important;
}

.price-feature-mini {
  color: #4a5568 !important;
}

.premium-note {
  color: #4a5568 !important;
}

/* Final CTA */
.final-cta h2 {
  color: #1a1a2e !important;
}

.final-cta-subtitle {
  color: #4a5568 !important;
}

/* Download section */
.download h2 {
  color: #1a1a2e !important;
}

.download p {
  color: #4a5568 !important;
}

.download-stat {
  color: #2d3748 !important;
  background: rgba(212, 175, 55, 0.1) !important;
}

.download-note {
  color: #718096 !important;
}

.android-coming-soon p {
  color: #4a5568 !important;
}

/* Newsletter */
.newsletter-title {
  color: #1a1a2e !important;
}

.newsletter-subtitle {
  color: #4a5568 !important;
}

.newsletter-trust {
  color: #718096 !important;
}

/* Navigation */
.logo-text {
  color: #1a1a2e !important;
}

.nav-links a {
  color: #2d3748 !important;
}

.nav-links a:hover {
  color: #d4af37 !important;
}

/* Footer */
footer {
  color: #4a5568 !important;
}

footer h4,
footer .logo-text {
  color: #1a1a2e !important;
}

footer p,
footer a {
  color: #4a5568 !important;
}

footer a:hover {
  color: #d4af37 !important;
}

.footer-bottom p {
  color: #718096 !important;
}

/* Hover states avec bon contraste */
.problem-item:hover .problem-content h4 {
  color: #d4af37 !important;
}

.use-case-item:hover .use-case-content h4 {
  color: #d4af37 !important;
}

.premium-feature:hover .premium-feature-content h4 {
  color: #d4af37 !important;
}

/* Boutons - garder le texte blanc car fond foncé */
.btn-primary,
.btn-hero-primary,
.btn-large,
.btn-newsletter,
.btn-hero-email {
  color: #ffffff !important;
}
