/* ════════════════════════════════════════
   NURULHADY — SHARED STYLES
   ════════════════════════════════════════ */
:root {
  --g-deep:  #1a5c2e;
  --g-mid:   #2e8b4a;
  --g-light: #4caf73;
  --g-pale:  #e6f4ec;
  --g-xpale: #f4faf6;
  --white:   #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f5f7f6;
  --gray-200: #e8eceb;
  --gray-400: #9aada4;
  --gray-600: #5a6b62;
  --gray-800: #2c3830;
  --shadow-sm: 0 2px 12px rgba(26,92,46,.08);
  --shadow-md: 0 8px 32px rgba(26,92,46,.12);
  --shadow-lg: 0 20px 60px rgba(26,92,46,.18);
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     72px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--g-mid); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(26,92,46,.97);
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
#navbar.scrolled .nav-logo-name     { color: #fff; }
#navbar.scrolled .nav-logo-tagline  { color: rgba(255,255,255,.6); }
#navbar.scrolled .nav-link          { color: rgba(255,255,255,.88); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active   { color: #fff; background: rgba(255,255,255,.12); }
#navbar.scrolled .hamburger span    { background: #fff; }
#navbar.scrolled .nav-enroll        { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); }
#navbar.scrolled .nav-enroll:hover  { background: rgba(255,255,255,.25); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; gap: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; fill: #fff; }
.nav-logo-name   { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--g-deep); line-height: 1.1; transition: color .3s; }
.nav-logo-tagline{ font-size: .6rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-600); transition: color .3s; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: 8px;
  font-size: .845rem; font-weight: 500; color: var(--gray-800);
  cursor: pointer; border: none; background: none;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav-link:hover    { background: var(--g-pale); color: var(--g-deep); }
.nav-link.active   { background: var(--g-pale); color: var(--g-deep); font-weight: 600; }
.nav-chev { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }

.nav-enroll {
  margin-left: 8px; padding: 8px 20px;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; border-radius: 9px; font-weight: 700; font-size: .845rem;
  white-space: nowrap; flex-shrink: 0; border: 1.5px solid transparent;
  transition: all .25s; box-shadow: 0 2px 10px rgba(26,92,46,.3);
}
.nav-enroll:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(26,92,46,.4); }

/* ── DROPDOWN — hover bridge via padding-top (no gap = no disappear) ── */
.nav-has-drop { position: relative; }

/* Rotate chevron when open (JS-driven .is-open) or hovered */
.nav-has-drop:hover .nav-chev,
.nav-has-drop.is-open .nav-chev { transform: rotate(180deg); }

/* Show on hover OR JS .is-open */
.nav-has-drop:hover .nav-dropdown,
.nav-has-drop.is-open .nav-dropdown,
.nav-has-drop:hover .nav-mega,
.nav-has-drop.is-open .nav-mega {
  opacity: 1; visibility: visible;
  transform: translateY(0); pointer-events: all;
}

/* ── Dropdown wrapper: sits flush at 100% with padding-top as bridge ── */
.nav-dropdown-wrap {
  position: absolute; top: 100%; left: 0;
  padding-top: 8px;          /* ← bridge so mouse doesn't leave hover zone */
  min-width: 220px;
  z-index: 200;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s var(--ease); pointer-events: none;
}
.nav-has-drop:hover .nav-dropdown-wrap,
.nav-has-drop.is-open .nav-dropdown-wrap {
  opacity: 1; visibility: visible;
  transform: translateY(0); pointer-events: all;
}

.nav-dropdown {
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px;
}
.nav-dropdown a {
  display: block; padding: 9px 13px; border-radius: 8px;
  font-size: .84rem; color: var(--gray-800); transition: .15s;
}
.nav-dropdown a:hover { background: var(--g-pale); color: var(--g-deep); }

/* ── Mega menu wrapper ── */
.nav-mega-wrap {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding-top: 8px;          /* ← bridge */
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: all .22s var(--ease); pointer-events: none;
}
.nav-has-drop:hover .nav-mega-wrap,
.nav-has-drop.is-open .nav-mega-wrap {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0); pointer-events: all;
}

.nav-mega {
  width: min(660px, 90vw);
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 24px 20px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
}
#navbar.scrolled .nav-dropdown,
#navbar.scrolled .nav-mega { --g-pale: #e8f4ee; }

.mega-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 16px 10px;
  border-radius: var(--radius); border: 2px solid transparent;
  transition: all .2s; color: var(--gray-800);
}
.mega-item:hover { background: var(--g-xpale); border-color: var(--g-pale); transform: translateY(-2px); }
.mega-item.active-sub { background: var(--g-xpale); border-color: var(--g-pale); }
.mega-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 9px; flex-shrink: 0; }
.mega-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--g-deep); }
.mega-desc { font-size: .7rem; color: var(--gray-600); margin-top: 4px; line-height: 1.45; }

/* ── HAMBURGER — always on far right ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;   /* ← push to right when nav-links hidden */
  flex-shrink: 0;
}
.hamburger span { display: block; width: 23px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#navbar.scrolled .hamburger span  { background: #fff; }

/* ── SIDEBAR (mobile) ── */
#sidebar-overlay { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,.38); backdrop-filter: blur(4px); }
#sidebar-overlay.open { display: block; }
#sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: 300px; background: var(--white); overflow-y: auto;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,.15); display: flex; flex-direction: column;
}
#sidebar.open { transform: translateX(0); }
.sb-head {
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  padding: 20px 20px 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.sb-head-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.sb-head-tag  { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.sb-close { background: rgba(255,255,255,.18); border: none; width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; font-size: 1.1rem; transition: background .2s; }
.sb-close:hover { background: rgba(255,255,255,.3); }
.sb-body { padding: 14px 12px; flex: 1; }
.sb-link, .sb-acc-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 10px; width: 100%;
  font-size: .88rem; font-weight: 500; color: var(--gray-800);
  text-decoration: none; background: none; border: none; cursor: pointer; text-align: left;
  transition: all .18s;
}
.sb-link:hover, .sb-acc-btn:hover { background: var(--g-pale); color: var(--g-deep); }
.sb-link.active { background: var(--g-pale); color: var(--g-deep); font-weight: 600; }
.sb-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.sb-acc-btn { justify-content: space-between; }
.sb-chev { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .25s; }
.sb-acc-btn.open .sb-chev { transform: rotate(180deg); }
.sb-sub { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.sb-sub.open { max-height: 320px; }
.sb-sub .sb-link { padding: 9px 14px 9px 44px; font-size: .83rem; }
.sb-hr { height: 1px; background: var(--gray-200); margin: 7px 12px; }
.sb-cta {
  margin: 10px 12px;
  display: block; text-align: center; padding: 12px;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; border-radius: 10px; font-weight: 700; font-size: .88rem;
  transition: opacity .2s;
}
.sb-cta:hover { opacity: .9; }

/* ── PAGE BANNER ── */
.page-banner {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--g-deep) 0%, #0f3d1e 100%);
  padding-bottom: 60px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.03); pointer-events: none;
}
.banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 48px 28px 0;
  position: relative; z-index: 1;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span {
  font-size: .78rem; color: rgba(255,255,255,.65); transition: color .2s;
}
.breadcrumb a:hover { color: #a3e4b5; }
.breadcrumb .sep { color: rgba(255,255,255,.3); font-size: .8rem; }
.breadcrumb .current { color: rgba(255,255,255,.9); font-weight: 600; }
.banner-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); padding: 6px 16px; border-radius: 100px;
  font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 16px;
}
.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
  color: #fff; line-height: 1.15;
}
.banner-title em { font-style: normal; color: #a3e4b5; }
.banner-sub {
  font-size: clamp(.88rem, 1.5vw, 1.05rem); color: rgba(255,255,255,.75);
  line-height: 1.75; max-width: 580px; margin-top: 14px;
}

/* ── HERO SLIDER ── */
#hero-slider {
  position: relative; height: 100vh; min-height: 560px; overflow: hidden;
}
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,92,46,.78) 0%, rgba(26,92,46,.45) 45%, rgba(0,0,0,.2) 100%);
}
.slide:nth-child(1)  { background-image: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80'); }
.slide:nth-child(2)  { background-image: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1600&q=80'); }
.slide:nth-child(3)  { background-image: url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?w=1600&q=80'); }
.slide:nth-child(4)  { background-image: url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?w=1600&q=80'); }
.slide:nth-child(5)  { background-image: url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?w=1600&q=80'); }
.slide:nth-child(6)  { background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1600&q=80'); }
.slide:nth-child(7)  { background-image: url('https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=1600&q=80'); }
.slide:nth-child(8)  { background-image: url('https://images.unsplash.com/photo-1560785496-3c9d2c8234b0?w=1600&q=80'); }
.slide:nth-child(9)  { background-image: url('https://images.unsplash.com/photo-1573164574572-cb89e39749b4?w=1600&q=80'); }
.slide:nth-child(10) { background-image: url('https://images.unsplash.com/photo-1516979187457-637abb4f9353?w=1600&q=80'); }
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 0 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); padding: 7px 18px; border-radius: 100px;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.92); margin-bottom: 22px;
  animation: fadeUp .8s ease .2s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; color: #fff;
  line-height: 1.1; text-shadow: 0 2px 24px rgba(0,0,0,.25);
  margin-bottom: 18px; animation: fadeUp .8s ease .4s both;
}
.hero-title em { font-style: normal; color: #a3e4b5; }
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.12rem); color: rgba(255,255,255,.85);
  max-width: 560px; line-height: 1.75; margin-bottom: 34px;
  animation: fadeUp .8s ease .6s both;
}
.hero-btns { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; animation: fadeUp .8s ease .8s both; }
.slide-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 20; }
.dot { width: 8px; height: 8px; border-radius: 100px; background: rgba(255,255,255,.4); cursor: pointer; border: none; transition: all .3s; }
.dot.active { width: 26px; background: #fff; }
.slide-arrows { position: absolute; bottom: 22px; right: 28px; display: flex; gap: 8px; z-index: 20; }
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  color: #fff; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: background .2s;
}
.arrow-btn:hover { background: rgba(255,255,255,.28); }
.slide-counter {
  position: absolute; top: calc(var(--nav-h) + 20px); right: 28px; z-index: 20;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22); padding: 5px 13px;
  border-radius: 100px; font-size: .78rem; font-weight: 600; color: #fff; letter-spacing: .05em;
}

/* ── STATS BAR ── */
.stats-bar { background: linear-gradient(135deg, var(--g-deep), var(--g-mid)); padding: 28px 0; }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 14px 24px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-num span { font-size: 1.3rem; }
.stat-label { font-size: .77rem; color: rgba(255,255,255,.72); margin-top: 5px; letter-spacing: .05em; }

/* ── SECTION UTILS ── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
section { scroll-margin-top: var(--nav-h); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--g-mid);
  margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 26px; height: 2px; background: var(--g-mid); border-radius: 2px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.7rem); font-weight: 700; color: var(--gray-800); line-height: 1.2; }
.section-title em { font-style: normal; color: var(--g-deep); }
.section-desc { font-size: .93rem; color: var(--gray-600); line-height: 1.8; max-width: 540px; margin-top: 12px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--g-deep);
  padding: 13px 30px; border-radius: 10px; font-weight: 700; font-size: .9rem;
  transition: all .25s; box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn-primary:hover { background: var(--g-pale); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.45);
  color: #fff; padding: 11px 26px; border-radius: 10px;
  font-weight: 600; font-size: .9rem; backdrop-filter: blur(6px); transition: all .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-green {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; padding: 12px 28px; border-radius: 10px;
  font-weight: 700; font-size: .9rem; transition: all .25s;
  box-shadow: 0 4px 16px rgba(26,92,46,.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,46,.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; border-radius: 10px;
  border: 2px solid var(--gray-200); color: var(--gray-800);
  font-weight: 600; font-size: .88rem; transition: all .22s;
}
.btn-ghost:hover { border-color: var(--g-mid); color: var(--g-deep); background: var(--g-pale); }

/* ── FEATURE CARDS ── */
.feature-card {
  padding: 30px 26px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g-deep), var(--g-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feat-icon { width: 50px; height: 50px; background: var(--g-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin-bottom: 16px; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 9px; }
.feat-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.7; }

/* ── INFO CARD ── */
.info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; transition: all .3s;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ── LEVEL TAG PILLS ── */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 100px; font-size: .82rem; font-weight: 700; margin-bottom: 14px; }
.pill-tk  { background: #fff3e0; color: #e65100; }
.pill-sd  { background: #e3f2fd; color: #0d47a1; }
.pill-smp { background: #f3e5f5; color: #6a1b9a; }
.pill-sma { background: #e8f5e9; color: #1b5e20; }

/* ── LEVEL FEATURES GRID ── */
.lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 22px; }
.lf-item {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; font-size: .81rem; font-weight: 500; color: var(--gray-800);
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.lf-item:hover { border-color: var(--g-pale); background: var(--g-xpale); }
.lf-item .lf-ico { font-size: 1.05rem; }

/* ── PENGUMUMAN ── */
.peng-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px 20px; backdrop-filter: blur(8px);
  transition: all .25s;
}
.peng-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.peng-date { font-size: .71rem; color: #a3e4b5; letter-spacing: .08em; margin-bottom: 9px; }
.peng-title { font-size: .88rem; font-weight: 600; color: #fff; line-height: 1.55; margin-bottom: 10px; }
.peng-cat { display: inline-block; font-size: .68rem; padding: 3px 10px; border-radius: 100px; background: rgba(163,228,181,.15); color: #a3e4b5; font-weight: 600; }
.peng-card-light {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px 22px;
  transition: all .25s;
}
.peng-card-light:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.peng-card-light .peng-date { color: var(--g-mid); }
.peng-card-light .peng-title { color: var(--gray-800); }
.peng-card-light .peng-cat { background: var(--g-pale); color: var(--g-deep); }

/* ── GALERI ── */
.galeri-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: 200px 200px; gap: 12px;
}
.galeri-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.galeri-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galeri-item:hover img { transform: scale(1.06); }
.galeri-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,92,46,.72) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 14px;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-label { font-size: .8rem; font-weight: 600; color: #fff; }

/* ── VISI MISI LIST ── */
.vm-list { list-style: none; margin-top: 22px; }
.vm-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  font-size: .89rem; color: var(--gray-800); line-height: 1.65;
}
.vm-list li:last-child { border-bottom: none; }
.vm-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--g-pale); color: var(--g-deep);
  border-radius: 50%; font-size: .72rem; font-weight: 700;
}

/* ── NILAI CARD ── */
.nilai-card {
  text-align: center; padding: 28px 20px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .3s;
}
.nilai-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--g-pale); }
.nilai-icon { font-size: 2rem; margin-bottom: 12px; }
.nilai-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--g-deep); margin-bottom: 8px; }
.nilai-desc { font-size: .82rem; color: var(--gray-600); line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background: #1c2520; padding: 60px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px 52px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-desc { font-size: .86rem; line-height: 1.8; margin-top: 14px; color: rgba(255,255,255,.55); max-width: 270px; }
.footer-socials { display: flex; gap: 9px; margin-top: 20px; }
.social-btn {
  width: 37px; height: 37px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.65); transition: all .2s;
}
.social-btn:hover { background: var(--g-mid); color: #fff; border-color: transparent; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: #a3e4b5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1280px; margin: 0 auto; padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-bottom a { color: #a3e4b5; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ── SECTION SPACING ── */
.py-20 { padding: 80px 0; }
.py-16 { padding: 64px 0; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* ── BG ALTERNATES ── */
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-100); }
.bg-green-xpale { background: var(--g-xpale); }
.bg-dark {
  background: linear-gradient(160deg, var(--g-deep) 0%, #0f3d1e 100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links  { display: none !important; }
  .nav-enroll { display: none !important; }
  .hamburger  { display: flex !important; margin-left: auto; }
  /* Logo stays left, hamburger snaps to right */
  .nav-inner  { justify-content: flex-start; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .lf-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .galeri-item:nth-child(1) { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none !important; }
  .galeri-grid { grid-template-columns: 1fr; }
  .galeri-item:nth-child(1) { grid-column: auto; }
  .banner-title { font-size: 1.8rem; }
  .grid-2 { gap: 24px; }
}

/* ═══════════════════════════════════════════
   MODAL PENDAFTARAN — ENTERPRISE STYLE
   ═══════════════════════════════════════════ */

/* ── Backdrop ── */
#reg-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(15, 30, 20, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
#reg-backdrop.open { display: flex; animation: bdFade .25s ease; }
@keyframes bdFade { from { opacity: 0; } to { opacity: 1; } }

/* ── Modal Shell ── */
#reg-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 820px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(26,92,46,.1);
  animation: modalUp .3s var(--ease);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  margin: auto;
}
@keyframes modalUp { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ── Modal Header ── */
.reg-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.reg-header-left { display: flex; align-items: center; gap: 14px; }
.reg-header-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.reg-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gray-800); line-height: 1.2;
}
.reg-header-sub { font-size: .76rem; color: var(--gray-600); margin-top: 2px; }
.reg-close {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-600); transition: all .18s; flex-shrink: 0;
}
.reg-close:hover { background: #fde8e8; color: #c0392b; }

/* ── Step Progress Bar ── */
.reg-steps {
  display: flex; align-items: center; gap: 0;
  padding: 18px 32px 0;
  flex-shrink: 0;
}
.reg-step {
  display: flex; align-items: center; gap: 10px; flex: 1;
}
.reg-step:last-child { flex: 0; }
.step-circle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  border: 2px solid var(--gray-200); background: var(--white);
  color: var(--gray-400); transition: all .3s;
}
.step-circle.done   { background: var(--g-mid); border-color: var(--g-mid); color: #fff; }
.step-circle.active { background: var(--g-deep); border-color: var(--g-deep); color: #fff; box-shadow: 0 0 0 4px rgba(26,92,46,.15); }
.step-label { font-size: .72rem; font-weight: 600; color: var(--gray-400); white-space: nowrap; transition: color .3s; }
.step-label.active { color: var(--g-deep); }
.step-label.done   { color: var(--g-mid); }
.step-line { flex: 1; height: 2px; background: var(--gray-200); margin: 0 8px; transition: background .3s; }
.step-line.done { background: var(--g-mid); }

/* ── Modal Body ── */
.reg-body {
  flex: 1; overflow-y: auto; padding: 24px 32px;
  scrollbar-width: thin; scrollbar-color: var(--g-mid) var(--gray-100);
}
.reg-body::-webkit-scrollbar { width: 4px; }
.reg-body::-webkit-scrollbar-thumb { background: var(--g-mid); border-radius: 2px; }

/* ── Step Panels ── */
.reg-panel { display: none; }
.reg-panel.active { display: block; animation: panelFade .25s ease; }
@keyframes panelFade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

/* ── Level Selector (Step 1) ── */
.level-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 8px;
}
@media (max-width: 640px) { .level-grid { grid-template-columns: repeat(2, 1fr); } }
.level-card {
  border: 2px solid var(--gray-200); border-radius: 14px;
  padding: 22px 16px; text-align: center; cursor: pointer;
  transition: all .22s; background: var(--white); position: relative;
  overflow: hidden;
}
.level-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--g-xpale), transparent);
  opacity: 0; transition: opacity .22s;
}
.level-card:hover { border-color: var(--g-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.level-card:hover::before { opacity: 1; }
.level-card.selected {
  border-color: var(--g-deep); background: var(--g-xpale);
  box-shadow: 0 0 0 3px rgba(26,92,46,.12), var(--shadow-md);
  transform: translateY(-3px);
}
.level-card.selected::before { opacity: 1; }
.level-card .lc-check {
  position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--g-deep); color: #fff;
  font-size: .65rem; display: none; align-items: center; justify-content: center;
}
.level-card.selected .lc-check { display: flex; }
.lc-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.lc-name  { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--g-deep); }
.lc-full  { font-size: .72rem; color: var(--gray-600); margin-top: 5px; line-height: 1.4; }
.lc-badge {
  display: inline-block; margin-top: 10px; font-size: .65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
}
.lc-badge-tk  { background: #fff3e0; color: #e65100; }
.lc-badge-sd  { background: #e3f2fd; color: #0d47a1; }
.lc-badge-smp { background: #f3e5f5; color: #6a1b9a; }
.lc-badge-sma { background: #e8f5e9; color: #1b5e20; }

/* ── Section Divider ── */
.form-section {
  margin-bottom: 28px;
}
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; font-weight: 700; color: var(--g-deep);
  padding-bottom: 10px; margin-bottom: 18px;
  border-bottom: 2px solid var(--g-pale);
  display: flex; align-items: center; gap: 8px;
}
.form-section-title .fst-ico { font-size: 1rem; }

/* ── Form Grid ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.cols-1 { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-grid, .form-grid.cols-3 { grid-template-columns: 1fr; }
}
.f-full { grid-column: 1 / -1; }

/* ── Form Field ── */
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-label {
  font-size: .8rem; font-weight: 700; color: var(--gray-800);
  letter-spacing: .02em;
}
.f-label .req { color: #e53935; margin-left: 2px; }
.f-input, .f-select, .f-textarea {
  height: 42px; padding: 0 14px;
  border: 1.5px solid var(--gray-200); border-radius: 9px;
  font-size: .875rem; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-800); background: var(--white);
  transition: border-color .18s, box-shadow .18s; outline: none; width: 100%;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--g-mid);
  box-shadow: 0 0 0 3px rgba(46,139,74,.12);
}
.f-input.err, .f-select.err { border-color: #e53935; }
.f-input:focus.err, .f-select:focus.err { box-shadow: 0 0 0 3px rgba(229,57,53,.12); }
.f-select { cursor: pointer; }
.f-textarea { height: auto; min-height: 80px; padding: 10px 14px; resize: vertical; }
.f-hint { font-size: .73rem; color: var(--gray-600); }
.f-err-msg { font-size: .73rem; color: #e53935; display: none; }
.f-group.has-err .f-err-msg { display: block; }
.f-group.has-err .f-input,
.f-group.has-err .f-select { border-color: #e53935; }

/* ── File Upload ── */
.file-upload-zone {
  border: 2px dashed var(--gray-200); border-radius: 12px;
  padding: 20px; cursor: pointer; text-align: center;
  transition: all .22s; position: relative; overflow: hidden;
  background: var(--gray-50);
}
.file-upload-zone:hover, .file-upload-zone.dragover {
  border-color: var(--g-mid); background: var(--g-xpale);
}
.file-upload-zone.has-file {
  border-color: var(--g-mid); border-style: solid; background: var(--g-xpale);
}
.file-upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.fuz-icon { font-size: 1.6rem; margin-bottom: 8px; }
.fuz-title { font-size: .85rem; font-weight: 600; color: var(--gray-800); }
.fuz-sub   { font-size: .74rem; color: var(--gray-600); margin-top: 3px; }
.fuz-preview {
  display: none; align-items: center; gap: 10px;
  background: var(--white); border-radius: 8px; padding: 10px 14px;
  border: 1px solid var(--g-pale); margin-top: 10px; text-align: left;
}
.fuz-preview.show { display: flex; }
.fuz-prev-icon { font-size: 1.3rem; flex-shrink: 0; }
.fuz-prev-name { font-size: .82rem; font-weight: 600; color: var(--g-deep); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fuz-prev-size { font-size: .72rem; color: var(--gray-600); }
.fuz-prev-remove {
  background: none; border: none; cursor: pointer; font-size: .9rem;
  color: var(--gray-400); padding: 4px; border-radius: 4px; transition: color .15s; flex-shrink: 0;
}
.fuz-prev-remove:hover { color: #e53935; }

/* ── Upload Group Label ── */
.upload-group {
  display: flex; flex-direction: column; gap: 6px;
}
.upload-label {
  font-size: .8rem; font-weight: 700; color: var(--gray-800);
  display: flex; align-items: center; gap: 6px;
}
.upload-label .ijazah-badge {
  font-size: .65rem; padding: 2px 8px; border-radius: 100px; font-weight: 700;
}

/* ── Summary (Step 3) ── */
.summary-header {
  text-align: center; padding: 20px 0 28px;
}
.summary-header .sum-ico { font-size: 3rem; margin-bottom: 12px; }
.summary-header h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--g-deep); margin-bottom: 6px;
}
.summary-header p { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }
.summary-level-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px; font-weight: 700; font-size: .88rem;
  margin: 12px auto 0; border: 2px solid currentColor;
}
.summary-card {
  background: var(--gray-50); border-radius: 14px; padding: 22px 24px;
  margin-bottom: 14px; border: 1px solid var(--gray-200);
}
.summary-card h4 {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--g-mid); margin-bottom: 14px;
  display: flex; align-items: center; gap: 7px;
}
.sum-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 6px;
  padding: 8px 0; border-bottom: 1px solid var(--gray-200);
  font-size: .85rem;
}
.sum-row:last-child { border-bottom: none; }
.sum-key { color: var(--gray-600); font-weight: 500; }
.sum-val { color: var(--gray-800); font-weight: 600; word-break: break-word; }
.sum-file-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: var(--g-pale); border-radius: 6px;
  font-size: .78rem; font-weight: 600; color: var(--g-deep); margin: 2px;
}

/* ── Success State ── */
.reg-success {
  text-align: center; padding: 48px 24px;
}
.reg-success .success-ico {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(26,92,46,.35);
  animation: successPop .5s var(--ease);
}
@keyframes successPop { 0% { transform: scale(0); } 70% { transform: scale(1.1); } 100% { transform: scale(1); } }
.reg-success h3 {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800;
  color: var(--g-deep); margin-bottom: 10px;
}
.reg-success p { font-size: .9rem; color: var(--gray-600); line-height: 1.75; max-width: 400px; margin: 0 auto 6px; }
.reg-success .nomor-daftar {
  display: inline-block; background: var(--g-xpale); border: 1.5px solid var(--g-pale);
  border-radius: 10px; padding: 12px 28px; margin: 18px auto 0;
  font-size: .85rem; color: var(--gray-600);
}
.reg-success .nomor-daftar strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--g-deep); font-weight: 800; margin-top: 3px;
}

/* ── Modal Footer ── */
.reg-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px 24px; border-top: 1px solid var(--gray-200);
  gap: 12px; flex-shrink: 0;
}
.reg-footer-left { font-size: .78rem; color: var(--gray-600); }
.reg-footer-right { display: flex; gap: 10px; align-items: center; }
.btn-reg-back {
  padding: 10px 22px; border-radius: 9px; font-weight: 600; font-size: .875rem;
  border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-800);
  cursor: pointer; transition: all .18s;
}
.btn-reg-back:hover { border-color: var(--gray-400); }
.btn-reg-back:disabled { opacity: .4; cursor: default; }
.btn-reg-next {
  padding: 10px 28px; border-radius: 9px; font-weight: 700; font-size: .875rem;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 3px 14px rgba(26,92,46,.3); transition: all .2s;
  display: flex; align-items: center; gap: 7px;
}
.btn-reg-next:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,92,46,.4); }
.btn-reg-next:disabled { opacity: .5; cursor: default; transform: none; }
.btn-reg-submit {
  padding: 10px 28px; border-radius: 9px; font-weight: 700; font-size: .875rem;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 3px 14px rgba(26,92,46,.3); transition: all .2s;
  display: flex; align-items: center; gap: 7px;
}
.btn-reg-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,92,46,.4); }
.btn-reg-done {
  padding: 12px 36px; border-radius: 10px; font-weight: 700; font-size: .95rem;
  background: linear-gradient(135deg, var(--g-deep), var(--g-mid));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,92,46,.3); transition: all .2s; margin-top: 24px;
}
.btn-reg-done:hover { transform: translateY(-1px); }

/* ── Loading Spinner ── */
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  animation: spin .65s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading .spinner { display: block; }
.loading .btn-text { display: none; }

@media (max-width: 600px) {
  .reg-header { padding: 20px 20px 16px; }
  .reg-steps  { padding: 14px 20px 0; }
  .reg-body   { padding: 18px 20px; }
  .reg-footer { padding: 14px 20px 18px; flex-wrap: wrap; }
  .step-label { display: none; }
  .sum-row { grid-template-columns: 1fr; gap: 2px; }
}
