/* ══════════════════════════════════════════════════════
   BODYFIX — SHARED STYLESHEET
   Brand: bodyfix.nl | Bindweefselmassage Amsterdam
   Extracted from app.css + Rebrandingplan 2026
   ══════════════════════════════════════════════════════ */

/* ─── Brand Tokens ─── */
:root {
  --pink: #E75784;
  --pink-light: #E799B1;
  --pink-dark: #b2204f;
  --pink-bg: rgba(231, 87, 132, 0.06);
  --grey: #4B4B4B;
  --grey-light: #F3F3F3;
  --grey-mid: #999;
  --white: #ffffff;
  --black: #1a1a1a;

  --btn-gradient: linear-gradient(to right, #b2204f 0%, #f05b89 51%, #b2204f 100%);

  --font-heading: 'Muli', 'Segoe UI', sans-serif;
  --font-body: 'Muli', 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --max-w: 1100px;
  --max-w-narrow: 780px;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--grey);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--pink-dark); }
strong, b { font-weight: 700; }
ul, ol { list-style: none; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: padding 0.4s var(--ease-out);
}
.nav.scrolled { padding: 0.6rem 3rem; }
.nav__logo img { height: 36px; width: auto; transition: height 0.3s var(--ease-out); }
.nav.scrolled .nav__logo img { height: 28px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  transition: color 0.3s ease;
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--pink); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: var(--white);
  border: 1px solid var(--pink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.nav__cta:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(231,87,132,0.3);
  color: var(--white);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grey);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }

/* ══════════════════════════════════════
   HERO SECTIONS
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #2a2a2a;
}
.hero--full { min-height: 100vh; }
.hero--short { min-height: 50vh; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-narrow);
  padding: 2rem;
  color: var(--white);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(231,87,132,0.25);
  border: 1px solid rgba(231,87,132,0.4);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  animation: fadeSlideIn 0.8s var(--ease-out) 0.2s both;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeSlideIn 0.8s var(--ease-out) 0.4s both;
}
.hero__title em { font-style: normal; color: var(--pink); }
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  animation: fadeSlideIn 0.8s var(--ease-out) 0.6s both;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  animation: fadeSlideIn 0.8s var(--ease-out) 0.8s both;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: var(--white);
  border: 1px solid var(--pink);
}
.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(231,87,132,0.35);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--grey);
  border: 1px solid rgba(75,75,75,0.2);
}
.btn--outline-dark:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn--sm { font-size: 12px; padding: 10px 22px; }
.btn--lg { font-size: 15px; padding: 16px 40px; }
.btn--block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--grey); color: var(--white); }
.section--centered { text-align: center; }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__narrow { max-width: var(--max-w-narrow); margin: 0 auto; }

.section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.section--dark .section__label { color: var(--pink-light); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--grey);
  margin-bottom: 0.4rem;
}
.section__title em { font-style: normal; color: var(--pink); }
.section--dark .section__title { color: var(--white); }

/* Decorative pink line */
.section__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 0.85rem;
}
.section--centered .section__title::after { margin-left: auto; margin-right: auto; }

.section__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  opacity: 0.7;
  max-width: 560px;
  margin-top: 0.75rem;
}
.section--centered .section__desc { margin-left: auto; margin-right: auto; }
.section--dark .section__desc { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   CARD SYSTEM
   ══════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2rem;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--dark {
  background: var(--grey);
  color: var(--white);
  border: none;
}
.card--pink-accent { border-top: 3px solid var(--pink); }
.card--no-hover:hover { transform: none; box-shadow: none; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--pink-bg);
  margin-bottom: 1.25rem;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.card--dark .card__title { color: var(--white); }
.card__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
}

/* ══════════════════════════════════════
   GRID LAYOUTS
   ══════════════════════════════════════ */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }
.grid--gap-lg { gap: 2.5rem; }
.grid--gap-xl { gap: 4rem; }
.grid--align-center { align-items: center; }

/* ══════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════ */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.1rem 2rem;
  background: var(--grey-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.proof-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  opacity: 0.6;
}
.proof-strip__dot {
  width: 5px; height: 5px;
  background: var(--pink);
  border-radius: 50%;
}

/* ══════════════════════════════════════
   PRICING TABLES
   ══════════════════════════════════════ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.price-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.5;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.price-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--pink);
}
.price-table .price--old {
  text-decoration: line-through;
  opacity: 0.4;
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 0.4rem;
}

/* ══════════════════════════════════════
   PACKAGE CARDS
   ══════════════════════════════════════ */
.pkg {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg--featured {
  border: 2px solid var(--pink);
  position: relative;
}
.pkg--featured::before {
  content: 'Populair';
  position: absolute;
  top: 0; right: 1.5rem;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px 6px;
  border-radius: 0 0 8px 8px;
}
.pkg__header {
  padding: 1.5rem 1.5rem 0;
}
.pkg__level {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.3rem;
}
.pkg__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--grey);
}
.pkg__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--grey);
  padding: 0.75rem 1.5rem;
}
.pkg__price span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.4;
}
.pkg__body {
  padding: 0 1.5rem 1.5rem;
}
.pkg__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}
.pkg__list li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg__footer {
  padding: 0 1.5rem 1.5rem;
}

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-item__q:hover { color: var(--pink); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease;
  opacity: 0;
}
.faq-item.open .faq-item__a { max-height: 400px; opacity: 1; }
.faq-item__a p {
  padding-bottom: 1.2rem;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 600px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.section--grey .testimonial { background: var(--white); }
.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.12;
  position: absolute;
  top: 0.75rem; right: 1.25rem;
}
.testimonial__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 0.6rem; }
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--btn-gradient);
  background-size: 200% auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.testimonial__name { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.testimonial__meta { font-size: 11px; opacity: 0.5; }

/* ══════════════════════════════════════
   STEPS
   ══════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-light), transparent);
}
.step { text-align: center; }
.step__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--pink);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.step:hover .step__num {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(231,87,132,0.3);
}
.step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.step__text { font-size: 14px; font-weight: 300; line-height: 1.7; opacity: 0.65; }

/* ══════════════════════════════════════
   CHECK LIST
   ══════════════════════════════════════ */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.check-list li:last-child { border-bottom: none; }
.check-list__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.check-list__label { font-weight: 700; font-size: 15px; }
.check-list__desc { font-size: 13px; opacity: 0.6; line-height: 1.6; }

/* ══════════════════════════════════════
   TABS
   ══════════════════════════════════════ */
.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab:hover { border-color: var(--pink); color: var(--pink); }
.tab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  color: var(--white);
  background: var(--grey);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(75,75,75,0.65));
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner .section__title { color: var(--white); }
.cta-banner .section__title::after { background: var(--pink); }
.cta-banner__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 12px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--grey);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 1.5rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand img { height: 32px; margin-bottom: 1rem; filter: brightness(10); }
.footer__brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer__heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--pink-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   TAG / BADGE
   ══════════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--pink-bg);
  color: var(--pink);
}

/* ══════════════════════════════════════
   UTILITY
   ══════════════════════════════════════ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-pink { color: var(--pink); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-center { text-align: center; }
.text-muted { opacity: 0.5; }
.fw-700 { font-weight: 700; }
.max-w-narrow { max-width: var(--max-w-narrow); margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════ */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.25rem; }
  .nav.scrolled { padding: 0.5rem 1.25rem; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    gap: 0.75rem;
  }
  .nav__toggle { display: block; }
  .nav__cta { font-size: 12px; padding: 8px 18px; }

  .hero { min-height: 80vh; }
  .hero--short { min-height: 45vh; }
  .hero__title { font-size: 2rem; }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }

  .section { padding: 3.5rem 1.25rem; }
  .grid--2, .grid--3, .grid--4, .grid--2-1, .grid--1-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .steps::before { display: none; }

  .proof-strip {
    gap: 1rem;
    font-size: 9px;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .cta-banner { padding: 3rem 1.5rem; border-radius: var(--radius); }
  .cta-banner__trust { flex-direction: column; gap: 0.3rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .tabs { gap: 0.3rem; }
  .tab { font-size: 11px; padding: 8px 14px; }
}
