/* =========================================================================
   ZonaTel — Signup "una sola página" (estilo mockup). Tema claro + marca.
   Layout construido por js/zonatel-layout.js (mueve nodos reales).
   ========================================================================= */
:root{
	--zt-navy:#0B1638;
	--zt-navy2:#13245A;
	--zt-blue:#2E6BE6;
	--zt-turq:#3DAEE9;
	--zt-green:#5EC44C;
	--zt-ink:#16233D;
	--zt-muted:#6B81A6;
	--zt-line:#E4ECF6;
	--zt-bg:#EAF1FB;
	--zt-field:#F4F8FD;
	--zt-grad:linear-gradient(135deg,#2E6BE6 0%,#3DAEE9 100%);
	--zt-shadow:0 24px 60px rgba(11,22,56,.16);
	--zt-radius:18px;
}

*{ box-sizing:border-box; }

body{
	background:
		radial-gradient(1100px 700px at -10% -10%, rgba(61,174,233,.20), transparent 55%),
		radial-gradient(900px 600px at 110% 120%, rgba(46,107,230,.22), transparent 55%),
		linear-gradient(135deg,#0B1638 0%,#13245A 55%,#0B1638 100%);
	background-attachment:fixed;
	color:var(--zt-ink);
	font-family:"Inter","Segoe UI",Arial,sans-serif;
	min-height:100vh;
	margin:0;
}

/* ---------- Panel izquierdo (marca / persuasión) ---------- */
.zt-aside{
	position:fixed; top:0; left:0; bottom:0;
	width:32%; max-width:460px;
	padding:46px 40px;
	color:#EAF2FF;
	display:flex; flex-direction:column;
	overflow:auto;
	z-index:5;
}
.zt-aside-logo{ width:190px; max-width:62%; height:auto; margin-bottom:36px; }
.zt-eyebrow{ display:none; }
.zt-aside-h{
	font-size:33px; line-height:1.18; font-weight:800; letter-spacing:-.5px;
	margin:0 0 16px; color:#fff;
}
.zt-aside-h .zt-hl{ color:var(--zt-turq); }
.zt-aside-sub{ font-size:15px; line-height:1.6; color:#B9CBE8; margin:0 0 30px; max-width:360px; }
.zt-vp{ list-style:none; padding:0; margin:0 0 26px; }
.zt-vp li{ display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.zt-vp .zt-vp-ic{
	flex:0 0 40px; width:40px; height:40px; border-radius:11px;
	display:flex; align-items:center; justify-content:center;
	background:rgba(61,174,233,.16); color:var(--zt-turq);
	font-size:17px; font-weight:700;
	border:1px solid rgba(61,174,233,.3);
}
.zt-vp li > span:last-child{ font-size:14.5px; line-height:1.45; color:#D7E3F7; padding-top:3px; }
.zt-vp li b, .zt-vp-t{ display:block; color:#fff; font-weight:700; font-size:15px; margin-bottom:2px; }
.zt-proof{ display:flex; gap:26px; margin:6px 0 24px; }
.zt-proof-stat{ font-size:12.5px; line-height:1.3; color:#9DB2D6; }
.zt-proof-stat strong{ display:block; font-size:26px; color:#fff; font-weight:800; }
.zt-quote{ border:none; font-size:13.5px; font-style:italic; color:#C5D5EF; margin:0 0 22px; padding:14px 16px; background:rgba(255,255,255,.05); border-radius:12px; }
.zt-quote cite{ display:block; font-style:normal; font-size:12px; color:#8AA0C6; margin-top:8px; }
.zt-aside-foot{ margin-top:auto; }
.zt-trust, .zt-secure{
	background:rgba(255,255,255,.06);
	border:1px solid rgba(255,255,255,.10);
	border-radius:14px; padding:16px 18px;
	font-size:13px; color:#CADAF2; display:flex; gap:12px; align-items:center;
}
.zt-secure .zt-secure-ic{ font-size:22px; color:var(--zt-turq); }
.zt-secure b{ display:block; color:#fff; font-size:14px; margin-bottom:2px; }

/* ---------- Tarjeta blanca principal ---------- */
#main.container{
	width:auto; max-width:none;
	margin:26px 26px 26px calc(32% + 6px);
	background:#fff;
	border-radius:24px;
	box-shadow:var(--zt-shadow);
	padding:34px 38px 30px;
	text-align:left;
}
#main > h1, #main .spacer10, #main .spacer5, #main .languages{ display:none !important; }
.zt-gone{ display:none !important; }
.zt-keep-hidden{ display:none !important; }

/* ---------- Pantallas (pasos) ---------- */
.zt-screen{ display:none; }
.zt-screen.is-active{ display:block; animation:ztFadeUp .4s ease both; }
.zt-screen-hint{ font-size:13.5px; color:var(--zt-muted); margin:-6px 0 20px; }

/* Campos en 2 columnas (desktop) — robusto por ID (no depende del JS) */
.zt-grid2,
.zt-screen #mandatory-fields,
.zt-screen #card_info{ display:grid; grid-template-columns:1fr 1fr; gap:0 22px; }
.zt-grid2 > .zt-span2,
.zt-screen #mandatory-fields > .zt-span2,
.zt-screen #card_info > .zt-span2{ grid-column:1 / -1; }
.zt-screen #mandatory-fields > .form-group, .zt-screen #card_info > .form-group{ min-width:0; }
/* textarea y toggles ocupan ancho completo */
.zt-screen #mandatory-fields > .form-group:has(textarea),
.zt-screen #card_info > .form-group:has(textarea),
.zt-screen #mandatory-fields > #show-optional,
.zt-screen #mandatory-fields > #hide-optional,
.zt-screen #mandatory-fields > .spacer5{ grid-column:1 / -1; }

/* ---------- Navegación Volver / Continuar ---------- */
.zt-nav{ display:flex; align-items:center; gap:14px; margin-top:26px; padding-top:22px; border-top:1px solid var(--zt-line); }
.zt-back{
	background:#fff; color:var(--zt-muted); border:1.5px solid var(--zt-line);
	border-radius:12px; padding:13px 22px; font-size:14px; font-weight:600; cursor:pointer;
	transition:background .15s, border-color .15s, color .15s;
}
.zt-back:hover{ background:#F4F8FD; color:var(--zt-ink); border-color:#C9D8EC; }
.zt-next{ flex:1; }
.zt-nav .zt-back + .zt-next{ flex:1; }

/* ---------- Stepbar ---------- */
.zt-stepbar{ display:flex; align-items:center; gap:6px; margin:2px 0 26px; }
.zt-step{ display:flex; align-items:center; gap:11px; }
.zt-step-num{
	flex:0 0 34px; width:34px; height:34px; border-radius:50%;
	display:flex; align-items:center; justify-content:center;
	font-weight:700; font-size:15px;
	background:#EEF3FA; color:#9DB0CC; border:2px solid #E2EAF4;
}
.zt-step.is-active .zt-step-num{ background:var(--zt-grad); color:#fff; border-color:transparent; box-shadow:0 6px 16px rgba(46,107,230,.35); }
.zt-step.is-done .zt-step-num{ background:#E2F3DC; color:var(--zt-green); border-color:transparent; }
.zt-step.is-clickable{ cursor:pointer; }
.zt-step-tx b{ display:block; font-size:14px; color:var(--zt-ink); font-weight:700; }
.zt-step-tx i{ font-style:normal; font-size:12px; color:var(--zt-muted); }
.zt-step.is-active .zt-step-tx b{ color:var(--zt-blue); }
.zt-step-line{ flex:1; height:2px; background:#E6EDF6; border-radius:2px; min-width:24px; transition:background .3s; }
.zt-step-line.is-done{ background:var(--zt-grad); }

/* ---------- Section titles ---------- */
.zt-sec-title{
	font-size:19px; font-weight:800; color:var(--zt-ink);
	margin:0 0 18px; display:flex; align-items:center; gap:11px;
}
/* Cualquier título de sección visible en bold */
#main form h3:not(.zt-gone), .zt-misc h3{ font-weight:800 !important; color:var(--zt-ink); }
.zt-sec-num{
	flex:0 0 28px; width:28px; height:28px; border-radius:50%;
	background:var(--zt-grad); color:#fff;
	display:flex; align-items:center; justify-content:center;
	font-size:14px; font-weight:700;
}

/* ---------- Tarjetas de planes ---------- */
.zt-plans-wrap{ margin-bottom:26px; }
.zt-plans{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.zt-plan{
	position:relative; cursor:pointer;
	border:1.5px solid var(--zt-line); border-radius:16px;
	background:#fff; padding:18px 16px 16px;
	transition:border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.zt-plan:hover{ border-color:#BFD6F2; box-shadow:0 10px 24px rgba(11,22,56,.08); transform:translateY(-2px); }
.zt-plan.is-selected{ border-color:var(--zt-blue); background:linear-gradient(180deg,#F3F8FF,#fff); box-shadow:0 12px 28px rgba(46,107,230,.16); }
.zt-plan-radio{
	position:absolute; top:14px; right:14px; width:20px; height:20px;
	border-radius:50%; border:2px solid #CBD8EA; background:#fff;
}
.zt-plan.is-selected .zt-plan-radio{ border-color:var(--zt-blue); background:var(--zt-blue); box-shadow:inset 0 0 0 3.5px #fff; }
.zt-plan-ic{
	display:flex; align-items:center; justify-content:center;
	width:46px; height:46px; border-radius:12px; margin-bottom:14px;
	background:#EEF4FC; color:var(--zt-blue);
}
.zt-plan.is-selected .zt-plan-ic{ background:#E2EEFF; }
.zt-plan-ic svg{ width:24px; height:24px; fill:currentColor; }
.zt-plan-name{ display:block; font-size:14.5px; font-weight:600; color:var(--zt-ink); margin-bottom:8px; }
.zt-plan-price b{ font-size:25px; font-weight:800; color:var(--zt-ink); }
.zt-plan-price em{ font-style:normal; font-size:12px; font-weight:700; color:var(--zt-muted); }
.zt-plan-per{ display:block; font-size:12px; color:var(--zt-muted); margin-top:1px; }
/* Oferta primer mes en la tarjeta de plan */
.zt-plan-offer{
	display:inline-flex; align-items:center; gap:5px; align-self:flex-start;
	background:linear-gradient(90deg,#5EC44C,#3DAEE9); color:#fff;
	font-size:10px; font-weight:800; letter-spacing:.4px; padding:4px 11px; border-radius:20px; margin:0 0 10px;
}
.zt-plan-offer + .zt-plan-price b{ color:var(--zt-green); }
.zt-plan-price sup{ color:var(--zt-green); font-weight:800; font-size:13px; top:-.7em; margin-left:1px; }
.zt-plan-per sup{ font-size:.7em; }
.zt-plan-then{ display:block; font-size:12px; color:var(--zt-muted); margin-top:4px; }
.zt-plan-then b{ color:var(--zt-ink); font-weight:700; }
.zt-plan-disclaimer{ font-size:11px; line-height:1.45; color:var(--zt-muted); margin:18px 2px 0; }
/* descripción + beneficios por plan */
.zt-plan{ display:flex; flex-direction:column; }
.zt-plan-name{ margin-bottom:5px !important; }
.zt-plan-tag{ display:block; font-size:12px; color:var(--zt-muted); line-height:1.4; margin:0 0 12px; min-height:31px; }
.zt-plan-feats{ list-style:none; padding:14px 0 0; margin:14px 0 0; border-top:1px solid var(--zt-line); }
.zt-plan-feats li{ position:relative; padding-left:23px; font-size:12.5px; color:var(--zt-ink); line-height:1.4; margin-bottom:9px; }
.zt-plan-feats li:last-child{ margin-bottom:0; }
.zt-plan-feats li::before{ content:'\2713'; position:absolute; left:0; top:0; color:var(--zt-green); font-weight:800; font-size:12px; }
.zt-plan.is-popular{ border-color:var(--zt-blue); box-shadow:0 14px 30px rgba(46,107,230,.14); }
.zt-plan-badge{
	position:absolute; top:-12px; left:50%; transform:translateX(-50%);
	background:var(--zt-navy); color:#fff; font-size:11px; font-weight:700;
	padding:4px 13px; border-radius:20px; white-space:nowrap;
	box-shadow:0 6px 16px rgba(11,22,56,.32);
}

/* ---------- Grid principal: form + summary ---------- */
.zt-grid{ display:grid; grid-template-columns:1fr 312px; gap:26px; align-items:start; }
/* Paso de planes: a todo el ancho, sin el resumen al lado */
.zt-grid.zt-grid-full{ grid-template-columns:1fr !important; }
.zt-summary.zt-hide{ display:none !important; }
.zt-plan{ min-width:0; }
.zt-main{ min-width:0; }
.zt-two{ display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:start; }
.zt-card{ min-width:0; }

/* ---------- Reset de columnas Bootstrap dentro del nuevo layout ---------- */
.zt-main [class*="col-md-"], .zt-card [class*="col-md-"]{
	width:100% !important; margin-left:0 !important; float:none !important; padding:0 !important;
}
/* Form-groups: label arriba, input full-width */
.zt-card .form-group{ display:block; margin:0 0 15px; }
.zt-card .control-label{
	display:block !important; width:100% !important; float:none !important;
	text-align:left !important; padding:0 0 6px 1px !important;
	font-size:13px !important; font-weight:600; color:var(--zt-ink);
}
.zt-card .control-label .text-danger{ color:var(--zt-blue); }
.zt-card .form-group > .col-lg-8{ width:100% !important; float:none !important; }
/* quitar el padding de 15px de Bootstrap para que el input llene la columna
   y los íconos queden DENTRO de la cajita (no 1px afuera) */
.zt-card .form-group [class*="col-lg-"]{ padding-left:0 !important; padding-right:0 !important; }
/* Mes/Año lado a lado */
.zt-ccdate{ display:flex !important; flex-wrap:wrap; gap:10px; }
.zt-ccdate > .control-label{ width:100% !important; }
.zt-ccdate > .col-lg-4{ flex:1 1 0; width:auto !important; }

/* ---------- Inputs ---------- */
.zt-card .form-control{
	height:46px; border-radius:11px;
	border:1.5px solid var(--zt-line); background:var(--zt-field);
	color:var(--zt-ink); font-size:14px; box-shadow:none;
	padding:10px 14px; transition:border-color .15s, box-shadow .15s, background .15s;
}
.zt-card textarea.form-control{ height:auto; min-height:84px; }
.zt-card select.form-control{ -webkit-appearance:none; appearance:none;
	background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236B81A6' stroke-width='2' stroke-linecap='round'/></svg>");
	background-repeat:no-repeat; background-position:right 14px center; padding-right:34px;
}
.zt-card .form-control::placeholder{ color:#9FB1CB; }
.zt-card .form-control:focus{
	border-color:var(--zt-turq); background:#fff;
	box-shadow:0 0 0 4px rgba(61,174,233,.16); outline:none;
}
/* Iconos dentro del campo */
.zt-has-icon{ position:relative; }
.zt-has-icon .zt-fi{
	position:absolute; left:14px; top:23px; transform:translateY(-50%);
	color:#9AB0CE; font-size:14px; pointer-events:none; z-index:2;
}
.zt-has-icon .form-control{ padding-left:40px; }
.zt-has-icon select.form-control{ padding-left:40px; }

/* feedback (loader/ok/error en email) */
.has-feedback .form-control-feedback{ top:6px !important; right:14px !important; }
.zt-card .loader img{ width:15px; }

/* toggle "Mostrar campos opcionales" — chip limpio, con aire */
.zt-card .optional-fields{ margin:6px 0 6px; }
.zt-card .optional-fields .btn-link{
	display:inline-flex; align-items:center; gap:8px;
	color:var(--zt-blue); font-size:13px; font-weight:600; text-decoration:none;
	padding:9px 15px; border:1px dashed #C9D8EC; border-radius:10px; background:#F4F8FD;
	transition:background .15s, border-color .15s;
}
.zt-card .optional-fields .btn-link:hover{ background:#E9F2FC; border-color:var(--zt-blue); text-decoration:none; }

/* botón copiar dirección */
#copy-address.btn{ background:#EEF4FC; color:var(--zt-blue); border:1px solid #D8E6F8; border-radius:8px; font-size:12px; font-weight:600; }

/* logos de marcas de tarjeta (Visa / Mastercard / PayPal) */
.zt-cards{ float:right; font-weight:400; display:inline-flex; gap:7px; align-items:center; }
.zt-card-logo{
	display:inline-flex; align-items:center; justify-content:center;
	height:24px; min-width:38px; padding:0 7px; border:1px solid #E2E8F2;
	border-radius:6px; background:#fff; box-shadow:0 1px 3px rgba(11,22,56,.08);
}
.zt-logo-visa{ color:#1A1F71; font-style:italic; font-weight:800; font-size:13px; letter-spacing:.5px; font-family:Arial,Helvetica,sans-serif; }
.zt-logo-mc{ padding:0 8px; }
.zt-logo-mc i{ width:15px; height:15px; border-radius:50%; display:block; }
.zt-logo-mc i:first-child{ background:#EB001B; }
.zt-logo-mc i:last-child{ background:#F79E1B; margin-left:-7px; mix-blend-mode:multiply; }
.zt-logo-pp{ font-style:italic; font-weight:800; font-size:12px; font-family:Arial,Helvetica,sans-serif; letter-spacing:-.2px; }
.zt-logo-pp b{ font-weight:800; }
.zt-logo-pp b:first-child{ color:#003087; }
.zt-logo-pp b:last-child{ color:#009CDE; }

/* ---------- Sidebar Resumen ---------- */
.zt-summary{
	background:#F7FAFE; border:1px solid var(--zt-line);
	border-radius:18px; padding:24px 22px; position:sticky; top:26px;
}
.zt-sum-title{ font-size:16px; font-weight:700; color:var(--zt-ink); margin:0 0 18px; }
.zt-sum-lbl{ font-size:12px; color:var(--zt-muted); margin:0 0 6px; }
.zt-sum-plan{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; padding-bottom:16px; border-bottom:1px solid var(--zt-line); margin-bottom:14px; }
.zt-sum-plan > span{ font-size:14px; font-weight:700; color:var(--zt-ink); }
.zt-sum-plan > b{ font-size:13px; color:var(--zt-blue); font-weight:700; white-space:nowrap; }
.zt-sum-plan > b b{ font-size:14px; }
.zt-sum-row{ display:flex; justify-content:space-between; font-size:13px; color:var(--zt-muted); margin-bottom:10px; }
.zt-sum-row b{ color:var(--zt-ink); font-weight:600; }
.zt-sum-total{ margin:16px 0 4px; padding-top:16px; border-top:1px solid var(--zt-line); }
.zt-sum-total > span{ font-size:13px; color:var(--zt-muted); }
.zt-sum-big{ margin:4px 0 2px; }
.zt-sum-big b{ font-size:36px; font-weight:800; color:var(--zt-ink); line-height:1.05; }
.zt-sum-big em{ font-style:normal; font-size:14px; font-weight:700; color:var(--zt-muted); }
.zt-sum-total i{ font-style:normal; display:block; font-size:11.5px; color:var(--zt-muted); }
/* "Luego del primer mes: $99.00/mes" — bien claro para evitar reclamaciones */
.zt-sum-after{ font-size:13px; color:var(--zt-muted); margin-top:8px; line-height:1.45; padding-top:8px; border-top:1px dashed var(--zt-line); }
.zt-sum-after b{ color:var(--zt-ink); font-weight:800; font-size:14.5px; }
.zt-sum-feats{ list-style:none; padding:0; margin:18px 0 0; }
.zt-sum-feats li{ position:relative; padding-left:26px; font-size:13px; color:var(--zt-ink); margin-bottom:11px; }
.zt-sum-feats li::before{
	content:'\2713'; position:absolute; left:0; top:-1px;
	width:18px; height:18px; border-radius:50%; background:#E2F3DC; color:var(--zt-green);
	font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center;
}
.zt-sum-guarantee{
	margin-top:18px; padding:14px 16px; border-radius:12px;
	background:#fff; border:1px solid var(--zt-line);
}
.zt-sum-guarantee b{ display:block; font-size:13px; color:var(--zt-ink); margin-bottom:3px; }
.zt-sum-guarantee b::before{ content:'\1F6E1'; margin-right:7px; }
.zt-sum-guarantee span{ font-size:12px; color:var(--zt-muted); line-height:1.45; }

/* ---------- Barra superior (stepbar + ayuda) ---------- */
.zt-topbar{ display:flex; align-items:flex-start; justify-content:space-between; gap:22px; }
.zt-topbar .zt-stepbar{ flex:1; min-width:0; }
.zt-help{ display:flex; align-items:center; gap:11px; flex:0 0 auto; background:#F4F8FD; border:1px solid var(--zt-line); border-radius:12px; padding:9px 14px; text-decoration:none; color:inherit; transition:background .15s, border-color .15s; }
.zt-help:hover{ background:#E9F3E6; border-color:#BfE3B5; text-decoration:none; color:inherit; }
.zt-help-ic{ color:var(--zt-blue); font-size:17px; }
.zt-help-tx b{ display:block; font-size:13px; color:var(--zt-ink); font-weight:700; }
.zt-help-tx{ font-size:12px; color:var(--zt-muted); line-height:1.2; }

/* ---------- Resumen: fila del número ---------- */
.zt-sum-number{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; padding-bottom:14px; border-bottom:1px solid var(--zt-line); margin-bottom:14px; }
.zt-sum-number > span{ font-size:13px; color:var(--zt-muted); }
.zt-sum-number > b{ font-size:14px; color:var(--zt-ink); font-weight:700; white-space:nowrap; }

/* ---------- Selección de número (tarjetas) ---------- */
.zt-nums-section{ grid-column:1 / -1; margin-top:8px; }
.zt-nums-hint{ font-size:13px; color:var(--zt-muted); margin:-8px 0 16px; }
.zt-nums-bar{ display:flex; gap:12px; margin-bottom:16px; flex-wrap:wrap; }
.zt-nums-search{ position:relative; flex:1 1 260px; }
.zt-nums-search .glyphicon{ position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#9AB0CE; font-size:14px; }
.zt-nums-q{ width:100%; height:44px; border:1.5px solid var(--zt-line); background:var(--zt-field); border-radius:11px; padding:10px 14px 10px 40px; font-size:14px; color:var(--zt-ink); }
.zt-nums-q:focus{ outline:none; border-color:var(--zt-turq); background:#fff; box-shadow:0 0 0 4px rgba(61,174,233,.16); }
.zt-nums-area{ height:44px; border:1.5px solid var(--zt-line); background:var(--zt-field); border-radius:11px; padding:0 36px 0 14px; font-size:14px; color:var(--zt-ink); -webkit-appearance:none; appearance:none;
	background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236B81A6' stroke-width='2' stroke-linecap='round'/></svg>"); background-repeat:no-repeat; background-position:right 13px center; }
.zt-nums-refresh{ width:44px; height:44px; flex:0 0 44px; border:1.5px solid var(--zt-line); background:#fff; border-radius:11px; color:var(--zt-blue); cursor:pointer; transition:background .15s, transform .3s; }
.zt-nums-refresh:hover{ background:#EEF4FC; }
.zt-nums-refresh:active{ transform:rotate(180deg); }
.zt-nums-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:13px; }
.zt-num{ position:relative; cursor:pointer; border:1.5px solid var(--zt-line); border-radius:14px; background:#fff; padding:16px 16px 14px; transition:border-color .16s, box-shadow .16s, transform .16s, background .16s; }
.zt-num:hover{ border-color:#BFD6F2; box-shadow:0 8px 20px rgba(11,22,56,.07); transform:translateY(-2px); }
.zt-num.is-selected{ border-color:var(--zt-blue); background:linear-gradient(180deg,#F3F8FF,#fff); box-shadow:0 10px 24px rgba(46,107,230,.16); }
.zt-num-radio{ position:absolute; top:14px; left:14px; width:18px; height:18px; border-radius:50%; border:2px solid #CBD8EA; background:#fff; }
.zt-num.is-selected .zt-num-radio{ border-color:var(--zt-blue); background:var(--zt-blue); box-shadow:inset 0 0 0 3px #fff; }
.zt-num-star{ position:absolute; top:15px; right:14px; color:#CBD8EA; font-size:13px; }
.zt-num.is-selected .zt-num-star{ color:var(--zt-blue); }
.zt-num-no{ display:block; font-size:16px; font-weight:700; color:var(--zt-ink); margin:14px 0 9px; letter-spacing:.2px; }
.zt-num-tag{ display:inline-block; font-size:11px; font-weight:700; padding:3px 9px; border-radius:20px; }
.zt-tag-ok{ background:#E2F3DC; color:#3C7A2E; }
.zt-tag-mem{ background:#EDE6FB; color:#6C4BD0; }
.zt-nums-empty{ padding:22px; text-align:center; color:var(--zt-muted); font-size:13.5px; border:1.5px dashed var(--zt-line); border-radius:14px; }

/* Hint de búsqueda por palabra (vanity) */
.zt-nums-vanity{ font-size:12.5px; color:var(--zt-blue); background:#EFF6FF; border:1px solid #D8E8FB; border-radius:9px; padding:8px 12px; margin:-4px 0 14px; }
.zt-nums-vanity b{ font-weight:800; }
.zt-nums-vanity .glyphicon{ font-size:12px; margin-right:5px; }

/* ---------- Dropdown personalizado (reemplaza el <select> nativo feo) ---------- */
.zt-sel{ position:relative; }
.zt-sel-native{ position:absolute; left:0; top:0; width:100%; height:46px; opacity:0; pointer-events:none; z-index:0; }
.zt-sel-btn{
	position:relative; z-index:1; width:100%; height:46px;
	display:flex; align-items:center; justify-content:space-between; gap:10px;
	border:1.5px solid var(--zt-line); background:var(--zt-field); border-radius:11px;
	padding:10px 14px; font-size:14px; color:var(--zt-ink); cursor:pointer; text-align:left;
	transition:border-color .15s, box-shadow .15s, background .15s;
}
.zt-sel-btn:hover{ border-color:#C9D8EC; }
.zt-sel.open .zt-sel-btn{ border-color:var(--zt-turq); background:#fff; box-shadow:0 0 0 4px rgba(61,174,233,.16); }
.zt-sel-val{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.zt-sel-arrow{ color:var(--zt-muted); font-size:11px; flex:0 0 auto; transition:transform .18s; }
.zt-sel.open .zt-sel-arrow{ transform:rotate(180deg); }
.zt-has-icon .zt-sel-btn{ padding-left:40px; }
.zt-has-icon .zt-fi{ z-index:3; }
.zt-sel-menu{
	display:none; position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:1200;
	background:#fff; border:1px solid var(--zt-line); border-radius:13px;
	box-shadow:0 18px 44px rgba(11,22,56,.18); max-height:280px; overflow:auto; padding:6px;
}
.zt-sel.open .zt-sel-menu{ display:block; animation:ztFadeUp .15s ease both; }
.zt-sel-opt{ padding:10px 12px; border-radius:9px; font-size:14px; color:var(--zt-ink); cursor:pointer; }
.zt-sel-opt:hover{ background:#F0F6FD; }
.zt-sel-opt.is-sel{ background:#E9F2FC; color:var(--zt-blue); font-weight:600; }
.zt-sel-none{ padding:12px; text-align:center; color:var(--zt-muted); font-size:13px; }
.zt-sel-search{
	display:block; width:calc(100% - 4px); margin:2px 2px 8px; box-sizing:border-box;
	border:1.5px solid var(--zt-line); border-radius:9px; padding:9px 12px; font-size:13.5px; color:var(--zt-ink);
}
.zt-sel-search:focus{ outline:none; border-color:var(--zt-turq); box-shadow:0 0 0 3px rgba(61,174,233,.15); }

/* ---------- Misc (captcha / términos) ---------- */
.zt-misc{ margin-top:8px; }
.zt-misc #misc{ width:auto !important; margin:0 !important; float:none !important; }
.zt-misc h3{ font-size:15px; font-weight:700; color:var(--zt-ink); margin:18px 0 12px; }
#termstext.form-control{ height:auto; font-size:12.5px; color:var(--zt-muted); background:#F7FAFE; }
.zt-misc .checkbox label{ font-size:13px; color:var(--zt-ink); }
.zt-misc .h-captcha{ margin:6px 0; }
#send_sms .btn{ background:#EEF4FC; color:var(--zt-blue); border:1px solid #D8E6F8; }

/* ---------- CTA ---------- */
.zt-cta{ margin-top:24px; padding-top:22px; border-top:1px solid var(--zt-line); text-align:center; }
#submit-button.row{ margin:0 !important; }
.zt-cta-btn, #finish-button.btn{
	display:inline-block; width:100%; max-width:none;
	background:var(--zt-grad); border:none; color:#fff;
	font-size:16px; font-weight:700; letter-spacing:.2px;
	border-radius:13px; padding:15px 24px;
	box-shadow:0 14px 30px rgba(46,107,230,.32);
	transition:transform .15s, box-shadow .15s, filter .15s;
	cursor:pointer;
}
.zt-cta-btn:hover, #finish-button.btn:hover{ transform:translateY(-2px); box-shadow:0 18px 38px rgba(46,107,230,.42); filter:brightness(1.03); color:#fff; }
.zt-cta-btn:active{ transform:translateY(0); }
.zt-cta-btn::after{ content:'  \2192'; }
.zt-cta-note{ font-size:12.5px; color:var(--zt-muted); margin:13px 0 0; }

/* ---------- Alertas ---------- */
#main .alert{ border-radius:12px; border:none; font-size:13.5px; }
#main .alert-danger{ background:#FDECEC; color:#B23B3B; }
#main .alert-success{ background:#E7F6E3; color:#3C7A2E; }
#main .alert-info{ background:#E9F3FD; color:#2E6BE6; }
#main .alert-warning{ background:#FCF3E1; color:#9A6A14; }

/* ---------- Popovers de validación ---------- */
.popover{ border-radius:10px; font-size:12.5px; }

/* ---------- Procesando (preloader) — modal centrado ---------- */
#preloader{
	position:fixed; inset:0; margin:0; max-width:none; width:auto; padding:20px;
	background:rgba(8,17,40,.66); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
	display:flex; align-items:center; justify-content:center; z-index:9999; color:var(--zt-ink);
}
.zt-preloader-card{
	background:#fff; border-radius:26px; box-shadow:0 40px 100px rgba(0,0,0,.5);
	padding:66px 56px; width:100%; max-width:520px; text-align:center;
	display:flex; flex-direction:column; align-items:center; justify-content:center;
	animation:ztFadeUp .35s ease both;
}
.zt-preloader-logo{ width:160px; max-width:60%; height:auto; margin:0 auto 26px; display:block; }
.zt-spinner{
	width:64px; height:64px; margin:0 auto 26px;
	border-radius:50%; border:6px solid #E4EEF9; border-top-color:var(--zt-blue);
	animation:ztSpin .85s linear infinite;
}
@keyframes ztSpin{ to{ transform:rotate(360deg); } }
#preloader h3{ font-size:24px; font-weight:800; color:var(--zt-ink); margin:0 0 22px; }
#preloader .progress{ width:100%; max-width:420px; height:12px; margin:14px auto 0; border-radius:8px; background:#EAF1FB; box-shadow:none; overflow:hidden; }
#preloader .progress-bar{ background:var(--zt-grad); }
@media (prefers-reduced-motion:reduce){ .zt-spinner{ animation-duration:1.6s; } }
@media (max-width:560px){ .zt-preloader-card{ padding:46px 24px; } #preloader h3{ font-size:20px; } }

/* ---------- Resultado / Confirmación ---------- */
.zt-result-hero{ text-align:center; padding:4px 0 22px; border-bottom:1px solid var(--zt-line); margin-bottom:24px; }
.zt-result-ic{
	display:inline-flex; width:66px; height:66px; border-radius:50%;
	background:#E2F3DC; color:var(--zt-green); align-items:center; justify-content:center;
	font-size:33px; font-weight:800; margin-bottom:14px;
}
.zt-result-hero h2{ font-size:24px; font-weight:800; color:var(--zt-ink); margin:0 0 6px; }
.zt-result-hero p{ color:var(--zt-muted); font-size:14px; margin:0; }

/* Resultado: aviso "revise su correo" + 4 tarjetas informativas */
.zt-result-mail{ display:flex; gap:14px; align-items:flex-start; background:#E9F3FD; border:1px solid #D4E6FA; border-radius:14px; padding:16px 18px; margin:0 0 22px; }
.zt-result-mail-ic{ flex:0 0 42px; width:42px; height:42px; border-radius:11px; background:#fff; color:var(--zt-blue); display:flex; align-items:center; justify-content:center; font-size:18px; }
.zt-result-mail-tx b{ display:block; color:var(--zt-ink); font-size:15px; font-weight:700; margin-bottom:3px; }
.zt-result-mail-tx span{ color:var(--zt-muted); font-size:13.5px; line-height:1.5; }
.zt-result-cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:26px; }
.zt-rcard{ border:1px solid var(--zt-line); border-radius:14px; padding:18px; background:#fff; box-shadow:0 6px 18px rgba(11,22,56,.05); }
.zt-rcard-ic{ display:inline-flex; width:42px; height:42px; border-radius:11px; background:#EEF4FC; color:var(--zt-blue); align-items:center; justify-content:center; font-size:17px; margin-bottom:11px; }
.zt-rcard b{ display:block; font-size:15px; color:var(--zt-ink); margin-bottom:4px; }
.zt-rcard span{ font-size:13px; color:var(--zt-muted); line-height:1.45; }
.zt-result-creds-title{ font-size:16px; font-weight:800; color:var(--zt-ink); margin:8px 0 16px; }
.zt-sum-incluye{ margin-top:16px !important; }

/* Oferta primer mes en el resumen */
.zt-sum-offer{ margin:0 0 14px; padding-bottom:14px; border-bottom:1px solid var(--zt-line); }
.zt-sum-offer-badge{ display:inline-flex; align-items:center; gap:5px; background:linear-gradient(90deg,#5EC44C,#3DAEE9); color:#fff; font-size:10.5px; font-weight:800; padding:4px 11px; border-radius:20px; }
.zt-sum-offer-then{ font-size:12px; color:var(--zt-muted); margin-top:7px; }
.zt-sum-total span sup{ font-size:.65em; }
.zt-sum-big sup{ color:var(--zt-green); font-size:.55em; }
.zt-has-offer .zt-sum-big b{ color:var(--zt-green); }
.zt-sum-disclaimer{ font-size:10.5px; line-height:1.45; color:var(--zt-muted); margin:8px 0 2px; }
@media (max-width:640px){ .zt-result-cards{ grid-template-columns:1fr; } }

#main .back-link{ color:var(--zt-blue); text-decoration:none; font-size:14px; font-weight:600; }
#main .back-link:hover{ text-decoration:underline; }
#main > h4{ color:var(--zt-ink); font-size:15px; line-height:1.5; background:#E9F3FD; border:1px solid #D4E6FA; border-radius:12px; padding:14px 16px; }

#main .panel.panel-default{
	border:1px solid var(--zt-line); border-radius:16px; overflow:hidden;
	box-shadow:0 8px 22px rgba(11,22,56,.05); margin-bottom:18px; background:#fff;
}
#main .panel-heading{
	background:#F4F8FD; border-bottom:1px solid var(--zt-line); color:var(--zt-ink);
	font-weight:700; font-size:14px; padding:14px 18px; border-radius:0;
}
#main .panel .table{ margin:0; }
#main .panel .table td{ padding:13px 18px; border-top:1px solid var(--zt-line); vertical-align:middle; font-size:14px; }
#main .panel .table tr:first-child td{ border-top:none; }
#main .panel .table td:first-child{ color:var(--zt-muted); font-weight:600; width:42%; text-align:right; }
#main .panel .table td:last-child{ color:var(--zt-ink); font-weight:700; word-break:break-word; }
#main .panel .table a{ color:var(--zt-blue); font-weight:600; }
#main .panel .table img{ border:1px solid var(--zt-line); border-radius:10px; padding:6px; background:#fff; }

.zt-copy{
	display:inline-flex; align-items:center; gap:4px; border:1px solid var(--zt-line);
	background:#fff; color:var(--zt-blue); border-radius:7px; padding:3px 9px;
	font-size:12px; font-weight:600; cursor:pointer; margin-left:8px; vertical-align:middle;
}
.zt-copy:hover{ background:#EEF4FC; }
.zt-copy.zt-copied{ background:#E2F3DC; color:var(--zt-green); border-color:#BFE3B5; }

#main .jumbotron{
	background:#F7FAFE; border:1px solid var(--zt-line); border-radius:20px;
	padding:40px 36px; text-align:center; max-width:none; margin:0 0 18px;
}
#confirm_title, #main .jumbotron h1{
	font-size:26px !important; font-weight:800 !important; color:var(--zt-ink) !important;
	max-width:none !important; padding:0 0 12px !important; margin:0 auto !important;
}
#main .jumbotron p{ color:var(--zt-muted); font-size:14px; max-width:580px; margin:0 auto 14px; line-height:1.6; }
#main .jumbotron .btn-primary, #main .jumbotron .btn-lg{
	background:var(--zt-grad); border:none; border-radius:12px; padding:13px 26px;
	font-weight:700; font-size:15px; box-shadow:0 12px 26px rgba(46,107,230,.3);
}
#main .jumbotron .badge{ background:#fff !important; color:var(--zt-blue) !important; }

/* ---------- Aviso de pago rechazado (cálido, pro-conversión) ---------- */
.zt-decline{
	display:flex; gap:14px; align-items:flex-start;
	background:linear-gradient(180deg,#FFF7EE,#FFFDFB);
	border:1px solid #F6DCB6; border-left:4px solid #E8913A;
	border-radius:14px; padding:16px 18px; margin-bottom:20px;
	animation:ztFadeUp .4s ease both;
}
.zt-decline-ic{
	flex:0 0 42px; width:42px; height:42px; border-radius:11px;
	background:#FBE6CC; color:#C9701A; display:flex; align-items:center; justify-content:center; font-size:18px;
}
.zt-decline-tx b{ color:var(--zt-ink); font-size:15px; font-weight:700; }
.zt-decline-tx p{ color:var(--zt-muted); font-size:13.5px; margin:5px 0 0; line-height:1.5; }
.zt-decline-tx p b{ color:#C9701A; }
.zt-decline-tx small{ display:block; color:#9AA7BD; font-size:11.5px; margin-top:9px; }

/* ---------- Indicador Modo Demo ---------- */
.zt-demo-badge{
	position:fixed; left:50%; bottom:18px; transform:translateX(-50%);
	z-index:9999; background:var(--zt-navy); color:#fff;
	font-size:13px; font-weight:600; padding:9px 18px; border-radius:30px;
	box-shadow:0 10px 30px rgba(11,22,56,.4); border:1px solid rgba(61,174,233,.5);
	white-space:nowrap;
}
.zt-demo-badge::first-letter{ color:var(--zt-green); }

/* ---------- Responsive ---------- */
@media (max-width:1280px){
	.zt-grid{ grid-template-columns:1fr; }
	.zt-summary{ position:static; }
}
@media (max-width:991px){
	.zt-aside{ position:static; width:auto; max-width:none; flex-direction:column; }
	#main.container{ margin:18px; }
	.zt-plans{ grid-template-columns:repeat(2,1fr); }
	.zt-two{ grid-template-columns:1fr; }
	.zt-nums-grid{ grid-template-columns:repeat(2,1fr); }
	.zt-topbar{ flex-direction:column; }
	.zt-help{ align-self:flex-end; }
}
@media (max-width:720px){
	.zt-grid2{ grid-template-columns:1fr; }
}
@media (max-width:520px){
	.zt-plans{ grid-template-columns:1fr; }
	.zt-nums-grid{ grid-template-columns:1fr; }
	#main.container{ margin:12px; padding:22px 18px; border-radius:18px; }
	.zt-stepbar .zt-step-tx i{ display:none; }
	.zt-nav{ flex-direction:column-reverse; }
	.zt-back, .zt-next{ width:100%; }
}

/* ---------- Movimiento sutil (no spammy) ---------- */
@keyframes ztFadeUp{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }
.zt-plans-wrap, .zt-two, .zt-summary, .zt-misc, .zt-cta{ animation:ztFadeUp .5s ease both; }
.zt-two{ animation-delay:.06s; }
.zt-summary{ animation-delay:.12s; }
.zt-misc{ animation-delay:.16s; }
.zt-cta{ animation-delay:.2s; }
@media (prefers-reduced-motion:reduce){
	.zt-plans-wrap, .zt-two, .zt-summary, .zt-misc, .zt-cta, .zt-plan{ animation:none !important; transition:none !important; }
}
