@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
:root {
  --bg-body: #FFFBF5;
  --bg-card: #FFFFFF;
  --text-dark: #2E2A28;
  --text-muted: #6B5E55;
  --accent: #E6A177;
  --accent-dark: #D6875A;
  --accent-light: #FCE3D4;
  --border-light: #F0E3D8;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.05);
  --radius-md: 20px;
  --radius-sm: 14px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.45;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}
html {
  overflow-x: clip;
}
main {
  flex: 1;
  overflow-x: clip;
}
section {
  overflow-x: clip;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: clip;
}
.section {
  padding: 56px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .container {
    padding: 0 20px;
  }
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.accent {
  color: var(--accent-dark);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(230, 161, 119, 0.2);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.header {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-line1, .logo-line2 {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text-dark);
}
.logo-line1 {
  font-size: 1.2rem;
}
.logo-line2 {
  font-size: 1rem;
  font-weight: 500;
}
.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-list a:hover {
  color: var(--accent-dark);
}
.publicite-badge {
  background: #F2E5DC;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #A8704F;
}
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}
@media (max-width: 900px) {
  .header-container {
    flex-wrap: nowrap;
  }
}
.hero {
  padding: 48px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow-x: clip;
}
.hero-badge {
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 20px 0 28px;
}
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  aspect-ratio: 1 / 0.9;
  box-shadow: var(--shadow-md);
}
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.2rem;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.probleme-card, .avantage-item, .temoignage-card, .lifestyle-card {
  background: var(--bg-card);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border: 1px solid var(--border-light);
}
.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow-x: clip;
}
.solution-list {
  list-style: none;
  margin-top: 28px;
}
.solution-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.solution-img img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .solution-wrapper {
    grid-template-columns: 1fr;
  }
}
.avantages-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .avantages-grid {
    grid-template-columns: 1fr;
  }
}
.lifestyle-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lifestyle-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
}
.temoignages-grid {
  grid-template-columns: repeat(3, 1fr);
}
.temoignage-card p {
  font-style: normal;
  margin: 16px 0;
  line-height: 1.5;
  color: #3d3a38;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-top: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.stars {
  color: #F9B43A;
  letter-spacing: 2px;
}
.rating-trust {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
}
.comparaison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--bg-card);
  border-radius: 32px;
  padding: 24px;
  overflow-x: clip;
}
.comp-col {
  background: #FAF5F0;
  border-radius: 24px;
  padding: 28px;
}
.comp-col.highlight {
  background: var(--accent-light);
}
.comp-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.comp-list {
  list-style: none;
}
.comp-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offre-box {
  background: linear-gradient(135deg, #FCE9DD, #FEF3E9);
  border-radius: 48px;
  padding: 48px 40px;
  text-align: center;
}
.offre-badge {
  background: var(--accent);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 60px;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}
.old-price {
  text-decoration: line-through;
  font-size: 1.5rem;
  color: #7F6B5E;
  margin-right: 20px;
}
.new-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.discount {
  background: #2A6B47;
  color: white;
  padding: 5px 12px;
  border-radius: 60px;
  font-weight: 700;
  margin-left: 15px;
}
.offre-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.offre-list li {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.order-form {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 500;
}
.form-group input, .form-group select {
  padding: 14px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 1rem;
}
.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.garanties {
  display: flex;
  gap: 20px;
  margin: 28px 0;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .form-container {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #F6EFE9;
  padding: 48px 0 32px;
  margin-top: 40px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 32px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.footer-contact p {
  margin: 6px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-disclaimer p {
  margin-bottom: 12px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.salon-block {
  background: #FFF8F2;
  border-radius: 48px;
  margin: 0 24px 48px;
}
.salon-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 32px;
}
.salon-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.salon-list {
  list-style: none;
  margin-top: 24px;
}
.salon-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .salon-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }
  .salon-block {
    margin: 0 16px 32px;
  }
}

.footer {
  padding: 40px 0 24px;
  margin-top: 40px;
}

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

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  word-break: break-word;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
}

.legal-content h2, .legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-content b {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 32px 24px;
  }
}
@media (max-width: 700px) {
  .comparaison-wrapper {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .temoignages-grid,
  .probleme-grid,
  .avantages-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .comp-title {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }
  .publicite-badge {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer-contact,
  .footer-links,
  .footer-disclaimer {
    word-break: break-all;
  }
  .avantages-grid,
  .avantages-grid *,
  .probleme-grid,
  .probleme-grid * {
    word-break: break-all;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .section {
    padding: 28px 0;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .form-container {
    padding: 24px 16px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}