/* =====================================================
   SHOPIFY STARTER PRO — Custom Selling Page Styles
   Complément au design system Wokiee (main.css)
   ===================================================== */

:root {
  --sp-blue: #304FFE;
  --sp-blue-dark: #1a36d9;
  --sp-text: #111111;
  --sp-text-muted: #666666;
  --sp-bg-light: #f7f8ff;
  --sp-bg-alt: #f0f2f5;
  --sp-white: #ffffff;
  --sp-border: #e5e7eb;
  --sp-radius: 12px;
  --sp-radius-lg: 20px;
  --sp-shadow: 0 4px 24px rgba(48, 79, 254, 0.10);
  --sp-shadow-hover: 0 12px 40px rgba(48, 79, 254, 0.18);
}

/* ─── GLOBAL OVERRIDES ─── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent forceLinksNewTab from breaking anchor navigation */
a[href^="#"] {
  target: _self !important;
}

/* ─── HERO ─── */

.sp-hero {
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 70% 55% at 15% 55%, rgba(1, 153, 156, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 45%, rgba(48, 79, 254, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 50% 5%,  rgba(255, 180, 0, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 78% 15%, rgba(254, 92, 113, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 35% 40% at 25% 88%, rgba(174, 117, 234, 0.28) 0%, transparent 50%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .sp-hero { padding: 100px 20px 80px; min-height: 70vh; }
}

@media (max-width: 576px) {
  .sp-hero { padding: 80px 20px 60px; min-height: auto; }
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1400' height='900' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

/* Titre hero — span avec gradient multicolore Wokiee (au lieu de FFB400→FF5C7A) */

.sp-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255,255,255,0.90);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.sp-hero__label::before {
  content: '🚀';
  font-size: 15px;
}

.sp-hero__title {
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: 0;
}

@media (max-width: 576px) {
  .sp-hero__title {
    font-size: 36px;
  }
}

.sp-hero__title span {
  background: linear-gradient(98.42deg, #01999C 7.7%, #FFB400 28.22%, #FE5C71 49.13%, #AE75EA 69.25%, #304FFE 89.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-hero__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin: 0 0 36px;
  line-height: 1.5;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}

.sp-hero__badge-launch {
  background: #FFB400;
  color: #111;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.sp-hero__badge-price {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.sp-hero__badge-old {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}

.sp-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.sp-btn--primary {
  background: #fff;
  color: var(--sp-blue);
  box-shadow: 0 8px 32px rgba(255,255,255,0.25);
}

.sp-btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255,255,255,0.35);
  color: var(--sp-blue);
}

.sp-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

.sp-btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
  color: #fff;
}

.sp-btn--blue {
  background: var(--sp-blue);
  color: #fff;
  box-shadow: 0 8px 32px rgba(48, 79, 254, 0.35);
}

.sp-btn--blue:hover {
  background: var(--sp-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(48, 79, 254, 0.45);
  color: #fff;
}

.sp-btn--lg {
  font-size: 18px;
  padding: 18px 44px;
}

.sp-btn--full {
  width: 100%;
  display: flex;
}

.sp-btn--sm {
  font-size: 13px;
  padding: 10px 24px;
}

/* ─── PER-SECTION CTA BUTTON ─── */

.sp-section-cta {
  text-align: center;
  margin-top: 48px;
}

.sp-section-cta--dark {
  margin-top: 16px;
}

/* ─── ADVANTAGES BANNER ─── */

.sp-advantages {
  background: var(--sp-bg-light);
  padding: 80px 20px;
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
}

.sp-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sp-advantage-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--sp-radius);
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.sp-advantage-item:hover {
  box-shadow: 0 8px 32px rgba(48, 79, 254, 0.10);
  transform: translateY(-3px);
}

.sp-advantage-item__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.sp-advantage-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-text);
  margin: 0 0 7px;
  padding-bottom: 0;
  line-height: 1.25;
}

.sp-advantage-item__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text-muted);
  margin: 0;
  padding-bottom: 0;
  line-height: 1.5;
}

/* ─── SECTION SHARED ─── */

.sp-section {
  padding: 80px 20px;
}

.sp-section--alt {
  background: var(--sp-bg-light);
}

.sp-section--dark {
  background: #0a0f2e;
  color: #fff;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.sp-section-head__pre {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-blue);
  margin-bottom: 16px;
  background: rgba(48, 79, 254, 0.07);
  padding: 6px 16px;
  border-radius: 100px;
}

.sp-section-head__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--sp-text);
  margin: 0 0 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .sp-section-head__title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .sp-section-head__title {
    font-size: 30px;
  }
}

.sp-section-head__title--light {
  color: #fff;
}

.sp-section-head__desc {
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-text-muted);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.5;
}

.sp-section-head__desc--light {
  color: rgba(255,255,255,0.70);
}

/* ─── WHAT'S INCLUDED (FEATURES) ─── */

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-feature-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.sp-feature-card:hover {
  box-shadow: 0 8px 32px rgba(48, 79, 254, 0.12);
  transform: translateY(-4px);
}

.sp-feature-card__icon {
  width: 56px;
  height: 56px;
  background: #EEF0FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.sp-feature-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--sp-text);
  margin: 0 0 10px;
  padding-bottom: 0;
  line-height: 1.25;
}

.sp-feature-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text-muted);
  line-height: 1.5;
  margin: 0;
  padding-bottom: 0;
}

/* ─── CATALOGUE SECTION OVERRIDES ─── */

.sp-catalogue-section {
  padding: 90px 0 60px;
  background: var(--sp-bg-alt);
}

.sp-catalogue-section .section__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.sp-catalogue-head {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* ─── PRICING ─── */

.sp-pricing-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.sp-pricing-card {
  background: var(--sp-white);
  border: 2px solid var(--sp-blue);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 12px 48px rgba(48, 79, 254, 0.12);
}

.sp-pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sp-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 100px;
  white-space: nowrap;
}

.sp-pricing-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--sp-text);
  text-align: center;
  margin: 12px 0 0;
  padding-bottom: 0;
}

.sp-pricing-card__price-wrap {
  text-align: center;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
}

.sp-pricing-card__price {
  font-size: 52px;
  font-weight: 900;
  color: var(--sp-blue);
  line-height: 1;
  display: block;
}

.sp-pricing-card__price-old {
  display: block;
  font-size: 15px;
  color: var(--sp-text-muted);
  margin-top: 6px;
}

.sp-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.sp-pricing-card__features li {
  padding: 11px 0;
  border-bottom: 1px solid var(--sp-border);
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 11px;
}

.sp-pricing-card__features li:last-child {
  border-bottom: none;
}

.sp-pricing-card__features li::before {
  content: '✓';
  color: var(--sp-blue);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-pricing-card__note {
  text-align: center;
  font-size: 13px;
  color: var(--sp-text-muted);
  margin-top: 14px;
}

/* ─── PROCESS / TIMELINE ─── */

.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.sp-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: rgba(48, 79, 254, 0.20);
  z-index: 0;
}

.sp-process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.sp-process-step__num {
  width: 64px;
  height: 64px;
  background: var(--sp-blue);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(48, 79, 254, 0.25);
}

.sp-process-step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-text);
  margin: 0 0 10px;
  padding-bottom: 0;
  line-height: 1.25;
}

.sp-process-step__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text-muted);
  line-height: 1.5;
  margin: 0;
  padding-bottom: 0;
}

/* ─── TESTIMONIALS ─── */

.sp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-testimonial-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.sp-testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(48, 79, 254, 0.10);
  transform: translateY(-3px);
}

.sp-testimonial-card__stars {
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.sp-testimonial-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sp-text);
  margin: 0 0 16px;
  padding-bottom: 0;
  font-style: italic;
}

.sp-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sp-testimonial-card__author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-text);
}

.sp-testimonial-card__author span {
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text-muted);
}

.sp-testimonial-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sp-blue);
  text-decoration: none;
  margin-top: 4px;
}

.sp-testimonial-card__link:hover {
  text-decoration: underline;
}

.sp-testimonial-card__link--soon {
  color: var(--sp-text-muted);
  cursor: default;
}

.sp-testimonial-card__link--soon:hover {
  text-decoration: none;
}

/* ─── TESTIMONIAL MEDIA SLIDESHOW (placeholder) ─── */

.sp-testimonial-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--sp-radius);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--sp-bg-light);
  border: 1px dashed var(--sp-border);
}

.sp-testimonial-card__media-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(48, 79, 254, 0.08), rgba(48, 79, 254, 0.02));
  color: var(--sp-text-muted);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sp-testimonial-card__media-slide.active {
  opacity: 1;
}

.sp-testimonial-card__media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CTA FINAL ─── */

.sp-cta-final {
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 70% 55% at 15% 55%, rgba(1, 153, 156, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 45%, rgba(48, 79, 254, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 50% 5%,  rgba(255, 180, 0, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 78% 15%, rgba(254, 92, 113, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 35% 40% at 25% 88%, rgba(174, 117, 234, 0.28) 0%, transparent 50%);
  padding: 130px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .sp-cta-final { padding: 100px 20px; }
}

@media (max-width: 576px) {
  .sp-cta-final { padding: 70px 20px; }
}

.sp-cta-final::before {
  display: none;
}

.sp-cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.sp-cta-final__title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: 0;
  line-height: 1.25;
  padding-bottom: 0;
}

@media (max-width: 576px) {
  .sp-cta-final__title { font-size: 30px; }
}

.sp-cta-final__sub {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  padding-bottom: 0;
}

.sp-cta-final__note {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding-bottom: 0;
}

/* ─── ORDER FORM ─── */

.sp-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.sp-form {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.sp-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sp-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sp-form__group--full {
  grid-column: 1 / -1;
}

.sp-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-text);
}

.sp-form__input,
.sp-form__select,
.sp-form__textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--sp-text);
  background: #fafbff;
  border: 1.5px solid var(--sp-border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.sp-form__input:focus,
.sp-form__select:focus,
.sp-form__textarea:focus {
  border-color: var(--sp-blue);
  box-shadow: 0 0 0 3px rgba(48, 79, 254, 0.12);
  background: #fff;
}

.sp-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.sp-form__checkbox-wrap {
  margin: 24px 0;
}

.sp-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--sp-text-muted);
  cursor: pointer;
}

.sp-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sp-blue);
  flex-shrink: 0;
  cursor: pointer;
}

.sp-form__checkbox-label a {
  color: var(--sp-blue);
  text-decoration: underline;
}

.sp-form__note {
  text-align: center;
  font-size: 13px;
  color: var(--sp-text-muted);
  margin-top: 16px;
}

/* ─── HEADER LOGO IMG ─── */

.header__logo-img {
  height: 33px;
  width: auto;
  display: block;
}

/* ─── CUSTOM FOOTER ─── */

.sp-footer {
  background: #080c1f;
  color: rgba(255,255,255,0.75);
  padding: 64px 20px 32px;
}

.sp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.sp-footer__brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}


.sp-footer__brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.sp-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 18px;
}

.sp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-footer__links a:hover {
  color: #fff;
}

.sp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── STICKY CTA BAR ─── */

.sp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--sp-border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-sticky-cta.visible {
  transform: translateY(0);
}

.sp-sticky-cta__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--sp-text);
}

.sp-sticky-cta__text span {
  color: var(--sp-blue);
  font-weight: 800;
}

.sp-sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sp-sticky-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sp-bg-light);
  border: 1.5px solid var(--sp-border);
  color: var(--sp-blue);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.sp-sticky-cta__call:hover {
  background: rgba(48, 79, 254, 0.10);
  transform: translateY(-2px);
}

.sp-sticky-cta__call svg {
  width: 20px;
  height: 20px;
}

/* ─── CATALOGUE SECTION TITLE OVERRIDE ─── */

#catalogue-section .section__title,
#catalogue-section .section__desc {
  text-align: center;
}

/* Force the catalogue to load properly */
#page-layout-library.loaded .page-layout-library__grid {
  min-height: auto;
}

/* ─── SCROLL-TO-TOP SMOOTH ─── */

html {
  scroll-behavior: smooth;
}

/* ─── GUARANTEE BADGE ─── */

.sp-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(48, 79, 254, 0.05);
  border: 1px solid rgba(48, 79, 254, 0.15);
  border-radius: var(--sp-radius);
  padding: 16px 20px;
  margin-top: 24px;
}

.sp-guarantee__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.sp-guarantee__text {
  font-size: 14px;
  color: var(--sp-text);
  line-height: 1.5;
}

.sp-guarantee__text strong {
  color: var(--sp-blue);
}

/* ─── FAQ RAPIDE — Style aligné Wokiee ─── */

.sp-section details {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.sp-section details[open] {
  box-shadow: 0 4px 20px rgba(48, 79, 254, 0.08);
  border-color: rgba(48, 79, 254, 0.25);
}

.sp-section details summary {
  font-weight: 600;
  font-size: 16px;
  color: var(--sp-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  line-height: 1.25;
}

.sp-section details summary::-webkit-details-marker {
  display: none;
}

.sp-section details p {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-text-muted);
  line-height: 1.5;
  padding-bottom: 0;
}

/* ─── WOKIEE SECTIONS — typo alignment ─── */

/* Align Wokiee section titles with sp-section head titles */
.section__title {
  letter-spacing: -0.03em;
}

/* Wokiee section desc — consistent max-width */
.section__desc {
  line-height: 1.65;
}

/* Section--benefits (support cards) background rhythm */
.section--benefits.sp-support-section {
  background: var(--sp-white);
}

/* Section--features (Mobile-First, Savings) */
#features-section.section--features {
  background: var(--sp-bg-light);
}

/* Savings section — subtle alternation */
#savings-section.section--features {
  background: var(--sp-white);
}

/* E-commerce section keeps its Wokiee dark invert — no override needed */

/* ─── HEADER BUTTON STYLE ALIGNMENT ─── */

.header__button .button {
  font-size: 14px;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1100px) {
  .sp-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .sp-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 100px 20px 60px;
    min-height: 70vh;
  }

  .sp-advantages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sp-features-grid {
    grid-template-columns: 1fr;
  }

  .sp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sp-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sp-pricing-card {
    padding: 36px 24px;
  }

  .sp-form {
    padding: 32px 24px;
  }

  .sp-form__grid {
    grid-template-columns: 1fr;
  }

  .sp-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-sticky-cta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sp-hero__badge {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--sp-radius);
  }

  .sp-process-step__num {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .sp-btn--lg {
    font-size: 16px;
    padding: 16px 28px;
  }
}

@media (max-width: 480px) {
  .sp-hero__ctas {
    flex-direction: column;
  }

  .sp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── TRUST BADGES BANDEAU ─── */

.trust-badges {
  background: #0d1117;
  border-top: 1px solid rgba(48, 79, 254, 0.25);
  border-bottom: 1px solid rgba(48, 79, 254, 0.25);
  padding: 20px 0;
}

.trust-badges__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-badges__item:last-child {
  border-right: none;
}

.trust-badges__icon {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(48, 79, 254, 0.4));
}

.trust-badges__content {
  min-width: 0;
  width: 100%;
}

.trust-badges__title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.trust-badges__desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .trust-badges__item {
    padding: 12px 12px;
  }
  .trust-badges__title {
    font-size: 12px;
  }
  .trust-badges__desc {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badges__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 14px 20px;
  }
  .trust-badges__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .trust-badges__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .trust-badges__desc {
    display: block;
  }
  .trust-badges__title {
    font-size: 12px;
    white-space: normal;
  }
  .trust-badges__desc {
    font-size: 11px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .trust-badges__grid {
    grid-template-columns: 1fr;
  }
  .trust-badges__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .trust-badges__item:nth-child(odd) {
    border-right: none;
  }
  .trust-badges__item:last-child {
    border-bottom: none;
  }
}

/* ─── WOKIEE BENEFITS (Trust Badges) ─── */

.section--benefits .benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.benefits__item-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.benefits__item-icon img,
.benefits__item-icon svg {
  width: 60px;
  height: 60px;
}

.benefits__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px;
  padding-bottom: 0;
  line-height: 1.25;
}

.benefits__item-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  padding-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .section--benefits .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .section--benefits .benefits {
    grid-template-columns: 1fr;
  }
}

/* ─── SUPPORT SECTION CARDS ─── */

.sp-support-section .card__inner.sp-support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  gap: 16px;
  height: 100%;
  text-decoration: none;
  cursor: default;
}

.sp-support-card__icon {
  flex-shrink: 0;
}

.sp-support-section .card__content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px;
  padding-bottom: 0;
  line-height: 1.25;
}

.sp-support-section .card__content p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin: 0;
  padding-bottom: 0;
  line-height: 1.5;
}

/* Wokiee inverts the card background to black on hover — keep the text readable */
.sp-support-section .card:hover .card__content h3,
.sp-support-section .card:hover .card__content p {
  color: #fff;
}

/* ─── FLEXIBLE CONTENT SLIDER — image paths correction ─── */

.section--flexible-content .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ─── FEATURES TABLE — button override for anchor ─── */

.features-table .button-cell .button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* ─── ECOMMERCE SECTION — image paths for card-3 ─── */

.section--ecommerce .card-3 .card-3__image img {
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHIE — RESET GLOBAL WOKIEE POUR SECTIONS CUSTOM
   Neutralise le padding-bottom: 20/40px natif Wokiee
   sur h1-h6 et p à l'intérieur des conteneurs custom
   ══════════════════════════════════════════════════ */

/* Headings dans conteneurs sp- : suprimer padding-bottom Wokiee */
.sp-section h1,
.sp-section h2,
.sp-section h3,
.sp-section h4,
.sp-section h5,
.sp-section h6,
.sp-hero h1,
.sp-hero h2,
.sp-hero h3,
.sp-cta-final h1,
.sp-cta-final h2,
.sp-advantages h3,
.sp-advantages h4,
.sp-footer h4 {
  padding-bottom: 0;
}

/* Paragraphes dans conteneurs sp- : suprimer padding-bottom: 40px Wokiee */
.sp-section p,
.sp-hero p,
.sp-cta-final p,
.sp-advantages p,
.sp-footer p,
.sp-sticky-cta p,
.sp-form__note,
.sp-pricing-card__note {
  padding-bottom: 0;
}

/* Footer logo */
.sp-footer__brand-logo {
  margin-bottom: 16px;
}

.sp-footer__brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.sp-footer__brand-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.sp-footer {
  text-align: left;
}

.sp-footer__partner-badge {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-footer__partner-badge img {
  height: 42px;
  width: auto;
  display: block;
}

.sp-footer__partner-badge img:first-child {
  height: 68px;
}

.sp-footer__social {
  display: flex;
  gap: 12px;
}

.sp-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}

.sp-footer__social a:hover {
  background: rgba(48,79,254,0.25);
  color: #fff;
}

.sp-footer__social svg {
  width: 18px;
  height: 18px;
}

.sp-footer__col-title {
  font-size: 14px;
  font-weight: 600;
}

.sp-footer__links a {
  font-size: 14px;
  font-weight: 400;
}

.sp-footer__bottom p {
  font-size: 14px;
  font-weight: 400;
}

/* Sticky CTA */
.sp-sticky-cta__text {
  font-size: 14px;
  font-weight: 600;
}

/* Form labels */
.sp-form__label {
  font-size: 14px;
  font-weight: 600;
}

.sp-form__input,
.sp-form__select,
.sp-form__textarea {
  font-size: 14px;
  font-weight: 400;
}

.sp-form__note {
  font-size: 14px;
  font-weight: 400;
}

/* Hero badge */
.sp-hero__badge-launch {
  font-size: 11px;
  font-weight: 600;
}

.sp-hero__badge-price {
  font-size: 48px;
  font-weight: 600;
}

.sp-hero__badge-old {
  font-size: 14px;
  font-weight: 400;
}

/* Hero label */
.sp-hero__label {
  font-size: 11px;
  font-weight: 600;
}

/* Buttons — weight Wokiee (le .button Wokiee est weight 700) */
.sp-btn {
  font-weight: 600;
}

/* Guarantee badge */
.sp-guarantee__text {
  font-size: 14px;
  font-weight: 400;
}

/* Trust badges — alignement typographie Wokiee */
.trust-badges__title {
  font-size: 14px;
  font-weight: 600;
}

.trust-badges__desc {
  font-size: 14px;
  font-weight: 400;
}

/* Section-head pre label */
.sp-section-head__pre {
  font-size: 11px;
  font-weight: 600;
}

/* Responsive mobile h2 dans hero */
@media (max-width: 576px) {
  .sp-advantages__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ─── SEO : texte accessible pour moteurs de recherche / lecteurs d'écran ─── */
.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;
}
