/* ==========================================================================
   Hazteunsitio Email Marketing — custom frontend theme v3 (light)
   Se carga automaticamente por MailWizz (frontend/assets/css/style-custom.css)
   No modifica style.css ni el core de la aplicacion.
   ========================================================================== */

:root {
  --hz-primary: #6d28d9;
  --hz-primary-dark: #4c1d95;
  --hz-primary-light: #a78bfa;
  --hz-accent: #0ea5b7;
  --hz-accent-2: #f472b6;
  --hz-ink: #14122b;
  --hz-ink-soft: #5b5a72;
  --hz-bg: #ffffff;
  --hz-bg-soft: #f6f5fb;
  --hz-bg-tint: #efeafc;
  --hz-dark: #14102b;
  --hz-border: #e7e4f3;
  --hz-radius: 18px;
  --hz-shadow: 0 20px 45px rgba(45, 20, 110, 0.10);
  --hz-shadow-lg: 0 30px 70px rgba(45, 20, 110, 0.16);
}

body.app-frontend {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--hz-ink);
  background: var(--hz-bg);
}
body.app-frontend .content-wrapper { background: var(--hz-bg); padding-top: 0; }

/* ---- Navbar ------------------------------------------------------------ */
body.app-frontend header.navbar {
  background: rgba(15, 12, 32, .97);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  margin-bottom: 0;
  min-height: 90px;
  position: relative;
  z-index: 50;
}
body.app-frontend header.navbar .navbar-header { min-height: 90px; }
body.app-frontend header.navbar .navbar-brand {
  height: auto;
  padding: 14px 15px;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
header.navbar-default .navbar-brand > img.hz-logo-img,
.hz-logo-img {
  height: 54px !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  display: block;
}
body.app-frontend header.navbar .nav > li > a {
  color: rgba(255,255,255,.75);
  font-weight: 600;
  padding: 35px 16px;
}
body.app-frontend header.navbar .nav > li > a:hover { color: #fff; background: transparent; }
body.app-frontend header.navbar .nav > li > a.btn.btn-default {
  background: linear-gradient(90deg, var(--hz-primary), var(--hz-accent));
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  margin-top: 23px;
  border: none;
}
body.app-frontend header.navbar .nav > li > a.btn.btn-default:hover { filter: brightness(1.08); }
body.app-frontend .navbar-toggle .icon-bar { background: #fff; }

/* ---- Buttons ------------------------------------------------------------ */
.hz-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, filter .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.hz-btn:hover { transform: translateY(-2px); }
.hz-btn-primary {
  background: linear-gradient(90deg, var(--hz-primary), var(--hz-accent));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(109,40,217,.28);
}
.hz-btn-primary:hover { filter: brightness(1.08); }
.hz-btn-ghost {
  background: #fff;
  color: var(--hz-ink) !important;
  border-color: var(--hz-border);
}
.hz-btn-ghost:hover { border-color: var(--hz-primary); color: var(--hz-primary) !important; }
.hz-btn-outline {
  background: transparent;
  color: var(--hz-primary) !important;
  border-color: var(--hz-primary);
  width: 100%;
  text-align: center;
}
.hz-btn-outline:hover { background: var(--hz-primary); color: #fff !important; }
.hz-btn-lg { padding: 17px 38px; font-size: 17px; }

/* ---- Hero --------------------------------------------------------------- */
.hz-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: left;
  background: var(--hz-bg);
}
.hz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(109,40,217,.12), transparent 60%),
    radial-gradient(700px 460px at 100% 0%, rgba(14,165,183,.10), transparent 55%),
    var(--hz-bg-soft);
}
.hz-hero .container { position: relative; z-index: 1; }
.hz-hero-grid { display: flex; align-items: center; flex-wrap: wrap; gap: 40px; }
.hz-hero-copy { flex: 1 1 480px; min-width: 300px; }
.hz-hero-visual { flex: 1 1 420px; min-width: 300px; }

.hz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hz-primary);
  background: var(--hz-bg-tint);
  border: 1px solid var(--hz-border);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hz-eyebrow i { color: var(--hz-accent); }
.hz-hero-title {
  font-size: 50px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hz-ink);
  margin-bottom: 22px;
}
.hz-highlight {
  background: linear-gradient(90deg, var(--hz-primary), var(--hz-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hz-hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--hz-ink-soft);
  max-width: 540px;
  margin: 0 0 34px;
}
.hz-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hz-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--hz-ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.hz-hero-trust i { color: var(--hz-accent); margin-right: 6px; }

/* ---- Hero mockup (CSS-drawn "product" card) ------------------------------ */
.hz-mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 20px;
  box-shadow: var(--hz-shadow-lg);
  padding: 14px;
}
.hz-mock-bar { display: flex; align-items: center; gap: 6px; padding: 8px 10px 14px; }
.hz-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hz-border); }
.hz-mock-dot:nth-child(1) { background: #f87171; }
.hz-mock-dot:nth-child(2) { background: #fbbf24; }
.hz-mock-dot:nth-child(3) { background: #34d399; }
.hz-mock-body { background: var(--hz-bg-soft); border-radius: 14px; padding: 22px; color: var(--hz-ink); }
.hz-mock-tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--hz-border); margin-bottom: 18px; padding-bottom: 12px; }
.hz-mock-tab { font-size: 12.5px; font-weight: 700; color: var(--hz-ink-soft); }
.hz-mock-tab-active { color: var(--hz-primary); position: relative; }
.hz-mock-tab-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -13px; height: 2px; background: var(--hz-primary); }
.hz-mock-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--hz-border); }
.hz-mock-row:last-of-type { border-bottom: none; }
.hz-mock-row-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; }
.hz-mock-row-text { flex: 1; min-width: 0; }
.hz-mock-row-text strong { display: block; font-size: 13px; color: var(--hz-ink); }
.hz-mock-row-text small { display: block; font-size: 11px; color: var(--hz-ink-soft); margin-top: 2px; }
.hz-mock-row-stat { font-size: 12px; font-weight: 800; color: #16a34a; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.hz-mock-row-stat.is-neutral { color: var(--hz-ink-soft); }
.hz-mock-chart { display: flex; align-items: flex-end; gap: 6px; height: 54px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--hz-border); }
.hz-mock-chart span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--hz-primary-light), var(--hz-primary)); opacity: .85; }
.hz-mock-chart span:last-child { background: linear-gradient(180deg, var(--hz-accent), var(--hz-primary)); opacity: 1; }
.hz-mock-float {
  position: absolute;
  background: #fff;
  color: var(--hz-ink);
  border-radius: 14px;
  box-shadow: var(--hz-shadow);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: hzFloat 4.5s ease-in-out infinite;
}
.hz-mock-float i { font-size: 16px; }
.hz-mock-float-1 { top: -18px; right: -22px; animation-delay: 0s; }
.hz-mock-float-1 i { color: #22c55e; }
.hz-mock-float-2 { bottom: -16px; left: -30px; animation-delay: 1.2s; }
.hz-mock-float-2 i { color: var(--hz-accent-2); }
@keyframes hzFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hz-mock-float small { display: block; font-weight: 600; color: var(--hz-ink-soft); font-size: 10.5px; }

/* ---- Section shell -------------------------------------------------------- */
.hz-section { padding: 90px 0; }
.hz-section-head { text-align: center; margin-bottom: 50px; }
.hz-section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.01em; color: var(--hz-ink); margin-bottom: 16px; }
.hz-section-head p { font-size: 16px; color: var(--hz-ink-soft); max-width: 580px; margin: 0 auto; }

/* ---- Illustrated feature rows (Brevo-style alternating) ------------------- */
.hz-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 56px 0;
  flex-wrap: wrap;
}
.hz-feature-row.is-reverse { flex-direction: row-reverse; }
.hz-feature-visual { flex: 1 1 440px; min-width: 300px; position: relative; }
.hz-feature-copy { flex: 1 1 420px; min-width: 300px; }
.hz-feature-copy h3 { font-size: 22px; font-weight: 800; color: var(--hz-ink); margin: 0 0 10px; }
.hz-feature-copy p { font-size: 15px; color: var(--hz-ink-soft); line-height: 1.7; margin: 0 0 26px; }
.hz-feature-copy p:last-child { margin-bottom: 0; }

/* browser-window illustration */
.hz-illus-browser {
  position: relative;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 18px;
  box-shadow: var(--hz-shadow);
  padding: 12px;
  max-width: 420px;
}
.hz-illus-browser-bar { display: flex; gap: 6px; padding: 4px 8px 12px; }
.hz-illus-browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--hz-border); }
.hz-illus-browser-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: var(--hz-ink-soft);
  padding: 0 4px 10px;
}
.hz-illus-browser-brand i { color: var(--hz-primary); }
.hz-illus-photo {
  height: 150px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}
.hz-illus-lines { padding: 0 4px; }
.hz-illus-lines span { display: block; height: 8px; border-radius: 5px; background: var(--hz-bg-soft); margin-bottom: 7px; }
.hz-illus-lines span:nth-child(1) { width: 90%; }
.hz-illus-lines span:nth-child(2) { width: 70%; }
.hz-illus-lines span:nth-child(3) { width: 45%; }

.hz-illus-avatar {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--hz-shadow);
  background-size: cover;
  background-position: center;
}
.hz-illus-avatar-1 { top: 4%; right: -6%; }
.hz-illus-avatar-2 { bottom: 6%; left: -8%; }

.hz-illus-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--hz-shadow);
  padding: 14px 16px;
  bottom: -30px;
  right: -8%;
  width: 190px;
}
.hz-illus-card-field { height: 26px; border-radius: 7px; border: 1px solid var(--hz-border); background: var(--hz-bg-soft); margin-bottom: 8px; font-size: 10px; color: var(--hz-ink-soft); display:flex; align-items:center; padding-left: 8px; }
.hz-illus-card-btn { text-align: center; background: var(--hz-primary); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 7px 0; margin-top: 4px; }

/* schedule/calendar illustration */
.hz-illus-schedule {
  position: relative;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 18px;
  box-shadow: var(--hz-shadow);
  padding: 20px;
  max-width: 420px;
}
.hz-illus-schedule-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hz-illus-schedule-head strong { font-size: 13px; color: var(--hz-ink); }
.hz-illus-schedule-head span { font-size: 10.5px; color: #16a34a; font-weight: 700; background: rgba(34,197,94,.12); padding: 3px 9px; border-radius: 999px; }
.hz-illus-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 14px; }
.hz-illus-cal span { text-align: center; font-size: 10.5px; color: var(--hz-ink-soft); padding: 5px 0; border-radius: 6px; }
.hz-illus-cal span.is-active { background: var(--hz-primary); color: #fff; font-weight: 800; }
.hz-illus-schedule-photo {
  position: absolute;
  bottom: -26px;
  left: -14%;
  width: 130px;
  height: 130px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--hz-shadow);
  border: 4px solid #fff;
}

/* ---- Feature cards (compact grid, used as summary) ------------------------ */
.hz-cards { margin-top: 6px; }
.hz-cards > div { margin-bottom: 26px; }
.hz-card {
  position: relative;
  height: 100%;
  background: var(--hz-bg);
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius);
  padding: 32px 26px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.hz-card:hover { box-shadow: var(--hz-shadow); transform: translateY(-6px); border-color: transparent; }
.hz-card-icon-wrap {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 22px;
}
.hz-card-icon-glow {
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--hz-primary), var(--hz-accent));
  opacity: .14;
  filter: blur(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.hz-card:hover .hz-card-icon-glow { opacity: .28; transform: scale(1.08); }
.hz-card-icon {
  position: relative;
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--hz-primary), var(--hz-accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 14px 26px rgba(109,40,217,.28), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .3s ease;
}
.hz-card:hover .hz-card-icon { transform: rotate(-6deg) scale(1.06); }
.hz-card:nth-child(6n+2) .hz-card-icon-glow,
.hz-card:nth-child(6n+2) .hz-card-icon { background: linear-gradient(135deg, var(--hz-accent), #0891b2); }
.hz-card:nth-child(6n+2) .hz-card-icon { box-shadow: 0 14px 26px rgba(14,165,183,.3), inset 0 1px 0 rgba(255,255,255,.35); }
.hz-card:nth-child(6n+3) .hz-card-icon-glow,
.hz-card:nth-child(6n+3) .hz-card-icon { background: linear-gradient(135deg, var(--hz-accent-2), #db2777); }
.hz-card:nth-child(6n+3) .hz-card-icon { box-shadow: 0 14px 26px rgba(219,39,119,.28), inset 0 1px 0 rgba(255,255,255,.35); }
.hz-card:nth-child(6n+5) .hz-card-icon-glow,
.hz-card:nth-child(6n+5) .hz-card-icon { background: linear-gradient(135deg, #f59e0b, var(--hz-primary)); }
.hz-card:nth-child(6n+5) .hz-card-icon { box-shadow: 0 14px 26px rgba(245,158,11,.28), inset 0 1px 0 rgba(255,255,255,.35); }
.hz-card h3 { font-size: 17px; font-weight: 800; color: var(--hz-ink); margin-bottom: 9px; letter-spacing: -0.01em; }
.hz-card p { font-size: 13.5px; color: var(--hz-ink-soft); line-height: 1.65; margin: 0; }
.hz-features { background: var(--hz-bg-soft); }

/* ---- 3D Slider (Swiper coverflow) — light section ------------------------- */
.hz-slider-section {
  position: relative;
  background: var(--hz-dark);
  overflow: hidden;
}
.hz-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 12% 0%, rgba(109,40,217,.35), transparent 60%),
    radial-gradient(650px 420px at 90% 100%, rgba(14,165,183,.25), transparent 60%);
  pointer-events: none;
}
.hz-slider-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hz-slider-section .hz-section-head h2,
.hz-slider-section .hz-eyebrow { color: #fff; }
.hz-slider-section .hz-section-head p { color: rgba(255,255,255,.65); }
.hz-slider-section .container-fluid { position: relative; z-index: 1; }
.hz-swiper { padding: 30px 0 64px; }
.hz-slide {
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
}
.hz-slide-inner {
  position: relative; min-height: 420px; padding: 34px 28px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.hz-slide:hover .hz-slide-inner { transform: scale(1.04); }
.hz-slide-inner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,43,.15) 0%, rgba(20,16,43,.55) 55%, rgba(20,16,43,.94) 100%); }
.hz-slide:nth-child(6n+1) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(109,40,217,.18) 0%, rgba(30,15,77,.6) 55%, rgba(15,8,30,.95) 100%); }
.hz-slide:nth-child(6n+2) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(14,165,183,.18) 0%, rgba(11,58,74,.6) 55%, rgba(8,20,26,.95) 100%); }
.hz-slide:nth-child(6n+3) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(219,39,119,.18) 0%, rgba(74,15,46,.6) 55%, rgba(20,8,16,.95) 100%); }
.hz-slide:nth-child(6n+4) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(124,58,237,.18) 0%, rgba(30,20,80,.6) 55%, rgba(10,8,30,.95) 100%); }
.hz-slide:nth-child(6n+5) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(245,158,11,.18) 0%, rgba(124,45,18,.6) 55%, rgba(20,12,6,.95) 100%); }
.hz-slide:nth-child(6n+6) .hz-slide-inner::before { background: linear-gradient(180deg, rgba(79,70,229,.18) 0%, rgba(20,15,60,.6) 55%, rgba(8,6,20,.95) 100%); }
.hz-slide-content { position: relative; z-index: 1; }
.hz-slide-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; }
.hz-slide h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.hz-slide p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0; }
.hz-swiper .swiper-slide { width: 320px; }
.hz-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.35); opacity: 1; width: 8px; height: 8px; }
.hz-swiper .swiper-pagination-bullet-active { background: var(--hz-accent); width: 22px; border-radius: 4px; }
.hz-swiper .swiper-button-next, .hz-swiper .swiper-button-prev {
  color: var(--hz-ink); background: #fff; width: 48px; height: 48px; border-radius: 50%;
  border: none; box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.hz-swiper .swiper-button-next:hover, .hz-swiper .swiper-button-prev:hover { transform: scale(1.08); }
.hz-swiper .swiper-button-next:after, .hz-swiper .swiper-button-prev:after { font-size: 15px; font-weight: 900; }

/* ---- Why / stats + image ---------------------------------------------------- */
.hz-why { background: var(--hz-bg); }
.hz-why-grid { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.hz-why-copy { flex: 1 1 380px; min-width: 280px; }
.hz-why-visual { flex: 1 1 380px; min-width: 280px; }
.hz-why h2 { font-size: 32px; font-weight: 800; color: var(--hz-ink); margin-bottom: 16px; }
.hz-why p { font-size: 16px; color: var(--hz-ink-soft); line-height: 1.65; margin-bottom: 28px; }
.hz-why-image { position: relative; border-radius: var(--hz-radius); overflow: hidden; box-shadow: var(--hz-shadow); min-height: 320px; background-size: cover; background-position: center; }
.hz-why-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(109,40,217,.5), rgba(20,16,43,.6)); }
.hz-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.hz-stat { flex: 1 1 140px; background: var(--hz-bg-soft); border: 1px solid var(--hz-border); border-radius: var(--hz-radius); padding: 26px 18px; text-align: center; }
.hz-stat-num { display: block; font-size: 30px; font-weight: 800; color: var(--hz-primary); margin-bottom: 6px; }
.hz-stat-label { display: block; font-size: 13px; color: var(--hz-ink-soft); font-weight: 600; }

/* ---- Pricing (Hostinger-style: checklist + dynamic card) ------------------- */
.hz-pricing { background: var(--hz-bg-soft); }
.hz-pricing-layout { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.hz-pricing-list { flex: 1 1 420px; min-width: 300px; }
.hz-pricing-list-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--hz-border); }
.hz-pricing-list-item:last-child { border-bottom: none; }
.hz-pricing-list-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: var(--hz-bg-tint); color: var(--hz-primary);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.hz-pricing-list-text strong { display: block; font-size: 15px; color: var(--hz-ink); margin-bottom: 4px; }
.hz-pricing-list-text span { display: block; font-size: 13.5px; color: var(--hz-ink-soft); line-height: 1.55; }

.hz-pricing-card {
  position: relative;
  flex: 1 1 400px;
  min-width: 320px;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 22px;
  box-shadow: var(--hz-shadow-lg);
  padding: 30px;
  overflow: hidden;
}
.hz-pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--hz-primary), var(--hz-accent));
}
.hz-pricing-card-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--hz-primary); margin-bottom: 6px;
}
.hz-pricing-card-title { font-size: 18px; font-weight: 800; color: var(--hz-ink); margin-bottom: 22px; }

.hz-pricing-select-row { margin-bottom: 22px; }
.hz-pricing-select-row > label { display: block; font-size: 12.5px; font-weight: 700; color: var(--hz-ink-soft); margin-bottom: 8px; }

.hz-select { position: relative; }
.hz-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1.5px solid var(--hz-border);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--hz-ink);
  background: var(--hz-bg-soft);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hz-select-trigger:hover { border-color: var(--hz-primary-light); }
.hz-select.is-open .hz-select-trigger { border-color: var(--hz-primary); box-shadow: 0 0 0 4px var(--hz-bg-tint); }
.hz-select-trigger i { color: var(--hz-primary); font-size: 13px; transition: transform .2s ease; }
.hz-select.is-open .hz-select-trigger i { transform: rotate(180deg); }
.hz-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 14px;
  box-shadow: var(--hz-shadow-lg);
  padding: 8px;
  z-index: 20;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.hz-select.is-open .hz-select-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hz-select-option {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border-radius: 9px; font-size: 14px; font-weight: 600;
  color: var(--hz-ink-soft); cursor: pointer; transition: background .12s ease, color .12s ease;
}
.hz-select-option:hover { background: var(--hz-bg-soft); color: var(--hz-ink); }
.hz-select-option.is-selected { background: var(--hz-bg-tint); color: var(--hz-primary); font-weight: 800; }
.hz-select-option.is-selected i { display: inline-block; }
.hz-select-option i { display: none; color: var(--hz-primary); font-size: 12px; }

.hz-pricing-option {
  position: relative;
  border: 2px solid var(--hz-border);
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.hz-pricing-option:hover { border-color: var(--hz-primary-light); }
.hz-pricing-option.is-selected { border-color: var(--hz-primary); background: var(--hz-bg-tint); box-shadow: 0 8px 20px rgba(109,40,217,.12); }
.hz-pricing-option-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 10px;
  background: #fff; border: 1px solid var(--hz-border); color: var(--hz-ink-soft);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.hz-pricing-option.is-selected .hz-pricing-option-icon {
  background: linear-gradient(135deg, var(--hz-primary), var(--hz-accent));
  border-color: transparent; color: #fff;
}
.hz-pricing-option-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--hz-border);
  flex: none; position: relative;
}
.hz-pricing-option.is-selected .hz-pricing-option-radio { border-color: var(--hz-primary); }
.hz-pricing-option.is-selected .hz-pricing-option-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--hz-primary);
}
.hz-pricing-option-body { flex: 1; }
.hz-pricing-option-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hz-pricing-option-name { font-size: 14px; font-weight: 800; color: var(--hz-ink); }
.hz-pricing-option-badge {
  font-size: 10px; font-weight: 800; color: #fff; background: linear-gradient(90deg, var(--hz-primary), var(--hz-accent));
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em;
  box-shadow: 0 4px 10px rgba(109,40,217,.3);
}
.hz-pricing-option-price { display: flex; align-items: baseline; gap: 8px; margin-top: 5px; }
.hz-pricing-option-price .now { font-size: 20px; font-weight: 800; color: var(--hz-ink); }
.hz-pricing-option-price .now span { font-size: 11.5px; font-weight: 600; color: var(--hz-ink-soft); }
.hz-pricing-option-price .was { font-size: 12.5px; color: var(--hz-ink-soft); text-decoration: line-through; }
.hz-pricing-option-save { font-size: 11px; font-weight: 800; color: #16a34a; margin-top: 3px; }

.hz-pricing-cta { margin-top: 20px; }
.hz-pricing-cta .hz-btn { width: 100%; }
.hz-pricing-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--hz-border);
  font-size: 11px; color: var(--hz-ink-soft); text-align: center;
}
.hz-pricing-meta i { color: var(--hz-accent); margin-right: 4px; }
.hz-pricing-note { text-align: center; font-size: 12.5px; color: var(--hz-ink-soft); margin-top: 40px; }

/* ---- Final CTA -------------------------------------------------------------- */
.hz-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hz-bg-tint), var(--hz-bg));
  border-top: 1px solid var(--hz-border);
}
.hz-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 15% 20%, rgba(109,40,217,.10), transparent 60%), radial-gradient(600px 400px at 85% 80%, rgba(14,165,183,.10), transparent 60%);
}
.hz-cta .container { position: relative; z-index: 1; }
.hz-cta-inner { text-align: center; }
.hz-cta h2 { font-size: 32px; font-weight: 800; color: var(--hz-ink); margin-bottom: 16px; }
.hz-cta p { font-size: 17px; color: var(--hz-ink-soft); max-width: 560px; margin: 0 auto 32px; }

/* ---- Footer -------------------------------------------------------------- */
body.app-frontend footer.main-footer { background: var(--hz-dark); color: rgba(255,255,255,.7); padding: 36px 0; }
body.app-frontend footer.main-footer .copyright { color: rgba(255,255,255,.55); font-size: 13px; }
body.app-frontend footer.main-footer ul.links { list-style: none; padding: 0; margin: 0; text-align: center; }
body.app-frontend footer.main-footer ul.links li { display: inline-block; margin: 0 10px; }
body.app-frontend footer.main-footer ul.links a { color: rgba(255,255,255,.65); font-size: 13px; }
body.app-frontend footer.main-footer ul.links a:hover { color: #fff; }
body.app-frontend footer.main-footer ul.social { list-style: none; padding: 0; margin: 0; text-align: right; }
body.app-frontend footer.main-footer ul.social li { display: inline-block; margin-left: 12px; }
body.app-frontend footer.main-footer ul.social a { color: rgba(255,255,255,.65); font-size: 16px; }
body.app-frontend footer.main-footer ul.social a:hover { color: var(--hz-accent); }

/* ---- Scroll reveal --------------------------------------------------------- */
.hz-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.hz-reveal.hz-in { opacity: 1; transform: translateY(0); }

/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 991px) {
  .hz-hero-title { font-size: 36px; }
  .hz-section { padding: 64px 0; }
  .hz-feature-row { gap: 40px; padding: 40px 0; }
  .hz-illus-avatar, .hz-illus-card, .hz-illus-schedule-photo { display: none; }
}
@media (max-width: 767px) {
  .hz-hero { padding: 90px 0 60px; text-align: center; }
  .hz-hero-grid { flex-direction: column; }
  .hz-hero-copy { text-align: center; }
  .hz-hero-actions, .hz-hero-trust { justify-content: center; }
  .hz-hero-title { font-size: 30px; }
  .hz-hero-subtitle { margin-left: auto; margin-right: auto; }
  .hz-stats { flex-direction: column; }
  .hz-why-grid { flex-direction: column; }
  .hz-feature-row, .hz-feature-row.is-reverse { flex-direction: column; text-align: center; }
  .hz-illus-browser, .hz-illus-schedule { margin: 0 auto; }
  .hz-pricing-layout { flex-direction: column; }
  body.app-frontend footer.main-footer ul.social { text-align: center; margin-top: 14px; }
}
