/* ─────────────────────────────────────────────────────────────────
   LINKCARS — corporate website
   Brand: warm amber/orange derived from logo (#F09000)
   Type: Outfit
   ───────────────────────────────────────────────────────────────── */

:root{
  /* Brand */
  --brand:        #F09000;
  --brand-600:   #D97B00;
  --brand-700:   #B86700;
  --brand-tint:  #FFF4DF;
  --brand-tint2: #FFE8C2;

  /* Ink */
  --ink:         #0E1726;
  --ink-2:       #3D4A60;
  --ink-3:       #6B7689;
  --ink-4:       #97A1B2;

  /* Surfaces */
  --bg:          #FFFFFF;
  --bg-soft:     #FAF8F4;
  --bg-warm:     #FBF6EC;
  --bg-dark:     #0E1726;
  --hairline:    #ECE7DE;
  --hairline-2:  #E2DDD2;

  /* Status */
  --ok:          #1E9E62;
  --ok-tint:     #DCF4E7;
  --warn:        #C97500;
  --warn-tint:   #FFEACB;
  --info:        #2563EB;
  --info-tint:   #DBEAFE;

  --shadow-sm:   0 1px 2px rgba(15,23,38,.05), 0 1px 1px rgba(15,23,38,.03);
  --shadow-md:   0 10px 30px -12px rgba(15,23,38,.15), 0 4px 12px -8px rgba(15,23,38,.08);
  --shadow-lg:   0 30px 60px -30px rgba(15,23,38,.30), 0 12px 30px -20px rgba(15,23,38,.18);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   28px;

  --container:   1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; overflow-x:clip; }

html{ scroll-behavior:smooth; }
body{
  font-family:'Outfit', system-ui, sans-serif;
  font-size:17px;
  line-height:1.55;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* Botón flotante de WhatsApp */
.wa-float{
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.18);
  z-index: 45;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover{ transform: scale(1.08); box-shadow: 0 14px 30px -6px rgba(37,211,102,.7), 0 2px 8px rgba(0,0,0,.2); }
.wa-float svg{ width: 30px; height: 30px; }
.wa-float::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:.45; z-index:-1;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform: scale(1); opacity:.45; }
  70%{ transform: scale(1.7); opacity:0; }
  100%{ opacity:0; }
}
@media (max-width:720px){
  .wa-float{ width:52px; height:52px; right:16px; bottom:16px; }
  .wa-float svg{ width:27px; height:27px; }
}

/* Honeypot anti-spam (oculto a usuarios reales) */
.hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }
/* Mensaje de error de formulario */
.form__err{ display:none; margin-top:12px; font-size:14px; color:#B43E3E; background:#FEEEEE; border:1px solid #FAD8D8; border-radius:10px; padding:10px 14px; }
.form__err a{ color:#B43E3E; font-weight:600; text-decoration:underline; }
button[data-loading]{ opacity:.7; cursor:progress; }

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

.muted{ color:var(--ink-3); }

/* ─────────────────────────  Typography  ───────────────────────── */
.h1{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.h1__accent{
  display:block;
  color:var(--brand);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.025em;
}
.h2{
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px;
  text-wrap: balance;
}
.h2--light{ color:#fff; }

.lede{
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
}

.section-head{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-lede{
  font-size: 19px;
  color: var(--ink-2);
  margin: 6px 0 0;
}

/* ─────────────────────────  Bits  ───────────────────────── */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--brand-700);
  background:var(--brand-tint);
  border:1px solid var(--brand-tint2);
  padding:6px 12px;
  border-radius:999px;
}
.eyebrow__dot{
  width:6px;height:6px;border-radius:99px;background:var(--brand);
  box-shadow:0 0 0 4px rgba(240,144,0,.18);
}
.eyebrow--quiet{
  background:transparent;
  border-color:var(--hairline);
  border-bottom-width:8px;
  color:var(--ink-3);
  font-weight:600;
}
.eyebrow--on-dark{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:#FFD89A;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  letter-spacing:-0.005em;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn--sm{ padding:9px 14px; font-size:14px; border-radius:10px; }
.btn--lg{ padding:14px 20px; font-size:16px; border-radius:14px; }
.btn--block{ width:100%; }

.btn--primary{
  background:var(--brand);
  color:#fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 22px -10px rgba(240,144,0,.65);
}
.btn--primary:hover{
  background:var(--brand-600);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 12px 28px -10px rgba(240,144,0,.7);
}
.btn--ghost{
  background:#fff;
  color:var(--ink);
  border-color:var(--hairline-2);
}
.btn--ghost:hover{
  border-color:var(--ink-4);
  background:var(--bg-soft);
}

.link-quiet{
  color:var(--ink-2);
  font-weight:500;
  font-size:14px;
}
.link-quiet:hover{ color:var(--ink); }

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:18px;
  color:var(--brand-700);
  font-weight:600;
  font-size:15px;
}
.link-arrow:hover{ color:var(--brand-600); gap:10px; }

/* Chip / pill */
.chip{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:600;
  padding:3px 10px;
  border-radius:999px;
  background:var(--bg-soft);
  color:var(--ink-2);
  border:1px solid var(--hairline);
}
.chip--soft{ background:var(--brand-tint); color:var(--brand-700); border-color:var(--brand-tint2); }

.pill{
  display:inline-flex;
  align-items:center;
  font-size:13px;
  padding:6px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--ink-2);
  border:1px solid var(--hairline-2);
  font-weight:500;
}
.pill--active{ background:#fff; color:var(--ink); border-color:var(--hairline); font-weight:600; box-shadow: var(--shadow-sm); }

/* ─────────────────────────  Nav  ───────────────────────── */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom:1px solid var(--hairline);
}
.nav__inner{
  display:flex;
  align-items:center;
  gap:24px;
  height:68px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  letter-spacing:-0.01em;
  font-size:19px;
}
.brand__mark{ width:28px; height:28px; }
.brand__word{ color:var(--ink); }
.brand--light .brand__word{ color:#fff; }

.nav__links{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:18px;
}
.nav__links a{
  color:var(--ink-2);
  font-size:15px;
  font-weight:500;
  position:relative;
  white-space:nowrap;
  flex-shrink:0;
}
.nav__links a:hover{ color:var(--ink); }
.nav__links a.is-active{ color:var(--brand-700); font-weight:600; }
.nav__links a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-7px;
  height:2px; background:var(--brand); border-radius:2px;
}

/* Servicios dropdown */
.nav__drop{ position: relative; display:inline-flex; align-items:center; }
.nav__droptrigger{
  display:inline-flex; align-items:center; gap:5px;
  background:none; border:0; cursor:pointer; padding:0;
  font-family:inherit; font-size:15px; font-weight:500; color:var(--ink-2);
  white-space:nowrap;
}
.nav__droptrigger:hover{ color:var(--ink); }
.nav__droptrigger.is-active{ color:var(--brand-700); font-weight:600; }
.nav__droptrigger svg{ width:12px; height:12px; transition: transform .2s; color:var(--ink-4); }
.nav__drop:hover .nav__droptrigger svg,
.nav__drop:focus-within .nav__droptrigger svg{ transform: rotate(180deg); color:var(--ink-3); }
.nav__dropmenu{
  position:absolute; top: 100%; left:50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 14px;
  width: 340px;
  background:#fff; border:1px solid var(--hairline);
  border-radius:16px; box-shadow: var(--shadow-lg);
  padding:8px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:60;
}
.nav__dropmenu::before{
  content:""; position:absolute; top:-14px; left:0; right:0; height:14px;
}
.nav__drop:hover .nav__dropmenu,
.nav__drop:focus-within .nav__dropmenu{
  opacity:1; visibility:visible; pointer-events:auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropitem{
  display:flex; align-items:center; gap:12px;
  padding:11px 12px; border-radius:11px;
}
.nav__dropitem:hover{ background:var(--bg-warm); }
.nav__dropico{
  width:40px; height:40px; border-radius:11px; flex-shrink:0;
  background:var(--brand-tint); border:1px solid var(--brand-tint2); color:var(--brand-700);
  display:inline-flex; align-items:center; justify-content:center;
}
.nav__dropico svg{ width:20px; height:20px; }
.nav__droptxt strong{ display:block; font-size:14.5px; color:var(--ink); font-weight:600; letter-spacing:-0.005em; }
.nav__droptxt em{ display:block; font-style:normal; font-size:12.5px; color:var(--ink-3); margin-top:1px; }

.nav__cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__burger{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
  cursor:pointer;
  flex-direction:column;
  gap:4px;
}
.nav__burger span{
  display:block; width:22px; height:2px; background:var(--ink); border-radius:2px;
}

/* ─────────────────────────  Hero  ───────────────────────── */
.hero{
  position:relative;
  overflow:hidden;
  padding: 64px 0 80px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(240,144,0,.10), transparent 60%),
    linear-gradient(180deg, #FFFCF6 0%, #FFFFFF 60%);
}
.hero__bg{
  position:absolute; inset:0; pointer-events:none;
}
.hero__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(15,23,38,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,38,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
}
.hero__glow{
  position:absolute;
  right:-200px; top:-100px;
  width:780px; height:780px;
  background: radial-gradient(closest-side, rgba(240,144,0,.22), transparent 70%);
  filter: blur(20px);
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items:center;
  gap:64px;
}

.hero__ctas{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.hero__trust{
  display:flex;
  align-items:center;
  gap:8px;
  margin: 22px 0 0;
  color: var(--ink-3);
  font-size:15px;
}
.hero__trust svg{ color: var(--ok); }

.hero__logos{
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.hero__logos-label{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--ink-3);
  font-weight:600;
}
.logos{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  color:var(--ink-3);
  font-weight:500;
  font-size:15px;
  letter-spacing:-0.005em;
}

/* ─────────────────────────  Hero — app window (legacy, unused on home)  ───────────────────────── */
.appwin{
  position:relative;
  width: 760px;
  max-width: 100%;
  background:#fff;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  box-shadow:
    0 1px 1px rgba(15,23,38,.04),
    0 30px 60px -25px rgba(15,23,38,.28),
    0 12px 24px -18px rgba(15,23,38,.20);
  overflow:hidden;
  transform: rotate(-0.4deg);
}

.appwin__chrome{
  display:flex; align-items:center; gap:14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, #FBFAF6, #F2EFE7);
}
.appwin__lights{ display:flex; gap:6px; flex-shrink:0; }
.appwin__lights span{
  width:11px; height:11px; border-radius:99px;
  background:#E4DED3;
}
.appwin__lights span:nth-child(1){ background:#FF6058; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.1); }
.appwin__lights span:nth-child(2){ background:#FFBD2E; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.1); }
.appwin__lights span:nth-child(3){ background:#28C940; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.1); }

.appwin__tabs{
  display:flex; align-items:center; gap:4px;
  flex-shrink:0;
}
.appwin__tab{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11.5px;
  color: var(--ink-3);
  padding: 5px 10px;
  border-radius: 7px 7px 0 0;
  margin-bottom:-11px;
  border:1px solid transparent;
  border-bottom: none;
}
.appwin__tab.is-active{
  background:#fff;
  color: var(--ink);
  border-color: var(--hairline);
  font-weight:500;
}
.appwin__tab.is-active svg{ color: var(--brand); }

.appwin__url{
  flex:1;
  display:inline-flex; align-items:center; justify-content:center;
  gap:6px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  color: var(--ink-3);
  background:#fff;
  border:1px solid var(--hairline);
  border-radius: 99px;
  padding: 4px 14px;
  max-width: 380px;
  margin: 0 auto;
}
.appwin__url svg{ color: var(--ok); }

.appwin__body{
  display:grid;
  grid-template-columns: 174px 1fr;
}

/* Sidebar */
.appwin__side{
  border-right: 1px solid var(--hairline);
  background: var(--bg-warm);
  padding: 16px 12px;
  display:flex; flex-direction:column; gap:14px;
}
.appwin__brand{
  display:flex; align-items:center; gap:8px;
  padding: 4px 6px 0;
  font-weight:700;
  letter-spacing:-0.01em;
  font-size:15px;
  color: var(--ink);
}
.appwin__brand img{ width:20px; height:20px; }

.appwin__org{
  display:flex; align-items:center; gap:8px;
  padding: 8px 8px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--hairline);
  font-size:12px;
  font-weight:500;
  color: var(--ink);
}
.appwin__org-avatar{
  width:22px; height:22px; border-radius:6px;
  background: var(--brand);
  color:#fff;
  font-size:10px; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center;
}
.appwin__org-name{
  flex:1;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  font-size:12.5px;
}
.appwin__org > svg{ color: var(--ink-4); }

.appwin__nav{
  display:flex; flex-direction:column; gap:1px;
}
.appwin__navi{
  display:flex; align-items:center; gap:9px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor:pointer;
}
.appwin__navi svg{ width:15px; height:15px; color: var(--ink-3); flex-shrink:0; }
.appwin__navi:hover{ background: rgba(255,255,255,.7); }
.appwin__navi.is-active{
  background: #fff;
  color: var(--ink);
  font-weight:600;
  box-shadow: 0 1px 2px rgba(15,23,38,.04);
}
.appwin__navi.is-active svg{ color: var(--brand-700); }
.appwin__badge{
  margin-left:auto;
  background: var(--brand-tint);
  color: var(--brand-700);
  font-size: 10.5px;
  font-weight:600;
  padding: 1px 7px;
  border-radius: 99px;
  border:1px solid var(--brand-tint2);
}
.appwin__sub{
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-4);
  font-weight: 600;
  padding: 8px 10px 0;
}
.appwin__nav--quiet .appwin__navi{ color: var(--ink-3); }

/* Main */
.appwin__main{
  display:flex; flex-direction:column;
  background: #fff;
  min-width: 0;
}
.appwin__top{
  display:flex; align-items:center; gap:12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hairline);
}
.appwin__crumbs{
  display:inline-flex; align-items:center; gap:6px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.appwin__crumbs svg{ color: var(--ink-4); }
.appwin__crumbs .is-current{ color: var(--ink); font-weight:600; }

.appwin__search{
  flex: 1;
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  max-width: 360px;
  margin-left: 12px;
}
.appwin__search kbd{
  margin-left:auto;
  font-family:'Outfit', sans-serif;
  font-size: 10.5px;
  color: var(--ink-3);
  background:#fff;
  padding: 1px 6px;
  border-radius: 5px;
  border:1px solid var(--hairline);
}

.appwin__topr{ display:flex; align-items:center; gap:8px; margin-left:auto; }
.iconbtn--top{
  position:relative;
  width:30px; height:30px; border-radius:8px;
  border:1px solid var(--hairline);
  background:#fff;
  color: var(--ink-2);
}
.iconbtn--top i{
  position:absolute; top:6px; right:7px;
  width:6px; height:6px; border-radius:99px;
  background: var(--brand);
  box-shadow: 0 0 0 2px #fff;
}
.iconbtn--top svg{ width:15px; height:15px; }
.avatar--sm{ width:28px; height:28px; font-size:11px; border-radius:8px; }

.appwin__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding: 16px 22px 12px;
}
.appwin__h{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.appwin__sub2{
  font-size: 12.5px;
  color: var(--ink-3);
}
.appwin__actions{ display:flex; gap:8px; }
.btnx{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px;
  font-weight:600;
  padding: 7px 12px;
  border-radius: 8px;
  border:1px solid transparent;
  font-family:inherit;
  cursor:pointer;
}
.btnx--ghost{ background:#fff; border-color:var(--hairline); color:var(--ink-2); }
.btnx--primary{ background:var(--brand); color:#fff; box-shadow: 0 4px 10px -5px rgba(240,144,0,.6); }

.appwin__filters{
  display:flex; gap:6px; flex-wrap:wrap;
  padding: 0 22px 12px;
}
.appwin__filters .pill{ font-size:12px; padding: 4px 10px; }

/* Table */
.stb{
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.stb thead th{
  text-align:left;
  font-weight:600;
  color: var(--ink-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 12px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-soft);
}
.stb thead th:first-child{ padding-left: 22px; }
.stb thead th:last-child{ padding-right: 22px; }
.stb tbody td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
.stb tbody td:first-child{
  padding-left: 22px;
  display:flex; align-items:center; gap:10px;
}
.stb tbody td:last-child{ padding-right: 22px; }
.stb tbody tr:hover{ background: var(--bg-warm); }
.stb__who strong{ display:block; font-size:13px; line-height:1.2; }
.stb__who span{ display:block; font-size:11px; color: var(--ink-4); font-family:'Outfit', sans-serif; }
.stb__pkg{ display:block; font-weight:600; font-size:12.5px; }
.stb__sub{ display:block; font-size:11px; color: var(--ink-3); margin-top:2px; }
.stb__strong{ font-weight:600; font-size:12.5px; }
.stb .meter{ width: 100%; margin-bottom:3px; }

.appwin__foot{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 22px;
  border-top: 1px solid var(--hairline);
}
.appwin__foot .muted{ font-size: 12px; }
.appwin__pager{ display:flex; align-items:center; gap:4px; }
.appwin__pager .pill{ font-size:11.5px; padding:3px 9px; }
.appwin__pager .iconbtn{
  width: 24px; height: 24px; border-radius: 6px;
  background:#fff; border:1px solid var(--hairline);
}

/* Shared status / avatar / meter (used in table) */
.avatar{
  width:32px; height:32px; border-radius:99px;
  background: var(--c, var(--ink));
  color:#fff;
  font-size:12px; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center;
  letter-spacing:.02em;
  flex-shrink:0;
}
.avatar--lg{ width:42px; height:42px; border-radius:99px; font-size:14px; }
.avatar--photo{ display:block; overflow:hidden; flex-shrink:0; align-self:center; --c:transparent; }
.avatar--photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.meter{
  display:block;
  height:5px;
  background:var(--hairline);
  border-radius:99px;
  overflow:hidden;
  margin-bottom:4px;
}
.meter > span{
  display:block;
  height:100%;
  background:var(--brand);
  border-radius:99px;
}
.status{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  padding:3px 9px;
  border-radius:99px;
  letter-spacing:.02em;
}
.status--ok{ background:var(--ok-tint); color:var(--ok); }
.status--warn{ background:var(--warn-tint); color:var(--warn); }
.status--new{ background:var(--info-tint); color:var(--info); }

/* ── Agenda mockup (hero) ── */
.agz-bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  padding: 4px 22px 12px;
}
.agz-day{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.agz-nav{
  width:26px; height:26px; border-radius:8px;
  border:1px solid var(--hairline); background:#fff;
  color:var(--ink-3); font-size:14px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.agz-today{ font-weight:700; font-size:13.5px; }
.agz-pills{ display:flex; gap:6px; flex-wrap:wrap; margin-left:6px; }
.agz-pills .pill{ font-size:11.5px; padding:4px 10px; }
.agz-toggle{
  display:inline-flex; background:var(--bg-soft);
  border:1px solid var(--hairline); border-radius:8px; padding:3px; gap:2px;
}
.agz-toggle span{
  font-size:11.5px; padding:4px 10px; border-radius:6px;
  color:var(--ink-3); font-weight:500;
}
.agz-toggle .is-on{ background:#fff; color:var(--ink); box-shadow: var(--shadow-sm); }

.agz{ width:100%; border-collapse:collapse; font-size:12.5px; table-layout:fixed; }
.agz thead th:nth-child(1){ width:15%; }
.agz thead th:nth-child(2){ width:16%; }
.agz thead th:nth-child(3){ width:27%; }
.agz thead th:nth-child(4){ width:27%; }
.agz thead th:nth-child(5){ width:15%; }
.agz thead th{
  text-align:left; font-size:10.5px; text-transform:uppercase;
  letter-spacing:.06em; color:var(--ink-4); font-weight:600;
  padding:9px 9px;
  border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
  background:var(--bg-soft);
}
.agz thead th:first-child{ padding-left:18px; }
.agz-th-act{ text-align:right !important; padding-right:14px; }
.agz tbody td{
  padding:11px 9px; border-bottom:1px solid var(--hairline);
  vertical-align:middle;
  overflow-wrap:anywhere;
}
.agz tbody td:first-child{ padding-left:18px; }
.agz tbody td:last-child{ padding-right:14px; }
.agz tbody tr:hover{ background:var(--bg-warm); }
.agz tbody tr.is-past td{ opacity:.5; }
.agz tbody tr.is-active{
  background:#FEFAEC;
  box-shadow: inset 3px 0 0 var(--brand);
}
.agz tbody tr.is-active:hover{ background:#FDF6E0; }
.agz tbody tr.is-active .agz__time{ color:var(--brand-700); font-weight:600; }

.agz__time{
  font-family:'Outfit', sans-serif;
  font-size:11px; color:var(--ink-2); font-weight:500;
  line-height:1.3;
}

.tbadge{
  display:inline-flex; align-items:center; gap:5px;
  font-size:11.5px; font-weight:600;
  padding:4px 9px; border-radius:7px;
  border:1px solid; white-space:nowrap;
}
.tbadge svg{ width:13px; height:13px; }
.tbadge--prac{ color:#B86700; background:var(--brand-tint); border-color:var(--brand-tint2); }
.tbadge--teo{ color:#2563EB; background:#DBEAFE; border-color:#BFD7FE; }
.tbadge--exam{ color:#475569; background:#F1F5F9; border-color:#E2E8F0; }
.tbadge-ref{
  display:inline-block; margin-top:5px;
  font-size:9px; font-weight:700; letter-spacing:.06em;
  color:#B86700; background:var(--brand-tint);
  border:1px solid var(--brand-tint2);
  padding:2px 7px; border-radius:5px; text-transform:uppercase;
}

.agz__det strong{ font-size:13px; display:block; font-weight:600; letter-spacing:-0.005em; }
.agz__det span{ font-size:11.5px; color:var(--ink-3); display:block; }
.agz__det span em{ font-style:normal; }
.agz__pend{ color:var(--brand-700); font-weight:600; }
.agz__count{
  font-family:'Outfit', sans-serif;
  font-size:10px; color:var(--ink-4);
  background:var(--bg-soft); border:1px solid var(--hairline);
  padding:1px 6px; border-radius:5px; margin-left:6px;
  vertical-align:middle;
}
.agz__meter{ width:100%; max-width:160px; margin:6px 0 3px; }
.agz__meter > span{ background: var(--ok); }
.agz__sub{ font-size:11px; color:var(--ink-3); }

.agz__instr{ display:flex; align-items:flex-start; gap:7px; font-size:12.5px; font-weight:500; min-width:0; overflow-wrap:anywhere; line-height:1.3; }
.agz__pi{ width:15px; height:15px; color:var(--ink-4); flex-shrink:0; margin-top:1px; }
.agz__veh{ display:flex; gap:5px; margin-top:6px; }
.vpill{
  display:inline-flex; align-items:center; gap:3px;
  font-size:10.5px; color:var(--ink-2);
  background:var(--bg-soft); border:1px solid var(--hairline);
  padding:2px 8px; border-radius:6px;
}
.agz__room{
  display:flex; align-items:center; gap:5px;
  font-size:11px; color:var(--ink-3); margin-top:5px;
}
.agz__room svg{ width:13px; height:13px; flex-shrink:0; }
.agz__plate{
  font-family:'Outfit', sans-serif; font-size:10.5px;
  color:var(--ink-2); background:var(--bg-soft);
  border:1px solid var(--hairline); padding:1px 6px; border-radius:5px;
}

.agz__acts{ display:flex; gap:6px; justify-content:flex-end; }
.az-btn{
  width:26px; height:26px; border-radius:8px;
  border:1px solid var(--hairline); background:#fff;
  color:var(--ink-3); cursor:pointer; flex-shrink:0;
  display:inline-flex; align-items:center; justify-content:center;
}
.az-btn svg{ width:14px; height:14px; }
.az-btn:hover{ border-color:var(--ink-4); color:var(--ink); }
.az-btn--danger{ color:#D4543E; border-color:#FAD8D8; background:#FEEEEE; }
.az-btn--warn{ color:var(--brand-700); border-color:var(--brand-tint2); background:var(--brand-tint); }
.agz__dash{ color:var(--ink-4); padding-right:4px; }

/* ─────────────────────────  Hero — focused schedule card  ───────────────────────── */
.hero__visual{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sched{
  width: 648px;
  max-width: 100%;
  background:#fff;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  box-shadow:
    0 1px 1px rgba(15,23,38,.04),
    0 30px 60px -25px rgba(15,23,38,.28),
    0 12px 24px -18px rgba(15,23,38,.20);
  overflow:hidden;
  transform: rotate(-0.4deg);
}
.sched__chrome{
  display:flex; align-items:center; gap:7px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #FBFAF6, #F2EFE7);
  border-bottom: 1px solid var(--hairline);
}
.sched__cdot{ width:10px; height:10px; border-radius:99px; background:#E4DED3; }
.sched__cdot:nth-child(1){ background:#FF6058; }
.sched__cdot:nth-child(2){ background:#FFBD2E; }
.sched__cdot:nth-child(3){ background:#28C940; }
.sched__curl{
  flex:1; max-width: 280px; margin: 0 auto;
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  background:#fff; border:1px solid var(--hairline);
  border-radius: 99px; padding: 4px 14px;
  font-family:'Outfit', sans-serif; font-size: 11px; color: var(--ink-3);
}
.sched__curl svg{ color: var(--ok); flex-shrink:0; }
.sched__head{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px;
  padding: 18px 22px 14px;
}
.sched__subtitle{
  display:block;
  font-size:11.5px; color:var(--ink-3); margin-top:2px;
}
.sched__title{ font-size:18px; letter-spacing:-0.01em; }
.sched__new{
  flex-shrink:0;
  display:inline-flex; align-items:center; gap:5px;
  background:#157F55; color:#fff; border:0;
  font-family:inherit; font-size:12px; font-weight:600;
  padding:8px 12px; border-radius:9px; cursor:pointer;
  white-space:nowrap;
  box-shadow: 0 4px 10px -5px rgba(21,127,85,.6);
}
.sched__new svg{ width:13px; height:13px; }
.sched__new:hover{ background:#116B47; }
.sched__filters{
  display:flex; gap:6px; flex-wrap:wrap;
  padding: 0 22px 12px;
  border-bottom:1px solid var(--hairline);
}
.sched__tabs{
  display:flex; gap:2px;
  padding: 0 16px 12px;
  overflow:hidden;
}
.sched__tab{
  display:inline-flex; align-items:center; gap:5px;
  font-size:11.5px; font-weight:500;
  color:var(--ink-3);
  padding:6px 9px; border-radius:8px;
  white-space:nowrap;
}
.sched__tab svg{ width:14px; height:14px; }
.sched__tab.is-active{
  background:#fff;
  color:var(--ink);
  font-weight:600;
  border:1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
.sched__filters .pill{ font-size:11.5px; padding:4px 10px; }
.sched__bar{
  display:flex; align-items:center; gap:10px;
  padding: 0 14px 12px;
  border-bottom:1px solid var(--hairline);
  overflow:hidden;
}
.sched__day{ display:flex; align-items:center; gap:5px; flex-shrink:0; }
.sched__nav{
  width:22px; height:22px; border-radius:7px;
  border:1px solid var(--hairline); background:#fff;
  color:var(--ink-3); font-size:13px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.sched__hoy{ font-weight:700; font-size:11.5px; }
.sched__types{ display:flex; gap:3px; overflow:hidden; }
.sched__tpill{
  display:inline-flex; align-items:center; gap:4px;
  font-size:10.5px; font-weight:500; color:var(--ink-3);
  padding:5px 8px; border-radius:99px; white-space:nowrap;
}
.sched__tpill svg{ width:12px; height:12px; color:var(--ink-4); flex-shrink:0; }
.sched__tpill.is-on{
  background:#fff; color:var(--ink); font-weight:600;
  border:1px solid var(--hairline); box-shadow: var(--shadow-sm);
}
.sched__tpill.is-on svg{ color:var(--ink); }
.sched__list{ list-style:none; margin:0; padding:8px; }
.sched__item{
  display:grid;
  grid-template-columns: 104px 92px minmax(0, 1fr);
  align-items:center;
  gap:16px;
  padding:11px 14px;
  border-radius:12px;
}
.sched__item:hover{ background:var(--bg-warm); }
.sched__item.is-past{ opacity:.5; }
.sched__item.is-active{
  background:#FEFAEC;
}
.sched__item.is-active:hover{ background:#FDF6E0; }
.sched__time{ font-family:'Outfit', sans-serif; font-size:12px; font-weight:600; color:var(--ink-2); line-height:1.3; white-space:nowrap; font-variant-numeric: tabular-nums; letter-spacing:-0.01em; }
.sched__item.is-active .sched__time{ color:var(--brand-700); }
.sched__type{ display:flex; flex-direction:column; align-items:flex-start; gap:4px; }
.sched__det{ min-width:0; }
.sched__det strong{ display:block; font-size:13.5px; letter-spacing:-0.005em; }
.sched__det > span{ display:block; font-size:11.5px; color:var(--ink-3); margin-top:1px; }
.sched__pend{ color:var(--brand-700); font-weight:600; font-style:normal; }

/* Instructor agenda — table-style rows + status column */
.agenda--rows{ border:1px solid var(--hairline); border-radius:14px; overflow:hidden; padding:0; }
.agenda--rows .sched__item{
  grid-template-columns: 116px 96px 1fr auto;
  border-radius:0;
  border-bottom:1px solid var(--hairline);
  padding:14px 18px;
}
.agenda--rows .sched__item:last-child{ border-bottom:0; }
.agst{
  font-size:11px; font-weight:600; letter-spacing:.01em;
  padding:4px 11px; border-radius:99px; white-space:nowrap;
  border:1px solid transparent;
}
.agst--done{ background:#EEF8F1; color:var(--ok); border-color:#D7EFE0; }
.agst--now{ background:var(--brand-tint); color:var(--brand-700); border-color:var(--brand-tint2); }
.agst--prog{ background:var(--bg-soft); color:var(--ink-3); border-color:var(--hairline); }
.agst--cancel{ background:#FEEEEE; color:#B43E3E; border-color:#FAD8D8; }
.agenda--rows .sched__item.is-active{ background:#FEFAEC; }
.sched__x{
  font-family:'Outfit', sans-serif;
  font-size:10px; color:var(--ink-4);
  background:var(--bg-soft); border:1px solid var(--hairline);
  padding:1px 6px; border-radius:5px; margin-left:4px; vertical-align:middle;
}
.sched__meter{ width:100%; max-width:170px; margin:6px 0 3px; }
.sched__meter > span{ background: var(--ok); }
.sched__sub{ font-size:11px; color:var(--ink-3); }

/* Hero phone overlap */
.hero-phone{
  position:absolute;
  right: -64px;
  bottom: -36px;
  width: 206px;
  transform: rotate(4deg);
  z-index: 3;
  filter: drop-shadow(0 30px 30px rgba(15,23,38,.18));
}
.phone__bar{
  display:flex; justify-content:space-between; align-items:center;
  font-size: 10px;
  font-weight:600;
  color: var(--ink-2);
  margin-top: -8px;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.phone__bar-r{ display:inline-flex; align-items:center; gap:4px; color: var(--ink-2); }

/* Toast */
.dot{ width:8px;height:8px;border-radius:99px;display:inline-block; }
.dot--green{ background:var(--ok); box-shadow: 0 0 0 4px rgba(30,158,98,.18); }
.toast{
  position:absolute;
  right: -16px; top: -22px;
  display:flex; align-items:center; gap:10px;
  background:#fff;
  border:1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  border-radius: 12px;
  font-size:12px;
  width:240px;
  z-index: 4;
  transform: rotate(1.5deg);
}
.toast__dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(30,158,98,.18);
  flex-shrink:0;
}
.toast strong{ display:block; font-size:13px; }
.toast span{ color:var(--ink-3); }
.phone{
  background: #0E1726;
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.05);
  position:relative;
}
.phone__notch{
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width: 60px; height:6px; border-radius:99px;
  background: rgba(255,255,255,.1);
}
.phone__screen{
  background:#fff;
  border-radius: 26px;
  padding: 22px 16px 14px;
}
.phone__top{
  display:flex; flex-direction:column; gap:2px;
  margin-bottom:10px;
}
.phone__top strong{ font-size:14px; letter-spacing:-0.01em; }
.phone__top .muted{ font-size:10px; }
.phone__row{
  display:flex; justify-content:space-between;
  padding: 8px 0;
  border-bottom:1px solid var(--hairline);
  font-size:11px;
}
.phone__label{ color:var(--ink-3); }
.phone__value{ font-weight:600; }
.phone__slots{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:5px;
  margin: 12px 0;
}
.slot{
  background:#fff;
  border:1px solid var(--hairline);
  border-radius:8px;
  padding: 7px 0;
  font-size:11px;
  font-weight:500;
  color:var(--ink-2);
  cursor:pointer;
}
.slot:hover{ border-color:var(--ink-4); }
.slot--on{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.slot--off{
  background: var(--bg-soft);
  color: var(--ink-4);
  text-decoration: line-through;
  pointer-events:none;
}
.phone__cta{
  width:100%;
  background:var(--brand);
  color:#fff;
  border:0;
  border-radius:10px;
  padding:10px;
  font-weight:600;
  font-size:12px;
  cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
}
.phone__cta:hover{ background:var(--brand-600); }

/* Hero phone — make it read as a real phone (taller, narrower, rounder) */
.hero-phone .phone{
  border-radius: 36px;
  padding: 7px;
}
.hero-phone .phone__screen{
  position: relative;
  border-radius: 30px;
  padding: 28px 16px 30px;
  min-height: 372px;
  display: flex;
  flex-direction: column;
}
.hero-phone .phone__slots{ margin: 14px 0 16px; gap: 6px; }
.hero-phone .phone__cta{ margin-top: auto; }
.hero-phone .phone__notch{
  width: 46px; height: 5px; top: 13px;
}
.hero-phone .phone__top{ margin-bottom: 14px; }
.hero-phone .phone__row{ padding: 9px 0; }
.hero-phone .phone__slots{ margin: 14px 0; gap: 6px; }
.hero-phone .slot{ padding: 9px 0; border-radius: 9px; }
.hero-phone .phone__cta{ padding: 11px; border-radius: 11px; }
.hero-phone .phone__screen::after{
  content: "";
  position: absolute;
  left: 50%; bottom: 9px;
  transform: translateX(-50%);
  width: 74px; height: 4px;
  border-radius: 99px;
  background: var(--ink-4);
  opacity: .4;
}

/* Hero phone — confirmation screen ("Casi listo") */
.phone__screen--confirm{ padding-bottom: 24px; }
.cf__top{ margin-bottom: 12px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.cf__top strong{ display:block; font-size: 16px; letter-spacing:-0.01em; color: var(--ink); }
.cf__top span{ display:block; font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.cf__card{
  background: transparent;
  border: 0;
  border-radius: 16px;
  padding: 18px 14px 14px;
  display:flex; flex-direction:column; align-items:center;
}
.cf__check{
  width: 46px; height: 46px; border-radius: 13px;
  background: #1E7E60; color:#fff; line-height:0;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 18px -8px rgba(30,126,96,.7);
}
.cf__check svg{ width: 24px; height: 24px; }
.cf__title{ font-size: 16px; letter-spacing:-0.01em; margin-top: 10px; color: var(--ink); }
.cf__sub{ font-size: 11px; color: var(--ink-3); margin-bottom: 14px; text-align:center; }
.cf__row{
  width: 100%;
  display:flex; align-items:center; gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  background:#fff; border:1px solid var(--hairline);
  border-radius: 11px; padding: 9px 11px; margin-top: 8px;
}
.cf__ico{
  width: 30px; height: 30px; border-radius: 9px; flex-shrink:0;
  background: #fff; color: #1E7E60;
  display:inline-flex; align-items:center; justify-content:center;
}
.cf__ico svg{ width: 16px; height: 16px; }
.cf__txt{ display:flex; flex-direction:column; min-width:0; }
.cf__txt em{ font-style:normal; font-size: 9px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color: var(--ink-4); }
.cf__txt strong{ font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing:-0.005em; line-height:1.25; }
.phone__cta--confirm{
  background: #1E7E60; margin-top: 16px;
  gap: 7px;
}
.phone__cta--confirm:hover{ background: #186A50; }
.phone__cta--confirm svg{ width: 15px; height: 15px; }

/* Compact overrides so the confirm screen fits the phone frame cleanly */
.hero-phone .phone__screen--confirm{ min-height: 0; padding: 22px 13px 16px; }
.phone__screen--confirm .cf__top{ margin-bottom: 4px; padding-top: 2px; }
.phone__screen--confirm .cf__card{ padding: 4px 10px 8px; }
.phone__screen--confirm .cf__check{ width: 44px; height: 44px; border-radius: 13px; }
.phone__screen--confirm .cf__check svg{ width: 26px; height: auto; transform: translateY(10px); display:block; margin:0 auto; }
.phone__screen--confirm .cf__title{ font-size: 15px; margin-top: 9px; }
.phone__screen--confirm .cf__sub{ margin-bottom: 2px; font-size: 10px; max-width: 24ch; line-height:1.3; }
.phone__screen--confirm .cf__row{ padding: 6px 9px; margin-top: 5px; gap: 8px; }
.phone__screen--confirm .cf__ico{ width: 26px; height: 26px; border-radius: 8px; }
.phone__screen--confirm .cf__ico svg{ width: 14px; height: 14px; }
.phone__screen--confirm .cf__txt em{ font-size: 8.5px; }
.phone__screen--confirm .cf__txt strong{ font-size: 11px; line-height: 1.2; }
.hero-phone .phone__cta--confirm{ margin-top: 12px; padding: 9px; white-space: nowrap; font-size: 12px; }

/* Student "Agendar clase" booking screen (demo Estudiante panel) */
.phone__screen--student{ padding: 24px 15px 18px; }
.ag__bar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.ag__icobtn{ width:32px; height:32px; border-radius:9px; border:1px solid var(--hairline); background:#fff; color:var(--ink-2); display:inline-flex; align-items:center; justify-content:center; }
.ag__icobtn svg{ width:16px; height:16px; }
.ag__top{ display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:16px; }
.ag__top strong{ font-size:18px; letter-spacing:-0.015em; }
.ag__pill{ display:inline-flex; align-items:center; gap:3px; background:#EAF6F0; border:1px solid #CFE9DD; color:#1E7E60; padding:5px 9px; border-radius:99px; flex-shrink:0; }
.ag__pill svg{ width:13px; height:13px; }
.ag__pill-n{ font-size:12px; font-weight:700; }
.ag__pill-n em{ font-style:normal; font-size:10px; font-weight:600; }
.ag__pill-l{ font-size:10px; font-weight:600; }
.ag__steps{ display:flex; align-items:center; gap:7px; padding:0 2px 14px; border-bottom:1px solid var(--hairline); margin-bottom:12px; }
.ag__step{ width:24px; height:24px; border-radius:99px; flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; background:var(--bg-soft); color:var(--ink-4); border:1px solid var(--hairline); }
.ag__step svg{ width:12px; height:12px; }
.ag__step--on svg{ display:none; }
.ag__step--done, .ag__step--on{ background:#1E7E60; color:#fff; border-color:#1E7E60; }
.ag__steplbl{ font-size:12px; font-weight:600; color:var(--ink); flex-shrink:0; }
.ag__line{ flex:1; height:2px; background:var(--hairline); border-radius:2px; }
.ag__line--on{ background:#1E7E60; }
.ag__volver{ display:inline-flex; align-items:center; gap:4px; font-size:12.5px; font-weight:600; color:var(--ink-2); margin-bottom:12px; }
.ag__volver svg{ width:14px; height:14px; }
.ag__date{ display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--hairline); border-radius:12px; padding:11px 12px; margin-bottom:16px; box-shadow:var(--shadow-sm); }
.ag__dico{ width:34px; height:34px; border-radius:9px; background:#EAF6F0; border:1px solid #CFE9DD; color:#1E7E60; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.ag__dico svg{ width:17px; height:17px; }
.ag__date em{ font-style:normal; font-size:10px; font-weight:700; color:#1E7E60; display:block; }
.ag__date strong{ font-size:13.5px; letter-spacing:-0.005em; }
.ag__pick{ margin-bottom:12px; }
.ag__pick strong{ display:block; font-size:14px; }
.ag__pick span{ display:block; font-size:11px; color:var(--ink-3); line-height:1.35; margin-top:3px; }
.ag__grid{ display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.ag__slot{ text-align:left; cursor:pointer; background:#fff; border:1px solid var(--hairline); border-radius:12px; padding:11px 11px 9px; display:flex; flex-direction:column; gap:6px; font-family:inherit; }
.ag__slot:hover{ border-color:#9BD0BB; }
.ag__slot--on{ border-color:#1E7E60; background:#F1F9F5; box-shadow:0 0 0 1px #1E7E60 inset; }
.ag__h{ display:flex; align-items:center; gap:5px; font-size:13.5px; font-weight:700; color:var(--ink); white-space:nowrap; }
.ag__h svg{ width:14px; height:14px; color:#1E7E60; flex-shrink:0; }
.ag__slot em{ font-style:normal; font-size:10.5px; color:var(--ink-3); padding-bottom:7px; border-bottom:1px solid var(--hairline); }
.ag__ins{ display:flex; align-items:center; gap:5px; font-size:10.5px; color:var(--ink-3); white-space:nowrap; }
.ag__ins svg{ width:12px; height:12px; color:var(--ink-4); flex-shrink:0; }

/* ─────────────────────────  Demo block  ───────────────────────── */
.demo{
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.demo__shell{
  background:#fff;
  border:1px solid var(--hairline);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.demo__tabs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom:1px solid var(--hairline);
}
.demo__tab{
  display:flex; align-items:center; gap:14px;
  padding: 22px 26px;
  background:#fff;
  border:0;
  border-right:1px solid var(--hairline);
  text-align:left;
  cursor:pointer;
  position:relative;
  transition: background .15s;
}
.demo__tab:last-child{ border-right:0; }
.demo__tab:hover{ background:var(--bg-warm); }
.demo__tab.is-active{ background:var(--bg-warm); }
.demo__tab.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:3px;
  background:var(--brand);
}
.demo__tab-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--ink-3);
  display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition: background .2s, color .2s, border-color .2s;
}
.demo__tab.is-active .demo__tab-icon{
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 16px -8px rgba(240,144,0,.6);
}
.demo__tab:hover .demo__tab-icon{ color: var(--ink); border-color: var(--ink-4); }
.demo__tab.is-active:hover .demo__tab-icon{ color: #fff; border-color: var(--brand); }
.demo__tab-label{ display:flex; flex-direction:column; gap:2px; }
.demo__tab-label strong{ font-size:17px; letter-spacing:-0.01em; }
.demo__tab-label em{ font-style:normal; font-size:13px; color:var(--ink-3); }

.demo__stage{ position:relative; }
.demo__panel{
  display:none;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 44px 36px;
  animation: panelIn .35s ease both;
}
.demo__panel.is-active{ display:grid; }
.demo__panel[data-panel="owner"]{ grid-template-columns: 288px 1fr; }
@keyframes panelIn{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

.demo__side h3{
  font-size: 26px;
  line-height:1.15;
  letter-spacing:-0.015em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.demo__side p{
  color: var(--ink-2);
  font-size:16px;
  margin: 0 0 18px;
}
.checks{
  list-style:none; padding:0; margin: 0 0 12px;
  display:flex; flex-direction:column; gap:10px;
}
.checks li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color: var(--ink-2);
}
.checks li svg{
  width: 22px; height: 22px;
  padding: 6px;
  box-sizing: content-box;
  flex-shrink:0;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint2);
  border-radius: 10px;
  color: var(--brand-700);
}

/* Dashboard */
.dash{ display:flex; flex-direction:column; gap:18px; }
.dash__top{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.dash__top h4{ margin: 0 0 2px; font-size: 19px; letter-spacing:-0.01em; }
.dash__filter{ display:flex; gap:8px; flex-wrap:wrap; }

.kpi-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.kpi{
  background:#fff;
  border:1px solid var(--hairline);
  border-radius: 14px;
  padding: 16px 18px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.kpi__label{ font-size:12px; color:var(--ink-3); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.kpi__num{
  font-size: 32px;
  letter-spacing:-0.02em;
  font-weight:700;
  font-variant-numeric: tabular-nums;
  line-height:1.05;
}
.kpi__delta{ font-size:12px; color:var(--ink-3); font-weight:500; }
.kpi__delta--up{ color: var(--ok); }
.kpi__delta--up::before{ content:"↑ "; }

.dash__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.dash__card{
  background:#fff;
  border:1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px 20px 18px;
}
.dash__card-head{
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:14px;
}
.dash__card h5{ margin:0; font-size:15px; letter-spacing:-0.01em; }

/* Day nav (owner dashboard) */
.dash__daynav{ display:flex; align-items:center; gap:8px; }
.dash__nav{
  width:28px; height:28px; border-radius:8px;
  border:1px solid var(--hairline); background:#fff;
  color:var(--ink-3); font-size:14px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.dash__day{
  font-weight:700; font-size:14px;
  background:#fff; border:1px solid var(--hairline);
  padding:6px 14px; border-radius:8px;
}

/* Estado de operación */
.op__sub{ display:block; font-size:13px; color:var(--ink-3); margin: -6px 0 14px; }
.op__ring-row{
  display:flex; align-items:center; gap:16px;
  padding-bottom:16px; margin-bottom:16px;
  border-bottom:1px solid var(--hairline);
}
.ring2{ position:relative; width:64px; height:64px; flex-shrink:0; display:inline-block; }
.ring2 svg{ width:100%; height:100%; }
.ring2 strong{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:700; color:var(--ink);
}
.op__ring-row > div strong{ display:block; font-size:15px; letter-spacing:-0.01em; }
.op__ring-row > div span{ font-size:12.5px; }

.op__tiles{ display:grid; grid-template-columns: repeat(3, 1fr); gap:8px; }
.optile{
  display:flex; align-items:center; gap:9px;
  background:var(--bg-soft); border:1px solid var(--hairline);
  border-radius:10px; padding:11px 12px;
}
.optile__ico{
  width:28px; height:28px; border-radius:8px;
  background:#fff; border:1px solid var(--hairline);
  color:var(--ink-3); flex-shrink:0;
  display:inline-flex; align-items:center; justify-content:center;
}
.optile__ico svg{ width:15px; height:15px; }
.optile__ico--ok{ color:var(--ok); border-color:#D7EFE0; background:var(--ok-tint); }
.optile__ico--bad{ color:#D4543E; border-color:#FAD8D8; background:#FEEEEE; }
.optile strong{ display:block; font-size:15px; line-height:1.1; }
.optile span{ font-size:10.5px; color:var(--ink-3); white-space:nowrap; }

/* Cupos disponibles */
.cupos__head{ display:flex; align-items:flex-start; gap:10px; }
.cupos__head h5{ font-size:15px; margin:0; line-height:1.2; }
.cupos__head .muted{ font-size:12px; display:block; margin-top:2px; }
.cupos__ico{
  width:34px; height:34px; border-radius:9px;
  background:var(--bg-warm); border:1px solid var(--brand-tint2);
  color:var(--brand-700); flex-shrink:0;
  display:inline-flex; align-items:center; justify-content:center;
}
.cupos__ico svg{ width:18px; height:18px; }
.cupos__big{ display:flex; align-items:baseline; gap:8px; margin: 4px 0 12px; }
.cupos__big strong{ font-size:40px; font-weight:700; letter-spacing:-0.025em; line-height:1; }
.cupos__big span{ font-size:13px; color:var(--ink-3); }
.cupos__bar{ height:8px; border-radius:99px; background:var(--hairline); overflow:hidden; }
.cupos__bar > span{ display:block; height:100%; background:var(--ok); border-radius:99px; }
.cupos__meta{ display:flex; gap:6px; font-size:12.5px; margin: 8px 0 18px; }
.cupos__meta span:first-child{ font-weight:600; color:var(--ink); }
.cupos__legend{
  display:flex; flex-direction:column; align-items:flex-start;
  gap:8px; margin-bottom:14px;
}
.cupos__legend > .muted{
  font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; font-weight:600;
}
.cupos__keys{ display:flex; gap:10px; font-size:10.5px; color:var(--ink-3); flex-wrap:wrap; }
.cupos__keys span{ display:inline-flex; align-items:center; gap:4px; }
.k{ width:8px; height:8px; border-radius:3px; display:inline-block; }
.k--free{ background:var(--ok); }
.k--busy{ background:#D4543E; }
.k--none{ background:var(--ink-4); }
.cupos__day{ display:flex; align-items:center; gap:8px; font-size:12.5px; margin-bottom:8px; }
.cupos__day strong{ font-weight:700; }
.cupos__free{ margin-left:auto; color:var(--ok); font-weight:600; font-size:12px; }
.cupos__track{
  display:flex; gap:3px; height:10px;
  margin-bottom:16px;
}
.seg{ flex:1; border-radius:3px; }
.seg.free{ background:var(--ok); }
.seg.busy{ background:#E0998C; }
.seg.none{ background:var(--ink-4); opacity:.45; }
.cupos__more{
  display:inline-flex; align-items:center; gap:5px;
  font-size:13px; color:var(--ink-2); font-weight:600; cursor:pointer;
}
.cupos__more svg{ width:14px; height:14px; }

.chart{
  display:flex; align-items:flex-end; gap:8px;
  height: 110px;
}
.bar{
  flex:1;
  height: var(--h);
  position:relative;
  display:flex; align-items:flex-end;
}
.bar i{
  display:block; width:100%; height:100%;
  background: linear-gradient(180deg, #FFCB7E, #F09000);
  border-radius: 6px 6px 2px 2px;
  opacity:.85;
}
.bar--peak i{ background: linear-gradient(180deg, #FFB347, #C97500); opacity:1; }
.chart__axis{
  display:flex; justify-content:space-between;
  margin-top:8px;
  font-size:10px;
  font-family:'Outfit', sans-serif;
  color:var(--ink-4);
}

.ranks{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap: 8px;
}
.ranks li{
  display:grid;
  grid-template-columns: 90px 1fr 36px;
  align-items:center;
  gap:10px;
  font-size:13px;
}
.ranks li strong{ text-align:right; font-variant-numeric: tabular-nums; font-weight:600; }

/* Student demo */
.student-flow{
  display:grid;
  grid-template-columns: minmax(270px, 300px) 1fr;
  gap: 36px;
  align-items:start;
}
.phone--big{
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.phone__screen--student{ padding: 28px 18px 20px; }
.rules2{ align-self:stretch; display:flex; flex-direction:column; gap:18px; }
.rules2__intro{ display:flex; flex-direction:column; gap:5px; padding-bottom:14px; border-bottom:1px solid var(--hairline); }
.rules2__intro strong{ font-size:18px; letter-spacing:-0.015em; line-height:1.2; }
.rules2__intro span{ font-size:14px; color:var(--ink-3); line-height:1.45; }
.rules2__grp{ display:flex; flex-direction:column; gap:8px; }
.rules2__lbl{ display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--ink); letter-spacing:-0.01em; margin-bottom:4px; }
.rules2__lbl svg{ width:16px; height:16px; color:var(--brand-700); }
.rules2__row{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 14px; background:#fff; border:1px solid var(--hairline); border-radius:10px; font-size:13.5px; color:var(--ink-2); }
.rules2__txt{ display:flex; flex-direction:column; gap:1px; min-width:0; }
.rules2__txt strong{ font-size:13px; font-weight:600; color:var(--ink); }
.rules2__txt em{ font-style:normal; font-size:11.5px; color:var(--ink-3); line-height:1.3; }
.rules2__val{ font-weight:700; color:var(--ink); font-variant-numeric:tabular-nums; flex-shrink:0; }
.rules2__hint{ font-size:12px; color:var(--ink-3); margin:-2px 0 2px; }
.rules2__opts{ display:flex; gap:8px; flex-wrap:wrap; }
.rules2__opt{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:500; color:var(--ink-2); background:#fff; border:1px solid var(--hairline); border-radius:99px; padding:7px 13px; }
.rules2__opt svg{ width:13px; height:13px; }
.rules2__opt.is-on{ background:#EAF6F0; color:#157F55; border-color:#9BD0BB; font-weight:600; }
.rules2__toggle{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:11px 14px; background:#fff; border:1px solid var(--hairline); border-radius:10px; font-size:13.5px; color:var(--ink); }
.tg{ width:34px; height:19px; border-radius:99px; background:var(--hairline-2); position:relative; flex-shrink:0; transition:background .2s; }
.tg::after{ content:""; position:absolute; top:2px; left:2px; width:15px; height:15px; border-radius:99px; background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.2); transition:transform .2s; }
.tg--on{ background:#1E9E62; }
.tg--on::after{ transform:translateX(15px); }
.psh{ margin-bottom:14px; }
.psh .muted{ font-size:12px; }
.psh strong{ display:block; font-size:18px; letter-spacing:-0.01em; }

.pickrow{ margin: 14px 0; }
.pickrow__label{
  display:block;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--ink-3);
  margin-bottom:8px;
}
.pickrow__pills{ display:flex; gap:6px; flex-wrap:wrap; }
.ipill{
  background:#fff; border:1px solid var(--hairline); border-radius:99px;
  padding:6px 12px; font-size:12px; font-weight:500;
  color: var(--ink-2);
  cursor:pointer;
}
.ipill--on{ background: var(--ink); color:#fff; border-color: var(--ink); }

.phone__slots--lg{ grid-template-columns: repeat(3, 1fr); gap:6px; }
.phone__slots--lg .slot{ padding: 10px 0; font-size:12px; border-radius:10px; }

.sum{
  background:var(--bg-warm);
  border:1px solid var(--brand-tint2);
  padding: 10px 12px;
  border-radius: 10px;
  font-size:13px;
  font-weight:600;
}
.sum .muted{ font-size:11px; font-weight:500; display:block; margin-top:2px; }

.phone__cta--lg{ padding:14px; font-size:14px; border-radius:12px; }

.rules{
  background:var(--bg-warm);
  border:1px solid var(--brand-tint2);
  border-radius:14px;
  padding: 22px 24px;
  align-self:start;
}
.rules h5{
  margin:0 0 8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--brand-700);
}
.rules__desc{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.45;
  color:var(--ink-2);
}
.rules ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.rules li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px;
  color: var(--ink);
  line-height:1.35;
}
.rule__on{
  display:inline-block;
  width:34px; height:18px; border-radius:99px;
  background: var(--brand);
  position:relative; flex-shrink:0;
  margin-top:2px;
}
.rule__on::after{
  content:""; position:absolute; top:2px; right:2px;
  width:14px; height:14px; border-radius:99px; background:#fff;
}

/* Instructor */
.instructor{ display:flex; flex-direction:column; gap:16px; }
.instructor__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.instructor__who{ display:flex; align-items:center; gap:12px; }
.instructor__who strong{ display:block; font-size:17px; letter-spacing:-0.01em; }
.instructor__who .muted{ font-size:13px; }
.instructor__nav{
  display:flex; align-items:center; gap:6px;
  background:#fff;
  border:1px solid var(--hairline);
  border-radius:99px;
  padding: 4px 6px;
  font-size:13px;
}
.iconbtn{
  width:28px; height:28px; border-radius:99px;
  border:0; background:transparent;
  font-size:16px; color:var(--ink-3); cursor:pointer;
}
.iconbtn:hover{ background: var(--bg-soft); color: var(--ink); }

.agenda{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column;
  border:1px solid var(--hairline);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.agenda__item{
  display:grid;
  align-items: start;
  grid-template-columns: 120px 1fr auto;
  align-items:center;
  gap:18px;
  padding: 16px 20px;
  border-bottom:1px solid var(--hairline);
}
.agenda__item:last-child{ border-bottom:0; }
.agenda__item:hover{ background: var(--bg-soft); }
.agenda__time{
  font-family:'Outfit', sans-serif;
  font-size:13px;
  color: var(--ink-2);
  font-weight:500;
}
.agenda__body strong{ display:block; font-size:15px; letter-spacing:-0.005em; }
.agenda__body span{ font-size:13px; color: var(--ink-3); }
.agenda__meta{ display:flex; align-items:center; gap:7px; flex-wrap:wrap; margin-bottom:5px; }
.agenda__cat{ font-size:11px; font-weight:600; color: var(--ink-3); background: var(--bg-soft); border:1px solid var(--hairline); padding:2px 8px; border-radius:99px; }
.agenda__tag{
  font-size:11px; font-weight:600;
  padding: 4px 10px;
  border-radius:99px;
  background: var(--bg-soft);
  color: var(--ink-3);
  letter-spacing:.03em;
  border:1px solid var(--hairline);
}
.agenda__tag--done{ background: #EEF8F1; color: var(--ok); border-color: #D7EFE0; }
.agenda__tag--now{ background: var(--brand-tint); color: var(--brand-700); border-color: var(--brand-tint2); }
.agenda__tag--cancel{ background: #FEEEEE; color: #B43E3E; border-color: #FAD8D8; }
.agenda__item--done .agenda__body strong{ color: var(--ink-2); }
.agenda__item--now{ background: linear-gradient(90deg, var(--brand-tint) 0%, transparent 50%); }
.agenda__item--now .agenda__time{ color: var(--brand-700); font-weight:700; }
.agenda__item--cancel .agenda__body strong{ color: var(--ink-3); text-decoration: line-through; }

/* ─────────────────────────  Promise strip  ───────────────────────── */
.strip{ padding: 110px 0; background:#fff; }
.section-head .eyebrow,
.strip__head .eyebrow,
.cta__copy .eyebrow,
.webband__copy .eyebrow,
.whero__copy .eyebrow,
.hero__copy .eyebrow,
.phero__inner .eyebrow{ margin-bottom: 20px; }
.strip__head{
  max-width: 760px;
  margin: 0 auto 56px;  text-align:center;
}
.bullets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border:1px solid var(--hairline);
  border-radius: 20px;
  overflow:hidden;
}
.bullet{
  background: #fff;
  padding: 32px 28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition: background .2s;
  position:relative;
}
.bullet:hover{ background: var(--bg-warm); }
.bullet__icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint2);
  color: var(--brand-700);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom: 4px;
  transition: transform .25s ease, background .25s ease;
}
.bullet:hover .bullet__icon{
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px) rotate(-3deg);
}
.bullet__num{
  position:absolute;
  top: 32px; right: 28px;
  font-family:'Outfit', sans-serif;
  font-size:12px;
  color: var(--ink-4);
  font-weight:500;
  letter-spacing:.06em;
}
.bullet h4{
  margin:0;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-0.01em;
  font-weight:600;
}
.bullet p{
  margin:0;
  color: var(--ink-2);
  font-size:15.5px;
  line-height:1.5;
}

/* ─────────────────────────  Sitios web band (home cross-sell)  ───────────────────────── */
.webband{
  padding: 100px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.webband__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.webband__lede{
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  margin: 6px 0 18px; max-width: 52ch;
}
.webband__lede strong{ color: var(--ink); font-weight: 600; }
.webband__list{
  list-style:none; padding:0; margin: 0 0 26px;
  display:flex; flex-wrap:wrap; gap: 10px;
}
.webband__list li{
  display:inline-flex; align-items:center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  background:#fff; border:1px solid var(--hairline);
  padding: 8px 14px; border-radius: 99px;
}
.webband__list svg{ width: 17px; height: 17px; color: var(--brand-700); }

.webband__visual{ display:flex; justify-content:center; }
.wbw{
  width: 100%; max-width: 480px;
  background:#fff; border:1px solid var(--hairline);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-0.6deg);
}
.wbw__chrome{
  display:flex; align-items:center; gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #FBFAF6, #F2EFE7);
  border-bottom: 1px solid var(--hairline);
}
.wbw__chrome > span:not(.wbw__url){ width:9px; height:9px; border-radius:99px; background:#E4DED3; }
.wbw__chrome > span:nth-child(1){ background:#FF6058; }
.wbw__chrome > span:nth-child(2){ background:#FFBD2E; }
.wbw__chrome > span:nth-child(3){ background:#28C940; }
.wbw__url{
  flex:1; max-width: 220px; margin: 0 auto; text-align:center;
  background:#fff; border:1px solid var(--hairline);
  border-radius: 99px; padding: 3px 12px;
  font-family:'Outfit', sans-serif; font-size: 10.5px; color: var(--ink-3);
}
.wbw__body{ padding: 0; }
.wbw__nav{
  display:flex; align-items:center; gap: 10px;
  padding: 13px 18px; border-bottom: 1px solid var(--hairline);
}
.wbw__logo{ width: 60px; height: 12px; border-radius: 4px; background: var(--brand); }
.wbw__nav i{ width: 30px; height: 6px; border-radius: 99px; background: var(--hairline); }
.wbw__cta{ margin-left:auto; width: 56px; height: 22px; border-radius: 7px; background: var(--brand-tint); border:1px solid var(--brand-tint2); }
.wbw__hero{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 22px 18px;
  background: linear-gradient(180deg, var(--bg-warm), #fff);
}
.wbw__htxt{ display:flex; flex-direction:column; gap: 9px; justify-content:center; }
.wbw__htxt .l{ height: 13px; border-radius: 4px; background: var(--ink); opacity: .82; }
.wbw__htxt .l.s{ width: 60%; }
.wbw__htxt .b{ margin-top: 6px; width: 80px; height: 26px; border-radius: 7px; background: var(--brand); }
.wbw__himg{
  border-radius: 10px; min-height: 110px;
  background:
    radial-gradient(circle at 70% 30%, rgba(240,144,0,.35), transparent 55%),
    linear-gradient(135deg, #FFE3B8, #FFC97A);
  border:1px solid var(--brand-tint2);
}
.wbw__row{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 4px 18px 22px; }
.wbw__row span{ height: 56px; border-radius: 9px; background: var(--bg-soft); border: 1px solid var(--hairline); }

/* ─────────────────────────  Final CTA  ───────────────────────── */
.cta{
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(240,144,0,.22), transparent 60%),
    linear-gradient(180deg, #0E1726 0%, #1A2236 100%);
  color:#fff;
  padding: 100px 0;
  position:relative;
  overflow:hidden;
}
.cta::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black, transparent 70%);
  pointer-events:none;
}
.cta__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items:center;
}
.cta__lede{
  color: rgba(255,255,255,.78);
  font-size:19px;
  margin: 6px 0 22px;
  max-width: 50ch;
}
.cta__bullets{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cta__bullets span{
  display:inline-flex; align-items:center; gap:12px;
  color: rgba(255,255,255,.9);
  font-size:15px;
}
.cta__bullets svg{
  width: 20px; height: 20px;
  padding: 8px;
  box-sizing: content-box;
  background: rgba(240,144,0,.16);
  border: 1px solid rgba(240,144,0,.35);
  border-radius: 10px;
  color: #FFB347;
  flex-shrink:0;
}

.cta__form{
  background:#fff;
  color: var(--ink);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  position:relative;
}
.cta__form h3{
  margin: 0 0 18px;
  font-size:20px;
  letter-spacing:-0.01em;
}
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; flex:1; }
.field-row{ display:flex; gap:12px; }
.field label{
  font-size:12px;
  font-weight:600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.field input,
.field textarea,
.field select{
  font-family:inherit;
  font-size:15px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--hairline-2);
  background:#fff;
  color: var(--ink);
  width:100%;
}
.field textarea{ resize: vertical; min-height: 92px; line-height: 1.5; }
.field input:focus,
.field textarea:focus,
.field select:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(240,144,0,.15);
}
.form__hint{
  text-align:center;
  margin: 12px 0 0;
  font-size:13px;
  color: var(--ink-3);
}
.cta__form-ok{
  display:none;
  position:absolute; inset: 0;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  align-items:center; justify-content:center;
  gap:10px;
  color: var(--ok);
  font-weight:600;
  font-size:18px;
}

/* ─────────────────────────  Footer  ───────────────────────── */
.footer{
  background: #0E1726;
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__col h5{
  color:#fff;
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer__col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a{
  color: rgba(255,255,255,.65);
  font-size: 15px;
}
.footer__col a:hover{ color: var(--brand); }
.footer__tag{
  margin: 16px 0 6px;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  max-width: 32ch;
}
.footer__addr{
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 0 0 18px;
}
.footer__social{
  display:flex; gap:10px;
}
.footer__social a{
  width:36px; height:36px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.7);
}
.footer__social a:hover{
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
}

.footer__contact{ gap:16px !important; }
.footer__contact li{
  display:flex !important;
  flex-direction:row !important;
  align-items:flex-start;
  gap:12px;
}
.footer__contact li > div{ display:flex; flex-direction:column; gap:2px; }
.footer__cicon{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--brand);
  display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.footer__cicon svg{ width: 16px; height: 16px; }
.footer__lbl{
  font-size:11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight:600;
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer__bottom-inner{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px;
  color: rgba(255,255,255,.5);
}
.footer__made{ display:inline-flex; align-items:center; gap:7px; }
.footer__flag{
  display:inline-block;
  border:1px solid rgba(255,255,255,.18);
  border-radius:3px;
  flex-shrink:0;
}

/* ─────────────────────────  Problema + Dolores  ───────────────────────── */
.prob{
  padding: 110px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.prob__head .eyebrow{ margin-bottom: 18px; }
.prob__head{
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.prob__head h2{ margin: 8px 0 16px; }
.prob__p{
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 12px 0 0;
}
.prob__p strong{ color: var(--ink); font-weight: 600; }

.prob__quote{
  position: relative;
  max-width: 740px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}
.prob__mark{
  display: block;
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint2);
  color: var(--brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  line-height: 58px;
  font-style: normal;
}
.prob__quote p{
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-style: normal;
  text-wrap: balance;
}
.prob__quote em{
  font-style: italic;
  color: var(--brand-700);
  font-weight: 600;
}

.pains{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.pain{
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 30px 28px 24px;
  display:flex; flex-direction:column; gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pain:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint2);
}
.pain__icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #FEEEEE;
  border: 1px solid #FAD8D8;
  color: #B43E3E;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom: 4px;
}
.pain__icon svg{ width: 22px; height: 22px; }
.pain h4{
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.pain p{
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.pain__cost{
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--hairline);
  font-size: 13px;
  color: var(--ink-3);
}
.pain__cost strong{ color: #B43E3E; font-weight: 600; }

/* ─────────────────────────  Cómo arrancas (steps)  ───────────────────────── */
.steps{
  padding: 110px 0;
  background: #fff;
  border-top: 1px solid var(--hairline);
}
.stepsline{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: stepc;
  max-width: 1100px;
  margin: 0 auto;
}
.stepsline::before{
  content: "";
  position: absolute;
  top: 56px;
  left: 14%; right: 14%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--brand-tint2) 0,
    var(--brand-tint2) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}
.step{
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display:flex; flex-direction:column; gap: 12px;
  text-align: center;
  align-items: center;
  z-index: 1;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint2);
}
.step__num{
  position: absolute;
  top: -16px; left: 24px;
  width: 32px; height: 32px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display:inline-flex; align-items:center; justify-content:center;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 10px -4px rgba(240,144,0,.6);
}
.step__icon{
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint2);
  color: var(--brand-700);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom: 8px;
}
.step__icon svg{ width: 28px; height: 28px; }
.step h4{
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.step p{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 32ch;
}
.step__time{
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-700);
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint2);
  padding: 4px 10px;
  border-radius: 99px;
}

.steps__cta{
  display:flex; flex-direction: column;
  align-items: center; gap: 10px;
  margin-top: 48px;
}
.steps__hint{
  font-size: 13.5px;
  color: var(--ink-3);
}

/* ─────────────────────────  Home FAQ  ───────────────────────── */
.hfaq{
  padding: 110px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hfaq__inner{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.hfaq__head{
  position: sticky;
  top: 90px;
  align-self: start;
}
.hfaq__head h2{ margin: 8px 0 14px; }
.hfaq__lede{
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
}
.hfaq__lede a{ color: var(--brand-700); font-weight: 600; }
.hfaq__lede a:hover{ color: var(--brand); }

.hfaq__list{
  display:flex; flex-direction: column;
  gap: 10px;
}
.faq__item{
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.faq__item[open]{ border-color: var(--brand-tint2); background: var(--bg-warm); }
.faq__item summary{
  cursor: pointer;
  list-style: none;
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__plus{
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after{
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, background .2s;
}
.faq__plus::before{ left:0; right:0; top: 9px; height: 2px; }
.faq__plus::after{ top:0; bottom:0; left: 9px; width: 2px; }
.faq__item[open] .faq__plus::after{ transform: scaleY(0); }
.faq__item[open] .faq__plus::before{ background: var(--brand-700); }
.faq__item p{
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 64ch;
}
.faq__item p a{ color: var(--brand-700); border-bottom: 1px solid var(--brand-tint2); }
.faq__item p a:hover{ color: var(--brand); }

/* ─────────────────────────  Responsive  ───────────────────────── */
@media (max-width: 1100px){
  .hero__inner{ grid-template-columns: minmax(0,1fr); gap:48px; }
  .hero__visual{ margin-right: 0; min-height: 0; max-width: 100%; margin: 0 auto; }
  .appwin{ width: 100%; }
  .hero-phone{ right: -20px; bottom: -30px; width: 208px; }
  .toast{ right: 0; top: -20px; }
  .demo__panel{ grid-template-columns: 1fr; gap:28px; padding: 32px 24px; }
  .student-flow{ grid-template-columns: 1fr; }
  .kpi-grid{ grid-template-columns: repeat(2, 1fr); }
  .dash__row{ grid-template-columns: 1fr; }
  .bullets{ grid-template-columns: 1fr 1fr; }
  .cta__inner{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .webband__inner{ grid-template-columns: 1fr; gap: 40px; }
  .pains{ grid-template-columns: 1fr; }
  .stepsline{ grid-template-columns: 1fr; gap: 30px; }
  .stepsline::before{ display: none; }
  .hfaq__inner{ grid-template-columns: 1fr; gap: 36px; }
  .hfaq__head{ position: static; }
}

@media (max-width: 820px){
  .appwin__side{ display:none; }
  .appwin__body{ grid-template-columns: 1fr; }
  .appwin__tabs{ display:none; }
  .appwin__search{ display:none; }
  .stb thead th:nth-child(4),
  .stb tbody td:nth-child(4),
  .stb thead th:nth-child(2),
  .stb tbody td:nth-child(2){ display:none; }
}

/* ── Mobile nav overlay ── */
.nav__mobile{
  display:none;
  position:fixed; inset:0;
  background:#fff;
  z-index:49;
  flex-direction:column;
  padding:88px 28px 40px;
  gap:4px;
  overflow-y:auto;
  overscroll-behavior:contain;
}
.nav__mobile.is-open{ display:flex; }
/* Keep the navbar pinned (fixed) while the menu is open — body overflow:hidden
   would otherwise break its sticky positioning and it would scroll away. */
.nav.is-menuopen{ position:fixed; top:0; left:0; right:0; }
.nav__mobile a, .nav__mobile button{
  display:block; width:100%;
  padding:14px 0;
  border-bottom:1px solid var(--hairline);
  font-size:18px; font-weight:500; color:var(--ink);
  background:none; border-left:0; border-right:0; border-top:0;
  text-align:left; cursor:pointer; font-family:inherit;
}
.nav__mobile a:last-of-type{ border-bottom:0; }
.nav__mobile a.is-active{ color:var(--brand-700); font-weight:600; }
.nav__mobile .nav__mobile-cta{
  margin-top:20px;
  background:var(--brand); color:#fff;
  border-radius:12px; padding:16px;
  text-align:center; font-weight:600; font-size:16px;
  border:0;
}
.nav__mobile-section{
  font-size:11px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--ink-4); font-weight:700; padding:16px 0 6px;
}

@media (max-width: 900px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__burger{ display:flex; margin-left:auto; }

  /* Hero */
  .hero{ padding: 40px 0 48px; overflow:hidden; }
  .hero__copy{ text-align:center; display:flex; flex-direction:column; align-items:center; }
  .hero__ctas{ flex-direction:column; }
  .hero__ctas .btn{ width:100%; justify-content:center; }
  .hero__trust{ display:block; text-align:center; }
  .hero__trust svg{ display:inline; vertical-align:-3px; margin-right:5px; }
  .hero-phone{ display:none; }
  .toast{ display:none; }
  .sched{ width:100%; max-width:460px; margin:0 auto; transform:none; overflow:hidden; }
  .sched__item{ grid-template-columns: 64px auto minmax(0,1fr); gap:8px 11px; padding:13px 14px; align-items:start; }
  .sched__time{ font-size:10.5px; line-height:1.25; white-space:normal; padding-top:1px; }
  .sched__type{ align-self:start; }
  .sched__det strong{ font-size:13px; }
  .sched__det > span{ font-size:11px; }
  .sched__list{ padding:6px; }
  .lede{ max-width:100%; }
  .appwin{ overflow:hidden; }

  /* Demo — compact sticky horizontal tabs so all 3 roles stay visible */
  .demo__shell{ overflow:visible; }
  .demo__tabs{
    grid-template-columns: repeat(3, 1fr);
    position: sticky; top: 64px; z-index: 20;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    box-shadow: 0 6px 16px -12px rgba(15,23,38,.35);
  }
  .demo__tab{
    flex-direction: column; gap: 7px;
    padding: 12px 6px;
    text-align: center;
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
  }
  .demo__tab:last-child{ border-right: 0; }
  .demo__tab-icon{ width: 36px; height: 36px; }
  .demo__tab-label{ align-items: center; }
  .demo__tab-label strong{ font-size: 12.5px; }
  .demo__tab-label em{ display: none; }
  .demo__panel,
  .demo__panel[data-panel="owner"]{ grid-template-columns: 1fr; gap:28px; padding:24px 18px; }
  .demo__side h3{ font-size:22px; }
  .kpi-grid{ grid-template-columns: 1fr 1fr; }
  .op__tiles{ grid-template-columns: 1fr; }
  .dash__row{ grid-template-columns: 1fr; }
  .ranks li{ grid-template-columns: 76px 1fr 32px; }

  /* Dashboard top: stack day-nav over filter pills */
  .dash__top{ flex-direction: column; align-items: stretch; gap: 12px; }
  .dash__daynav{ justify-content: space-between; }
  .dash__day{ flex: 1; text-align: center; }
  .dash__filter{ flex-wrap: nowrap; }
  .dash__filter .pill{ flex: 1; justify-content: center; }

  /* Instructor agenda — 2-row layout per item */
  .agenda--rows .sched__item{
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "time status"
      "type det";
    gap: 8px 12px;
    padding: 14px;
    align-items: center;
  }
  .agenda--rows .sched__time{ grid-area: time; }
  .agenda--rows .sched__type{ grid-area: type; }
  .agenda--rows .sched__det{ grid-area: det; }
  .agenda--rows .agst{ grid-area: status; justify-self: end; }

  /* Misc */
  .bullets{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; gap:30px 20px; padding-bottom:56px; }
  .footer__col--brand{ grid-column:1 / -1; grid-row:1; margin-bottom:4px; }
  .footer__col:nth-child(2){ grid-column:1; grid-row:2; }  /* Software */
  .footer__col:nth-child(3){ grid-column:1; grid-row:3; }  /* Servicios */
  .footer__col:nth-child(4){ grid-column:2; grid-row:2; }  /* Empresa */
  .footer__col:nth-child(5){ grid-column:2; grid-row:3; }  /* Contacto */
  .footer__col h5{ letter-spacing:.04em; margin-bottom:14px; }
  .footer__contact li{ gap:9px; }
  .footer__cicon{ width:30px; height:30px; }
  .footer__contact a{ font-size:12px; word-break:break-word; }
  .footer__lbl{ font-size:10px; }
  .footer__bottom-inner{ flex-direction:column; gap:8px; text-align:center; }
  .field-row{ flex-direction: column; gap: 0; }
  .prob{ padding: 70px 0; }
  .steps{ padding: 70px 0; }
  .hfaq{ padding: 70px 0; }
  .prob__quote{ padding: 28px 22px 24px 48px; }
  .prob__quote p{ font-size: 18px; }
  .step{ padding: 28px 22px; }
  .container{ padding-left:20px; padding-right:20px; }
}
