/* ================================================================
   SHZ TRANG CHỦ v2 – shz-homepage.css
   Font: Inter (Google Fonts) – không lỗi tiếng Việt
   Icons: SVG inline – không phụ thuộc icon font
   Prefix: shz2- (tránh xung đột Flatsome)
   ================================================================ */

/* ─── IMPORT FONT ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  --s2-red:      #C8102E;
  --s2-red-dk:   #a00e25;
  --s2-gold:     #D4A017;
  --s2-dark:     #0f172a;
  --s2-dark2:    #1e293b;
  --s2-slate:    #334155;
  --s2-muted:    #64748b;
  --s2-light:    #f8fafc;
  --s2-border:   #e2e8f0;
  --s2-white:    #ffffff;
  --s2-radius:   14px;
  --s2-radius-lg:22px;
  --s2-font:     'Inter', system-ui, -apple-system, sans-serif;
  --s2-shadow:   0 2px 16px rgba(15,23,42,.07);
  --s2-shadow-md:0 6px 28px rgba(15,23,42,.12);
  --s2-shadow-lg:0 16px 48px rgba(15,23,42,.18);
  --s2-ease:     cubic-bezier(.4,0,.2,1);
}

/* ─── BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

.shz2-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.shz2-label {
  display: inline-block;
  font-family: var(--s2-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--s2-red);
  margin-bottom: 12px;
}
.shz2-label--light { color: rgba(255,255,255,.65); }

.shz2-h2 {
  font-family: var(--s2-font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--s2-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}
.shz2-h2 small {
  display: block;
  font-size: 60%;
  font-weight: 500;
  color: var(--s2-muted);
  margin-top: 6px;
}
.shz2-h2--white { color: var(--s2-white); }
.shz2-h2--white small { color: rgba(255,255,255,.55); }

.shz2-sec-head { text-align: center; margin-bottom: 52px; }
.shz2-sec-sub {
  font-family: var(--s2-font);
  font-size: 16px;
  color: var(--s2-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.shz2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--s2-font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all .22s var(--s2-ease);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.shz2-btn--red {
  background: var(--s2-red);
  color: var(--s2-white);
  border-color: var(--s2-red);
}
.shz2-btn--red:hover {
  background: var(--s2-red-dk);
  border-color: var(--s2-red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
  color: var(--s2-white);
}
.shz2-btn--ghost {
  background: transparent;
  color: var(--s2-white);
  border-color: rgba(255,255,255,.6);
}
.shz2-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--s2-white);
  color: var(--s2-white);
}
.shz2-btn--outline {
  background: transparent;
  color: var(--s2-red);
  border-color: var(--s2-red);
}
.shz2-btn--outline:hover {
  background: var(--s2-red);
  color: var(--s2-white);
  transform: translateY(-2px);
}
.shz2-btn--white {
  background: var(--s2-white);
  color: var(--s2-red);
  border-color: var(--s2-white);
}
.shz2-btn--white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}
.shz2-btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   ① HERO
══════════════════════════════════════════════════ */
.shz2-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.shz2-hero__bg {
  position: absolute;
  inset: 0;
}
.shz2-hero__bgimg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.shz2-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,14,30,.90) 0%,
    rgba(10,14,30,.72) 50%,
    rgba(10,14,30,.30) 100%
  );
}
.shz2-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 820px;
}
.shz2-hero__eyebrow {
  font-family: var(--s2-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.shz2-hero__h1 {
  font-family: var(--s2-font);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: var(--s2-white);
  line-height: 1.08;
  margin: 12px 0 0;
  letter-spacing: -.02em;
}
.shz2-hero__em {
  font-style: normal;
  color: var(--s2-gold);
  display: block;
}
.shz2-hero__lead {
  font-family: var(--s2-font);
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin: 20px 0 32px;
  max-width: 560px;
}
.shz2-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Stats bar */
.shz2-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--s2-radius);
  padding: 20px 32px;
  width: fit-content;
}
.shz2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  gap: 5px;
}
.shz2-stat b {
  font-family: var(--s2-font);
  font-size: 28px;
  font-weight: 900;
  color: var(--s2-white);
  line-height: 1;
}
.shz2-stat span {
  font-family: var(--s2-font);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.shz2-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
/* Floating action buttons */
.shz2-float {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shz2-float__item {
  width: 44px; height: 44px;
  background: var(--s2-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: all .2s var(--s2-ease);
  position: relative;
  text-decoration: none;
  color: var(--s2-slate);
}
.shz2-float__item svg { width: 20px; height: 20px; flex-shrink: 0; }
.shz2-float__item:hover {
  background: var(--s2-red);
  color: var(--s2-white);
  transform: scale(1.12);
  box-shadow: 0 4px 18px rgba(200,16,46,.4);
}
.shz2-float__item--zalo:hover { background: #0068ff; box-shadow: 0 4px 18px rgba(0,104,255,.4); }
.shz2-float__item--call:hover { background: #16a34a; box-shadow: 0 4px 18px rgba(22,163,74,.4); }
/* Tooltip */
.shz2-float__item::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: var(--s2-dark);
  color: var(--s2-white);
  font-family: var(--s2-font);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
}
.shz2-float__item:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════
   ② VALUES
══════════════════════════════════════════════════ */
.shz2-vals {
  padding: 72px 0;
  background: var(--s2-light);
}
.shz2-vals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shz2-val {
  background: var(--s2-white);
  border-radius: var(--s2-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--s2-shadow);
  transition: transform .22s var(--s2-ease), box-shadow .22s var(--s2-ease);
}
.shz2-val:hover { transform: translateY(-6px); box-shadow: var(--s2-shadow-md); }
.shz2-val__ico {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.shz2-val__ico svg { width: 32px; height: 32px; }
.shz2-val__ico--r { background: #fff0f3; color: var(--s2-red); }
.shz2-val__ico--g { background: #fff8e7; color: #b8860b; }
.shz2-val__ico--b { background: #eff6ff; color: #2563eb; }
.shz2-val h3 {
  font-family: var(--s2-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--s2-dark);
  margin: 0 0 10px;
}
.shz2-val p {
  font-family: var(--s2-font);
  font-size: 14px;
  color: var(--s2-muted);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   ③ ABOUT
══════════════════════════════════════════════════ */
.shz2-about {
  padding: 96px 0;
  background: var(--s2-white);
}
.shz2-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.shz2-about__img {
  position: relative;
}
.shz2-about__img img {
  width: 100%; height: auto;
  border-radius: var(--s2-radius-lg);
  box-shadow: var(--s2-shadow-lg);
  display: block;
}
.shz2-about__badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--s2-red);
  color: var(--s2-white);
  border-radius: var(--s2-radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(200,16,46,.4);
}
.shz2-about__badge b {
  display: block;
  font-family: var(--s2-font);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.shz2-about__badge span {
  font-family: var(--s2-font);
  font-size: 12px;
  opacity: .85;
}
.shz2-about__body p {
  font-family: var(--s2-font);
  font-size: 15px;
  color: var(--s2-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.shz2-about__body p strong { color: var(--s2-dark); }
.shz2-about__nums {
  display: flex;
  gap: 28px;
  padding: 24px;
  background: var(--s2-light);
  border-radius: var(--s2-radius);
  margin: 28px 0 32px;
}
.shz2-about__nums > div { flex: 1; }
.shz2-about__nums b {
  font-family: var(--s2-font);
  font-size: 36px;
  font-weight: 900;
  color: var(--s2-red);
  line-height: 1;
}
.shz2-about__nums sup {
  font-family: var(--s2-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--s2-red);
}
.shz2-about__nums p {
  font-family: var(--s2-font);
  font-size: 12px;
  color: var(--s2-muted);
  margin: 4px 0 0;
}

/* ══════════════════════════════════════════════════
   ④ COURSES
══════════════════════════════════════════════════ */
.shz2-courses {
  padding: 96px 0;
  background: var(--s2-light);
}
/* Tabs */
.shz2-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.shz2-tab {
  font-family: var(--s2-font);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--s2-border);
  background: var(--s2-white);
  color: var(--s2-muted);
  cursor: pointer;
  transition: all .2s var(--s2-ease);
}
.shz2-tab:hover { border-color: var(--s2-red); color: var(--s2-red); }
.shz2-tab--active {
  background: var(--s2-red);
  border-color: var(--s2-red);
  color: var(--s2-white);
}
/* Grid */
.shz2-courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Course card */
.shz2-ccard {
  background: var(--s2-white);
  border-radius: var(--s2-radius-lg);
  overflow: hidden;
  box-shadow: var(--s2-shadow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--s2-ease), box-shadow .22s var(--s2-ease);
  border: 1.5px solid transparent;
}
.shz2-ccard:hover {
  transform: translateY(-6px);
  box-shadow: var(--s2-shadow-md);
  border-color: rgba(200,16,46,.12);
}
.shz2-ccard.shz2-ccard--hide { display: none; }
/* Card top colored strip */
.shz2-ccard__top {
  padding: 24px 22px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.shz2-ccard__top--red    { background: linear-gradient(135deg, #c8102e 0%, #e52d4e 100%); }
.shz2-ccard__top--gold   { background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%); }
.shz2-ccard__top--blue   { background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%); }
.shz2-ccard__top--teal   { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); }
.shz2-ccard__top--green  { background: linear-gradient(135deg, #15803d 0%, #22c55e 100%); }
.shz2-ccard__top--orange { background: linear-gradient(135deg, #c2410c 0%, #f97316 100%); }
.shz2-ccard__top--purple { background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%); }
.shz2-ccard__top--pink   { background: linear-gradient(135deg, #be185d 0%, #ec4899 100%); }
.shz2-ccard__ico {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shz2-ccard__ico svg { width: 22px; height: 22px; stroke: white; }
.shz2-ccard__top h3 {
  font-family: var(--s2-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--s2-white);
  margin: 0;
  line-height: 1.3;
}
.shz2-ccard__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,.22);
  color: var(--s2-white);
  font-family: var(--s2-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
}
.shz2-ccard__badge--hot {
  background: var(--s2-white);
  color: var(--s2-red);
}
/* Card body */
.shz2-ccard__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.shz2-ccard__body p {
  font-family: var(--s2-font);
  font-size: 13px;
  color: var(--s2-muted);
  line-height: 1.65;
  margin: 0;
}
.shz2-ccard__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.shz2-ccard__body ul li {
  font-family: var(--s2-font);
  font-size: 13px;
  color: var(--s2-slate);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.shz2-ccard__body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--s2-red);
  font-weight: 700;
}
.shz2-ccard__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--s2-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--s2-red);
  margin-top: auto;
  transition: gap .18s var(--s2-ease);
}
.shz2-ccard:hover .shz2-ccard__cta { gap: 10px; }
.shz2-ccard__cta svg { stroke: var(--s2-red); flex-shrink: 0; }
.shz2-courses__foot { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════════════
   ⑤ WHY SHZ
══════════════════════════════════════════════════ */
.shz2-why {
  padding: 96px 0;
  background: var(--s2-dark);
  position: relative;
  overflow: hidden;
}
.shz2-why::before {
  content: '华';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 500px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.shz2-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.shz2-why__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shz2-why__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--s2-font);
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.shz2-why__list li strong { color: var(--s2-white); }
.shz2-why__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(212,160,23,.2);
  color: var(--s2-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}
.shz2-why__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.shz2-why__imgs img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--s2-radius);
  transition: transform .22s var(--s2-ease);
}
.shz2-why__imgs img:first-child { margin-top: 32px; }
.shz2-why__imgs img:hover { transform: scale(1.04); }

/* ══════════════════════════════════════════════════
   ⑥ REVIEWS
══════════════════════════════════════════════════ */
.shz2-reviews {
  padding: 96px 0 80px;
  background: var(--s2-white);
}
.shz2-swiper { padding-bottom: 52px !important; }
.shz2-rv {
  background: var(--s2-light);
  border-radius: var(--s2-radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  border: 1.5px solid var(--s2-border);
}
.shz2-rv__stars {
  color: var(--s2-gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.shz2-rv p {
  font-family: var(--s2-font);
  font-size: 14px;
  color: var(--s2-slate);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.shz2-rv__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--s2-border);
  padding-top: 14px;
}
.shz2-rv__av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--s2-red);
  color: var(--s2-white);
  font-family: var(--s2-font);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shz2-rv__author strong {
  display: block;
  font-family: var(--s2-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--s2-dark);
}
.shz2-rv__author span {
  font-family: var(--s2-font);
  font-size: 12px;
  color: var(--s2-muted);
}
.shz2-swiper__dots.swiper-pagination-bullets { bottom: 0 !important; }
.shz2-swiper__dots .swiper-pagination-bullet { background: #cbd5e1; }
.shz2-swiper__dots .swiper-pagination-bullet-active { background: var(--s2-red); }
.shz2-reviews__foot { text-align: center; margin-top: 14px; }

/* ══════════════════════════════════════════════════
   ⑦ BRANCHES
══════════════════════════════════════════════════ */
.shz2-branches {
  padding: 80px 0;
  background: var(--s2-light);
}
.shz2-branches__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.shz2-branch {
  background: var(--s2-white);
  border-radius: var(--s2-radius);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--s2-shadow);
  transition: transform .2s var(--s2-ease);
}
.shz2-branch:hover { transform: translateY(-3px); }
.shz2-branch svg {
  width: 20px; height: 20px;
  stroke: var(--s2-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.shz2-branch strong {
  display: block;
  font-family: var(--s2-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--s2-dark);
  margin-bottom: 4px;
}
.shz2-branch span {
  font-family: var(--s2-font);
  font-size: 12px;
  color: var(--s2-muted);
  line-height: 1.5;
}
.shz2-branches__foot { text-align: center; }

/* ══════════════════════════════════════════════════
   ⑧ FORM SECTION
══════════════════════════════════════════════════ */
.shz2-form {
  padding: 96px 0;
  background: var(--s2-dark2);
  position: relative;
  overflow: hidden;
}
.shz2-form::before {
  content: '文';
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  font-size: 520px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.shz2-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.shz2-form__perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shz2-form__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--s2-font);
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.shz2-form__perks li span {
  color: var(--s2-gold);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.shz2-form__hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s2-font);
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.shz2-form__hotline svg { stroke: var(--s2-gold); flex-shrink: 0; }
.shz2-form__hotline a {
  color: var(--s2-gold);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}
.shz2-form__hotline a:hover { text-decoration: underline; }
/* Form card */
.shz2-regform {
  background: var(--s2-white);
  border-radius: var(--s2-radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.shz2-regform h3 {
  font-family: var(--s2-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--s2-dark);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--s2-light);
}
.shz2-regform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.shz2-regform__field { margin-bottom: 16px; }
.shz2-regform__field label {
  display: block;
  font-family: var(--s2-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--s2-slate);
  margin-bottom: 6px;
}
.shz2-regform__field label em { color: var(--s2-red); font-style: normal; }
.shz2-regform__field input,
.shz2-regform__field select,
.shz2-regform__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--s2-border);
  border-radius: 10px;
  font-family: var(--s2-font);
  font-size: 14px;
  color: var(--s2-dark);
  background: var(--s2-white);
  outline: none;
  transition: border-color .2s;
}
.shz2-regform__field input:focus,
.shz2-regform__field select:focus,
.shz2-regform__field textarea:focus {
  border-color: var(--s2-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.08);
}
.shz2-regform__field textarea { resize: vertical; min-height: 80px; }
.shz2-regform__note {
  text-align: center;
  font-family: var(--s2-font);
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shz2-courses__grid { grid-template-columns: repeat(2, 1fr); }
  .shz2-branches__grid { grid-template-columns: repeat(2, 1fr); }
  .shz2-why__imgs { display: none; }
  .shz2-why__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .shz2-hero { min-height: 100svh; }
  .shz2-hero__inner { max-width: 100%; }
  .shz2-hero__h1 { font-size: 40px; }
  .shz2-hero__stats { padding: 16px 20px; }
  .shz2-stat { padding: 0 14px; }
  .shz2-stat b { font-size: 22px; }
  .shz2-vals__grid { grid-template-columns: 1fr; }
  .shz2-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .shz2-about__badge { bottom: -14px; right: 12px; }
  .shz2-courses__grid { grid-template-columns: 1fr; }
  .shz2-form__inner { grid-template-columns: 1fr; gap: 44px; }
  .shz2-regform__row { grid-template-columns: 1fr; }
  .shz2-regform { padding: 24px 20px; }
  .shz2-float { display: none; }
  .shz2-about__nums { gap: 16px; }
}
@media (max-width: 480px) {
  .shz2-hero__h1 { font-size: 32px; letter-spacing: -.01em; }
  .shz2-hero__ctas { flex-direction: column; }
  .shz2-hero__ctas .shz2-btn { width: 100%; justify-content: center; }
  .shz2-stat-sep { display: none; }
  .shz2-hero__stats { justify-content: space-around; gap: 12px; }
  .shz2-h2 { font-size: 26px; }
  .shz2-branches__grid { grid-template-columns: 1fr; }
}