/* ========================================
   SYNAPSS — Site vitrine v3
   Palette: #9270E0, #D46B93, #F2C992, #96E2A6, #545F71, #1a1a2e
   Fonts: Inter + DM Serif Display
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #574F71;
  background: #F8F8F6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.visible.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.visible.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.visible.delay-4 { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(87,79,113,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(26,26,46,0.06); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s;
}

.nav-logo:hover { transform: scale(1.02); }
.nav-logo svg { width: 30px; height: 30px; }

.nav-logo span {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: #574F71;
  transition: color 0.15s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #9270E0;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: #9270E0; }

.nav-cta {
  padding: 8px 18px;
  background: transparent;
  color: #9270E0 !important;
  border: 1.5px solid rgba(146,112,224,0.35);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  background: #9270E0;
  color: #FFFFFF !important;
  border-color: #9270E0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(146,112,224,0.25);
}

.nav-burger {
  display: none;
  background: none;
  padding: 4px;
  color: #1a1a2e;
}

.nav-burger svg { width: 24px; height: 24px; }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 20px;
  color: #1a1a2e;
  font-weight: 500;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  color: #1a1a2e;
  font-size: 28px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  padding: 10px 22px;
  background: #9270E0;
  color: #FFFFFF;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  background: #7F5DD3;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(146,112,224,0.3);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-secondary {
  padding: 10px 22px;
  background: transparent;
  color: #574F71;
  border: 1.5px solid rgba(87,79,113,0.18);
  border-radius: 7px;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  background: #F8F8F6;
  border-color: rgba(87,79,113,0.25);
  color: #574F71;
  transform: translateY(-1px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  text-align: center;
  padding: 80px 32px 64px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(146,112,224,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,107,147,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #EEEDFE;
  border-radius: 24px;
  font-size: 12px;
  color: #3C3489;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto 20px;
  letter-spacing: -1px;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 em { font-style: normal; color: #9270E0; }

.hero-sub {
  font-size: 16px;
  color: #574F71;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
  animation: fadeUp 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-proof {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(87,79,113,0.45);
  animation: fadeIn 0.6s 0.5s both;
}

/* ========================================
   KPI SECTION
   ======================================== */
.kpi-section { padding: 64px 32px; }

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #9270E0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.kpi-card {
  background: #FFFFFF;
  border: 1px solid rgba(87,79,113,0.08);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}

.kpi-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #9270E0;
  letter-spacing: -0.5px;
  font-style: italic;
}

.kpi-value.pink { color: #D46B93; }
.kpi-value.green { color: #1D9E75; }
.kpi-value.amber { color: #BA7517; }

.kpi-label {
  font-size: 13px;
  color: #574F71;
  margin-top: 8px;
  line-height: 1.5;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-section {
  padding: 64px 32px;
  background: #FFFFFF;
}

.pain-sub {
  text-align: center;
  font-size: 15px;
  color: #574F71;
  margin-top: -28px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

.pain-card {
  background: #F8F8F6;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26,26,46,0.05);
}

.pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.15s;
}

.pain-card:hover .pain-icon { transform: scale(1.08); }

.pain-icon svg { width: 20px; height: 20px; }

.pain-icon.purple { background: #EEEDFE; color: #534AB7; }
.pain-icon.pink { background: #FBEAF0; color: #993556; }
.pain-icon.green { background: #E1F5EE; color: #0F6E56; }
.pain-icon.amber { background: #FAEEDA; color: #854F0B; }

.pain-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 14px;
  color: #574F71;
  line-height: 1.6;
}

/* ========================================
   HOW SECTION
   ======================================== */
.how-section { padding: 64px 32px; }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(87,79,113,0.08);
  border-radius: 14px;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}

.how-step:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(26,26,46,0.05);
}

.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EEEDFE;
  color: #534AB7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.how-step:hover .how-num {
  background: #9270E0;
  color: #FFFFFF;
}

.how-text h3 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.how-text p {
  font-size: 14px;
  color: #574F71;
  line-height: 1.6;
}

/* ========================================
   INTEGRATION SECTION
   ======================================== */
.integration-section {
  padding: 64px 32px;
  background: #FFFFFF;
  text-align: center;
}

.integration-sub {
  font-size: 15px;
  color: #574F71;
  margin-top: -28px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.integration-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  align-items: stretch;
}

.integration-col {
  background: #F8F8F6;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}

.integration-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}

.integration-col-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.integration-col-icon svg { width: 24px; height: 24px; }
.integration-col-icon.purple { background: #EEEDFE; color: #534AB7; }
.integration-col-icon.green { background: #E1F5EE; color: #0F6E56; }

.integration-col h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.integration-col p {
  font-size: 14px;
  color: #574F71;
  line-height: 1.6;
}

.integration-or {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  align-self: center;
}

.integration-or span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EEEDFE;
  color: #534AB7;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   FINANCEURS SECTION
   ======================================== */
.financeurs-section {
  padding: 64px 32px;
  background: #F8F8F6;
  text-align: center;
}

.financeurs-sub {
  font-size: 15px;
  color: #574F71;
  margin-top: -28px;
  margin-bottom: 28px;
}

.financeur-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 0 auto;
}

.financeur-tag {
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.financeur-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.financeur-tag svg { width: 15px; height: 15px; }

.tag-ft { background: #EEEDFE; color: #3C3489; }
.tag-cpf { background: #E6F1FB; color: #0C447C; }
.tag-opco { background: #FAEEDA; color: #633806; }
.tag-region { background: #E1F5EE; color: #085041; }
.tag-entreprise { background: #F1EFE8; color: #444441; }
.tag-personnel { background: #FBEAF0; color: #72243E; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { padding: 64px 32px; text-align: center; background: #FFFFFF; }

.cta-card {
  background: #1a1a2e;
  border-radius: 20px;
  padding: 56px 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(146,112,224,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,107,147,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 26px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
}

.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-card .btn-primary {
  font-size: 14px;
  padding: 12px 26px;
  position: relative;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1a1a2e;
  padding: 64px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo svg { width: 30px; height: 30px; }

.footer-brand-logo span {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-brand .btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.footer-brand .btn-footer-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

.footer-brand .btn-footer-cta svg { width: 14px; height: 14px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
}

.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  transition: color 0.15s;
}

.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding: 80px 32px 64px;
  background: #FFFFFF;
}

.contact-container {
  max-width: 480px;
  margin: 0 auto;
}

.contact-container h1 {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-container .subtitle {
  font-size: 15px;
  color: #574F71;
  margin-bottom: 36px;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #574F71;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(87,79,113,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1a2e;
  background: #FFFFFF;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #9270E0;
  box-shadow: 0 0 0 3px rgba(146,112,224,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 11px;
  background: #9270E0;
  color: #FFFFFF;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
  background: #7F5DD3;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(146,112,224,0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(87,79,113,0.5);
  margin-top: 16px;
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */
.how-page-section { padding: 80px 32px 64px; background: #FFFFFF; }

.how-page-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
}

.how-page-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #F8F8F6;
  border-radius: 16px;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}

.how-page-step:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(26,26,46,0.05);
}

.how-page-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #9270E0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.how-page-step:hover .how-page-num { transform: scale(1.08); }

.how-page-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.how-page-text p {
  font-size: 14px;
  color: #574F71;
  line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; text-align: center; }

  .kpi-section, .pain-section, .how-section, .financeurs-section, .cta-section, .integration-section { padding: 48px 20px; }
  .section-heading { font-size: 22px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-value { font-size: 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-sub { margin-top: -20px; }
  .financeurs-sub { margin-top: -20px; }
  .integration-sub { margin-top: -20px; }

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

  .integration-or span {
    width: 36px; height: 36px;
    font-size: 12px;
  }

  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 22px; }

  .contact-section { padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .how-page-section { padding: 48px 20px; }
  .how-page-step { flex-direction: column; gap: 16px; padding: 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .kpi-grid { gap: 10px; }
  .kpi-card { padding: 20px 12px; }
  .kpi-value { font-size: 24px; }
  .kpi-label { font-size: 12px; }
}
