/* ===== EDRIS BUSINESS — reconstruction statique ===== */
:root {
  --navy: #131c2e;
  --navy-2: #1b2740;
  --purple: #4c2fd6;
  --purple-dark: #3a20b0;
  --red: #e13030;
  --text: #1e2430;
  --muted: #5a6472;
  --border: #e6e8ee;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 52px; width: auto; border-radius: 6px; }

.nav { display: flex; gap: 30px; }
.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav a:hover, .nav a.active { color: #c9d2ff; border-color: var(--purple); }

.nav-toggle {
  display: none;
  background: #fff;
  border: none;
  border-radius: 8px;
  width: 46px; height: 40px;
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  box-shadow: 0 6px 18px rgba(76,47,214,.25);
}
.btn:hover { background: var(--purple-dark); transform: translateY(-1px); }
.btn.big { font-size: 18px; padding: 17px 40px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-alt { background: #f6f7fb; }

h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.15; margin: 0 0 20px; font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 34px); margin: 0 0 18px; font-weight: 800; }
h3 { font-size: 20px; margin: 28px 0 10px; font-weight: 700; }
p { margin: 0 0 16px; }
.lead { font-size: 19px; color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.narrow { max-width: 780px; }

ul.check { list-style: none; padding: 0; margin: 0 0 20px; }
ul.check li { position: relative; padding-left: 30px; margin-bottom: 10px; }
ul.check li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--purple); font-weight: 800;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 0;
}
.hero h1 { color: #fff; }
.hero .lead { color: #c3ccdd; }
.hero .portrait {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  background: #fff;
}
.badge {
  display: inline-block;
  background: rgba(76,47,214,.25);
  color: #c9d2ff;
  border: 1px solid rgba(120,100,255,.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 6px 20px rgba(20,28,46,.05);
}
.card h3 { margin-top: 0; }
.card .emoji { font-size: 34px; }

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; }
.plan {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  text-align: center;
  background: #fff;
  position: relative;
}
.plan.featured { border-color: var(--purple); box-shadow: 0 12px 30px rgba(76,47,214,.15); }
.plan .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}
.plan .price { font-size: 40px; font-weight: 800; margin: 10px 0 4px; }
.plan .price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan .btn { width: 100%; margin-top: 18px; }

/* ===== Coaching illustration card ===== */
.illus { border-radius: 14px; border: 1px solid var(--border); background: #fff; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #aeb7c7; padding: 54px 0 34px; text-align: center; }
.socials { display: flex; gap: 22px; justify-content: center; margin-bottom: 24px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: background .2s;
}
.socials a:hover { background: var(--purple); }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 14px; margin-bottom: 12px; }
.footer-links a:hover { color: #fff; }
.copyright { font-size: 13px; color: #6b7688; }

/* ===== Boutique ===== */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.product .thumb { background: #f2f3f8; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 24px; }
.product .thumb img { max-height: 100%; width: auto; }
.product .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product h3 { margin: 0 0 8px; }
.product .price { font-weight: 800; font-size: 22px; color: var(--purple); margin: 6px 0 16px; }
.product .btn { margin-top: auto; text-align: center; }

/* ===== Newsletter ===== */
.newsletter {
  background: linear-gradient(135deg, var(--purple) 0%, #6a4be0 100%);
  color: #fff;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: #e7e3ff; }
.newsletter .book {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; margin-bottom: 18px;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 520px; margin: 24px auto 10px;
}
.newsletter-form input {
  flex: 1; border: none; border-radius: 8px;
  padding: 15px 18px; font-size: 16px; color: var(--text);
}
.newsletter-form input:focus { outline: 3px solid rgba(255,255,255,.5); }
.newsletter-form .btn {
  background: var(--navy); box-shadow: none; white-space: nowrap;
}
.newsletter-form .btn:hover { background: #0c1424; }
.newsletter .small { font-size: 13px; color: #d8d2ff; margin: 0; }

/* Compact newsletter strip (footer top) */
.newsletter-strip {
  background: var(--navy-2);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.newsletter-strip h3 { margin: 0 0 6px; font-size: 22px; }
.newsletter-strip p { color: #b9c2d6; margin: 0 0 18px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--navy); padding: 8px 24px 18px;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .cards, .products { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
}
