*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: hsl(210, 40%, 11%);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

:root {
  --primary: #13b981;
  --primary-light: hsl(160, 40%, 96%);
  --accent: #ff7733;
  --bg: #ffffff;
  --fg: hsl(210, 40%, 11%);
  --muted: hsl(210, 20%, 96%);
  --muted-fg: hsl(210, 15%, 45%);
  --border: hsl(210, 20%, 90%);
  --destructive: hsl(0, 72%, 51%);
  --destructive-light: hsl(0, 72%, 96%);
  --gradient-primary: linear-gradient(
    135deg,
    #13b981,
    hsl(175, 84%, 35%)
  );
  --gradient-hero: linear-gradient(180deg, hsl(160, 40%, 97%), #ffffff);
  --gradient-accent: linear-gradient(135deg, #ff7733, hsl(35, 95%, 55%));
  --shadow-card: 0 4px 24px -4px hsl(160 84% 39% / 0.12);
  --shadow-elevated: 0 20px 40px -12px hsl(210 40% 11% / 0.15);
  --shadow-glow: 0 0 40px hsl(160 84% 39% / 0.25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-padding {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--muted-fg);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.bg-muted {
  background: var(--muted);
}
.bg-white {
  background: var(--bg);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 15px hsl(24, 100%, 50%, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px hsl(24, 100%, 50%, 0.5);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}
.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-selector {
  display: flex;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-selector a {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  color: var(--muted-fg);
  transition: all 0.2s;
}
.lang-selector a:hover {
  color: var(--primary);
}
.lang-selector a.active {
  background: hsl(25, 100%, 96%);
  color: #ff7733;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-fg);
  padding: 0.5rem 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 4rem;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid hsl(160, 40%, 88%);
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.hero-phrase {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-fg);
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blurred-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.15;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.blurred-circle-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: -5%;
}
.blurred-circle-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}
.blurred-circle-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px hsl(24, 100%, 50%, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
  text-decoration: none;
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px hsl(24, 100%, 50%, 0.4);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--primary);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}
.pain-card:hover {
  border-color: hsl(0, 72%, 70%);
  box-shadow: 0 4px 24px -4px hsl(0, 72%, 51%, 0.12);
}
.pain-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--destructive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.pain-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pain-card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.vision-blockquote {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 1rem 1rem 0;
  padding: 2rem 2.5rem;
  margin: 0 auto 3rem;
  max-width: 700px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
}
.vision-points {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vision-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.vision-check {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.15rem;
}
.vision-point p {
  font-size: 1.0625rem;
  line-height: 1.6;
}

.engage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}
.engage-card:hover {
  border-color: hsl(160, 84%, 65%);
  box-shadow: var(--shadow-card);
}
.engage-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.engage-card:hover .engage-icon {
  transform: scale(1.1);
}
.engage-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.engage-card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.3;
}
.timeline-step {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-step:last-child {
  padding-bottom: 0;
}
.timeline-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.timeline-step p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.deliver-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}
.deliver-card:hover {
  border-color: hsl(160, 84%, 65%);
  box-shadow: var(--shadow-card);
}
.deliver-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.deliver-card:hover .deliver-icon {
  transform: scale(1.1);
}
.deliver-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.deliver-card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.deliver-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .deliver-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .deliver-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Studio frame – Différenciation section */
.studio-frame {
  max-width: 780px;
  margin: 2rem auto 3rem;
  text-align: center;
}
.studio-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}
.studio-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
  text-wrap: pretty;
}

.studio-highlight {
  background: var(--primary-light);
  border-bottom: 2px solid var(--primary);
  padding: 0.125rem 0.25rem;
  font-weight: 700;
  color: var(--fg);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.diff-col {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.diff-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.diff-col ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.diff-col li {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.diff-col li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.diff-col-negative li::before {
  content: "\2716";
  color: var(--destructive);
}
.diff-col-positive {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  transform: scale(1.02);
  background: var(--primary-light);
}
.diff-col-positive li::before {
  content: "\2714";
  color: var(--primary);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.target-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s;
}
.target-card:hover {
  border-color: hsl(160, 84%, 65%);
  box-shadow: var(--shadow-card);
}
.target-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.target-card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.target-closing {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.cta-section {
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section .blurred-circle {
  opacity: 0.1;
  background: white;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-blockquote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}
.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.cta-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  opacity: 0.95;
}
.cta-check svg {
  flex-shrink: 0;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section .cta-mini-quote {
  font-style: italic;
  font-size: 1.15rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
.cta-section .cta-sub {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.cta-section .btn-primary {
  background: var(--gradient-accent);
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
}

.footer {
  background: hsl(210, 40%, 11%);
  color: hsl(210, 20%, 80%);
  padding: 3rem 0 2rem;
}
.footer-content {
  text-align: center;
}
.footer-foundations {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.footer-copyright {
  font-size: 0.8125rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.footer-langs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-langs a {
  color: hsl(210, 20%, 70%);
  transition: color 0.2s;
}
.footer-langs a:hover {
  color: var(--primary);
}
.footer-langs a.active {
  color: var(--primary);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* OFFER SECTION */
.offer-header {
  text-align: center;
  margin-bottom: 3rem;
}
.offer-price-card {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 2.5rem 2rem;
  border: 2px solid var(--primary);
  background: var(--primary-light);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.offer-price-card .offer-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.offer-price-card .offer-price em {
  font-style: normal;
  color: var(--primary);
}
.offer-price-alt {
  font-size: 1rem;
  color: var(--muted-fg);
  margin-bottom: 0.5rem;
}
.offer-shared-risk {
  max-width: 520px;
  margin: 1.5rem auto 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg);
  border: 1px solid hsl(160, 40%, 88%);
  border-radius: 1rem;
  text-align: center;
}
.offer-shared-risk h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.offer-shared-risk p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin: 0;
}
.offer-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  border: 1px solid hsl(160, 40%, 88%);
  margin-top: 0.75rem;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer-grid-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offer-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
}
.offer-list .offer-check {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.1rem;
}
.offer-manifesto {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 1rem 1rem 0;
  padding: 2rem 2.5rem;
  margin: 0 auto 3rem;
  max-width: 700px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  text-align: center;
}
.offer-manifesto-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-fg);
  max-width: 700px;
  margin: -1.5rem auto 3rem;
  line-height: 1.5;
}
.offer-cycle {
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  padding-left: 3rem;
}
.offer-cycle::before {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  opacity: 0.3;
}
.offer-cycle-step {
  position: relative;
  padding-bottom: 1.75rem;
}
.offer-cycle-step:last-child {
  padding-bottom: 0;
}
.offer-cycle-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-cycle-step p {
  font-size: 1.0625rem;
  line-height: 1.6;
}
.offer-cycle-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.offer-badges span {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 2rem;
  border: 1px solid hsl(160, 40%, 88%);
}
.offer-not {
  max-width: 700px;
  margin: 0 auto;
}
.offer-not h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
.offer-not-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .offer-not-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer-not-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.5;
}
.offer-not-list .offer-cross {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--destructive);
}

/* Bandeau reassurance – section Offre */
.offer-reassurance {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, hsla(160, 40%, 50%, 0.06), transparent);
  border-left: 4px solid var(--accent);
  border-radius: 1rem;
}
.offer-reassurance svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--accent);
}
.offer-reassurance p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
}

/* Guillemets décoratifs – CTA blockquote */
.cta-blockquote {
  position: relative;
  padding-left: 1.5rem;
}
.cta-blockquote::before {
  content: "\00AB";
  position: absolute;
  left: -0.25rem;
  top: -0.15em;
  font-size: 2.5em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}
