/* ==========================================================================
   GRMOTEC — hoja de estilos única del sitio público.
   Reemplaza a Bootstrap: contiene solo la rejilla, las utilidades y los
   componentes que el sitio realmente usa. Es el único CSS que se carga.

   Índice
     1. Tokens
     2. Base
     3. Rejilla
     4. Utilidades de espaciado
     5. Utilidades de display, flex y texto
     6. Botones
     7. Formularios
     8. Navegación
     9. Diálogo modal
    10. Iconos
    11. Componentes del sitio
    12. Footer y elementos fijos
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --brand-orange: #ff7b00;
  --brand-orange-soft: #ff942e;
  --brand-orange-dark: #cc6200;
  --bg-dark: #060d18;
  --surface: #0a1424;
  --card-bg: #111f38;
  --card-bg-2: #14243b;
  --line: rgba(255, 255, 255, .09);
  --line-strong: #33445c;
  --text: #f1f5f9;
  --text-muted: #b5c1d2;
  --green: #10b981;
  --green-soft: #6ee7b7;
  --red: #e5484d;
  --blue: #38bdf8;
  --violet: #a78bfa;
  --radius: 12px;
  --nav-h: 76px;

  --s1: .25rem; --s2: .5rem; --s3: 1rem; --s4: 1.5rem; --s5: 3rem;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 { color: #fff; letter-spacing: -.02em; font-weight: 800; margin: 0 0 .5rem; line-height: 1.25; }
h1 { font-size: 2.25rem; } h2 { font-size: 1.75rem; } h3 { font-size: 1.375rem; }
h4 { font-size: 1.2rem; } h5 { font-size: 1.1rem; } h6 { font-size: 1rem; }
.h3 { font-size: 1.375rem !important; } .h4 { font-size: 1.2rem !important; }
.h5 { font-size: 1.1rem !important; } .h6 { font-size: 1rem !important; }
p { margin: 0 0 1rem; color: var(--text-muted); }
ul, ol { margin: 0 0 1rem; }
a { text-decoration: none; color: inherit; }
strong, b { color: #fff; font-weight: 700; }
img, svg { max-width: 100%; }
img { height: auto; }
table { border-collapse: collapse; }
hr { border: 0; border-top: 1px solid var(--line-strong); margin: 1.5rem 0; }
figure { margin: 0; }
button { font: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; }
.skip-link:focus {
  left: 0; padding: 1rem 1.5rem; background: #fff; color: #000;
  font-weight: 700; outline: 3px solid var(--brand-orange);
}

/* ---------- 3. Rejilla ---------- */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1rem; }
.row { display: flex; flex-wrap: wrap; margin-inline: calc(var(--gx, 1.5rem) / -2); }
.row > * { padding-inline: calc(var(--gx, 1.5rem) / 2); margin-top: var(--gy, 0); width: 100%; }
.g-3 { --gx: 1rem; --gy: 1rem; } .g-4 { --gx: 1.5rem; --gy: 1.5rem; } .g-5 { --gx: 3rem; --gy: 3rem; }
.g-3, .g-4, .g-5 { margin-top: calc(var(--gy) * -1); }

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6  { flex: 0 0 50%;  max-width: 50%; }

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%;      max-width: 25%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-6 { flex: 0 0 50%;      max-width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-lg-3 { flex: 0 0 25%;      max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .col-lg-6 { flex: 0 0 50%;      max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .offset-lg-1 { margin-left: 8.3333%; }
}

/* ---------- 4. Espaciado ---------- */
.mb-0{margin-bottom:0!important}   .mb-1{margin-bottom:var(--s1)!important}
.mb-2{margin-bottom:var(--s2)!important} .mb-3{margin-bottom:var(--s3)!important}
.mb-4{margin-bottom:var(--s4)!important} .mb-5{margin-bottom:var(--s5)!important}
.mt-1{margin-top:var(--s1)!important} .mt-2{margin-top:var(--s2)!important}
.mt-3{margin-top:var(--s3)!important} .mt-4{margin-top:var(--s4)!important}
.mt-5{margin-top:var(--s5)!important}
.me-1{margin-right:var(--s1)!important} .me-2{margin-right:var(--s2)!important}
.ms-1{margin-left:var(--s1)!important}  .ms-auto{margin-left:auto!important}
.mx-auto{margin-inline:auto!important}  .my-4{margin-block:var(--s4)!important}
.px-3{padding-inline:var(--s3)!important} .px-4{padding-inline:var(--s4)!important}
.py-2{padding-block:var(--s2)!important}  .py-3{padding-block:var(--s3)!important}
.py-5{padding-block:var(--s5)!important}  .pb-5{padding-bottom:var(--s5)!important}
@media (min-width: 1200px) {
  .mb-xl-0{margin-bottom:0!important}
  .ms-xl-2{margin-left:var(--s2)!important}
  .ms-xl-3{margin-left:var(--s3)!important}
}

/* ---------- 5. Display, flex y texto ---------- */
.d-block{display:block!important} .d-inline-block{display:inline-block!important}
.d-flex{display:flex!important}
.flex-column{flex-direction:column!important} .flex-wrap{flex-wrap:wrap!important}
.flex-shrink-0{flex-shrink:0!important}
@media (min-width:576px){ .flex-sm-row{flex-direction:row!important} }
@media (min-width:768px){ .flex-md-row{flex-direction:row!important} }
.justify-content-center{justify-content:center!important}
.align-items-center{align-items:center!important}
.align-items-start{align-items:flex-start!important}
.align-items-stretch{align-items:stretch!important}
@media (min-width:768px){ .align-items-md-center{align-items:center!important} }
.gap-2{gap:var(--s2)!important} .gap-3{gap:var(--s3)!important} .gap-4{gap:var(--s4)!important}
.w-100{width:100%!important}
.text-center{text-align:center!important} .text-start{text-align:left!important}
.text-white{color:#fff!important}
.text-orange{color:var(--brand-orange)!important}
.text-secondary,.text-muted,.muted{color:var(--text-muted)!important}
.text-decoration-underline{text-decoration:underline!important}
.fw-bold{font-weight:700!important}
.small{font-size:.875rem}
.fs-4{font-size:1.5rem!important} .fs-5{font-size:1.25rem!important}
.lead{font-size:1.15rem;color:#dce5f1;line-height:1.6}
.eyebrow{font-size:.85rem;letter-spacing:.09em;text-transform:uppercase;
         font-weight:700;color:var(--brand-orange-soft);margin-bottom:.75rem}
.stretched-link::after{content:"";position:absolute;inset:0;z-index:1}
.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}

/* ---------- 6. Botones ---------- */
.btn {
  display: inline-block; text-align: center; vertical-align: middle;
  padding: .7rem 1.2rem; border: 1px solid transparent; border-radius: 10px;
  font-size: 1rem; font-weight: 700; line-height: 1.4; cursor: pointer;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
  background: none; color: inherit;
}
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-sm { padding: .45rem .9rem; font-size: .9rem; }

.btn-brand-orange {
  background-color: var(--brand-orange); color: #17120b !important; border-color: var(--brand-orange);
  box-shadow: 0 4px 15px rgba(255, 123, 0, .28);
}
.btn-brand-orange:hover {
  background-color: var(--brand-orange-soft); color: #17120b !important;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 123, 0, .4);
}
.btn-outline-light-custom { border-color: rgba(248,249,250,.3); color: #f8f9fa; }
.btn-outline-light-custom:hover { background: #fff; color: #000; border-color: #fff; }
.btn-nav-action {
  background-color: var(--brand-orange); color: #17120b !important;
  padding: .6rem 1.1rem; border-radius: 10px;
}
.btn-nav-action:hover { background-color: var(--brand-orange-soft); transform: translateY(-2px); }
.btn-express {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18);
  font-weight: 800; border-radius: 10px;
}
.btn-express:hover { background: rgba(255,255,255,.14); border-color: var(--brand-orange); }

/* ---------- 7. Formularios ---------- */
.form-label { display: block; font-size: .88rem; font-weight: 600; color: #cbd5e1; margin-bottom: .35rem; }
.form-control, .form-select {
  display: block; width: 100%; padding: .75rem 1rem;
  background-color: #0d172a; border: 1px solid #1e293b; border-radius: 8px;
  color: #fff; font-size: 1rem; line-height: 1.5;
}
.form-control::placeholder { color: #64748b; }
.form-control:focus, .form-select:focus {
  outline: none; background-color: #111f38; border-color: var(--brand-orange);
  box-shadow: 0 0 0 .25rem rgba(255, 123, 0, .22);
}
.form-select {
  appearance: none; padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b5c1d2'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px;
}
.form-select option { background: #0d172a; color: #fff; }

/* Etiqueta flotante */
.form-floating { position: relative; }
.form-floating > .form-control, .form-floating > .form-select { height: 3.6rem; padding: 1.4rem 1rem .4rem; }
.form-floating > textarea.form-control { height: auto; padding-top: 1.6rem; }
.form-floating > label {
  position: absolute; top: 0; left: 0; padding: 1.05rem 1rem; color: #94a3b8;
  pointer-events: none; transform-origin: 0 0; transition: transform .15s, color .15s;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label { transform: scale(.8) translateY(-.5rem); }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label { color: var(--brand-orange); }

/* ---------- 8. Navegación ---------- */
.grm-nav {
  background: rgba(6, 13, 24, .95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.grm-nav > .container { display: flex; align-items: center; gap: 1rem; min-width: 0; flex-wrap: wrap; padding-block: .8rem; }
.navbar-brand {
  display: inline-flex; align-items: center; gap: .65rem; flex: 0 0 auto;
  color: #fff !important; font-size: 1.25rem; font-weight: 800; letter-spacing: .02em;
}
.navbar-brand img {
  display: block; width: 46px; height: 46px; object-fit: contain;
  flex: 0 0 46px; border-radius: 6px; background: #f5f7f9;
}
.brand-accent { color: var(--brand-orange-soft); }
.navbar-nav { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { display: block; }
.nav-link {
  display: block; padding: .5rem .75rem; color: #cbd5e1; font-weight: 500;
  font-size: .95rem; white-space: nowrap; transition: color .2s;
}
.nav-link:hover, .nav-link:focus, .nav-link.active { color: var(--brand-orange); }
.grm-nav .btn { white-space: nowrap; }

.navbar-toggler {
  display: none; flex-shrink: 0; margin-left: auto; padding: .5rem .7rem;
  background: none; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; cursor: pointer;
}
.navbar-toggler span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
}
.navbar-toggler span + span { margin-top: 5px; }
.navbar-collapse { display: flex; flex: 1; min-width: 0; justify-content: flex-end; }

@media (max-width: 1199.98px) {
  .navbar-toggler { display: block; }
  .navbar-collapse { display: none; flex-basis: 100%; max-height: 72vh; overflow-y: auto; padding: .75rem 0; }
  .navbar-collapse.is-open { display: block; }
  .navbar-nav { flex-direction: column; align-items: stretch; gap: .5rem; }
  .navbar-nav .nav-link { padding: .5rem; }
  .navbar-collapse .btn { display: block; width: 100%; }
  .ms-auto { margin-left: 0 !important; }
}
@media (max-width: 575px) {
  .navbar-brand { font-size: 1.1rem; }
  .navbar-brand img { width: 40px; height: 40px; flex-basis: 40px; }
  .grm-nav > .container { gap: .5rem; }
}

/* ---------- 9. Diálogo modal ---------- */
dialog.grm-dialog {
  width: min(720px, calc(100vw - 2rem)); padding: 0; border: 1px solid var(--brand-orange);
  border-radius: var(--radius); background: var(--card-bg); color: var(--text);
}
dialog.grm-dialog::backdrop { background: rgba(0, 0, 0, .7); }
.grm-dialog__head, .grm-dialog__foot {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.35rem;
}
.grm-dialog__head { border-bottom: 1px solid var(--line-strong); }
.grm-dialog__foot { border-top: 1px solid var(--line-strong); justify-content: flex-end; flex-wrap: wrap; }
.grm-dialog__body { padding: 1.35rem; }
.grm-dialog__close {
  margin-left: auto; background: none; border: 0; color: var(--text-muted);
  font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0 .25rem;
}
.grm-dialog__close:hover { color: #fff; }

/* ---------- 10. Iconos ----------
   Sprite SVG inyectado al final del body. Uso: <svg class="i"><use href="#i-whatsapp"/></svg> */
.i { width: 1em; height: 1em; fill: currentColor; vertical-align: -.125em; flex-shrink: 0; }
.i-lg { width: 1.5em; height: 1.5em; }

/* ---------- 11. Componentes del sitio ---------- */
.section-heading { max-width: 800px; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
.section-card-bg { background-color: var(--card-bg); }
.section-darker { background-color: var(--bg-dark); }
.section-surface { background-color: var(--surface); }

.grm-card {
  background: var(--card-bg); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 1.6rem; height: 100%; position: relative;
}
.grm-card h3, .grm-card h2 { font-size: 1.2rem; margin-bottom: .75rem; }
.grm-card--link { transition: transform .2s, border-color .2s; display: block; color: inherit; }
.grm-card--link:hover { transform: translateY(-4px); border-color: var(--brand-orange); }

.grm-note {
  border-left: 4px solid var(--brand-orange); background: rgba(255,123,0,.07);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.75rem 0;
}
.grm-note.is-warning { border-left-color: var(--red); background: rgba(229,72,77,.09); }
.grm-note.is-success { border-left-color: var(--green); background: rgba(16,185,129,.08); }
.grm-note p:last-child, .grm-note ul:last-child { margin-bottom: 0; }

.grm-facts {
  width: 100%; background: var(--card-bg);
  border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden;
}
.grm-facts caption { caption-side: top; text-align: left; padding: 0 0 .75rem; color: var(--text-muted); font-size: .9rem; }
.grm-facts th, .grm-facts td {
  padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .97rem;
}
.grm-facts th { text-align: left; color: var(--text-muted); font-weight: 600; width: 38%; background: rgba(255,255,255,.02); }
.grm-facts td { color: #fff; }
.grm-facts tr:last-child th, .grm-facts tr:last-child td { border-bottom: 0; }
@media (max-width: 575px) {
  .grm-facts th, .grm-facts td { display: block; width: 100%; }
  .grm-facts th { border-bottom: 0; padding-bottom: .2rem; }
  .grm-facts td { padding-top: .2rem; }
}

.faq-list { max-width: 900px; }
.faq-list details, .grm-details { border-bottom: 1px solid var(--line-strong); padding: 1.15rem 0; }
.faq-list summary, .grm-details summary {
  font-weight: 700; font-size: 1.05rem; cursor: pointer; color: #fff; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker, .grm-details summary::-webkit-details-marker { display: none; }
.faq-list summary::after, .grm-details summary::after {
  content: "+"; color: var(--brand-orange); font-size: 1.5rem; line-height: 1; flex: 0 0 auto;
}
.faq-list details[open] summary::after, .grm-details[open] summary::after { content: "–"; }
.faq-list details p, .grm-details p { margin: 1rem 0 0; }

/* Artículos */
.grm-article { max-width: 780px; margin-inline: auto; }
.grm-article .article-cover {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong);
  margin-bottom: 2rem; display: block;
}
.grm-article h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.2; margin-bottom: 1rem; }
.grm-article h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-top: 2.75rem; margin-bottom: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.grm-article h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .75rem; }
.grm-article p, .grm-article li { font-size: 1.05rem; }
.grm-article ul, .grm-article ol { padding-left: 1.25rem; margin-bottom: 1.5rem; color: var(--text-muted); }
.grm-article li { margin-bottom: .6rem; }
.grm-article a:not(.btn) { color: var(--brand-orange-soft); text-decoration: underline; }
.grm-article .lead { font-size: 1.2rem; }

.article-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center;
  color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.article-tag {
  display: inline-block; background: rgba(255,123,0,.12); border: 1px solid var(--brand-orange);
  color: var(--brand-orange); font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 50px; margin-bottom: 1rem;
}
.author-chip { display: flex; align-items: center; gap: .6rem; }
.author-chip .avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 38px;
  background: linear-gradient(135deg, var(--brand-orange), #b45309);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #17120b;
}

.grm-toc {
  background: var(--card-bg); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
}
.grm-toc p { font-weight: 700; color: #fff; margin-bottom: .75rem; font-size: .9rem;
             text-transform: uppercase; letter-spacing: .06em; }
.grm-toc ol { margin: 0; padding-left: 1.2rem; }
.grm-toc li { margin-bottom: .4rem; color: var(--text-muted); }
.grm-toc a { color: var(--text-muted); }
.grm-toc a:hover { color: var(--brand-orange); text-decoration: underline; }

.grm-cta {
  background: linear-gradient(145deg, #14243b, #0d1a2d);
  border: 1px solid var(--line-strong); border-top: 4px solid var(--brand-orange);
  border-radius: 16px; padding: 2.5rem; text-align: center; margin: 3.5rem 0 0;
}
.grm-cta h2, .grm-cta h3 { margin-top: 0; border: 0; padding-top: 0; }

.grm-breadcrumb { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.grm-breadcrumb a { color: var(--text-muted); }
.grm-breadcrumb a:hover { color: var(--brand-orange); text-decoration: underline; }
.grm-breadcrumb span { opacity: .5; margin: 0 .4rem; }

/* ---------- 12. Footer y elementos fijos ---------- */
.grm-footer {
  background: #030811; border-top: 1px solid var(--line);
  padding: 3rem 0 2rem; color: var(--text-muted); font-size: .9rem;
}
.grm-footer h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 1rem; }
.grm-footer a { color: var(--text-muted); }
.grm-footer a:hover { color: var(--brand-orange); text-decoration: underline; }
.grm-footer ul { list-style: none; padding: 0; margin: 0; }
.grm-footer li { margin-bottom: .5rem; }
.grm-footer p { margin-bottom: .35rem; }
.grm-footer .footer-legal {
  border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: .8rem; line-height: 1.6;
}
.grm-footer .footer-brand-box {
  display: inline-block; background: #fff; padding: .6rem .9rem; border-radius: 8px; margin-bottom: 1rem;
}

.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; background-color: #25d366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,.5);
  z-index: 1000; transition: transform .3s;
}
.whatsapp-float .i { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@media (max-width: 991.98px) { .whatsapp-float { bottom: 95px; } }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: #0d172a;
  border-top: 2px solid var(--brand-orange); padding: 1.15rem; z-index: 1050;
  flex-direction: column; gap: 1rem; box-shadow: 0 -10px 30px rgba(0,0,0,.5); display: none;
}
.cookie-banner.show { display: flex; }
.cookie-banner h2 { font-size: 1rem; margin-bottom: .25rem; }
@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.15rem 2.5rem; }
}
@media (max-width: 991.98px) { .cookie-banner { bottom: 82px; } }
@media (max-width: 575px) { .cookie-banner { max-height: 45vh; overflow: auto; } }

.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
  background: rgba(6, 13, 24, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: .65rem .75rem; display: none;
}
.mobile-cta-inner { display: flex; gap: .65rem; align-items: center; justify-content: space-between; }
.mobile-cta-left { min-width: 0; }
.mobile-cta-left .t1 { font-weight: 800; color: #fff; line-height: 1.15; font-size: .95rem; }
.mobile-cta-left .t2 {
  font-size: .8rem; color: var(--text-muted); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 52vw;
}
.mobile-cta-bar .btn { white-space: nowrap; padding: .65rem .9rem; border-radius: 12px; font-weight: 800; }
@media (max-width: 768px) { .mobile-cta-bar { display: block; } body { padding-bottom: 84px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
