/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

p{
    letter-spacing: 2%;
}

/* style commun */
.bg-ball {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

/* chaque boule personnalisée */
.b1 {
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, #835dff55 0%, transparent 70%);
}

/* .b2 {
  top: 2000px;
  left: -100px;
  background: radial-gradient(circle, #26e4ff55 0%, transparent 70%);
} */

.b3 {
  top: 4000px;
  right: -200px;
  background: radial-gradient(circle, #7a07b335 0%, transparent 70%);
}


/* ===== BACKGROUND ANIMÉ ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #0c1015, #141a21, #1e252d, #141a21);
    background-size: 400% 400%;
    /* animation: gradientShift 12s ease infinite; */
    opacity: 0.9;
}

.animated-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(56, 178, 172, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(129, 140, 248, 0.03) 0%, transparent 60%);
    /* animation: float 8s ease-in-out infinite; */
}

/* @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}  */

/* @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(90deg) scale(1.02); }
} */

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100vw;
    padding: 18px 50px;
    backdrop-filter: blur(20px);
    background: #e5ebff00;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(45deg, #38b2ac, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1001;
}

.logo-img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #38b2ac;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #38b2ac, #818cf8);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #38b2ac, #818cf8);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 16px;
    padding: 20px;
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 15px;
    margin: 4px 0;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(56, 178, 172, 0.15);
    color: #38b2ac;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    position: relative;
    padding: 140px 50px 80px;
}

.hero-content {
    width: 100%;
    min-width: 300px;
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    /* padding-left: 30px; */
    font-size: clamp(2.8rem, 7vw, 5.0rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #38b2ac, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    width: auto;
    /* width: 100%; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.cta-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-button {
    /* margin-bottom: 30px; */
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(135deg, #38b2ac, #4c51bf, #818cf8);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(56, 178, 172, 0.4);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    width: auto;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 50px rgba(56, 178, 172, 0.6);
    background-position: 100% 0;
}

.cta2-button {
    display: inline-block;
    padding: 22px 50px;
    background: #00000000;
    background-size: 200% 200%;
    border: 1px solid #9dabaa;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 10px rgba(44, 44, 44, 0.2);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    height: auto;
}

.cta2-button:hover {
    transform: translateY(-3px) scale(1.01);
    /* box-shadow: 0 20px 50px rgba(56, 178, 172, 0.3); */
    background-position: 100% 0;
}

.hero-image {
    width: auto;
    max-width: 600px;
    height: auto;
}

/* Floating CTA (mobile) */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: none;
    padding: 16px 28px;
    background: linear-gradient(135deg, #38b2ac, #4c51bf);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(56, 178, 172, 0.5);
    animation: pulse 2s infinite;
    min-width: 44px;
    min-height: 44px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== SECTIONS COMMUNES ===== */
section {
    position: relative;
    z-index: 2;
    padding: 5rem 24px;
}

section h2 {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #38b2ac, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

/* ===== BÉNÉFICES SECTION ===== */
.benefits {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 12px;
    font-size: 0.95rem;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 178, 172, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.animation-container {
    width: 300px;
    height: 300px;
    align-self: center;
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animation-container lottie-player,
.animation-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== PROCESSUS SECTION ===== */
.process {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 4rem 2rem;
  position: relative;
}

/* Conteneur avec flèches + zone de scroll */
.process-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    /* flex-direction: column; */
    gap: 20px;
    overflow: hidden;

}

/* Boutons flèches */
.scroll-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 1.8rem;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease;
  z-index: 10;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}

/* Zone scrollable */

.process-steps {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  /* padding: 0 -200px; */
  scroll-snap-type: x mandatory;
  scroll-snap-align: left;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.process-steps::-webkit-scrollbar {
  display: none;
}

.process-step {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 178, 172, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #38b2ac, #818cf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
  color: white;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.process-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.process-images {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.process-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ===== TÉMOIGNAGES SECTION ===== */


.testimonials {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 178, 172, 0.3);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: #38b2ac;
    opacity: 0.2;
    font-weight: 900;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38b2ac, #818cf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testi-images {
    width: 300px;
    height: auto;
    /* margin-top: 15px; */
    border-radius: 12px;
    box-shadow: #00000033 0px 10px 30px;
    transform: rotate(-30deg);
    margin-left: auto;
    margin-right: -150px;
}



/* ===== OFFRE SECTION ===== */
.offer {
    max-width: 750px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(56, 178, 172, 0.3);
    border-radius: 24px;
    padding: 48px 42px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.offer-card:hover {
    /* transform: translateY(-1px); */
    border-color: #1f6360;
    /* box-shadow: 0 5px 10px rgba(56, 178, 172, 0.3); */
}

.offer-header {
    text-align: center;
    margin-bottom: 32px;
}

.offer-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.offer-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

.offer-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-main {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #38b2ac, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.price-promo {
    display: inline-block;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 1.05rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 18px;
}

.offer-guarantee {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 20px 0;
    padding: 16px;
    background: rgba(56, 178, 172, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(56, 178, 172, 0.2);
}

.offer-guarantee strong {
    color: #38b2ac;
    font-weight: 700;
}

.offer-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #38b2ac, #4c51bf, #818cf8);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(56, 178, 172, 0.4);
    margin-top: 12px;
    min-width: 44px;
    min-height: 44px;
}

.offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(56, 178, 172, 0.6);
}

.offer-content {
    background: #111827;
    /* color: #f9fafb; */
    border: 1px solid #1f2937;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 600px;
    margin: 40px auto;
}

.offer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-content li {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  /* color: #111827; */
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.offer-content li::before {
  content: "✓";
  color: #adadad;
  flex-shrink: 0;
}

/* ===== WHATSTHAT SECTION ===== */
.whatsthat {
    padding: 4rem 24px;
}

.whatsthat .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.whatsthat h2 {
    margin-bottom: 1rem;
}

.whatsthat-intro {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.whatsthat-grid {
    /* use a vertical stack of cards (flex-column) rather than a grid */
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 1.5rem;
    align-items: stretch;
}

.what-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    /* transition: transform 0.25s ease, box-shadow 0.25s ease; */
}

/* .what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(56, 178, 172, 0.15);
} */

.what-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    /* border-radius: 10px; */
    /* background: linear-gradient(135deg, rgba(56,178,172,0.12), rgba(129,140,248,0.12)); */
    margin-bottom: 12px;
}

.what-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.what-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.98rem;
    line-height: 1.6;
}

.whatsthat-visual {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.whatsthat-visual img {
    max-width: 540px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
    .what-card { text-align: left; }
    .whatsthat-intro { padding: 0 12px; }
}

/* Two-column layout: image left, content right */
.whatsthat-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.whatsthat-media {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsthat-img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: cover;
    /* border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45); */
}

.whatsthat-content {
    flex: 1 1 56%;
    max-width: 56%;
    text-align: left;
}

@media (max-width: 900px) {
    .whatsthat-row { flex-direction: column-reverse; gap: 20px; }
    .whatsthat-media, .whatsthat-content { max-width: 100%; flex: 1 1 100%; }
    /* .whatsthat-content { text-align: center; } */
    .whatsthat-img { max-height: 420px; width: auto; }
}


/* ===== FAQ SECTION ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 178, 172, 0.3);
}

.faq-question {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 44px;
}

.faq-question:hover {
    color: #38b2ac;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #38b2ac;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(56, 178, 172, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38b2ac;
    box-shadow: 0 0 20px rgba(56, 178, 172, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #38b2ac, #4c51bf, #818cf8);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(56, 178, 172, 0.3);
    min-height: 44px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(56, 178, 172, 0.5);
}

.contact-note {
    text-align: center;
    margin-top: 22px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.hidden {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 52px 24px 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #38b2ac;
}

.social-links {
    margin: 32px 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-height: 44px;
}

.social-link:hover {
    background: rgba(56, 178, 172, 0.1);
    border-color: #38b2ac;
    color: #38b2ac;
    transform: translateY(-2px);
}

.social-link i {
font-size: 1.1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 28px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE MOBILE - ESPACEMENT OPTIMISÉ ===== */
@media (max-width: 768px) {
    /* Hero - Resserrage vertical */
    .hero {
        flex-direction: column;
        padding: 150px 40px 40px;
        min-height: 80vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 100%;
        height: auto;
    }

    .hero h1 {
        margin-bottom: 50px;
    }

    .hero p {
        margin-bottom: 50px;
    }

    .cta-buttons {
        justify-content: center;
        gap: 20px;
    }

    /* Sections - Espacement réduit */
    section {
        padding: 2.5rem 20px;
    }

    section h2 {
        margin-bottom: 2rem;
    }

    /* Bénéfices - Compact */
    .benefits {
        padding: 2rem 20px;
    }

    .benefits-grid {
        gap: 18px;
    }

    .benefit-card {
        padding: 24px 20px;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    /* Processus - Compact */

    .process-step {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }

    .process {
        padding: 2rem 1.5rem;
        margin: 0 20px;
    }

    .process-steps {
        gap: 18px;
        margin-top: 24px;
    }

    .process-step {
        padding: 24px 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        margin-bottom: 16px;
    }

    /* Témoignages - Resserré */
    .testimonials {
        padding: 2rem 20px;
    }

    .testimonials-grid {
        gap: 18px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    /* Section CTA intermédiaire - Moins d'espace */
    section[style*="padding: 3rem"] {
        padding: 1.5rem 20px !important;
    }

    /* Offre - Compact */
    .offer {
        padding: 2rem 20px;
    }

    .offer-card {
        padding: 32px 24px;
    }

    .offer-header {
        margin-bottom: 24px;
    }

    .offer-title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .offer-description {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .price-main {
        font-size: 3rem;
    }

    .price-promo {
        /* margin-top: 14px; */
        padding: 8px 18px;
    }

    .offer-guarantee {
        margin: 16px 0;
        padding: 14px;
    }

    /* FAQ - Resserré */
    .faq {
        padding: 2rem 20px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }

    /* Contact - Compact */
    .contact {
        padding: 2rem 20px;
    }

    .contact-intro {
        margin-bottom: 24px;
        font-size: 1.05rem;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        margin-bottom: 8px;
    }

    .contact-note {
        margin-top: 18px;
    }

    /* Footer - Resserré */
    footer {
        padding: 36px 20px 24px;
    }

    .footer-links {
        gap: 16px;
        margin-bottom: 20px;
    }

    .social-links {
        margin: 24px 0;
    }

    .footer-copyright {
        margin-top: 20px;
    }
}

/* Très petits écrans - Encore plus compact */
@media (max-width: 480px) {
    .hero {
        padding: 150px 18px 35px;
    }

    .hero h1 {
        /* font-size: 2.9rem; */
        margin-bottom: 30px;
    }

    .hero p {
        margin-bottom: 30px;
    }

    section {
        padding: 2rem 18px;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .animation-container {
        width: 200px;
        height: 200px;
    }

    .testimonial-card {
        flex-direction: column;
        /* text-align: center; */
    }

    .benefits,
    .audience-fit,
    .testimonials,
    .offer,
    .faq,
    .contact {
        padding: 1.75rem 18px;
    }

    .process {
        padding: 1.75rem 1.25rem;
        margin: 0 18px;
    }

    .benefit-card,
    .fit-column,
    .process-step,
    .testimonial-card {
        padding: 20px 18px;
    }

    .offer-card {
        padding: 28px 20px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .price-main {
        font-size: 2.5rem;
    }

    .cta-button {
        font-size: 1.05rem;
    }

    .cta2-button {
        font-size: 1.05rem;
    }
}

/* Responsive standard (tablettes et petits desktop) */
@media (max-width: 910px) {
    .b1 {
        top: 400px;
        right: -200px;
        background: radial-gradient(circle, #835dff55 0%, transparent 70%);
    }

    /* .b2 {
        top: 2000px;
        left: 300px;
        background: radial-gradient(circle, #26e4ff55 0%, transparent 70%);
    } */

    .b3 {
        top: 4000px;
        right: 300px;
        background: radial-gradient(circle, #7a07b355 0%, transparent 70%);
    }

    nav {
        /* width: 100%; */
        padding: 16px 20px;
    }

    .nav-links {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

    .logo {
        font-size: 22px;
    }

    .logo-img {
        height: 32px;
    }

    .cta-button {
        /* width: 100%; */
        max-width: 100%;
        /* margin-bottom: 30px; */
    }

    .floating-cta {
        display: block;
    }

    /* .benefits-grid {
        grid-template-columns: 1fr;
    } */

    .fit-lists {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Améliore accessibilité touch sur mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .offer-cta,
    .submit-btn,
    .faq-question,
    .social-link,
    .footer-links a {
        min-height: 48px;
    }

    /* Augmente l'espace entre les éléments cliquables */
    .benefits-grid {
        gap: 20px;
    }

    .faq-list {
        gap: 14px;
    }
}
