:root {
  --ink: #12262c;
  --ink-soft: #3d555c;
  --navy: #0b3d4a;
  --navy-deep: #082e38;
  --teal: #0e7a9c;
  --teal-dark: #0a6280;
  --teal-bright: #30a8d8;
  --aqua: #e7f4f8;
  --aqua-2: #cfe8f0;
  --sand: #f4efe6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #b8893a;
  --gold-soft: #f3e6c8;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0e7368;
  --cta: #e07a22;
  --cta-hover: #c45f12;
  --line: #d7e4e1;
  --danger: #b54a3c;
  --shadow: 0 12px 40px rgba(11, 61, 74, 0.08);
  --radius: 18px;
  --max: 1180px;
  --header: 86px;
  --font: "Outfit", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.22;
  font-weight: 560;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); margin: 1.4em 0 0.55em; }
h3 { font-size: 1.18rem; margin: 1.15em 0 0.4em; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.topbar {
  background: #000;
  color: #cfcfcf;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cfcfcf; text-decoration: none; }
.topbar a:hover { color: #fff; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: #000;
  border-bottom: 1px solid #1c1c1c;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header); gap: 18px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img {
  height: 58px;
  width: auto;
  max-width: min(260px, 58vw);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav, .mega, .submenu { margin: 0; padding: 0; list-style: none; }
.nav > li > a, .nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px; color: #fff; text-decoration: none;
  font-weight: 560; font-size: 0.95rem; background: none; border: 0; cursor: pointer;
  font-family: inherit;
}
.nav > li > a:hover, .nav-btn:hover, .nav > li:hover > a { color: #7ec8ff; }
.mega {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-35%);
  width: min(860px, 86vw); background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 22px;
  grid-template-columns: 1.1fr 1.2fr 0.9fr; gap: 18px;
}
.nav > li:hover > .mega, .nav > li:focus-within > .mega { display: grid; }
.mega h4 {
  margin: 0 0 10px; font-family: var(--font); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal);
}
.mega a {
  display: block; padding: 7px 0; color: var(--ink); text-decoration: none; font-size: 0.92rem;
  border-bottom: 1px solid #f0f4f3;
}
.mega a:hover { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 22px; font-weight: 700; text-decoration: none;
  border: 0; cursor: pointer; font-family: inherit; font-size: 0.98rem;
  letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa {
  background: var(--cta); color: #fff;
  box-shadow: 0 8px 24px rgba(224, 122, 34, .42);
}
.btn-wa:hover {
  background: var(--cta-hover); color: #fff;
  box-shadow: 0 12px 30px rgba(224, 122, 34, .55);
}
.header-inner > .btn-wa {
  animation: cta-glow 2.2s ease-in-out infinite;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost-hero {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost-hero:hover {
  color: #fff; border-color: #fff;
  background: rgba(255,255,255,.12);
}
.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid #333;
  border-radius: 10px; background: #111; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 6px 10px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 48%, var(--teal-dark) 100%);
  color: #eaf4f3; padding: 56px 0 64px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; }
.hero p { color: #d5e8e5; font-size: 1.08rem; }
.kicker {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: #c9e6e2; margin-bottom: 12px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-photo {
  border-radius: 24px; overflow: hidden; min-height: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.hero-photo img { width: 100%; height: 420px; object-fit: cover; }
.article-photo { margin-bottom: 22px; box-shadow: var(--shadow); }
.article-photo img { height: 300px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px;
}
.hero-stats div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 12px 14px;
}
.hero-stats strong { display: block; color: #fff; font-size: 1.15rem; font-family: var(--serif); }
.hero-stats span { font-size: 0.8rem; color: #c5ddd9; }

.direct-answer {
  background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--teal);
  border-radius: 16px; padding: 22px 24px; margin: -36px auto 36px; position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.direct-answer .label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  font-weight: 700; margin-bottom: 8px;
}
.direct-answer p { margin: 0; color: var(--ink); }
.meta-line { font-size: 0.88rem; color: var(--ink-soft); margin-top: 10px; }

/* Layout */
.section { padding: 64px 0; }
.section-alt { background: var(--aqua); }
.section-sand { background: var(--sand); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 70ch; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.card img { width: 100%; height: 190px; object-fit: cover; }
.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-top: 0; }
.card-body p { color: var(--ink-soft); flex: 1; }
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); background: var(--aqua); padding: 4px 10px;
  border-radius: 999px; margin-bottom: 10px;
}
.more { font-weight: 650; color: var(--teal-dark); margin-top: 8px; }

.toc {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 24px;
  margin: 0 0 32px;
}
.toc h2 { margin: 0 0 12px; font-size: 1.05rem; font-family: var(--font); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.toc a { text-decoration: none; color: var(--ink); }
.toc a:hover { color: var(--teal); }

.prose { max-width: 78ch; }
.prose ul, .checklist { padding-left: 18px; }
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding: 8px 0 8px 32px; border-bottom: 1px solid #eef3f2;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--aqua-2);
  box-shadow: inset 0 0 0 5px var(--teal);
}

.table-wrap { overflow-x: auto; margin: 18px 0 28px; border-radius: 14px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.92rem; min-width: 640px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #eef3f2; vertical-align: top; }
th { background: var(--navy); color: #fff; font-weight: 600; }
tr:nth-child(even) td { background: #f7fbfa; }
.yes { color: var(--teal-dark); font-weight: 700; }
.no { color: var(--ink-soft); }
.caption { font-size: 0.82rem; color: var(--ink-soft); margin: -12px 0 24px; }

.compare-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px;
}
.compare-card .price { font-family: var(--serif); font-size: 1.8rem; color: var(--navy); margin: 8px 0; }
.compare-card .price span { font-size: 0.95rem; color: var(--ink-soft); }
.compare-card .from { font-size: 0.8rem; color: var(--ink-soft); margin: 0; }
.price-num { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.tab-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 16px; }
.tab-bar button {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 16px; font: inherit; font-weight: 650; cursor: pointer; color: var(--navy);
}
.tab-bar button[aria-selected="true"] {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.tab-panel { display: block; }
[data-tabs].is-ready .tab-panel { display: none; }
[data-tabs].is-ready .tab-panel.is-on { display: block; }
.need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 8px 0 28px; }
.need-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
}
.need-card strong { display: block; color: var(--teal-dark); margin-bottom: 6px; }
.need-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; background: var(--aqua); color: var(--teal-dark);
  border-radius: 999px; padding: 2px 8px; margin-left: 6px;
}
.read-tip {
  background: var(--aqua); border-radius: 12px; padding: 12px 16px; font-size: 0.92rem;
  margin: 0 0 14px;
}
@media (max-width: 720px) {
  .need-grid { grid-template-columns: 1fr; }
}

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 16px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 650; padding: 14px 0; color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--teal); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.breadcrumbs { font-size: 0.88rem; color: var(--ink-soft); margin: 18px 0 8px; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.page-hero { padding: 28px 0 10px; }
.page-hero .lead { margin-bottom: 18px; }

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--teal-dark));
  color: #eaf6f4; padding: 48px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: #d4ebe8; max-width: 60ch; margin-inline: auto; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  background: var(--whatsapp); color: #fff; text-decoration: none;
  border-radius: 999px; padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  font-weight: 700; box-shadow: 0 10px 24px rgba(18, 140, 126, .35);
  animation: wa-beat 1.7s ease-out infinite;
}
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(18, 140, 126, .45);
  animation: wa-ring 1.7s ease-out infinite; pointer-events: none;
}
.wa-float:hover, .wa-float:focus-visible {
  color: #fff; background: var(--whatsapp-hover);
  animation: none; transform: scale(1.05);
}
.wa-float:hover::after, .wa-float:focus-visible::after { animation: none; }

footer {
  background: #000; color: #c9ddd9; padding: 48px 0 20px; font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
footer h3 { color: #fff; font-family: var(--font); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
footer a { color: #c9ddd9; text-decoration: none; display: block; padding: 4px 0; }
footer a:hover { color: #fff; }
.legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; font-size: 0.8rem; color: #9fb8b4; }
.layout-article {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: start;
}
.prose, .hero-grid, .hero-actions, .wrap { min-width: 0; }
.aside-cta {
  position: sticky; top: 96px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px; box-shadow: var(--shadow);
}
.aside-cta p { font-size: 0.92rem; color: var(--ink-soft); }
.icon-list { display: grid; gap: 14px; }
.icon-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.icon-item .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--aqua);
  display: grid; place-items: center; color: var(--teal-dark); font-weight: 800;
}
@media (max-width: 980px) {
  .layout-article { grid-template-columns: 1fr; }
  .aside-cta { position: static; }
}

.disclaimer {
  background: var(--gold-soft); border-radius: 12px; padding: 14px 16px; font-size: 0.88rem;
  color: #5c4a24; margin: 24px 0;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.form { display: grid; gap: 12px; background: #fff; padding: 24px; border-radius: 16px; border: 1px solid var(--line); }
.form label { font-weight: 600; font-size: 0.9rem; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  font: inherit; background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--teal); border-color: transparent;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid var(--line); }
.step .n {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .compare-cards, .steps, .footer-grid, .need-grid { grid-template-columns: 1fr 1fr; }
  .toc ol { columns: 1; }
  .menu-toggle { display: inline-block; }
  .logo img { max-width: min(200px, 52vw); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; flex-basis: 100%; }
  .page-hero .btn { width: 100%; max-width: 100%; white-space: normal; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #0a0a0a; flex-direction: column; align-items: stretch;
    padding: 12px 20px 24px; border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 78px); overflow: auto;
  }
  .nav.open { display: flex; }
  .nav > li > a, .nav-btn { color: #fff; }
  .mega {
    position: static; display: none; transform: none; width: auto;
    box-shadow: none; border: 0; padding: 0 0 8px 12px; grid-template-columns: 1fr;
  }
  .nav > li:hover > .mega { display: none; }
  .nav > li.open > .mega, .nav > li:focus-within > .mega { display: grid; }
  .header-inner { position: relative; }
  .header-inner > .btn-wa { display: none; }
}
@media (max-width: 720px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .compare-cards, .steps, .footer-grid, .hero-stats { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 48px; }
  .hero-photo img { height: 220px; }
  .article-photo img { height: 200px; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .wa-float span { display: none; }
  .topbar { display: none; }
  .fiscal-box { padding: 16px; }
  table { min-width: 0; }
  .table-wrap { overflow-x: visible; border: 0; }
  .table-wrap table {
    min-width: 0; border: 1px solid var(--line); border-radius: 14px;
  }
  .table-wrap thead { display: none; }
  .table-wrap tr { display: block; border-bottom: 1px solid var(--line); }
  .table-wrap tr:last-child { border-bottom: 0; }
  .table-wrap td {
    display: block; border-bottom: 0; padding: 8px 14px;
  }
  .table-wrap td:first-child {
    font-weight: 650; background: var(--aqua); border-radius: 0;
  }
  .table-wrap td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 2px;
  }
}

/* Temas por ramo: la marca usa el cian del logo; salud usa azul de confianza */
body.is-salud {
  --navy: #0b3d66;
  --navy-deep: #071e3a;
  --teal: #1565c0;
  --teal-dark: #0d4f9a;
  --teal-bright: #2b86d6;
  --aqua: #e8f1fb;
  --aqua-2: #cfe0f4;
  --line: #d4e2f0;
  --shadow: 0 12px 40px rgba(11, 61, 102, 0.1);
}
body.is-decesos {
  --navy: #1c2833;
  --navy-deep: #121920;
  --teal: #5d6d7e;
  --teal-dark: #3d4d5c;
  --teal-bright: #7f8c9a;
  --aqua: #eef1f4;
  --aqua-2: #d5dce3;
  --line: #d8dee4;
}
body.is-vida {
  --navy: #3d2e12;
  --navy-deep: #2a1f0c;
  --teal: #b8893a;
  --teal-dark: #8f6a28;
  --teal-bright: #d4a84b;
  --aqua: #f6f1e8;
  --aqua-2: #ead9b4;
  --line: #e4d8c2;
}
body.is-otros {
  --navy: #183048;
  --navy-deep: #0f2030;
  --teal: #2f6f8f;
  --teal-dark: #245870;
  --aqua: #eaf3f7;
  --aqua-2: #cddfe8;
}

.product-block {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; margin: 0 0 20px;
}
.product-block h3 { margin-top: 0; }
.prima-box {
  background: var(--aqua); border-radius: 12px; padding: 14px 16px; margin: 12px 0 4px;
}
.prima-box span { display: block; font-size: 0.82rem; color: var(--ink-soft); }
.prima-box strong { font-family: var(--serif); font-size: 1.45rem; color: var(--navy); }
.age-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.age-nav a {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 14px;
  text-decoration: none; font-weight: 650; color: var(--navy); font-size: 0.9rem;
}
.age-nav a.is-current { background: var(--navy); color: #fff; border-color: var(--navy); }
details.copago {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 16px; margin: 12px 0 0;
}
details.copago summary {
  cursor: pointer; font-weight: 650; padding: 12px 0; color: var(--teal-dark);
}

.product-note {
  background: var(--gold-soft); color: #5c4a24;
  border-radius: 10px; padding: 10px 14px;
  font-weight: 650; margin: 0 0 14px;
}
.fiscal-box {
  background: #fff; border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 16px; padding: 22px 24px; margin: 8px 0 28px;
}
.fiscal-box h2 { margin-top: 0; }
.fiscal-box .example {
  background: var(--aqua); border-radius: 12px;
  padding: 14px 16px; font-size: 0.95rem;
}
.faq-a { padding: 0 0 14px; }
.faq-a p:last-child { margin-bottom: 0; }

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(224, 122, 34, .42); }
  50% { box-shadow: 0 8px 28px rgba(224, 122, 34, .7), 0 0 0 6px rgba(224, 122, 34, .18); }
}
@keyframes wa-beat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.08); }
  28% { transform: scale(1); }
  42% { transform: scale(1.06); }
  56% { transform: scale(1); }
}
@keyframes wa-ring {
  0% { box-shadow: 0 0 0 0 rgba(18, 140, 126, .5); opacity: 1; }
  70% { box-shadow: 0 0 0 16px rgba(18, 140, 126, 0); opacity: 0; }
  100% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); opacity: 0; }
}

.js-reveal .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.js-reveal .reveal.reveal-left { transform: translate3d(-32px, 0, 0); }
.js-reveal .reveal.reveal-right { transform: translate3d(32px, 0, 0); }
.js-reveal .reveal.reveal-scale { transform: translate3d(0, 16px, 0) scale(.97); }
.js-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
}
.js-reveal .reveal:not(.is-in) {
  transition-duration: .4s;
}
.grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2), .compare-cards .reveal:nth-child(2), .steps .reveal:nth-child(2), .need-grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3), .compare-cards .reveal:nth-child(3), .steps .reveal:nth-child(3), .need-grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(4), .steps .reveal:nth-child(4), .need-grid .reveal:nth-child(4) { transition-delay: .24s; }
.grid-4 .reveal:nth-child(5), .need-grid .reveal:nth-child(5) { transition-delay: .08s; }
.grid-4 .reveal:nth-child(6), .need-grid .reveal:nth-child(6) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(7) { transition-delay: .24s; }
.grid-4 .reveal:nth-child(8) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float::after, .header-inner > .btn-wa { animation: none; }
  .js-reveal .reveal {
    opacity: 1; transform: none; transition: none; will-change: auto;
  }
}
