/* Palette principale et polices */
:root {
  --color-main: #d96e29;
  --color-main-hover: #c65a1e;
  --color-secondary: #ffe7d1;
  --color-bg: #fff9f3;
  --color-text: #2a2a2a;
  --font-main: 'Open Sans', 'Inter', Arial, sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1.1rem;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

h2 {
  text-align: center;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(217,110,41,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.logo {
  height: 48px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}
.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  transition: color 0.2s;
}
.nav a:hover,
.nav a:focus {
  color: var(--color-main);
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid #ffe7d1;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-links a {
  color: var(--color-main);
  text-decoration: underline;
  margin: 0 0.3rem;
  font-size: 0.98rem;
}
.footer-copy {
  font-size: 0.96rem;
  color: #b5a08c;
}

/* Boutons */
button, .btn {
  text-decoration: none;

  background: linear-gradient(90deg, #ffb86b 0%, #d96e29 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 1.05rem 2.6rem;
  font-size: 1.23rem;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 6px 32px rgba(217,110,41,0.18), 0 2px 8px rgba(217,110,41,0.09);
  outline: none;
  margin: 1.1rem 0 0.5rem 0;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
button .btn:before, .btn:before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 100%);
  z-index: 1;
  border-radius: 30px;
  pointer-events: none;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: linear-gradient(90deg, #ffd3a2 0%, #ff9b3e 100%);
  box-shadow: 0 10px 38px rgba(217,110,41,0.28), 0 4px 12px rgba(217,110,41,0.13);
  transform: translateY(-3px) scale(1.045);
}

button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--color-main-hover);
  transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .header-flex, .footer-flex {
    padding: 0.7rem 0;
  }
  .logo {
    height: 38px;
  }
  body {
    font-size: 1rem;
  }
}

/* Apparition fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Section hero */
#hero {
  position: relative;
  background: url('/landing-pages/pomme-gingembre/img/hero.png') center/cover no-repeat;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.82) 0%,     /* blanc lumineux à gauche */
    rgba(255,255,255,0.0) 45%,     /* transparent au centre */
    rgba(255,231,209,0.85) 100%    /* pêche doux à droite */
  );
  z-index: 0;
}
#hero h1, #hero p, #hero .btn {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(44,18,2,0.18);
}
#hero h1, #hero p, #hero .btn {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(44,18,2,0.18);
}
#hero .container {
  position: relative;
  z-index: 1;
}
#hero .hero-img {
  max-width: 270px;
  width: 90%;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(217,110,41,0.13), 0 0 0 4px #ffe7d1;
  border: 1.5px solid #fff9f3;
  background: linear-gradient(120deg, #fff9f3 60%, #ffe7d1 100%);
  display: block;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.hero-img:hover, .hero-img:focus {
  transform: scale(1.045) rotate(-2deg);
  box-shadow: 0 16px 44px rgba(217,110,41,0.23), 0 0 0 6px #ffe7d1;
}

#hero h1 {
  font-size: 2.3rem;
  color: var(--color-main);
  margin-bottom: 0.7rem;
}
#hero p {
  font-size: 1.25rem;
  color: #7c4c19;
  margin-bottom: 1.2rem;
}

/* Offre limitée */
#offre {
  background: var(--color-main);
  color: #fff;
  padding: 1.3rem 0 1.7rem;
  text-align: center;
  position: relative;
}
#offre .bandeau {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#offre .countdown {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
#offre .countdown-item {
  background: rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  min-width: 55px;
}

/* Bienfaits (cartes) */
#bienfaits {
  padding: 2.5rem 0 2rem;
  background: var(--color-secondary);
}
.bienfaits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.bienfait-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(217,110,41,0.08);
  padding: 1.4rem 1.1rem;
  text-align: center;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 160px;
}
.bienfait-card .icon {
  font-size: 2.3rem;
  margin-bottom: 0.6rem;
}
.bienfait-card strong {
  color: var(--color-main);
  font-size: 1.14rem;
}

/* Pour qui */
#pour-qui {
  padding: 2.2rem 0 1.5rem;
  background: #fff;
}
.pour-qui-list {
  max-width: 550px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.pour-qui-list li {
  padding: 0.6rem 0;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pour-qui-list li::before {
  content: "✓";
  color: var(--color-main);
  font-size: 1.2rem;
}

/* Comparatif */
#comparatif {
  background: var(--color-secondary);
  padding: 2.3rem 0 1.7rem;
}
.comparatif-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(217,110,41,0.09);
}
.comparatif-table th, .comparatif-table td {
  padding: 1.1rem 0.7rem;
  text-align: left;
  font-size: 1.05rem;
}
.comparatif-table th {
  background: var(--color-main);
  color: #fff;
  font-size: 1.13rem;
}
.comparatif-table tr:not(:last-child) td {
  border-bottom: 1px solid #ffe7d1;
}

/* Pack */
#pack {
  padding: 2.5rem 0 2rem;
  background: #fff;
  text-align: center;
}
#pack .pack-img {
  max-width: 330px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(217,110,41,0.09);
}
#pack ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem auto;
  max-width: 400px;
  text-align: left;
}
#pack li {
  font-size: 1.07rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#pack li::before {
  content: "•";
  color: var(--color-main);
  font-size: 1.2rem;
}

/* Valeurs (pictos) */
#valeurs {
  background: var(--color-secondary);
  padding: 2.2rem 0 2rem;
}
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px,1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}
.valeur-picto {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(217,110,41,0.06);
  padding: 1.1rem 0.7rem;
  text-align: center;
}
.valeur-picto .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.valeur-picto strong {
  color: var(--color-main);
}

/* Témoignages */
#temoignage {
  padding: 2.3rem 0 1.7rem;
  background: #fff;
}
.temoignages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.temoignage-card {
  background: var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(217,110,41,0.07);
  padding: 1.2rem 1.1rem;
  max-width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.temoignage-card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 0.6rem;
}
.temoignage-card .name {
  font-weight: 700;
  color: var(--color-main);
  margin-top: 0.5rem;
}

/* FAQ */
#faq {
  background: var(--color-secondary);
  padding: 2.2rem 0 1.7rem;
}
.faq-list {
  max-width: 600px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 10px rgba(217,110,41,0.05);
  padding: 1.1rem 1rem;
}
.faq-item strong {
  color: var(--color-main);
  font-size: 1.07rem;
}

/* CTA final */
#cta {
  background: linear-gradient(90deg, #ffe7d1 0%, #fff9f3 100%);
  padding: 2.5rem 0 2.3rem;
  text-align: center;
}
#cta h2 {
  text-align: center;

  font-size: 2rem;
  color: var(--color-main);
  margin-bottom: 1.3rem;
}

/* Formulaire question */
#send-question {
  background: #fff;
  padding: 2rem 0 2.3rem;
}
.question-form {
  max-width: 420px;
  margin: 0 auto;
  background: var(--color-secondary);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(217,110,41,0.06);
  padding: 1.6rem 1.3rem;
}
.question-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--color-main);
}
.question-form input,
.question-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1.1rem;
  border: 1px solid #ffe7d1;
  border-radius: 7px;
  font-family: inherit;
  font-size: 1rem;
}
.question-form textarea {
  min-height: 80px;
  resize: vertical;
}
.question-form button {
  width: 100%;
}

/* Bouton retour haut */
#backToTop {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  background: var(--color-main);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 4px 24px rgba(217,110,41,0.15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.25s;
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
