/* Faisons Simple — static site (Manus energy, real HTML) */
:root {
  --pink: #FF2D87;
  --coral: #FF7A2E;
  --orange: #FF9A3C;
  --blue: #2541F5;
  --ink: #1A1A2E;
  --ink-soft: #3A3A55;
  --muted: #6B6B85;
  --line: #E8E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F7F7FB;
  --bg-tint: #FFF5F9;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(255, 45, 135, 0.18);
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; margin: 0 0 0.6em; font-weight: 650; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
strong { font-weight: 650; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.container--narrow { width: min(100% - 2rem, 760px); margin-inline: auto; }

/* Skip */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo {
  display: inline-flex; flex-direction: column; gap: 0; line-height: 1;
}
.logo__mark {
  font-weight: 800; font-size: 1.35rem; letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__mark span { color: var(--blue); -webkit-text-fill-color: var(--blue); }
.logo__word { font-size: .7rem; font-weight: 600; letter-spacing: .02em; margin-top: .15rem; }
.logo__word em { font-style: normal; color: var(--pink); }
.logo__word i { font-style: normal; color: var(--blue); }

.nav-desktop { display: none; align-items: center; gap: .15rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-desktop a {
  font-size: .82rem; font-weight: 500; color: var(--ink);
  padding: .45rem .55rem; border-radius: 8px; white-space: nowrap;
}
.nav-desktop a:hover { background: var(--bg-soft); color: var(--pink); }
.nav-desktop a.is-active { color: var(--pink); }

.header-cta { display: flex; align-items: center; gap: .5rem; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-mobile {
  display: none; border-top: 1px solid var(--line); background: #fff; padding: 1rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block; padding: .85rem 1rem; font-weight: 550; border-radius: 10px;
}
.nav-mobile a:hover, .nav-mobile a.is-active { background: var(--bg-tint); color: var(--pink); }

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-weight: 600; font-size: .95rem; border-radius: 12px;
  padding: .85rem 1.25rem; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 8px 24px rgba(255, 45, 135, .28);
}
.btn--primary:hover { background: #e82578; box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline {
  background: #fff; color: var(--ink); border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--pink); color: var(--pink); }
.btn--white { background: #fff; color: var(--pink); }
.btn--sm { padding: .55rem .9rem; font-size: .85rem; border-radius: 10px; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(115deg, #FF2D87 0%, #FF4F6A 38%, #FF7A2E 72%, #FF9A3C 100%);
  padding: 3.5rem 0 4.5rem;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: .18; mix-blend-mode: soft-light; pointer-events: none; z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
  right: -80px; top: -60px; z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.2); color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  padding: .45rem .9rem; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.pill--dark {
  background: rgba(255,255,255,.85); color: var(--pink); border-color: transparent;
}
.pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: #fff; max-width: 16ch; margin-bottom: .85rem;
}
.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 38ch; color: rgba(255,255,255,.95); margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.page-hero {
  background: linear-gradient(115deg, #FF2D87 0%, #FF7A2E 100%);
  color: #fff; padding: 3rem 0 3.25rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.85rem, 4.5vw, 3rem); max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.95); max-width: 48ch; font-size: 1.05rem; }

/* Sections */
.section { padding: 4rem 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--pink); margin-bottom: .75rem;
}
.section h2 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); }
.section__intro { color: var(--ink-soft); max-width: 52ch; margin-bottom: 2rem; font-size: 1.05rem; }

/* Cards */
.grid-3 { display: grid; gap: 1.25rem; }
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26,26,46,.1); }
.card__price {
  font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: .35rem 0 .75rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--pink); font-weight: 650; margin-top: 1rem; font-size: .95rem;
}
.card--featured {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, var(--pink), var(--coral)) border-box;
  border: 2px solid transparent;
}

/* Problem block */
.problem {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 860px) {
  .problem { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
}
.problem__panel {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.problem__panel ul { display: grid; gap: .65rem; }
.problem__panel li {
  padding-left: 1.4rem; position: relative; color: var(--ink-soft);
}
.problem__panel li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
}

/* Steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: grid; gap: .75rem; grid-template-columns: auto 1fr;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; align-items: start;
}
.step__num {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  font-size: .95rem;
}
.step h3 { font-size: 1.15rem; margin: 0 0 .35rem; font-family: var(--font-sans); font-weight: 700; }
.step p { margin: 0; color: var(--ink-soft); }
.step ul { margin-top: .65rem; display: grid; gap: .35rem; }
.step li { color: var(--ink-soft); font-size: .95rem; padding-left: 1rem; position: relative; }
.step li::before { content: "–"; position: absolute; left: 0; color: var(--pink); }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 520px; }
table.compare th, table.compare td {
  padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem;
}
table.compare th { font-family: var(--font-sans); font-weight: 700; background: var(--bg-soft); }
table.compare td:last-child { color: var(--pink); font-weight: 600; }
table.compare tr:last-child td { border-bottom: none; }

/* FAQ */
.faq { display: grid; gap: .65rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 1.15rem; font-weight: 650;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 1.25rem; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.15rem 1.15rem; margin: 0; color: var(--ink-soft); }

/* CTA band */
.cta-band {
  background: linear-gradient(115deg, #FF2D87, #FF7A2E);
  color: #fff; border-radius: calc(var(--radius) + 4px);
  padding: 2.25rem 1.75rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .15; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.95); margin-bottom: 1.25rem; }
.cta-band .btn { margin: .25rem; }

/* Pricing cards */
.price-list { display: grid; gap: 1rem; }
@media (min-width: 800px) { .price-list { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem;
}
.price-card__tag {
  display: inline-block; align-self: start; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue);
  background: #EEF1FF; padding: .25rem .55rem; border-radius: 999px;
}
.price-card ul { margin: .5rem 0 1rem; display: grid; gap: .4rem; }
.price-card li { padding-left: 1.1rem; position: relative; color: var(--ink-soft); font-size: .95rem; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .55rem; width: .45rem; height: .45rem; border-radius: 50%; background: var(--pink); }

/* Forms */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--line); font: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,135,.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }

/* Soft shapes / feature strip */
.feature-strip {
  display: grid; gap: 1rem;
}
@media (min-width: 720px) { .feature-strip { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 1.15rem;
}
.feature strong { display: block; margin-bottom: .25rem; }

/* Soft blobs on light sections */
.blob-wrap { position: relative; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .35; pointer-events: none; z-index: 0;
}
.blob--a { width: 220px; height: 220px; background: #FFB4D4; top: -40px; left: -60px; }
.blob--b { width: 180px; height: 180px; background: #FFD0A8; bottom: -30px; right: -40px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.8); padding: 3rem 0 2rem;
}
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid; gap: 2rem;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer__brand { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.footer__col h3 {
  font-family: var(--font-sans); font-size: .85rem; text-transform: uppercase;
  letter-spacing: .06em; color: rgba(255,255,255,.55); margin-bottom: .85rem;
}
.footer__col a { display: block; padding: .3rem 0; font-size: .95rem; }
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.55);
}

/* Content prose */
.prose h2 { margin-top: 2rem; font-size: 1.45rem; }
.prose h3 { font-family: var(--font-sans); font-size: 1.1rem; margin-top: 1.5rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1em; }
.prose li { margin: .35rem 0; }
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }

/* Legal */
.legal-box {
  background: var(--bg-soft); border-radius: var(--radius); padding: 1.25rem 1.4rem;
  border: 1px solid var(--line); margin: 1rem 0;
}

/* Cookie notice — compact, non-blocking */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  background: rgba(26,26,46,.96); color: #fff; border-radius: 14px;
  padding: 1rem 1.15rem; box-shadow: 0 12px 40px rgba(0,0,0,.25);
  display: none; max-width: 520px; margin-inline: auto;
}
.cookie.is-visible { display: block; }
.cookie p { margin: 0 0 .85rem; font-size: .88rem; color: rgba(255,255,255,.88); }
.cookie a { color: #FF9EC8; text-decoration: underline; }
.cookie__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
@media (min-width: 720px) {
  .cookie { left: auto; right: 1.25rem; bottom: 1.25rem; margin: 0; }
}

/* Misc */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* Brand assets */
.logo { display: inline-flex; align-items: center; gap: 0; text-decoration: none; }
.logo__img { display: block; height: 52px; width: auto; max-width: 160px; object-fit: contain; }
@media (min-width: 900px) {
  .logo__img { height: 60px; max-width: 180px; }
}
.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}
.hero__logo-card {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 10, 40, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 280px;
}
.hero__logo-card img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}
