


/* ===== Apex Performance — Dark Elite Base ===== */
:root{
  --bg: #0b0f17;
  --surface: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #3b82f6; /* azul elite */
  --border: rgba(255,255,255,.08);
  --max: 1180px;
  --radius: 14px;
  --nav-h: 72px;        /* ajustá si tu nav es más alto */
  --anchor-gap: 2px;   /* aire extra */
} 

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  background: #0b0f17;
  scrollbar-gutter: stable;
}

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;

  background: #0b0f17;
  overflow-x: hidden;
  overscroll-behavior: none;
  position: relative;
}

@supports (overflow: clip){
  body{ overflow-x: clip; }
}

/* fondo global (sin jank) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(780px 420px at 18% 10%, rgba(59,130,246,.20), transparent 60%),
    radial-gradient(520px 320px at 86% 18%, rgba(255,255,255,.05), transparent 55%),
    radial-gradient(520px 320px at 42% 92%, rgba(59,130,246,.12), transparent 60%),
    linear-gradient(180deg, #0b0f17 0%, #0b0f17 100%);
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events:none;
  opacity: .035;
  mix-blend-mode: overlay;
}

section{
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
}


#pricing::before,
#faq::before{
  content:"";
  position:absolute;
  inset:-60px 0;
  pointer-events:none;
  background: radial-gradient(520px 260px at 20% 20%, rgba(59,130,246,.14), transparent 60%);
  opacity:.9;
  filter: blur(2px);
}

#pricing, #faq{ position: relative; }


/* contenido arriba del fondo */
body > *{
  position: relative;
  z-index: 1;
}

/* por si tenés wrappers */
main, .page, #root{ background: transparent; }


:focus-visible{
  outline: 2px solid rgba(59,130,246,.9);
  outline-offset: 3px;
  border-radius: 6px;
}


section { padding: 72px 18px; }

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background: rgba(17,24,39,.92);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 999;
}
.skip-link:focus{
  left: 12px;
}

/* ===== Top Nav (clean + responsive) ===== */

/* offset para anchors */
html{
  scroll-padding-top: calc(var(--nav-h) + var(--anchor-gap));
}


.top-nav{
  position: sticky;
  top: 0;
  z-index: 50;

  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.62);
  border-bottom: 1px solid rgba(255,255,255,.06);

  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease,
              opacity .35s ease, transform .35s ease;
}

.top-nav.nav-enter{
  opacity: 0;
  transform: translateY(-6px);
}

.top-nav.is-scrolled{
  background: rgba(11,15,23,.96);
  border-bottom-color: rgba(255,255,255,.12);
  box-shadow:
    0 18px 44px rgba(0,0,0,.55),
    0 0 0 1px rgba(59,130,246,.10) inset;
}

/* ===== Layout: FLEX (no grid) ===== */
.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  gap: 12px;
}

.brand{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .4px;
  flex: 0 0 auto;
}

.brand span{
  color: var(--muted);
  font-weight: 700;
  margin-left: 6px;
}

.brand:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* LINKS: 1 fila scrolleable */
.nav-links{
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;

  flex: 1 1 auto;
  min-width: 0;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;

  padding: 6px 2px;
}



/* fade base para insinuar overflow */
.nav-links::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width: 44px;
  height:100%;
  pointer-events:none;
  background: linear-gradient(
    to left,
    rgba(11,15,23,1),
    rgba(11,15,23,0)
  );
  opacity: 0;                 /* apagado por defecto */
  transition: opacity .25s ease;
}

.nav-links::after{
  opacity: 0 !important;
}


/* shimmer azul */
.nav-links::before{
  content:"";
  position:absolute;
  top:50%;
  right: -6px;
  width: 28px;       
  height: 70%;
  transform: translateY(-50%);
  pointer-events:none;
  border-radius: 999px;

  background: radial-gradient(
    closest-side,
    rgba(59,130,246,.65),
    rgba(59,130,246,.15),
    rgba(59,130,246,0)
  );


  filter: blur(2.5px); 
  opacity: 0;                 /* apagado por defecto */
  transition: opacity .25s ease;
}

/* Solo cuando hay overflow */
.nav-links.can-scroll:not(.at-end)::after{ 
  opacity: 1; 
}

/* Solo cuando el hint está activo */
.nav-links.can-scroll.has-hint::before{
  opacity: 1;
  animation: navHintPulse 1.65s ease-in-out infinite, navShimmerPulse 2.4s ease-in-out infinite;
}

@keyframes navShimmerPulse {
  0%, 100% { opacity: .55; }
  50% { opacity: .85; }
}


@keyframes navHintPulse{
  0%,100%{
    transform: translateY(-50%) translateX(0);
    opacity: .35;
  }
  50%{
    transform: translateY(-50%) translateX(7px);
    opacity: .9;
  }
}


@media (min-width: 820px){
  .nav-hint{ display:none; }
}

.nav-links::-webkit-scrollbar{ display:none; }

.nav-links a{
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;

  padding: 8px 10px;
  border-radius: 999px;

  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.nav-links a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.nav-links a.is-active{
  color: var(--text);
  background: rgba(59,130,246,.14);
  border-color: rgba(59,130,246,.22);
}

/* CTA */
.nav-cta{
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(59,130,246,.22);
  font-weight: 600;
  font-size: .95rem;

  flex: 0 0 auto;

  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;

  background: rgba(59,130,246,.10);

  transition: background .18s ease, color .18s ease, transform .18s ease,
              box-shadow .18s ease, border-color .18s ease;
}

.nav-cta:hover{
  background: rgba(59,130,246,.28);
  border-color: rgba(59,130,246,.55);
  color: white;
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px rgba(59,130,246,.35),
    0 0 0 1px rgba(59,130,246,.25);
}

.nav-cta:active{
  transform: translateY(0) scale(.98);
  box-shadow: 0 6px 14px rgba(59,130,246,.25);
}

/* Desktop: no scroll si cabe */
@media (min-width: 820px){
  .nav-links{
    overflow: visible;
    padding: 0;
  }
}

/* Mobile: 2 filas (brand+cta arriba, links abajo) */
@media (max-width: 520px){
  :root{ --nav-h: 96px; } /* nav más alto en mobile */

  .nav-inner{
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 12px;
  }

  .brand{ font-size: .95rem; }
  .nav-cta{ margin-left: auto; padding: 7px 10px; }

  .nav-links{
    width: 100%;
    order: 3;
    gap: 8px;
    padding: 6px 2px;
  }

  .nav-links a{
    font-size: .88rem;
    padding: 7px 8px;
  }
}





.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  max-width: calc(100vw - 32px); /* ✅ nunca se sale */
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;

  color: var(--text);
  font-weight: 700;
  font-size: .95rem;

  background: rgba(17,24,39,.72);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0,0,0,.30);
}

.wa-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,.55);
  flex: 0 0 auto;
}

.wa-text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* ✅ si falta espacio, corta con ... */
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 20px 38px rgba(0,0,0,.38);
}

@media (max-width: 520px){
  .whatsapp-float{
    right: 12px;
    bottom: 12px;
    padding: 11px 12px;
    font-size: .9rem;
    gap: 8px;
  }
}

/* ✅ en pantallas muy chicas: solo punto (queda como botón premium compacto) */
@media (max-width: 380px){
  .wa-text{ display:none; }
  .whatsapp-float{ padding: 12px; }
}


/* ===== Section Divider (Ultra subtle) ===== */
.section-divider{
  height: 1px;
  width: 100%;
  max-width: 520px;
  margin: 56px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.10),
    transparent
  );
  opacity: .95;
}

@media (max-width: 520px){
  .section-divider{
    margin: 42px auto;
    max-width: 320px;
  }
}


/* Mobile: links más compactos */
@media (max-width: 520px){
  .nav-links{ gap: 8px; }
  .nav-links a{ padding: 8px 8px; font-size: .9rem; }
}




/* ===== Hero ===== */
#hero{
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));

  /* layout */
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  /* spacing */
  padding: 96px 18px 72px; /* top extra por nav */
  scroll-margin-top: 90px;

  /* width */
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 820px){
  #hero{
    min-height: auto;
    padding-top: 84px;
  }
}

#hero::after{
  content:"";
  position: absolute;
  inset: -40px 0; /* sin negativos laterales */
  background: radial-gradient(
    500px 260px at 20% 30%,
    rgba(59,130,246,.22),
    transparent 60%
  );
  pointer-events: none;
  filter: blur(2px);
  opacity: .9;
}



#hero h1{
  margin:0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: .5px;
}

#hero p{
  margin:0 0 22px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
}

#hero .micro-note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .95rem;
  max-width: 62ch;
}

.hero-trust{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: .9rem;
}

.hero-trust span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.hero-steps{
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .95rem;
    position: relative;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.35);
}

.hero-step{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}


.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  color: white;
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  box-shadow: 0 12px 30px rgba(59,130,246,.22);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:focus-visible{
  outline: 2px solid rgba(59,130,246,.9);
  outline-offset: 3px;
}


.btn-primary:active{
  transform: translateY(0) scale(.985);
  filter: brightness(.96);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(59,130,246,.28);
}

.btn-primary:active{
  transform: translateY(0) scale(.985);
}

.btn-primary::after{
  content:"";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.35),
    transparent 65%
  );
  transform: translateX(-55%);
  opacity: 0;
  pointer-events: none;
}

/* sheen suave solo cuando no hay reduce motion */
@media (prefers-reduced-motion: no-preference){
  .btn-primary:hover::after{
    animation: heroSheen 1.6s ease-in-out;
  }

    .btn-primary{
    animation: heroPulse 5.5s ease-in-out infinite;
  }
}

@keyframes heroSheen{
  0%   { transform: translateX(-55%); opacity: 0; }
  20%  { opacity: .9; }
  60%  { opacity: .9; }
  100% { transform: translateX(55%); opacity: 0; }
}

@keyframes heroPulse{
  0%   { box-shadow: 0 12px 30px rgba(59,130,246,.22); }
  50%  { box-shadow: 0 16px 40px rgba(59,130,246,.32); }
  100% { box-shadow: 0 12px 30px rgba(59,130,246,.22); }
}



#hero .cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .15s ease,
    box-shadow .2s ease;
}

#hero .cta-btn-secondary:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(59,130,246,.35);
  box-shadow:
    0 0 0 1px rgba(59,130,246,.15),
    0 8px 24px rgba(59,130,246,.15);
  transform: translateY(-1px);
}

#hero .cta-btn-secondary:active{
  transform: translateY(0) scale(.985);
  filter: brightness(.96);
}

#hero .cta-btn-secondary:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25);
}



section{
  max-width: var(--max);
  margin: 0 auto;
}

h2{
  margin: 0 0 16px;
  font-size: 1.60rem;
  letter-spacing:.3px;
  color: rgba(255,255,255,.92);
}

.service-list{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 820px){
  .service-list{
    grid-template-columns: 1fr;
  }
}


.service-item{
  background: rgba(17,24,39,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--text);
}

.service-item h3{
  margin: 0;
  font-size: 1.05rem;
}

.service-tagline{
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.35;
}

.service-desc{
  margin: 8px 0 0;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 820px){
  .service-item{
    padding: 18px;
  }
}


/* About  */
.about-list{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-list li{
  color: var(--text);
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .95rem;
}


/* ===== About ===== */

#about{
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  background: rgba(17,24,39,.22);
  padding: 18px 18px;
  overflow: clip;
  text-align: left;
}

#about::before{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    radial-gradient(720px 340px at 20% 20%, rgba(59,130,246,.16), transparent 60%),
    radial-gradient(520px 300px at 90% 30%, rgba(255,255,255,.05), transparent 60%);
  pointer-events:none;
}

#about > *{ position: relative; z-index: 1; }

/* grid más pegado */
.about-grid{ gap: clamp(14px, 3.5vw, 20px); }

.about-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
  gap: clamp(14px, 3.5vw, 20px);
}

@media (min-width: 821px){
  .about-card{ align-self: center; } 
}

.about-copy p{
  color: var(--muted);
  max-width: 70ch;
  margin-top: 10px;
}

.about-subproof{
  margin: 12px 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.70);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.about-subproof::before{
  content:"✓";
  color: rgba(59,130,246,.9);
  font-weight: 800;
}



/* Coach card (placeholder pro) */
.about-card{
  position: relative;
  background: rgba(17,24,39,.60);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
}

@media (min-width: 821px){
  .about-card{ margin-top: 6px; }
}

@media (hover:hover) and (pointer:fine){
  .about-card{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    will-change: transform;
  }
  .about-card:hover{
    transform: translateY(-3px);
    border-color: rgba(59,130,246,.25);
    box-shadow:
      0 18px 40px rgba(0,0,0,.40),
      0 0 0 1px rgba(59,130,246,.14) inset;
    background: rgba(17,24,39,.68);
  }
}


.about-card::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(420px 220px at 20% 20%, rgba(59,130,246,.20), transparent 60%),
    radial-gradient(380px 220px at 80% 30%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}

.about-card > *{ position: relative; z-index: 1; }

.about-card__top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}

.about-avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  position: relative;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  background: rgba(59,130,246,.22);
  border: 1px solid rgba(59,130,246,.30);
}

.about-avatar::after{
  content:"";
  position:absolute;
  inset:-20px;
  background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 60%);
  opacity:.35;
  pointer-events:none;
}

.about-name{
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.about-role{
  margin-top: 2px;
  font-size: .85rem;
  color: rgba(255,255,255,.68);
}

.about-photo{
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;

  background:
    radial-gradient(420px 220px at 30% 25%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(380px 220px at 80% 35%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));

  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 44px rgba(0,0,0,.38),
    0 0 0 1px rgba(59,130,246,.10) inset;

  margin: 10px 0 14px;
}

/* “shine” diagonal premium */
.about-photo::before{
  content:"";
  position:absolute;
  inset:-60px;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.12) 50%,
    transparent 65%
  );
  transform: translateX(-30%);
  opacity: .35;
  pointer-events:none;
}

/* textura sutil (tipo grain) */
.about-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: .08;
  pointer-events:none;
  mix-blend-mode: overlay;
}

.about-photo__badge{
  position: absolute;
  top: 12px;
  left: 12px;

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;

  padding: 6px 10px;
  border-radius: 999px;

  color: rgba(255,255,255,.92);
  background: rgba(17,24,39,.55);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

.about-photo__initials{
  position: absolute;
  right: 14px;
  bottom: 12px;

  font-weight: 900;
  letter-spacing: .6px;
  font-size: 1.1rem;

  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  color: #fff;
  background: rgba(59,130,246,.22);
  border: 1px solid rgba(59,130,246,.30);
  box-shadow: 0 12px 26px rgba(59,130,246,.25);
}

@media (min-width: 820px){
  .about-photo{ height: 210px; }
}

/* hover solo desktop */
@media (hover:hover) and (pointer:fine){
  .about-photo::before{
    transition: transform .45s ease, opacity .45s ease;
  }
  .about-card:hover .about-photo::before{
    transform: translateX(30%);
    opacity: .55;
  }
}


.about-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 12px;
}

.about-stat{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 10px 10px;
  text-align:center;
}

.about-stat .k{
  font-weight: 800;
  color: var(--text);
  letter-spacing: .2px;
}

.about-stat .v{
  margin-top: 2px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

.about-proof{
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 820px){
  .about-grid{
    grid-template-columns: 1fr;
  }
}




#about p, #testimonials p, #contact p{
  color: var(--muted);
  max-width: 70ch;
}

/* ===== Testimonials ===== */
#testimonials{
  text-align: center;
}

#testimonials [data-bind="testimonials.list"]{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 28px;
}

.testimonial-card{
  background: rgba(17,24,39,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-stars{
  letter-spacing: 1px;
  font-size: .9rem;
  color: rgba(250, 204, 21, .92);
}

.testimonial-quote{
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.testimonial-result{
  align-self: flex-start;
  margin-top: 6px;

  font-size: .75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;

  color: #93c5fd;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
}

.testimonial-author{
  margin-top: auto;
  font-size: .8rem;
  color: var(--muted);
}

/* Hover premium (como te gustaba) */
@media (prefers-reduced-motion: no-preference){
  .testimonial-card{
    transition:
      transform .18s ease,
      box-shadow .18s ease,
      border-color .18s ease,
      background .18s ease;
    will-change: transform;
  }

  .testimonial-card:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.14);
    box-shadow:
      0 18px 38px rgba(0,0,0,.34),
      0 0 0 1px rgba(59,130,246,.10);
    background: rgba(17,24,39,.82);
  }
}

/* Mobile */
@media (max-width: 820px){
  #testimonials [data-bind="testimonials.list"]{
    grid-template-columns: 1fr;
  }
}


/* Glow sutil al pasar por encima del CTA */
.btn-primary:hover{
  box-shadow: 0 16px 38px rgba(59,130,246,.30);
}



/* ===== Pricing ===== */
#pricing{
  text-align: center;
}

.pricing-sub{
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 52ch;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
}

.pricing-note{ margin-top: -6px; }


.pricing-card{
  position: relative;
  background: rgba(17,24,39,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.pricing-card h3{
  margin: 0;
  font-size: 1.15rem;
}

.price{
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .5px;
}

.price span{
  font-size: .9rem;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-card ul{
  list-style: none;
  padding: 0;
  margin: 6px 0 10px;
  display: grid;
  gap: 10px;
}

.pricing-card li{
  color: var(--text);
  font-size: .95rem;
  padding-left: 20px;
  position: relative;
}

.pricing-card li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}


/* Plan popular */
.pricing-card.popular{
  border-color: rgba(59,130,246,.45);
  background: linear-gradient(
    180deg,
    rgba(59,130,246,.10),
    rgba(17,24,39,.85)
  );
  box-shadow:
    0 18px 44px rgba(59,130,246,.18),
    0 0 0 1px rgba(59,130,246,.18) inset;
}

.pricing-card ul{
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
  margin-top: 10px;
}


.pricing-card .price{
  margin-bottom: 2px;
}


.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .68rem;
  padding: 5px 10px;
  letter-spacing: .3px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 20px rgba(59,130,246,.35);
}

.pricing-card > a{
  margin-top: auto;
}




/* Responsive */
@media (max-width: 820px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }

  .pricing-card{
    text-align: center;
  }

  .pricing-card ul{
    justify-items: center;
  }

  .pricing-card li{
    padding-left: 0;
  }

  .pricing-card li::before{
    display: none;
  }
}


/* ============================= */
/* FAQ (Accordion) */
/* ============================= */

/* FAQ */
#faq { 
  padding-inline: clamp(14px, 4vw, 28px);
}

#faq .faq-sub{
  max-width: 62ch;
  opacity: .85;
  margin: 10px 0 22px;
}

.faq-list{
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  max-width: 920px;
}

.faq-item{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}


.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;

  transition: background 220ms ease;
}

.faq-item.is-open .faq-q{ background: rgba(255,255,255,.06); }

.faq-q-text{
  font-weight: 650;
  letter-spacing: .2px;
}

.faq-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  flex: 0 0 auto;

  /* esto hace el giro buttery */
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.faq-item.is-open .faq-icon{
  transform: rotate(45deg);
}
/* panel */
.faq-a{
  height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;

  transition:
    height 320ms cubic-bezier(.2,.8,.2,1),
    opacity 200ms ease,
    transform 200ms cubic-bezier(.2,.8,.2,1);
}

.faq-item.is-open .faq-a{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* contenido */
.faq-a-inner{
  padding: 0 18px 16px;
}

@media (max-width: 520px){
  .faq-a-inner{ padding: 0 14px 14px; }
}

.faq-item.is-open .faq-a{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* texto */
.faq-a p{
  margin: 0;
  opacity: .9;
  line-height: 1.6;
  padding-top: 2px;
}

.faq-a-inner{ padding: 0 18px 16px; }


@media (max-width: 520px){
  .faq-q{ padding: 16px 14px; }
  .faq-a-inner{ padding: 0 14px 14px; }
}

@media (prefers-reduced-motion: reduce){
  .faq-item, .faq-a, .faq-icon, .faq-q{
    transition: none !important;
  }
}



/* ===== Final CTA ===== */
#final-cta > *{
  position: relative;
  z-index: 1;
}

#final-cta{
  scroll-margin-top: calc(var(--nav-h) + var(--anchor-gap));
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17,24,39,.55);
  padding: 56px 18px;
  margin-bottom: clamp(28px, 4vw, 48px);
  overflow: clip;
}

#final-cta::before{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    radial-gradient(520px 260px at 50% 30%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(520px 260px at 20% 80%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
    z-index: 0;
}

#final-cta h2{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

#final-cta p{
  margin: 0 auto 22px;
  max-width: 56ch;
  color: var(--muted);
}

.cta-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.cta-trust{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

/* ============================= */
/* Contact Form — Pro */
/* ============================= */

#contact {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 90px;
  background: rgba(17,24,39,.45);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding-top: 72px;
}

@media (max-width: 520px){
  #contact{
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.contact-form {
  margin-top: 24px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
/* ===============================
  Plan pill (selected plan)
  =============================== */

#contact .plan-pill{
  display: grid;
  grid-template-columns: auto 1fr auto; /* label | value | clear */
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;
  margin: 0 auto 12px;

  background: linear-gradient(180deg, rgba(59,130,246,.14), rgba(59,130,246,.08));
  border: 1px solid rgba(59,130,246,.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 26px rgba(0,0,0,.28);

  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;

  transition:
    opacity .22s ease,
    transform .22s ease,
    max-height .28s ease;
}

/* Elements alignment */
#contact .plan-pill__label{ justify-self: start; }

#contact .plan-pill__value{
  font-weight: 800;
  font-size: .95rem;
  color: rgba(229,231,235,.98);
  text-align: center;
  justify-self: center;

  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;


  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#contact .plan-pill__clear{ justify-self: end; }

/* Visible state */
#contact .plan-pill.is-visible{
  opacity: 1;
  transform: translateY(0);
  max-height: 90px;
  pointer-events: auto;
}

#contact .plan-pill.is-visible .plan-pill__value{
  text-shadow: 0 0 18px rgba(59,130,246,.25);
}

/* Label styling */
#contact .plan-pill__label{
  font-size: .72rem;
  font-weight: 500;
  color: rgba(229,231,235,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Clear button */
#contact .plan-pill__clear{
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  justify-self: end;
  align-self: center; 
  margin: 0;   

  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor: pointer;

  position: relative;

  transition:
    transform .15s ease,
    background .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}

#contact .plan-pill__clear::before,
#contact .plan-pill__clear::after{
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: rgba(229,231,235,.88);
}

#contact .plan-pill__clear::before{ transform: rotate(45deg); }
#contact .plan-pill__clear::after { transform: rotate(-45deg); }

#contact .plan-pill__clear:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

#contact .plan-pill__clear:hover::before,
#contact .plan-pill__clear:hover::after{
  background: rgba(229,231,235,1);
}

#contact .plan-pill__clear:active{
  transform: translateY(0);
}

#contact .plan-pill__clear:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(59,130,246,.30),
    0 10px 22px rgba(0,0,0,.25);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  #contact .plan-pill,
  #contact .plan-pill__clear{
    transition: none;
  }
}


.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}



.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.95rem;
  transition: 
  border-color 0.2s ease, 
  box-shadow 0.2s ease,
  background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-group textarea {
  resize: vertical;   /* solo permite agrandar hacia abajo */
  max-height: 220px;  /* límite visual elegante */
  min-height: 90px;   /* evita que lo hagan microscópico */
}


.contact-form button {
  width: 100%;
  margin-top: 12px;
}

/* Form validation states */
.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  background-color: rgba(239, 68, 68, 0.06);
}

/* Para form helpers (phone, submit note) */
.field-note {
  display: block;
  margin-top: 6px;

  font-size: 0.8rem;
  line-height: 1.4;

  color: rgba(255, 255, 255, 0.6);
}


.form-error {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #fca5a5;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
}

.form-global-error{
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .10);
  font-size: 0.95rem;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.form-global-error.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* Success message */
.form-success {
  margin: 14px auto 0 auto;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.9rem;
}

/* Smooth messages (error + success) */
.form-error,
.form-success {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: opacity, transform;
}

/* When visible */
.form-error.is-visible,
.form-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-error.is-visible {
  max-height: 40px; /* suficiente para 1 línea */
  margin-top: 6px;
}

/* ============================= */
/* Submit Loader */
/* ============================= */

.contact-form button {
  position: relative;
  overflow: hidden;
}


.contact-form button.is-loading .btn-text {
  opacity: 0.65;
}

.contact-form button.is-loading {
  pointer-events: none;
}

.contact-form .btn-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;

  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;

  position: relative;
}

.contact-form .btn-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.contact-form button.is-loading .btn-spinner {
  opacity: 1;
  transform: scale(1);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



/* WhatsApp fallback */
.contact-alt {
  margin-top: 18px;
  text-align: center;
}

.contact-alt .btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.contact-alt .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}



/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(11,15,23,.55);
  padding: 26px 18px;
}

.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  padding: 6px 10px;
  border-radius: 999px;
}

.footer-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}


/* ===== Focus-visible (accessibility + premium UX) ===== */
:focus-visible{
  outline: none;
}

/* Botones primarios y secundarios */
.btn-primary:focus-visible,
.pricing-btn-secondary:focus-visible,
.cta-btn-secondary:focus-visible,
.nav-cta:focus-visible,
.whatsapp-float:focus-visible{
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25);
  border-color: rgba(59,130,246,.65);
}

/* Brand (logo) focus */
.brand:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25);
  border-radius: 8px; /* para que no sea un rectángulo feo */
}

/* Links del nav */
.nav-links a:focus-visible{
  box-shadow:
    0 0 0 2px rgba(255,255,255,.45),
    0 0 0 6px rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}

/* Inputs (si luego agregás form real) */
input:focus-visible,
textarea:focus-visible{
  outline: none;
  border-color: rgba(59,130,246,.65);
  box-shadow:
    0 0 0 2px rgba(59,130,246,.45),
    0 0 0 6px rgba(59,130,246,.18);
}


.reveal {
  opacity: 0;
  transform: translateY(10px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}


/* ===== Premium transitions (single source of truth) ===== */
@media (prefers-reduced-motion: no-preference){
  .service-item,
  .about-list li,
  .pricing-card,
  .btn-primary,
  .pricing-btn-secondary,
  .cta-btn-secondary,
  .nav-links a,
  .nav-cta,
  .whatsapp-float,
  .brand{
    transition:
      transform .18s ease,
      box-shadow .18s ease,
      border-color .18s ease,
      background .18s ease,
      color .18s ease,
      filter .18s ease;
    will-change: transform;
  }
}

/* ===== Premium hover effects ===== */
@media (prefers-reduced-motion: no-preference){

  /* Cards / pills */
  .service-item:hover,
  .about-list li:hover,
  .pricing-card:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.14);
    box-shadow:
      0 18px 38px rgba(0,0,0,.34),
      0 0 0 1px rgba(59,130,246,.10);
    background: rgba(17,24,39,.82);
  }

  /* Popular pricing stays special */
  .pricing-card.popular:hover{
    box-shadow:
      0 26px 60px rgba(59,130,246,.28),
      0 0 0 1px rgba(59,130,246,.25) inset;
  }

  /* Primary CTA */
  .btn-primary:hover{
    transform: translateY(-2px);
    box-shadow:
      0 18px 44px rgba(59,130,246,.28),
      0 0 0 1px rgba(59,130,246,.18);
    filter: brightness(1.03);
  }

  .btn-primary:active{
    transform: translateY(0) scale(.99);
    filter: brightness(.98);
  }

  /* Secondary buttons */
  .pricing-btn-secondary:hover,
  .cta-btn-secondary:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
    cursor: pointer;
  }

  .pricing-btn-secondary:active,
  .cta-btn-secondary:active{
    transform: translateY(0) scale(.99);
  }

  /* Nav links */
  .nav-links a:hover{
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.10);
  }

  /* WhatsApp float */
  .whatsapp-float:hover{
    transform: translateY(-2px);
    border-color: rgba(34,197,94,.35);
    box-shadow: 0 22px 44px rgba(0,0,0,.40);
    background: rgba(17,24,39,.82);
  }

  .whatsapp-float:active{
    transform: translateY(0) scale(.99);
  }
}

/* ===== Secondary buttons: fully pinned ===== */
#pricing a.pricing-btn-secondary,
#final-cta a.cta-btn-secondary{
  -webkit-appearance: none;
  appearance: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 11px 16px;
  border-radius: 999px;

  text-decoration: none;
  color: var(--text);

  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);

  font-weight: 600;
}

#pricing a.pricing-btn-secondary:link,
#pricing a.pricing-btn-secondary:visited,
#final-cta a.cta-btn-secondary:link,
#final-cta a.cta-btn-secondary:visited{
  color: var(--text);
}

@media (prefers-reduced-motion: no-preference){
  #pricing a.pricing-btn-secondary:hover,
  #final-cta a.cta-btn-secondary:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
  }

  #pricing a.pricing-btn-secondary:active,
  #final-cta a.cta-btn-secondary:active{
    transform: translateY(0) scale(.99);
  }
}


/* ===== WhatsApp micro pulse ===== */
@keyframes wa-pulse {
  0% {
    box-shadow:
      0 16px 30px rgba(0,0,0,.30),
      0 0 0 0 rgba(34,197,94,.00);
    transform: translateY(0);
  }

  40% {
    box-shadow:
      0 18px 36px rgba(0,0,0,.36),
      0 0 0 10px rgba(34,197,94,.12);
    transform: translateY(-2px);
  }

  70% {
    box-shadow:
      0 18px 36px rgba(0,0,0,.36),
      0 0 0 18px rgba(34,197,94,.00);
    transform: translateY(0);
  }

  100% {
    box-shadow:
      0 16px 30px rgba(0,0,0,.30),
      0 0 0 0 rgba(34,197,94,.00);
    transform: translateY(0);
  }
}

/* Clase que activa el pulse */
.whatsapp-float.is-pulsing{
  animation: wa-pulse 2.8s ease-out;
}

/* ===================================================== */
/* Apex — Lead Qualifier Modal (Kaen-ish override)        */
/* ===================================================== */

html.modal-lock, html.modal-lock body {
  overflow: hidden;
}

.modal-overlay{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;

  padding: clamp(14px, 3.5vw, 22px);
  align-content: center;
  padding-top: clamp(16px, 4dvh, 32px);

  overflow: hidden;
  z-index: 9000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* ============================= */
/* Fondo oscuro (animado)        */
/* ============================= */
.modal-overlay::before{
  content:"";
  position:absolute;
  inset:0;

  background: rgba(0,0,0,.72);
  opacity: 0;

  transition: opacity 220ms ease;

  will-change: opacity;
  transform: translateZ(0);
}

/* ============================= */
/* Blur separado (sin trompicón) */
/* ============================= */
.modal-overlay::after{
  content:"";
  position:absolute;
  inset:0;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  transition: opacity 220ms ease;

  will-change: opacity;
  transform: translateZ(0);
}

.modal-overlay::before,
.modal-overlay::after{
  z-index: 0;
}

.modal-overlay.is-open::before,
.modal-overlay.is-open::after{
  opacity: 1;
}



.modal{
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  padding: 18px;

  transition: transform 260ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
}



#lead-modal.modal-overlay::before{
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

#lead-modal .modal{
  background:
    radial-gradient(420px 220px at 22% 14%, rgba(59,130,246,.18), transparent 58%),
    radial-gradient(520px 260px at 70% 0%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 28%),
    rgba(6,10,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  opacity: 0;

    /* max-height: calc(100dvh - clamp(24px, 6dvh, 48px)); */
  overflow: hidden;

  padding: clamp(14px, 3.6vw, 20px);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);

  /* app feel */
  transform: translateY(10px) scale(.98);
}


#lead-modal.modal-overlay.is-open .modal{
  opacity: 1;
  transform: translateY(0) scale(1);
}




/* subtle hover like Kaen */
@media (prefers-reduced-motion: no-preference){
  #lead-modal.modal-overlay.is-open .modal:hover{
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 32px 110px rgba(0,0,0,.66);
  }
}

/* ===============================
   Calendly button (shows after success)
   =============================== */
.calendly-btn{
  display: none;
  margin-top: 14px;
  width: 100%;
  justify-content: center;

  border-radius: 14px;
  padding: 12px 16px;
}

.calendly-btn.is-visible{
  display: inline-flex;
}


/* ===============================
   Calendly modal (overlay + modal box + iframe)
   =============================== */
#calendly-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  place-items: center;

  padding: 0 8px;

  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;

  color-scheme: dark; /* ayuda en browsers modernos */
}

#calendly-modal.is-open{
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

/* Dialog box */
#calendly-modal .calendly-modal{
  position: relative;
  width: min(1020px, calc(100vw - 16px));
  padding: 0;
  margin: 0;

  border-radius: 18px;
  overflow: hidden;

  background: rgba(12,16,26,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);

  transform: translateY(8px) scale(.99);
  transition: transform .18s ease;

  box-sizing: border-box;
}

#calendly-modal.is-open .calendly-modal{
  transform: translateY(0) scale(1);
}

/* Heights (desktop + mobile + svh) */
@media (min-width: 900px){
  #calendly-modal .calendly-modal{
    height: calc(98vh - 2px);
    max-height: 980px;
  }
}
@media (max-width: 899px){
  #calendly-modal .calendly-modal{
    height: calc(96vh - 2px);
    max-height: 920px;
  }
}
@media (max-width: 520px){
  #calendly-modal{
    padding-left: 10px;
    padding-right: 10px;
  }
  #calendly-modal .calendly-modal{
    height: 95vh;
    max-height: none;
    border-radius: 14px;
  }
}

@supports (height: 100dvh){
  @media (min-width: 900px){
    #calendly-modal .calendly-modal{ height: calc(98dvh - 2px); }
  }
  @media (max-width: 899px){
    #calendly-modal .calendly-modal{ height: calc(96dvh - 2px); }
  }
  @media (max-width: 520px){
    #calendly-modal .calendly-modal{ height: 95dvh; }
  }
}

/* iOS safe area (mejora Safari/Chrome/Google app) */
#calendly-modal{
  padding-top: max(10px, env(safe-area-inset-top));
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

#calendly-modal .modal-close{
  top: max(10px, env(safe-area-inset-top));
  left: max(10px, env(safe-area-inset-left));
}


/* Loading scheduler */
.calendly-loader{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  justify-content:center;
  background: rgba(11,15,23,.92);
  z-index:2;
  padding-top: max(0px, env(safe-area-inset-top));
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

.calendly-loader.is-hidden{
  display:none;
}

.spinner{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.18);
  border-top-color: rgba(255,255,255,.55);
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }



/* Close button (moved to LEFT to avoid Calendly controls) */
#calendly-modal .modal-close{
  position: absolute;
  top: 10px;
  left: 10px;   /* ✅ antes: right:10px */
  right: auto;
  z-index: 3;

  width: 36px;
  height: 36px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 22px;
  line-height: 1;

  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

#calendly-modal .modal-close:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.22);
}

#calendly-modal .modal-close:active{
  transform: translateY(0) scale(.98);
}

#calendly-modal .modal-close:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25);
}


/* ===============================
   Calendly iframe frame (disimular scrollbar cross-origin)
   =============================== */
#calendly-modal .calendly-frame{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(12,16,26,.92);
  border-radius: inherit;
  overflow: hidden;
  box-sizing: border-box;
}

#calendly-iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: rgba(11,15,23,1); /* evita flash blanco */
  box-sizing: border-box;
}

/* Fade derecho: disimula la barra blanca interna */
#calendly-modal .calendly-frame::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 16px;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(11,15,23,0),
    rgba(11,15,23,.65),
    rgba(11,15,23,1)
  );
}

/* Desktop: escondemos más el blanco */
@media (min-width: 700px){
  #calendly-modal .calendly-frame::after{
    width: 22px;
    background: linear-gradient(
      90deg,
      rgba(11,15,23,0),
      rgba(11,15,23,.75),
      rgba(11,15,23,1)
    );
  }
}

/* Mobile: fades arriba/abajo + un poco más ancho a la derecha */
@media (max-width: 520px){
  #calendly-modal .calendly-frame::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
      linear-gradient(180deg, rgba(11,15,23,1), rgba(11,15,23,0) 48px),
      linear-gradient(0deg, rgba(11,15,23,1), rgba(11,15,23,0) 52px);
  }

  #calendly-modal .calendly-frame::after{
    width: 20px;
  }
}



/* =============================== */
/* Modal Close — Premium App Feel */
/* =============================== */

#lead-modal .modal-close{
  position: absolute;
  top: 10px;
  right: 10px;

  width: 38px;
  height: 38px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: .02em;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  user-select: none;

  color: rgba(229,231,235,.95);
  font-size: 1.1rem;
  line-height: 1;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);

  transform: translateZ(0);
  transition:
    transform .16s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* Hover: glow + micro lift */
#lead-modal .modal-close:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 10px 22px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.10);
  transform: translateY(-1px) rotate(6deg);
}

/* Press feedback */
#lead-modal .modal-close:active{
  transform: translateY(0) scale(.94) rotate(-6deg);
  filter: brightness(1.08);
  box-shadow:
    0 2px 8px rgba(0,0,0,.35),
    0 0 0 1px rgba(59,130,246,.35);
}

/* Focus ring  */
#lead-modal .modal-close:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25),
    0 12px 26px rgba(0,0,0,.25);
}

#lead-modal .modal-close span,
#lead-modal .modal-close{
  transition: inherit;
}

#lead-modal .modal-close:hover{
  transform: translateY(-1px) rotate(12deg) scale(1.05);
}


#lead-modal .modal-step{
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(229,231,235,.62);
  margin-bottom: 6px;
}

#lead-modal .modal-progress{
  position: relative;
  height: 4px;
  max-width: 85%;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
    box-shadow:
    inset 0 1px 2px rgba(255,255,255,.06),
    inset 0 -1px 2px rgba(0,0,0,.35);
}

#lead-modal .modal-progress-bar{
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 28.33%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: 999px;
  transition: width .28s cubic-bezier(.2,.8,.2,1);
}

#lead-modal .modal-progress-bar::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,.22),
    transparent 65%
  );
  transform: translateX(-45%);
  opacity: .9;
}

/* Solo cuando el modal está abierto y hay motion */
@media (prefers-reduced-motion: no-preference){
  #lead-modal.modal-overlay.is-open .modal-progress-bar::after{
    animation: leadSheen 1.9s ease-in-out infinite;
  }
}

@keyframes leadSheen{
  0%   { transform: translateX(-55%); opacity: 0; }
  20%  { opacity: .9; }
  60%  { opacity: .9; }
  100% { transform: translateX(55%); opacity: 0; }
}

/* Header hierarchy */
#lead-modal h3{
  font-size: clamp(1.25rem, 4.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .3px;
  margin: 2px 44px 8px 0;
}

#lead-modal p{
  margin: 0 0 14px;
  color: rgba(229,231,235,.82);
  max-width: 62ch;
}

/* divider under intro (tiny but pro) */
#lead-modal p::after{
  content:"";
  display:block;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  opacity: .9;
}


/* Each question = Kaen card */
#lead-modal .lead-qualifier-form .form-group{
  margin: 0; /* neutralize possible defaults */
  padding: 14px 14px;
  border-radius: 18px;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}


@media (prefers-reduced-motion: no-preference){
  #lead-modal .lead-qualifier-form .form-group:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.38);
    border-color: rgba(59,130,246,.18);
  }
}

/* Label like Kaen */
#lead-modal .lead-qualifier-form .form-group > label{
  display: block;
  margin: 0 0 10px;

  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(59,130,246,.95);
}

/* Chips row like Kaen */
#lead-modal .chip-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Chip button — app control (premium) */
#lead-modal .chip{
  -webkit-appearance: none;
  appearance: none;

  position: relative;
  padding: 10px 14px;
  padding-left: 14px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(229,231,235,.95);

  font-size: .95rem;
  font-weight: 650;

  cursor: pointer;
  user-select: none;

  flex-grow: 1;
  flex-basis: 130px;

  transform: translateZ(0);
  transition:
    transform .16s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* Hover: lift + sheen */
#lead-modal .chip:hover{
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 0 0 1px rgba(59,130,246,.12),
    0 10px 22px rgba(0,0,0,.26);
  transform: translateY(-1px);
}

/* Press feedback (se siente táctil) */
#lead-modal .chip:active{
  transform: translateY(0px) scale(.985);
  filter: brightness(1.03);
}

/* Active chip — Kaen glow (stable, no hover fight) */
#lead-modal .chip.is-active{
  background: linear-gradient(180deg, rgba(59,130,246,.92), rgba(37,99,235,.92));
  border-color: rgba(59,130,246,.78);
  color: #fff;
  padding-left: 34px;

  box-shadow:
    0 0 0 1px rgba(59,130,246,.28),
    0 16px 34px rgba(59,130,246,.18);
  transform: scale(1.02);
  filter: saturate(1.06);
}

/* Mantener activo consistente aunque el mouse esté encima */
#lead-modal .chip.is-active:hover{
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(37,99,235,.95));
  border-color: rgba(59,130,246,.86);
  box-shadow:
    0 0 0 1px rgba(59,130,246,.32),
    0 18px 40px rgba(59,130,246,.20);
  transform: scale(1.02);
}

/* Active check (premium feedback) */
#lead-modal .chip.is-active::before{
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  font-weight: 900;
  opacity: .95;
}

/* Focus */
#lead-modal .chip:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25),
    0 14px 30px rgba(0,0,0,.22);
}


@media (prefers-reduced-motion: no-preference){
  #lead-modal .chip.is-active{
    animation: chipPop .18s ease;
  }
  @keyframes chipPop{
    0%   { transform: scale(1.00); }
    60%  { transform: scale(1.03); }
    100% { transform: scale(1.02); }
  }
}


/* Error state like Kaen but subtle */
#lead-modal .lead-qualifier-form .form-group.has-error{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.08);
  outline: none;
}
#lead-modal .lead-qualifier-form .form-group.has-error > label{
  color: rgba(255,170,170,.95);
}

/* CTA footer = app-style */
#lead-modal .lead-qualifier-form button[type="submit"]{
  margin-top: 2px;
  width: 100%;
}

#lead-modal .modal-actions{
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  margin-top: 6px;

  background: linear-gradient(180deg, transparent, rgba(17,24,39,.92) 28%);
  border-top: 1px solid rgba(255,255,255,.08);
}

#lead-modal .modal-micro{
  margin: 10px 0 0;
  font-size: .85rem;
  color: rgba(229,231,235,.72);
  text-align: center;
}

/* =============================== */
/* Lead Qualifier — Form + Steps   */
/* =============================== */

#lead-modal .lead-qualifier-form{
  position: relative;
  display: grid;
  gap: 14px;
  padding-bottom: 6px;

  height: auto;                 /* JS lo setea */
  transition: height .22s ease; /* anima el alto */
}

#lead-modal .step{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;

  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity .22s ease, transform .22s ease;
}

#lead-modal .step.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* Dirección */
#lead-modal .lead-qualifier-form.dir-next .step.is-prev{ transform: translateX(-14px); }
#lead-modal .lead-qualifier-form.dir-back .step.is-prev{ transform: translateX(14px); }

/* Modal no debe mostrar desbordes por fuera */
#lead-modal .modal{ overflow: hidden; }

@media (prefers-reduced-motion: no-preference){
  #lead-modal .modal{
    will-change: transform;
  }
  #lead-modal .lead-qualifier-form.dir-next,
  #lead-modal .lead-qualifier-form.dir-back{
    animation: stepSnap .16s ease;
  }
  @keyframes stepSnap{
    0%   { transform: translateY(0); }
    60%  { transform: translateY(-1px); }
    100% { transform: translateY(0); }
  }
}


/* =============================== */
/* Step Actions — Premium App UI  */
/* =============================== */

#lead-modal .step-actions{
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* Base shared button feel */
#lead-modal .step-actions .btn-primary,
#lead-modal .step-actions .btn-secondary{
  flex: 1;
  cursor: pointer;
  user-select: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;

  transition:
    transform .16s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* ------------------------------- */
/* Secondary (Back) Button        */
/* ------------------------------- */

#lead-modal .btn-secondary{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(229,231,235,.92);
  cursor: pointer;
}

/* Hover: subtle lift + sheen */
#lead-modal .btn-secondary:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 10px 22px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* Press feedback */
#lead-modal .btn-secondary:active{
  transform: translateY(0) scale(.985);
  filter: brightness(1.04);
}

/* Disabled */
#lead-modal .btn-secondary:disabled{
  opacity: .45;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

#lead-modal .btn-secondary{
  transition:
    transform .18s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

#lead-modal .btn-secondary:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.35),
    0 0 0 1px rgba(59,130,246,.18);
}

#lead-modal .btn-secondary:active{
  transform: translateY(0) scale(.97);
  box-shadow:
    0 4px 12px rgba(0,0,0,.35),
    0 0 0 1px rgba(59,130,246,.25);
}

/* ------------------------------- */
/* Primary (Next / Continue)      */
/* ------------------------------- */

#lead-modal .step-actions .btn-primary{
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(59,130,246,.65);
  background: linear-gradient(180deg, rgba(59,130,246,.95), rgba(37,99,235,.95));
  color: #fff;

  box-shadow:
    0 8px 22px rgba(59,130,246,.28),
    0 0 0 1px rgba(59,130,246,.22);
}

#lead-modal .step-actions .btn-primary::after{
  content:"";
  position:absolute;
  inset:-45% -60%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.20),
    transparent 60%
  );
  transform: translateX(-60%);
  opacity: 0;
  transition: transform .55s ease, opacity .25s ease;
}

#lead-modal .step-actions .btn-primary:hover::after{
  opacity: 1;
  transform: translateX(60%);
}

/* Hover: glow + lift */
#lead-modal .step-actions .btn-primary:hover{
  background: linear-gradient(180deg, rgba(59,130,246,1), rgba(37,99,235,1));
  border-color: rgba(59,130,246,.85);
  box-shadow:
    0 14px 34px rgba(59,130,246,.35),
    0 0 0 1px rgba(59,130,246,.35);
  transform: translateY(-1px);
}

/* Press feedback */
#lead-modal .step-actions .btn-primary:active{
  transform: translateY(0) scale(.985);
  filter: brightness(1.04);
}

/* Focus (both) */
#lead-modal .step-actions .btn-primary:focus-visible,
#lead-modal .step-actions .btn-secondary:focus-visible{
  outline: 2px solid rgba(59,130,246,.7);
  outline-offset: 3px;
  box-shadow:
    0 0 0 2px rgba(59,130,246,.55),
    0 0 0 6px rgba(59,130,246,.25),
    0 14px 30px rgba(0,0,0,.22);
}



/* Mobile fixes */
@media (max-width: 520px){
  #lead-modal .modal{
    width: 100%;
    padding: 16px;
  }



  #lead-modal .lead-qualifier-form .form-group{
    padding: 12px;
  }
}

@media (max-width: 420px){
  #lead-modal .chip-row{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #lead-modal .chip{
    width: 100%;
  }
}

/* 2) En pantallas bajas: comprimimos padding y espacios */
@media (max-height: 740px){
  #lead-modal .modal{
    padding: 14px;
  }

  #lead-modal p{
    margin-bottom: 10px;
  }

  #lead-modal p::after{
    margin-top: 10px;
  }

  #lead-modal .lead-qualifier-form{
    gap: 12px;
  }

  #lead-modal .lead-qualifier-form .form-group{
    padding: 12px;
  }
}



@media (prefers-reduced-motion: reduce){
  #lead-modal .modal,
  #lead-modal .lead-qualifier-form .form-group,
  #lead-modal .chip{
    transition: none !important;
  }
}


@media (max-height: 700px){
  #lead-modal .modal{
    padding: 12px;
  }
}

