
/* GLOBAL — éviter le défilement horizontal sur mobile */
html, body { overflow-x: hidden; max-width: 100%; }

/* STORE BADGES */
.store-badge-link { display: inline-block; transition: transform 0.2s, opacity 0.2s; }
.store-badge-link:hover { transform: translateY(-3px); opacity: 0.9; }
.store-badge { height: 52px; width: auto; display: block; }
.store-badge-apple { height: 52px; }
.store-badge-footer { height: 42px; width: auto; display: block; margin-bottom: 10px; }
@media (max-width: 480px) {
  .store-badge { height: 44px; }
}


/* NAV DIVIDER */
.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.25); margin: 0 4px; }
#main-nav.scrolled .nav-divider { background: #ddd; }
@media (max-width: 768px) { .nav-divider { display: none; } }

/* LOGO */
.nav-logo { height: 50px; width: auto; display: block; }
#main-nav.scrolled .nav-logo { filter: none; }
.footer-logo-img { height: 58px; width: auto; margin-bottom: 16px; filter: none; display: block; }
/* =====================================================
   LYNC THEME - NAXOS TEMPLATE STYLE
   Primary: #6C63FF | Dark: #111 | Body: #666
   Font: Roboto | Icons: Font Awesome 6
   ===================================================== */

/* 1. RESET & GLOBALS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; font-size: 16px; color: #666; line-height: 1.4; }
h1, h2, h3, h4, h5, h6 { color: #111; line-height: 1.2; font-weight: 700; }
h1 { font-size: 3em; }
h2 { font-size: 2.375em; }
h3 { font-size: 1.875em; }
h4 { font-size: 1.5em; }
p { line-height: 1.75; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 { margin-bottom: 15px; }
.section-title p { max-width: 600px; margin: 0 auto; color: #888; font-size: 17px; }
.text-center { text-align: center; }
.bg-light { background: #fafbfe; }

/* 2. BUTTONS */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 6px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; border: none; font-family: 'Roboto', sans-serif;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.2); transform: translateY(-2px); }
.btn-purple { background: #6C63FF; color: #fff; }
.btn-purple:hover { background: #5549e0; box-shadow: 0 10px 25px rgba(108,99,255,0.3); transform: translateY(-2px); }
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 500; font-size: 14px; transition: all 0.3s; line-height: 1.3;
}
.btn-store i { font-size: 24px; }
.btn-store small { display: block; font-size: 11px; opacity: 0.75; }
.btn-store strong { display: block; font-size: 15px; font-weight: 700; }
.btn-google { background: #111; color: #fff; border: 2px solid rgba(255,255,255,0.2); }
.btn-apple  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-google:hover, .btn-apple:hover {
  background: #fff; color: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* 3. PAGE LOADER */
#page-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #fff; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#page-loader.loaded { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 48px; height: 48px;
  border: 3px solid #f0f0f0; border-top-color: #6C63FF;
  border-radius: 50%; animation: lync-spin 0.8s linear infinite;
}
@keyframes lync-spin { to { transform: rotate(360deg); } }

/* 4. NAVIGATION */
#main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all 0.35s ease; padding: 22px 0;
}
#main-nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 25px rgba(0,0,0,0.08);
  padding: 14px 0;
}
#main-nav .nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.nav-brand {
  font-size: 1.9em; font-weight: 900; color: #fff;
  letter-spacing: -1px; transition: color 0.3s;
}
#main-nav.scrolled .nav-brand { color: #111; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500;
  position: relative; padding-bottom: 4px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #fff; transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }
#main-nav.scrolled .nav-menu a { color: #333; }
#main-nav.scrolled .nav-menu a::after { background: #6C63FF; }
.nav-cta {
  background: #fff; color: #111 !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 700;
}
#main-nav.scrolled .nav-cta { background: #6C63FF; color: #fff !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
#main-nav.scrolled .nav-toggle span { background: #111; }

/* 5. HERO / BANNER */
.banner {
  min-height: auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 70px; padding-bottom: 10px;
}
.banner::before {
  content: '';
  position: absolute; top: -40%; left: -30%; width: 180%; height: 180%;
  background: radial-gradient(ellipse at 60% 40%, rgba(108,99,255,0.18) 0%, transparent 65%);
  animation: lync-pulse 5s ease-in-out infinite;
}
@keyframes lync-pulse { 0%,100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }

.banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding: 30px 20px 20px;
  width: 100%;
}
.banner-content { flex: 1; }
.banner-badge {
  display: inline-block;
  background: rgba(108,99,255,0.25); color: #a5b4fc;
  padding: 6px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
  border: 1px solid rgba(108,99,255,0.4);
}
.banner-content h1 {
  color: #fff; font-size: 3.4em; font-weight: 900;
  line-height: 1.12; margin-bottom: 14px;
  word-break: break-word; overflow-wrap: break-word;
}
.banner-content h1 span { color: #818cf8; }
.banner-content p {
  color: rgba(255,255,255,0.72); font-size: 1.15em;
  line-height: 1.8; margin-bottom: 20px; max-width: 500px;
}
.banner-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.banner-stats { display: flex; gap: 45px; margin-top: 20px; }
.stat-item .stat-number {
  color: #fff; font-size: 2em; font-weight: 900; line-height: 1;
}
.stat-item .stat-label { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 4px; }

.banner-image { flex: 0 0 400px; text-align: center; position: relative; }
.banner-image img {
  max-height: 560px; margin: 0 auto;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.5));
  animation: lync-float 3.5s ease-in-out infinite;
}
@keyframes lync-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.wave-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-bottom svg { display: block; }

/* 6. CLIENTS */
.clients { padding: 50px 0; background: #fff; }
.clients-label {
  text-align: center; color: #bbb;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 32px;
}
.clients-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 30px 55px;
}
.client-logo-text {
  font-size: 1.3em; font-weight: 800; color: #ccc;
  letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s;
}
.client-logo-text:hover { color: #6C63FF; }

/* 7. FEATURES */
.features { background: #fafbfe; }
.features-layout { display: flex; align-items: center; }
.features-col { flex: 1; }
.features-col-center {
  flex: 0 0 270px; text-align: center; padding: 0 15px;
}
.features-col-center img { margin: 0 auto; border-radius: 30px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 28px; margin-bottom: 4px;
  border-radius: 8px; transition: all 0.3s;
}
.feature-item:hover { background: #fff; box-shadow: 0 0 40px rgba(0,0,0,0.06); }
.feature-icon {
  width: 56px; height: 56px; background: #f0efff;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px; color: #6C63FF; transition: all 0.3s;
}
.feature-item:hover .feature-icon { background: #6C63FF; color: #fff; }
.features-col-right .feature-item { flex-direction: row-reverse; text-align: right; }
.feature-text h4 { color: #111; font-size: 1.05em; margin-bottom: 7px; font-weight: 700; }
.feature-text p { font-size: 14px; line-height: 1.7; }

/* 8. HOW IT WORKS */
.how-it-works { background: #fff; }
.steps-grid { display: flex; gap: 30px; }
.step-card {
  flex: 1; background: #fafbfe;
  border-radius: 12px; padding: 42px 32px; text-align: center;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: #6C63FF; opacity: 0; transition: opacity 0.3s;
}
.step-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-6px); }
.step-card:hover::before { opacity: 1; }
.step-number {
  width: 64px; height: 64px; background: #6C63FF; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5em; font-weight: 900; margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(108,99,255,0.35);
}
.step-card h4 { color: #111; font-size: 1.15em; margin-bottom: 14px; }
.step-card p { font-size: 14px; line-height: 1.8; }

/* 9. SPOTLIGHT SECTIONS */
.spotlight { padding: 80px 0; overflow: hidden; }
.spotlight-inner {
  display: flex; align-items: center; gap: 80px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.spotlight.reverse .spotlight-inner { flex-direction: row-reverse; }
.spotlight-content { flex: 1; }
.pre-title {
  display: block; color: #6C63FF; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.spotlight-content h2 { margin-bottom: 18px; font-size: 2.1em; }
.spotlight-content > p { margin-bottom: 28px; font-size: 16px; line-height: 1.8; }
.spotlight-list { list-style: none; }
.spotlight-list li {
  padding: 9px 0; color: #555; font-size: 15px;
  display: flex; align-items: center; gap: 12px;
}
.spotlight-list li::before {
  content: '✓'; display: inline-flex; width: 24px; height: 24px;
  background: #f0efff; color: #6C63FF; border-radius: 50%;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 12px; font-weight: 900;
}
.spotlight-image { flex: 0 0 44%; }
.spotlight-image img {
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12); width: 100%;
}

/* 10. TESTIMONIALS */
.testimonials { background: #fafbfe; }
.testimonials-grid { display: flex; gap: 30px; }
.testimonial-card {
  flex: 1; background: #fff; border-radius: 12px;
  padding: 38px; box-shadow: 0 0 40px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic; line-height: 1.85; margin-bottom: 28px;
  color: #555; font-size: 15px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; background: #e0e0e0;
}
.testimonial-author-info strong { display: block; color: #111; font-size: 15px; }
.testimonial-author-info span { font-size: 13px; color: #6C63FF; }

/* 11. TEAM */
.team { background: #fff; }
.team-grid { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.team-card { flex: 1; min-width: 180px; max-width: 220px; text-align: center; }
.team-photo {
  width: 130px; height: 130px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden; background: #f0f0f0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { color: #111; font-size: 1.05em; margin-bottom: 5px; }
.team-card .team-role { font-size: 13px; color: #6C63FF; display: block; margin-bottom: 16px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 36px; height: 36px; background: #f0f0f0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #888; transition: all 0.3s;
}
.team-social a:hover { background: #6C63FF; color: #fff; transform: translateY(-3px); }

/* 12. SCREENSHOTS */
.screenshots { background: #fafbfe; }
.screenshots-scroll { overflow-x: auto; padding-bottom: 20px; }
.screenshots-scroll::-webkit-scrollbar { height: 4px; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.screenshots-grid { display: flex; gap: 20px; min-width: max-content; padding: 10px 5px; }
.screenshot-item {
  flex: 0 0 200px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); transition: all 0.3s;
}
.screenshot-item:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.2); }
.screenshot-item img { width: 100%; display: block; }

/* 13. FAQ */
.faq { background: #fff; }
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; color: #111;
  font-weight: 600; font-size: 15px; transition: color 0.3s; gap: 15px;
}
.faq-question:hover { color: #6C63FF; }
.faq-question.active { color: #6C63FF; }
.faq-icon {
  font-size: 22px; font-weight: 300; color: #ccc;
  transition: transform 0.3s, color 0.3s; flex-shrink: 0;
}
.faq-question.active .faq-icon { transform: rotate(45deg); color: #6C63FF; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 22px; color: #666; line-height: 1.85; font-size: 15px; }

/* 14. NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #6C63FF 0%, #3f3d56 100%);
  padding: 75px 0;
}
.newsletter .section-title h2 { color: #fff; }
.newsletter .section-title p { color: rgba(255,255,255,0.75); }
.newsletter-form { display: flex; gap: 14px; max-width: 520px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; height: 52px; box-sizing: border-box; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 0 20px; border-radius: 8px; font-size: 15px;
  font-family: 'Roboto', sans-serif; outline: none; transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }
.newsletter-form button {
  height: 52px; padding: 0 32px; background: #fff; color: #111;
  border-radius: 8px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; white-space: nowrap;
  font-family: 'Roboto', sans-serif; transition: all 0.3s;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* 15. PRICING */
.pricing { background: #fafbfe; }
.pricing-grid { display: flex; gap: 30px; align-items: flex-start; }
.pricing-card {
  flex: 1; border-radius: 14px; padding: 42px 32px;
  border: 1px solid #f0f0f0; text-align: center;
  transition: all 0.35s; position: relative; background: #fff;
}
.pricing-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-6px); }
.pricing-card.featured {
  background: #6C63FF; border-color: #6C63FF;
  transform: scale(1.04);
  box-shadow: 0 25px 70px rgba(108,99,255,0.3);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #f59e0b; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.15em; margin-bottom: 22px; color: #111; }
.pricing-card.featured h3 { color: #fff; }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-size: 3.2em; font-weight: 900; color: #111; line-height: 1; }
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period { font-size: 14px; color: #aaa; margin-top: 4px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }
.pricing-features { list-style: none; margin-bottom: 32px; text-align: left; }
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px; display: flex; align-items: center; gap: 10px; color: #555;
}
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.88); }
.pricing-features li .fa-check { color: #6C63FF; }
.pricing-card.featured .pricing-features li .fa-check { color: #a5b4fc; }
.pricing-features li .fa-times { color: #ddd; }
.pricing-card:not(.featured) .btn { background: #f0efff; color: #6C63FF; width: 100%; }
.pricing-card:not(.featured) .btn:hover { background: #6C63FF; color: #fff; }
.pricing-card.featured .btn { background: #fff; color: #6C63FF; width: 100%; }
.pricing-card.featured .btn:hover { background: #f0efff; }

/* 16. CONTACT */
.contact { background: #fff; }
.contact-inner { display: flex; gap: 70px; align-items: flex-start; }
.contact-info { flex: 0 0 340px; }
.contact-info h3 { color: #111; margin-bottom: 16px; font-size: 1.6em; }
.contact-info > p { line-height: 1.85; margin-bottom: 35px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon {
  width: 46px; height: 46px; background: #f0efff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #6C63FF; font-size: 18px;
}
.contact-detail-text strong { display: block; color: #111; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.contact-detail-text span { font-size: 14px; color: #666; }
.contact-form-wrapper { flex: 1; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; color: #111; font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; height: 52px; border: 1px solid #e5e5e5;
  border-radius: 8px; padding: 0 18px; font-size: 15px;
  font-family: 'Roboto', sans-serif; color: #111;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none; background: #fafbfe;
  box-sizing: border-box;
}
.form-group textarea { height: 140px; padding: 16px 18px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: #6C63FF; box-shadow: 0 0 0 3px rgba(108,99,255,0.1); background: #fff; }
.form-submit button {
  padding: 15px 42px; font-size: 16px; font-weight: 700;
  background: #6C63FF; color: #fff; border: none; border-radius: 8px;
  cursor: pointer; font-family: 'Roboto', sans-serif; transition: all 0.3s;
}
.form-submit button:hover { background: #5549e0; box-shadow: 0 12px 30px rgba(108,99,255,0.35); transform: translateY(-2px); }

/* 17. FOOTER */
.site-footer { background: #1a191d; color: #b0b0b0; padding: 65px 0 0; }
.footer-top { display: flex; gap: 50px; margin-bottom: 55px; }
.footer-brand { flex: 0 0 270px; }
.footer-logo { font-size: 2em; font-weight: 900; color: #fff; margin-bottom: 16px; display: block; letter-spacing: -1px; }
.footer-brand > p { line-height: 1.85; font-size: 14px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #b0b0b0; font-size: 15px; transition: all 0.3s;
}
.footer-social a:hover { background: #6C63FF; color: #fff; transform: translateY(-3px); }
.footer-links-group { flex: 1; }
.footer-links-group h5 { color: #fff; font-size: 15px; margin-bottom: 22px; font-weight: 700; }
.footer-links-group ul li { margin-bottom: 12px; }
.footer-links-group ul li a { font-size: 14px; color: #b0b0b0; transition: color 0.3s; }
.footer-links-group ul li a:hover { color: #6C63FF; padding-left: 4px; }
.footer-store { flex: 0 0 190px; }
.footer-store h5 { color: #fff; font-size: 15px; margin-bottom: 22px; font-weight: 700; }
.footer-store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: rgba(255,255,255,0.08);
  border-radius: 10px; color: #fff; font-size: 14px;
  margin-bottom: 12px; transition: all 0.3s;
}
.footer-store-btn:hover { background: #6C63FF; transform: translateX(4px); }
.footer-store-btn i { font-size: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 14px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 14px; color: #b0b0b0; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }

/* 18. SCROLL TO TOP */
#scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; background: #6C63FF; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; opacity: 0; visibility: hidden;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(108,99,255,0.45); z-index: 999;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { transform: translateY(-4px); }

/* 19. SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* 20. RESPONSIVE */
@media (max-width: 1024px) {
  .banner-image { flex: 0 0 320px; }
  .features-col-center { flex: 0 0 200px; }
  .contact-info { flex: 0 0 280px; }
  .footer-top { flex-wrap: wrap; gap: 35px; }
  .footer-brand { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  h1, .banner-content h1 { font-size: 2.2em; line-height: 1.15; }
  h2 { font-size: 1.75em; }
  .banner-content p { font-size: 0.95em; line-height: 1.65; }
  section { padding: 60px 0; }

  /* mobile nav — drawer from left */
  .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0;
    width: 78%; max-width: 300px; height: 100vh;
    background: #fff; z-index: 1100;
    padding: 80px 24px 30px;
    gap: 0; overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  }
  .nav-menu.open { transform: translateX(0); }
  /* overlay behind drawer */
  .nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 1099;
    transition: opacity 0.35s;
  }
  .nav-overlay.open { display: block; }
  .nav-menu a { color: #333 !important; padding: 14px 0; border-bottom: 1px solid #f0f0f0; width: 100%; display: block; font-size: 15px; font-weight: 500; }
  .nav-menu a::after { display: none; }
  .nav-menu li:last-child a { border-bottom: none; }
  .nav-menu .nav-cta { background: #6C63FF !important; color: #fff !important; border-radius: 10px; text-align: center; margin-top: 16px; padding: 14px !important; border-bottom: none !important; }
  .nav-toggle { display: flex; }

  /* banner */
  .banner-inner { flex-direction: column; text-align: center; padding: 80px 16px 30px; gap: 30px; }
  .banner-content { order: 1; max-width: 100%; width: 100%; }
  .banner-image { display: none; }
  .banner-image img { max-height: 420px; width: auto; max-width: 100%; }
  .banner-content h1 { font-size: 1.75em; line-height: 1.15; margin-bottom: 12px; }
  .banner-content p { margin: 0 auto 25px; font-size: 0.95em; line-height: 1.6; max-width: 100%; }
  .banner-buttons { justify-content: center; }
  .banner-stats { justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* features */
  /* features — 2 colonnes comme PC, sans le téléphone central */
  .features-col-center { display: none; }
  .features-col-right .feature-item { flex-direction: row; text-align: left; }
  .feature-item { padding: 14px 12px; gap: 12px; }
  .feature-icon { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; flex-shrink: 0; }
  .feature-text h4 { font-size: 0.95em; }
  .feature-text p { font-size: 13px; }

  /* grids */
  .steps-grid,
  .testimonials-grid,
  .pricing-grid { flex-direction: column; }
  .pricing-card.featured { transform: none; }

  /* spotlight */
  .spotlight-inner,
  .spotlight.reverse .spotlight-inner { flex-direction: column; gap: 40px; }
  .spotlight-image { order: -1; width: 100%; }

  /* contact */
  .contact-inner { flex-direction: column; }
  .contact-info { flex: none; }
  .form-row { flex-direction: column; }

  /* footer */
  .footer-top { flex-direction: column; gap: 35px; }
  .footer-brand { flex: none; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .btn-store { padding: 10px 14px; font-size: 12px; }
  .btn-store i { font-size: 20px; }
  .banner-content h1 { font-size: 1.5em; line-height: 1.2; margin-bottom: 10px; }
  .banner-content p { font-size: 0.9em; margin-bottom: 20px; }
  .banner-badge { font-size: 10px; padding: 5px 12px; white-space: normal; word-break: break-word; }
  .banner-buttons { flex-direction: row; justify-content: center; flex-wrap: nowrap; gap: 10px; align-items: center; }
  .store-badge-link { flex: 0 0 auto; }
  .store-badge { height: 44px; width: auto; }
  .store-badge-apple { height: 44px; width: auto; }
  .banner-stats { gap: 10px; font-size: 0.85em; flex-wrap: wrap; justify-content: center; }
  .stat-item { min-width: 70px; text-align: center; }
  .stat-item .stat-number { font-size: 1.4em; }
  .stat-item .stat-label { font-size: 10px; }
  .banner-image { max-width: 210px; }
  .banner-image img { max-height: 340px; }
  .store-badge { height: 40px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .team-grid { gap: 25px; }
}

/* ── Responsive enhancements ── */
*, *::before, *::after { box-sizing: border-box; }

/* Pricing cards full width when stacked */
@media (max-width: 768px) {
  .pricing-card { width: 100%; max-width: 420px; margin: 0 auto; }
  .pricing-grid { align-items: stretch; }

  /* Contact info full width */
  .contact-info { width: 100%; }
  .contact-form-wrapper { width: 100%; }

  /* FAQ question wraps */
  .faq-question { font-size: 15px; line-height: 1.5; }

  /* Spotlight text */
  .spotlight-content { padding: 0; }
  .spotlight-title { font-size: 1.6em; }

  /* Stats wrap */
  .stats-row { flex-wrap: wrap; gap: 20px; }
  .stat-item { min-width: 120px; }

  /* How-it-works steps full width */
  .step-card { width: 100%; }

  /* Team card full width */
  .team-card { width: calc(50% - 15px); }

  /* Screenshots touch scroll */
  .screenshots-scroll { -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .screenshots-grid .screenshot-item { scroll-snap-align: start; }

  /* Section padding */
  .features, .how-it-works, .pricing, .contact, .testimonials, .team, .screenshots, .newsletter, .faq { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-title h2 { font-size: 1.75em; }
  .section-title p { font-size: 15px; }

  /* Form full width */
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; }
}

@media (max-width: 480px) {
  .team-card { width: 100%; }
  .pricing-card { max-width: 100%; }
  .section-title h2 { font-size: 1.5em; }
  .spotlight-title { font-size: 1.4em; }
  .contact-info { padding: 24px; }
  .form-group input, .form-group textarea, .form-group select { height: 48px; }
  .form-group textarea { height: 120px; }
  .footer-links { flex-direction: column; gap: 6px; }
}
