/* ===================================================================
   MAGIK CLEAN — Hoja de estilos
   Paleta fresca y profesional (teal/aqua) — rubro limpieza
   =================================================================== */

:root {
  /* Colores de marca: #0ab0eb (celeste) · #0279d8 (azul) · #63d000 (verde) */
  --teal-900: #024f8c;
  --teal-700: #0279d8;
  --teal-600: #0890e2;
  --teal-500: #0ab0eb;
  --aqua-400: #3ec6f2;
  --aqua-200: #a9e3f8;
  --aqua-50:  #eaf6fe;

  --ink-900: #0c1f33;
  --ink-700: #273b4f;
  --ink-500: #51677d;
  --ink-300: #90a2b3;

  --paper:   #ffffff;
  --mist:    #f4f9fc;
  --mist-2:  #e6f1fa;
  --line:    #e0ebf3;

  --green:   #63d000;
  --green-dk:#4fa800;
  --wa:      #25d366;
  --star:    #ffb000;

  /* Tipografía */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-head: 'Sora', 'Plus Jakarta Sans', sans-serif;

  /* Sistema */
  --radius:   16px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(13, 36, 48, .06);
  --shadow:    0 16px 40px rgba(13, 36, 48, .10);
  --shadow-lg: 0 30px 70px rgba(10, 125, 140, .18);
  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--primary { background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); color: #fff; box-shadow: 0 12px 28px rgba(14, 147, 164, .35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(14, 147, 164, .45); }
.btn--ghost { background: var(--aqua-50); color: var(--teal-700); border: 1.5px solid var(--mist-2); }
.btn--ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--white { background: #fff; color: var(--teal-700); box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.btn--white:hover { transform: translateY(-3px); }
.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }

.text-gradient { background: linear-gradient(110deg, var(--teal-700), var(--teal-500) 55%, var(--green)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.header__logo { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-weight: 600; font-size: 15.5px; color: var(--ink-700); position: relative; transition: color .2s; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--teal-500); transition: width .25s var(--ease); border-radius: 2px; }
.nav__link:hover { color: var(--teal-700); }
.nav__link:hover::after { width: 100%; }
.nav__cta { background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); color: #fff; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: transform .25s var(--ease), box-shadow .25s; box-shadow: 0 8px 20px rgba(14,147,164,.3); }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,147,164,.4); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink-900); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 85% 0%, var(--aqua-50), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, #eefafb, transparent 55%),
    linear-gradient(180deg, #fbfeff, #ffffff);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--mist-2); color: var(--teal-700);
  padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.badge i { color: var(--teal-500); }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
.hero__lead { font-size: 19px; color: var(--ink-500); max-width: 540px; margin-bottom: 32px; }
.hero__lead strong { color: var(--teal-700); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--ink-700); }
.hero__trust i { color: var(--green); }

.hero__visual { position: relative; }
.hero__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero__floating {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.hero__floating i { font-size: 22px; color: var(--teal-500); }
.hero__floating strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--ink-900); line-height: 1.1; }
.hero__floating span { font-size: 12.5px; color: var(--ink-500); }
.hero__floating--1 { top: 26px; left: -28px; }
.hero__floating--1 i { color: var(--star); }
.hero__floating--2 { bottom: 30px; right: -22px; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== STATS ===== */
.stats { padding: 20px 0 40px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow-lg);
}
.stat { text-align: center; color: #fff; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -10px; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.2); }
.stat__num, .stat__suffix { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: #fff; }
.stat__label { font-size: 14.5px; color: var(--aqua-200); margin-top: 4px; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--mist); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.eyebrow i { color: var(--teal-500); }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.section__sub { font-size: 18px; color: var(--ink-500); }
.section__cta { text-align: center; margin-top: 48px; }

/* ===== CARDS SERVICIOS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--teal-700); font-weight: 700; font-size: 12.5px; padding: 6px 14px; border-radius: 999px; }
.card__body { padding: 26px 24px 30px; }
.card__title { font-size: 1.3rem; display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.card__title i { color: var(--teal-500); font-size: 1.2em; }
.card__body > p { color: var(--ink-500); font-size: 15.5px; margin-bottom: 18px; }
.card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; padding: 8px 0; border-top: 1px dashed var(--line); color: var(--ink-700); }
.card__list i { color: var(--green); margin-top: 5px; font-size: 13px; }
.card__list span { color: var(--teal-700); font-weight: 700; white-space: nowrap; }

/* ===== FEATURES ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--aqua-200); }
.feature__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--aqua-50), var(--mist-2)); display: grid; place-items: center; margin-bottom: 18px; transition: transform .35s var(--ease), background .35s var(--ease); }
.feature:hover .feature__icon { transform: translateY(-2px) scale(1.06) rotate(-3deg); background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.feature__icon i { font-size: 24px; color: var(--teal-600); transition: color .35s var(--ease); }
.feature:hover .feature__icon i { color: #fff; }
.feature__title { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-500); }

/* ===== BENEFITS ===== */
.benefits { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.benefits__media { position: relative; }
.benefits__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.benefits__badge { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); background: #fff; padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; color: var(--ink-900); white-space: nowrap; }
.benefits__badge i { color: var(--green); font-size: 20px; }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; }
.benefit { display: flex; gap: 14px; padding: 4px; border-radius: var(--radius-sm); transition: transform .3s var(--ease); }
.benefit:hover { transform: translateX(4px); }
.benefit > i { font-size: 22px; color: var(--teal-500); margin-top: 3px; flex-shrink: 0; transition: transform .3s var(--ease); }
.benefit:hover > i { transform: scale(1.18); }
.benefit h3 { font-size: 1.02rem; margin-bottom: 3px; }
.benefit p { font-size: 14px; color: var(--ink-500); }

/* ===== AUDIENCE ===== */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.audience__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 30px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.audience__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.audience__card > i { font-size: 38px; color: var(--teal-500); margin-bottom: 18px; }
.audience__card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.audience__card p { color: var(--ink-500); font-size: 15px; }

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about__content > p { font-size: 17px; color: var(--ink-500); margin: 18px 0 26px; }
.about__content strong { color: var(--teal-700); }
.about__mv { display: grid; gap: 18px; }
.mv { background: var(--mist); border-left: 4px solid var(--teal-500); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 24px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.mv:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-left-color: var(--green); }
.mv h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.mv h3 i { color: var(--teal-500); }
.mv p { font-size: 15px; color: var(--ink-500); }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial__stars { color: var(--star); margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial blockquote { font-size: 16px; color: var(--ink-700); line-height: 1.7; margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-600), var(--aqua-400)); color: #fff !important; -webkit-text-fill-color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.testimonial figcaption strong { display: block; font-family: var(--font-head); color: var(--ink-900); font-size: 15px; }
.testimonial figcaption span { font-size: 13px; color: var(--ink-300); }

/* ===== CLIENTS ===== */
.clients { padding: 70px 0; }
.clients__title { text-align: center; color: var(--ink-300); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 34px; }
.clients__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 14px; }
.clients__logos span {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink-500);
  background: var(--mist); border: 1px solid var(--line); padding: 12px 22px; border-radius: 12px;
  transition: color .25s, border-color .25s, transform .25s;
}
.clients__logos span:hover { color: var(--teal-700); border-color: var(--aqua-200); transform: translateY(-3px); }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--aqua-200); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q i { color: var(--teal-500); font-size: 16px; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq__item[open] .faq__q i { transform: rotate(45deg); }
.faq__a { padding: 0 24px 22px; }
.faq__a p { color: var(--ink-500); font-size: 15.5px; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 80px 0; }
.cta-final__inner {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg); padding: 56px 56px; color: #fff;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-final__inner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(56,214,223,.3), transparent 70%); }
.cta-final__content { position: relative; }
.cta-final__content h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-final__content p { color: var(--aqua-200); font-size: 18px; margin-bottom: 28px; max-width: 520px; }
.cta-final__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-final__card { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px); }
.cta-final__card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.cta-final__card ul { display: grid; gap: 13px; }
.cta-final__card li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: #e7f7f9; }
.cta-final__card li i { color: var(--aqua-400); width: 18px; }
.cta-final__card a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--ink-900); color: #c3d2d8; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 70px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { font-size: 14.5px; color: #93a6ad; max-width: 320px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--teal-600); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; color: #93a6ad; transition: color .2s; }
.footer__col a:hover { color: var(--aqua-400); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #93a6ad; margin-bottom: 11px; }
.footer__contact i { color: var(--teal-500); margin-top: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-size: 13.5px; color: #7e9299; }
.footer__bottom a { color: var(--aqua-400); font-weight: 600; }
.footer__bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; color: #fff; font-size: 30px;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .cards, .testimonials, .audience { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .benefits, .about { grid-template-columns: 1fr; gap: 40px; }
  .benefits__media, .about__media { max-width: 520px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-final__inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 36px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(82vw, 340px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 32px; gap: 6px; box-shadow: -20px 0 60px rgba(0,0,0,.12);
    transition: right .4s var(--ease); z-index: 105;
  }
  .nav.open { right: 0; }
  .nav__link { font-size: 18px; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 16px; width: 100%; justify-content: center; padding: 15px; }
  .nav__toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(13,36,48,.5); z-index: 95; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-overlay.show { opacity: 1; visibility: visible; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; padding: 34px 22px; }
  .stat:nth-child(2)::after { display: none; }
  .stat:not(:last-child)::after { display: none; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 120px 0 60px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .hero__floating--1 { left: 6px; }
  .hero__floating--2 { right: 6px; }
  .cards, .testimonials, .audience, .features, .benefits__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-final__inner { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
