/* ==========================================
   SAUTI AGENCY — Feuille de style principale
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --purple: #30258F;
  --pink: #E51A91;
  --cyan: #6B4AE6;
  --orange: #FF4FB3;
  --gradient: linear-gradient(135deg, #30258F 0%, #6B4AE6 45%, #E51A91 100%);
  --white: #FFFFFF;
  --light-bg: #F4F7FB;
  --dark-text: #101828;
  --card-shadow: 0 14px 34px rgba(48, 37, 143, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark-text); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

/* === GLOBAL === */
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 500px;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

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

.section-dark {
  background: var(--gradient);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2,
.section-header h3 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.section-header p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: rgba(26, 26, 46, 0.75);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.underline {
  width: 60px;
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: var(--gradient);
}

.section-dark .underline,
.hero-copy .underline,
.page-hero-copy .underline {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 50px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px rgba(229, 26, 145, 0.13), 0 18px 40px rgba(48, 37, 143, 0.24);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(229, 26, 145, 0.24);
  outline-offset: 2px;
}

.btn-light {
  background: var(--white);
  color: var(--purple);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn-inline {
  width: fit-content;
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: rgba(48, 37, 143, 0.28);
}

.btn-outline-purple:hover,
.btn-outline-purple:focus-visible {
  background: rgba(229, 26, 145, 0.08);
  color: var(--purple);
}

.card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
  border: 1px solid rgba(48, 37, 143, 0.08);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 26, 145, 0.36);
  box-shadow: 0 22px 48px rgba(48, 37, 143, 0.16);
}

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.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;
}

/* === NAVBAR === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.navbar {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark img {
  height: clamp(76px, 8vw, 88px);
  width: auto;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 104px 0 auto 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.nav-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 0.7rem 0;
  color: var(--purple);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* === HERO === */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  background: var(--gradient);
  color: var(--white);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-orb {
  position: absolute;
  right: -30px;
  top: 30px;
  width: clamp(180px, 28vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 55%, transparent 70%);
  animation: floatOrb 6s ease-in-out infinite;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 110px;
}

.page-hero {
  min-height: 300px;
  display: grid;
  align-items: center;
  text-align: center;
}

.page-hero-short {
  min-height: 280px;
}

.page-hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-hero-copy p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

/* === STATS === */
.stats-strip {
  padding: 1.5rem 0 3.5rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-item {
  padding: 1.7rem 1.2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  color: var(--purple);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(26, 26, 46, 0.8);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.about-copy .underline {
  margin-left: 0;
}

.about-copy p + p {
  margin-top: 1rem;
}

.mission-card {
  padding: 2rem;
  color: var(--white);
  background: var(--gradient);
}

.mission-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

/* === SERVICES === */
.services-grid,
.testimonials-grid,
.benefits-grid,
.offers-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card,
.testimonial-card,
.benefit-card,
.offer-card {
  height: 100%;
}

.service-card {
  padding: 2rem;
}

.service-icon,
.benefit-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(48, 37, 143, 0.1), rgba(229, 26, 145, 0.12));
  margin-bottom: 1.25rem;
}

.service-icon {
  color: var(--purple);
}

.benefit-icon {
  color: var(--purple);
}

.service-icon svg,
.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3,
.benefit-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.service-card p,
.benefit-card p {
  margin-bottom: 1.5rem;
  color: rgba(26, 26, 46, 0.8);
}

/* === PROCESS === */
.process-wrap {
  position: relative;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(255, 255, 255, 0.38);
  display: none;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.2rem;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.8);
}

/* === TESTIMONIALS === */
.testimonial-card {
  padding: 2rem;
}

.avatar {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 1.02rem;
  color: rgba(26, 26, 46, 0.84);
}

.testimonial-card cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  color: var(--purple);
  font-weight: 500;
}

/* === PARTNERS === */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.partner-box {
  width: 160px;
  height: 70px;
  border-radius: 8px;
  background: var(--light-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 46, 0.45);
  border: 1px solid rgba(48, 37, 143, 0.08);
  font-weight: 500;
}

/* === CTA === */
.cta-panel {
  text-align: center;
}

.cta-panel p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* === FILTER BAR === */
.filter-shell {
  position: relative;
  margin-top: -3rem;
}

.filter-bar {
  padding: 1.4rem;
}

.filter-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 500;
  color: var(--purple);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(48, 37, 143, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--dark-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(229, 26, 145, 0.1);
  outline: none;
}

.field-error input,
.field-error select,
.field-error textarea,
.upload-zone.field-error {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 4px rgba(229, 26, 145, 0.1);
}

.filter-actions {
  align-self: end;
}

/* === OFFERS === */
.offers-section {
  padding-top: 2rem;
}

.offer-card {
  overflow: hidden;
}

.offer-band {
  height: 8px;
  background: var(--gradient);
}

.offer-content {
  padding: 1.7rem;
}

.offer-company {
  color: var(--purple);
  font-weight: 700;
}

.offer-title {
  margin-top: 0.45rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(48, 37, 143, 0.08);
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 500;
}

.offer-meta {
  margin-bottom: 0.75rem;
  color: rgba(26, 26, 46, 0.68);
  font-weight: 500;
}

.offer-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(26, 26, 46, 0.82);
  margin-bottom: 1.5rem;
}

.offer-card[hidden],
.offer-card[data-page-hidden] {
  display: none !important;
}

.offers-empty-message {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
}

.offer-detail-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.offer-detail-main,
.offer-detail-aside {
  padding: 2rem;
}

.offer-detail-main:hover,
.offer-detail-aside:hover {
  transform: none;
}

.offer-detail-main {
  display: grid;
  gap: 1.5rem;
}

.offer-detail-kicker {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.offer-detail-title {
  color: var(--purple);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.offer-detail-company {
  color: rgba(26, 26, 46, 0.74);
  font-size: 1.08rem;
}

.offer-detail-section {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(48, 37, 143, 0.1);
}

.offer-detail-section h2,
.offer-detail-section h3 {
  color: var(--purple);
  font-size: 1.25rem;
}

.offer-detail-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.offer-detail-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(26, 26, 46, 0.82);
}

.offer-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.offer-detail-aside {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 1.1rem;
}

.offer-fact-grid {
  display: grid;
  gap: 0.85rem;
}

.offer-fact {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(48, 37, 143, 0.06);
}

.offer-fact span {
  display: block;
  color: rgba(26, 26, 46, 0.62);
  font-size: 0.9rem;
}

.offer-fact strong {
  display: block;
  color: var(--purple);
  margin-top: 0.2rem;
}

.offer-detail-actions {
  display: grid;
  gap: 0.75rem;
}

.offer-detail-actions .btn {
  width: 100%;
}

.offer-back-link {
  color: var(--purple);
  font-weight: 700;
  width: fit-content;
}

.offer-back-link:hover {
  color: var(--pink);
}

.pagination {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.page-link {
  min-width: 46px;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(48, 37, 143, 0.12);
  background: var(--white);
  color: var(--purple);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-link.active,
.page-link:hover:not(:disabled):not(.disabled) {
  background: var(--gradient);
  color: var(--white);
}

.page-link:disabled,
.page-link.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* === FORMS === */
.form-section {
  padding-top: 3rem;
}

.form-card {
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two-columns {
  grid-template-columns: 1fr;
}

.full-width {
  grid-column: 1 / -1;
}

.upload-zone {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  border: 2px dashed rgba(48, 37, 143, 0.24);
  border-radius: 16px;
  background: rgba(48, 37, 143, 0.04);
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--pink);
  background: rgba(229, 26, 145, 0.06);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 1.8rem;
  color: var(--purple);
}

.upload-text {
  margin-top: 0.5rem;
  font-weight: 500;
}

.upload-note,
.upload-filename {
  color: rgba(26, 26, 46, 0.68);
  font-size: 0.95rem;
}

.upload-filename {
  margin-top: 0.6rem;
  color: var(--pink);
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(26, 26, 46, 0.78);
}

.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--purple);
  flex: 0 0 auto;
}

.reassurance-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.reassurance-item {
  text-align: center;
  padding: 1.3rem;
}

.reassurance-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(48, 37, 143, 0.1), rgba(229, 26, 145, 0.12));
  color: var(--purple);
}

.reassurance-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reassurance-item strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--purple);
}

/* === BENEFITS === */
.benefit-card {
  padding: 2rem;
}

/* === CONFIRMATION === */
.confirmation-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fbfbff 0%, #f2f0ff 100%);
}

.confirmation-card {
  width: min(620px, calc(100% - 2rem));
  padding: 3rem 2rem;
  text-align: center;
}

.confirmation-check {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 2.5rem;
  animation: scaleIn 0.7s ease both;
}

.confirmation-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--purple);
}

.confirmation-card p {
  margin: 1rem auto 2rem;
  max-width: 440px;
  color: rgba(26, 26, 46, 0.78);
}

/* === FOOTER === */
.site-footer {
  background: var(--purple);
  color: var(--white);
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  height: clamp(62px, 7vw, 74px);
  width: auto;
}

.footer-brand p,
.footer-contact p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-contact a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-link:hover {
  color: #ff9bd5;
}

.social-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

/* === ANIMATIONS === */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.03); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .stats-grid,
  .reassurance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .about-grid,
  .services-grid,
  .testimonials-grid,
  .offers-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    inset: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
  }

  .offer-detail-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-copy {
    padding-right: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .services-grid,
  .testimonials-grid,
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid::before {
    display: block;
  }

  .filter-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
