*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080d;
  --bg2: #0e0e16;
  --bg3: #16161f;
  --bg-card: #111119;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --violet-dim: #4c1d95;
  --violet-glow: rgba(124, 58, 237, 0.08);
  --green: #10b981;
  --green-hover: #059669;
  --white: #f0eeff;
  --white2: #d4d0ea;
  --muted: #5a576e;
  --border: #1e1e2c;
  --border2: #2a2a3a;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

/* ---- TOP NAV (paginas internas) ---- */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.back-link:hover { color: var(--violet-light); }
.back-link svg { width: 14px; height: 14px; }

.brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.brand em { font-style: normal; color: var(--violet-light); }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em { font-style: normal; color: var(--violet-light); }

.hero-sub {
  font-size: 16px;
  color: var(--white2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero-hook {
  font-size: 12px;
  color: var(--muted);
  line-height: 2.2;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.hero-hook .hook-line { display: flex; align-items: flex-start; gap: 10px; }

.hook-dot {
  width: 4px; height: 4px; min-width: 4px;
  border-radius: 50%;
  background: var(--violet-light);
  margin-top: 7px;
}

/* ---- CONTACT ---- */
.contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.contact-link:hover { color: var(--violet-light); }
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- TRUST BAR ---- */
.trust-bar { border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-num { font-weight: 800; font-size: 24px; color: var(--white); }
.trust-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ---- PROMO CARDS (pagina 1) ---- */
.promos { padding: 56px 0 20px; }

.promo-section-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 8px;
}

.promo {
  position: relative;
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  overflow: hidden;
}

.promo.featured { border-color: var(--violet-dim); background: linear-gradient(180deg, rgba(124,58,237,0.06), var(--bg-card)); }

.promo-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.promo h3 {
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.promo p {
  font-size: 14px;
  color: var(--white2);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 24px;
}

.promo-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 18px;
}

.price-new {
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.price-tag {
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.cta:hover { background: #6d28d9; }
.cta:active { transform: scale(0.98); }
.cta svg { width: 14px; height: 14px; }

.cta.buy { background: var(--green); }
.cta.buy:hover { background: var(--green-hover); }

/* ---- PAGE HEAD (paginas 2 y 3) ---- */
.page-head { padding: 48px 0 8px; text-align: center; }

.page-head h1 {
  font-weight: 800;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-head h1 em { font-style: normal; color: var(--violet-light); }

.page-head p {
  font-size: 14px;
  color: var(--white2);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- PACK / GROUP CARD ---- */
.packs { padding: 32px 0 40px; }

.pack {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.pack-left { display: flex; align-items: center; gap: 12px; }
.pack-label { font-weight: 700; font-size: 16px; color: var(--white); }

.pack-count {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  background: var(--bg3);
  padding: 3px 8px;
  border-radius: 3px;
}

.pack-right { display: flex; align-items: center; gap: 12px; }
.pack-price { font-size: 13px; color: var(--white2); font-weight: 700; }

.buy-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.buy-btn:hover { background: var(--green-hover); }
.buy-btn:active { transform: scale(0.97); }

/* ---- TRACKS ---- */
.pack-tracks { padding: 0; }

.track { border-bottom: 1px solid var(--border); padding: 0 20px; transition: background 0.15s; }
.track:last-child { border-bottom: none; }
.track.has-audio { cursor: pointer; }
.track.has-audio:hover { background: var(--violet-glow); }
.track.playing { background: var(--violet-glow); }
.track.locked { opacity: 0.45; }

.track-row { display: flex; align-items: center; gap: 10px; height: 32px; }

.track-num {
  font-size: 10px;
  color: var(--muted);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}

.play-btn {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--violet);
  background: transparent;
  color: var(--violet-light);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}

.play-btn:hover, .track.playing .play-btn { background: var(--violet); color: var(--white); }
.play-btn svg { width: 7px; height: 7px; }

.track-name { font-size: 12px; color: var(--white2); flex: 1; }

.track-genre {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.track-status {
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}

.track.playing .track-status { color: var(--violet-light); }

.lock-btn {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lock-btn svg { width: 8px; height: 8px; color: var(--muted); }

.more-row {
  text-align: center;
  padding: 14px;
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--bg2);
}

/* ---- PROGRESS BAR ---- */
.progress-row { padding: 0 20px 8px; }

.progress-wrap {
  width: 100%; height: 16px;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.progress-track {
  width: 100%; height: 2px;
  background: var(--border2);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}

.progress-bar {
  height: 100%; width: 0%;
  background: var(--violet-light);
  border-radius: 2px;
  pointer-events: none;
  position: relative;
}

.progress-thumb {
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--violet-light);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.progress-wrap:hover .progress-thumb,
.progress-wrap.dragging .progress-thumb { opacity: 1; }
.progress-wrap:hover .progress-track,
.progress-wrap.dragging .progress-track { height: 3px; }

.sc-iframe {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
  top: -9999px;
}

/* ---- BUY BLOCK (paginas 2 y 3) ---- */
.buy-block {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(124,58,237,0.08), var(--bg-card));
  border: 1px solid var(--violet-dim);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.buy-block h3 {
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.buy-block p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ---- BOTTOM CTA ---- */
.bottom-cta { text-align: center; padding: 64px 0 80px; border-top: 1px solid var(--border); }
.bottom-cta h2 { font-weight: 800; font-size: clamp(20px, 4vw, 32px); color: var(--white); margin-bottom: 12px; }
.bottom-cta p { font-size: 13px; color: var(--muted); max-width: 400px; margin: 0 auto 28px; line-height: 1.6; }

/* ---- FOOTER ---- */
footer { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
footer p { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .inner { padding: 0 16px; }
  .hero { padding: 44px 0 36px; }
  .hero-sub { font-size: 14px; }
  .hero-hook { font-size: 12px; line-height: 1.6; }
  .hero-hook .hook-line { margin-bottom: 10px; }
  .contact-bar { flex-direction: column; gap: 12px; }
  .contact-link { font-size: 12px; }
  .trust-row { gap: 20px; }
  .trust-num { font-size: 20px; }
  .promo { padding: 28px 20px; }
  .pack-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pack-right { width: 100%; justify-content: space-between; }
  .track-genre { display: none; }
  .track-row { gap: 8px; }
  .track-name { font-size: 11px; }
  .track-num { width: 18px; }
  .buy-block { padding: 24px 18px; }
}

/* ============================================================
   CRO LANDING — componentes nuevos
   ============================================================ */

:root {
  --blue: #38bdf8;
  --grad: linear-gradient(135deg, #7c3aed 0%, #38bdf8 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(56,189,248,0.10));
}

/* Badge de lanzamiento / urgencia */
.badge-launch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(124,58,237,0.18);
  border: 1px solid var(--violet-dim);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.badge-launch .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* Botones primarios con gradiente */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border: none;
  border-radius: 8px;
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.2s, filter 0.15s;
  box-shadow: 0 6px 24px rgba(124,58,237,0.28);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 10px 30px rgba(56,189,248,0.3); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 15px; height: 15px; }
.btn-block { display: flex; width: 100%; }

/* Hero rework */
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta { margin: 4px 0 26px; }

/* Preview card en hero */
.hero-preview-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}
.hero-preview-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.hero-preview-head .lp { color: var(--violet-light); font-weight: 700; }

/* Ecualizador animado (cuando suena) */
.eq { display: none; align-items: flex-end; gap: 2px; height: 12px; margin-left: 4px; flex-shrink: 0; }
.track.playing .eq { display: inline-flex; }
.eq i { width: 2px; background: var(--violet-light); border-radius: 1px; animation: eqbar 0.9s ease-in-out infinite; }
.eq i:nth-child(1){ animation-delay: 0s; } .eq i:nth-child(2){ animation-delay: .2s; } .eq i:nth-child(3){ animation-delay: .4s; } .eq i:nth-child(4){ animation-delay: .15s; }
@keyframes eqbar { 0%,100%{ height: 3px; } 50%{ height: 12px; } }

/* Compatibilidad */
.compat { padding: 30px 0; border-bottom: 1px solid var(--border); text-align: center; }
.compat-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.compat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.compat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--white2);
  background: var(--bg2); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 30px;
}
.compat-pill svg { width: 13px; height: 13px; color: var(--violet-light); }

/* OFERTA */
.offer { padding: 60px 0 20px; }
.section-kicker { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--violet-light); text-align: center; margin-bottom: 8px; }
.section-title { font-weight: 800; font-size: clamp(24px, 4.5vw, 36px); letter-spacing: -0.02em; color: var(--white); text-align: center; margin-bottom: 36px; }
.section-title em { font-style: normal; }
.section-title .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.offer-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 20px;
}
.offer-card.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 10px 40px rgba(124,58,237,0.15);
}
.offer-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--grad); padding: 6px 16px; border-radius: 20px;
  white-space: nowrap;
}
.offer-card h3 { font-weight: 800; font-size: clamp(22px, 4vw, 28px); letter-spacing: -0.02em; margin-bottom: 8px; }
.offer-card .lead { font-size: 14px; color: var(--white2); line-height: 1.6; max-width: 440px; margin: 0 auto 20px; }
.offer-feats { list-style: none; display: inline-flex; flex-direction: column; gap: 8px; text-align: left; margin: 0 auto 22px; }
.offer-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--white2); }
.offer-feats svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.offer-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 20px; }
.offer-card.secondary { padding: 28px; }
.offer-card.secondary h3 { font-size: 20px; }

.secure-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.secure-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.secure-item svg { width: 13px; height: 13px; color: var(--green); }
.mp-pill { display: inline-flex; align-items: center; gap: 5px; background: #fff159; border-radius: 4px; padding: 4px 9px; }
.mp-pill svg { width: 15px; height: 15px; }
.mp-pill span { font-size: 9px; font-weight: 700; color: #2d3277; text-transform: uppercase; line-height: 1; }

/* MOSTRAR PRODUCTO */
.product-show { padding: 56px 0; border-top: 1px solid var(--border); }
.show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.show-text h3 { font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 14px; }
.show-text p { font-size: 14px; color: var(--white2); line-height: 1.7; margin-bottom: 14px; }
.show-text .hook-line { font-size: 13px; margin-bottom: 8px; }

.file-mock {
  background: #0c0c14; border: 1px solid var(--border2); border-radius: 10px; overflow: hidden;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.file-mock-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--bg3); border-bottom: 1px solid var(--border2); }
.file-mock-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.file-mock-bar .d.r{background:#ff5f57;} .file-mock-bar .d.y{background:#febc2e;} .file-mock-bar .d.g{background:#28c840;}
.file-mock-bar .ttl { margin-left: 8px; font-size: 11px; color: var(--muted); }
.file-row { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: 12px; }
.file-row:last-child { border-bottom: none; }
.file-row svg { width: 13px; height: 13px; color: var(--violet-light); flex-shrink: 0; }
.file-row .fkey { color: var(--blue); font-weight: 700; min-width: 34px; }
.file-row .fname { color: var(--white2); flex: 1; }
.file-row .fbpm { color: var(--muted); font-size: 11px; }

/* TESTIMONIOS */
.testimonials { padding: 56px 0; border-top: 1px solid var(--border); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 22px; }
.stars { display: flex; gap: 2px; margin-bottom: 12px; }
.stars svg { width: 14px; height: 14px; color: #fbbf24; }
.tcard p { font-size: 13px; color: var(--white2); line-height: 1.6; margin-bottom: 14px; }
.tcard-who { display: flex; align-items: center; gap: 10px; }
.tcard-av { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: 12px; font-weight: 700; color: var(--white); }
.tcard-role { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* FAQ */
.faq { padding: 56px 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15px; font-weight: 700; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { width: 18px; height: 18px; flex-shrink: 0; color: var(--violet-light); transition: transform 0.2s; }
.faq-item[open] summary .ic { transform: rotate(45deg); }
.faq-item .faq-a { font-size: 13px; color: var(--white2); line-height: 1.7; padding: 0 0 18px; max-width: 640px; }

/* STICKY BUY (mobile) */
.sticky-buy {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border2);
  padding: 10px 16px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-buy .sb-info { line-height: 1.1; }
.sticky-buy .sb-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sticky-buy .sb-price { font-size: 16px; font-weight: 800; color: var(--white); }
.sticky-buy .sb-old { font-size: 11px; color: var(--muted); text-decoration: line-through; margin-left: 5px; }
.sticky-buy .btn-primary { padding: 12px 22px; font-size: 12px; box-shadow: none; }

@media (max-width: 640px) {
  .show-grid { grid-template-columns: 1fr; gap: 20px; }
  .tgrid { grid-template-columns: 1fr; }
  .sticky-buy { display: flex; }
  body { padding-bottom: 68px; }
}
