/* ============================================================
   TALEEMI CARD - REGISTRATION FORM CSS
   ============================================================ */

.reg-body { background: #f4f7f5; }

/* â”€â”€ CONTAINER â”€â”€ */
.reg-container { max-width: 780px; margin: 0 auto; padding: 32px 20px 60px; }

/* â”€â”€ HEADER â”€â”€ */
.reg-header { text-align: center; margin-bottom: 28px; }
.reg-title { font-size: 26px; font-weight: 700; color: #1a5c2e; margin-bottom: 6px; }
.reg-subtitle { font-size: 14px; color: #888; }

/* â”€â”€ STEP BAR â”€â”€ */
.steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid #dde8e1;
  border-radius: 12px;
  padding: 18px 24px;
  gap: 0;
}
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.si-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  border: 2px solid #dde8e1;
  background: #fff;
  color: #bbb;
  transition: all .2s;
}
.si-num svg,
.success-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: auto;
}
.si-label {
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
  font-weight: 500;
}
.step-indicator.active .si-num { border-color: #1a5c2e; color: #1a5c2e; background: #e8f5ec; }
.step-indicator.active .si-label { color: #1a5c2e; }
.step-indicator.done .si-num { border-color: #1a5c2e; background: #1a5c2e; color: #fff; }
.step-indicator.done .si-label { color: #1a5c2e; }
.step-line { flex: 1; height: 2px; background: #dde8e1; margin: 0 8px; margin-bottom: 20px; transition: background .2s; }
.step-line.done { background: #1a5c2e; }

/* â”€â”€ FORM â”€â”€ */
.reg-form { display: flex; flex-direction: column; gap: 0; }

.form-section {
  background: #fff;
  border: 1px solid #dde8e1;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.form-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1a5c2e;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8f5ec;
  margin-bottom: 18px;
}

.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: #444; margin-bottom: 5px; }
.req { color: #dc2626; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #d0d7df;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { border-color: #1a5c2e; box-shadow: 0 0 0 3px rgba(26,92,46,0.1); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 11px; color: #aaa; margin-top: 4px; }
.mb-8 { margin-bottom: 8px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

/* â”€â”€ HEARD VIA PILLS â”€â”€ */
.heard-via-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.heard-via-pill { display: flex; align-items: center; cursor: pointer; }
.heard-via-pill input[type="radio"] { display: none; }
.heard-via-pill span {
  padding: 7px 16px;
  border: 1.5px solid #d0d7df;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  transition: all .15s;
  user-select: none;
}
.heard-via-pill input:checked + span {
  border-color: #1a5c2e;
  background: #e8f5ec;
  color: #1a5c2e;
  font-weight: 600;
}

/* â”€â”€ RADIO OPTIONS â”€â”€ */
.radio-options { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-opt { display: flex; align-items: center; cursor: pointer; }
.radio-opt input[type="radio"] { display: none; }
.radio-opt span {
  padding: 7px 16px;
  border: 1.5px solid #d0d7df;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  transition: all .15s;
}
.radio-opt input:checked + span {
  border-color: #1a5c2e;
  background: #e8f5ec;
  color: #1a5c2e;
  font-weight: 600;
}

/* â”€â”€ CHECKBOXES â”€â”€ */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 10px 12px; border: 1.5px solid #e8e8e8; border-radius: 8px; transition: all .15s; }
.check-item:hover { border-color: #1a5c2e; background: #f7fdf8; }
.check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: #1a5c2e; flex-shrink: 0; margin-top: 1px; }
.check-item span { font-size: 13px; color: #444; line-height: 1.4; }
.check-item input:checked ~ span { color: #1a5c2e; font-weight: 500; }

/* â”€â”€ JI WORKER TOGGLE â”€â”€ */
.ji-worker-toggle { padding: 14px 16px; background: #f7faf8; border: 1.5px solid #dde8e1; border-radius: 9px; }
.toggle-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; font-weight: 500; color: #1a5c2e; }
.toggle-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: #1a5c2e; }

/* â”€â”€ CHILD CARDS â”€â”€ */
.child-card {
  background: #f9fbfa;
  border: 1.5px solid #dde8e1;
  border-radius: 11px;
  padding: 20px;
  margin-bottom: 14px;
}
.child-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.child-card-title { font-size: 14px; font-weight: 600; color: #1a5c2e; }
.btn-remove {
  background: #fee2e2;
  border: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.btn-remove:hover { background: #fecaca; }
.add-child-btn {
  width: 100%;
  padding: 14px;
  border: 2px dashed #3a9a52;
  border-radius: 10px;
  background: #f0faf3;
  color: #1a5c2e;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  margin-top: 4px;
}
.add-child-btn:hover { background: #e0f5e6; }

/* â”€â”€ SCHOOL SEARCH â”€â”€ */
.school-search-wrap { position: relative; }
.school-suggestions {
  position: absolute;
  top: calc(100% + 2px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid #1a5c2e;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  max-height: 220px;
  overflow-y: auto;
  z-index: 99;
  display: none;
}
.school-suggestions.show { display: block; }
.school-suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.school-suggestion-item:hover { background: #f0faf3; }
.school-suggestion-item:last-child { border-bottom: none; }
.school-type-badge { font-size: 10px; color: #888; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; white-space: nowrap; }
.school-add-new {
  padding: 11px 14px;
  font-size: 13px;
  color: #1a5c2e;
  font-weight: 600;
  cursor: pointer;
  border-top: 1px solid #f0f0f0;
}
.school-add-new:hover { background: #f0faf3; }

/* â”€â”€ REVIEW â”€â”€ */
.review-block { margin-bottom: 16px; background: #f7faf8; border: 1px solid #dde8e1; border-radius: 10px; overflow: hidden; }
.review-block-title { background: #1a5c2e; color: #fff; padding: 10px 16px; font-size: 13px; font-weight: 600; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 14px 16px; }
.review-grid div { padding: 5px 0; }
.review-grid div span { display: block; font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.review-grid div strong { font-size: 13px; color: #1a1a1a; }
.review-child { padding: 10px 16px; border-bottom: 1px solid #e8e8e8; font-size: 13px; display: flex; gap: 12px; align-items: baseline; }
.review-child:last-child { border-bottom: none; }
.review-child strong { color: #1a5c2e; }
.review-child span { color: #888; }

/* â”€â”€ CONSENT â”€â”€ */
.consent-list { display: flex; flex-direction: column; gap: 10px; }
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: #f7faf8;
  border: 1.5px solid #dde8e1;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .15s;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.consent-item:hover { border-color: #1a5c2e; }
.consent-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: #1a5c2e; flex-shrink: 0; margin-top: 2px; }

/* â”€â”€ FORM ACTIONS â”€â”€ */
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; gap: 12px; }
.btn-next { flex: 1; max-width: 320px; justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 9px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; text-decoration: none; transition: all .15s; }
.btn-primary { background: #1a5c2e; color: #fff; }
.btn-primary:hover { background: #2a7a3f; }
.btn-outline-green { background: transparent; border: 2px solid #1a5c2e; color: #1a5c2e; }
.btn-outline-green:hover { background: #e8f5ec; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* â”€â”€ ALERTS â”€â”€ */
.alert { padding: 13px 16px; border-radius: 9px; font-size: 14px; margin-bottom: 16px; }
.alert-danger { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.text-muted { color: #aaa; font-weight: 400; }

/* â”€â”€ SUCCESS PAGE â”€â”€ */
.success-card {
  background: #fff;
  border: 1px solid #dde8e1;
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-top: 20px;
}
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-title { font-size: 28px; font-weight: 700; color: #1a5c2e; margin-bottom: 8px; }
.success-subtitle { font-size: 15px; color: #888; margin-bottom: 28px; }
.success-details {
  background: #f7faf8;
  border: 1px solid #dde8e1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.success-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.success-row:last-child { border-bottom: none; }
.success-row span { color: #888; }
.success-row strong { color: #1a5c2e; font-weight: 600; }
.success-note { background: #fffbeb; border: 1px solid #fde68a; border-radius: 9px; padding: 14px 16px; font-size: 13px; color: #856404; line-height: 1.7; margin-bottom: 24px; text-align: left; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media(max-width: 600px) {
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps-bar { padding: 14px 12px; gap: 0; }
  .si-label { display: none; }
  .form-actions { flex-direction: column-reverse; }
  .btn-next { max-width: 100%; width: 100%; }
  .btn-outline-green { width: 100%; }
}

/* Modern public page skin for registration and status */
.reg-body,
.status-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(173, 214, 42, .18), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(26, 107, 58, .12), transparent 24%),
    linear-gradient(180deg, #f4faf6 0%, #ffffff 46%, #f6f8f5 100%);
}

.reg-body .site-header,
.status-body .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,107,58,.12);
  box-shadow: 0 14px 34px rgba(16, 58, 35, .08);
}

.reg-body .header-inner,
.status-body .header-inner {
  height: 74px;
}

.reg-body .logo-circle,
.status-body .logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #064322, #1b7b42);
  box-shadow: 0 12px 24px rgba(26,107,58,.22);
}

.reg-body .logo-main,
.status-body .logo-main {
  font-family: var(--font);
  color: #0f2017;
  font-size: 17px;
  line-height: 1.1;
}

.reg-body .logo-sub,
.status-body .logo-sub {
  margin-top: 4px;
}

.reg-body .header-nav a,
.status-body .header-nav a {
  color: #2f3d35;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
}

.reg-body .header-nav a:hover,
.reg-body .header-nav a.active,
.status-body .header-nav a:hover,
.status-body .header-nav a.active {
  background: #eaf5e7;
  color: #176f3b;
}

.reg-container {
  max-width: 980px;
  padding: 48px 20px 72px;
}

.reg-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #0d1c13;
  letter-spacing: 0;
}

.reg-title::before {
  content: "TALEEM CARD";
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eaf5e7;
  color: #176f3b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.reg-subtitle {
  color: #617067;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.steps-bar,
.form-section,
.success-card,
.search-card,
.result-card {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(26,107,58,.13) !important;
  border-radius: 20px !important;
  box-shadow: 0 22px 52px rgba(16,58,35,.09) !important;
}

.form-section {
  padding: 28px;
}

.form-section-title {
  font-size: 14px;
  font-weight: 900;
  color: #176f3b;
}

.form-control,
.search-input {
  border-radius: 13px !important;
  border-color: #d8e1da !important;
  padding: 13px 15px !important;
  font-size: 15px !important;
}

.form-control:focus,
.search-input:focus {
  border-color: #1a6b3a !important;
  box-shadow: 0 0 0 4px rgba(26,107,58,.12) !important;
}

.si-num {
  width: 38px;
  height: 38px;
}

.step-indicator.active .si-num {
  border-color: #9dcc22;
  color: #0d2c18;
  background: #d8ef25;
  box-shadow: 0 10px 22px rgba(157,204,34,.26);
}

.heard-via-pill span,
.radio-opt span {
  padding: 9px 17px;
}

.child-card {
  background: linear-gradient(180deg, #fbfdfb 0%, #f3faf5 100%);
  border-color: #d7e7dc;
  border-radius: 16px;
}

.btn,
.search-btn,
.btn-download {
  border-radius: 999px !important;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn-primary,
.search-btn,
.btn-download {
  background: linear-gradient(180deg, #1d7b42, #0d552c) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(26,92,46,.20);
}

.btn-primary:hover,
.search-btn:hover,
.btn-download:hover {
  transform: translateY(-1px);
}

.status-container {
  max-width: 920px !important;
  padding: 56px 20px 74px !important;
}

.status-header h1 {
  font-size: clamp(32px, 4vw, 46px) !important;
  font-weight: 900 !important;
  color: #0d1c13 !important;
}

.status-header h1::before {
  content: "APPLICATION STATUS";
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eaf5e7;
  color: #176f3b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.status-header p {
  color: #617067 !important;
  font-size: 16px !important;
}

.search-card {
  background:
    linear-gradient(135deg, rgba(234,245,231,.92), rgba(255,255,255,.98)) !important;
}

.search-row {
  align-items: center;
}

.search-input,
.search-btn {
  min-height: 56px;
}

.result-header {
  background:
    radial-gradient(circle at 92% 0%, rgba(216,239,37,.18), transparent 30%),
    linear-gradient(135deg, #064322, #1a6b3a) !important;
}

.current-status,
.progress-section,
.details-section,
.children-section {
  background: #fff;
}

.child-row {
  border: 1px solid #e0ebe3;
}

/* Homepage-style public header for register and status pages */
.reg-body > .site-header,
.status-body > .site-header {
  display: none;
}

.public-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 80;
  background:
    radial-gradient(circle at 85% -20%, rgba(201, 223, 31, .18), transparent 26%),
    linear-gradient(90deg, #052d18 0%, #0b542d 56%, #176f3b 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(6, 50, 28, .18);
}

.public-header .header-inner {
  height: 96px;
  grid-template-columns: auto 1fr auto;
  gap: 44px;
}

.public-header .landing-logo {
  min-width: 286px;
}

.public-header .landing-mark,
.public-header .landing-mark svg {
  width: 58px;
  height: 58px;
}

.public-header .landing-logo strong {
  font-size: 26px;
}

.public-header .landing-logo em {
  font-size: 23px;
  line-height: 1.05;
  margin-top: 2px;
}

.public-header .portal-tenant-badge {
  margin-top: 4px;
}

.public-header .landing-nav {
  justify-content: flex-start;
  gap: 26px;
}

.public-header .landing-nav a {
  font-size: 15px;
  padding-top: 12px;
  padding-bottom: 15px;
}

.public-header .landing-nav a.nav-register {
  height: 48px;
  padding: 0 22px;
  background: #c9df1f;
  color: #102718;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

.public-header .landing-nav a.nav-register:hover,
.public-header .landing-nav a.nav-register.active {
  background: #d8ef25;
  color: #102718;
}

.public-header .landing-nav a.nav-register.active::after {
  display: none;
}

@media(max-width: 1100px) {
  .public-header .header-inner {
    gap: 28px;
  }
  .public-header .landing-nav {
    gap: 18px;
  }
  .public-header .landing-nav a {
    font-size: 14px;
  }
}

@media(max-width: 900px) {
  .public-header .header-inner {
    height: 86px;
  }
  .public-header .landing-logo {
    min-width: auto;
  }
}

/* Tablet and phone optimization */
@media(max-width: 1100px) {
  .public-header .landing-shell {
    width: min(100% - 32px, 920px);
  }
  .public-header .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 20px;
  }
  .public-header .landing-menu {
    display: block;
  }
  .public-header .landing-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    z-index: 95;
    padding: 14px;
    border-radius: 14px;
    background: rgba(3, 45, 24, .98);
    box-shadow: 0 20px 48px rgba(3, 28, 16, .32);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .public-header .landing-nav.open {
    display: flex;
  }
  .public-header .landing-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .public-header .landing-nav a.active::after {
    display: none;
  }
  .public-header .landing-nav a.nav-register {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

@media(max-width: 768px) {
  .reg-container,
  .status-container {
    width: min(100% - 24px, 620px) !important;
    padding: 34px 0 54px !important;
  }
  .reg-title,
  .status-header h1 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }
  .reg-subtitle,
  .status-header p {
    font-size: 14px !important;
  }
  .steps-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 14px 10px;
    gap: 8px;
    overflow: visible;
  }
  .step-line {
    display: none;
  }
  .step-indicator {
    min-width: 0;
  }
  .si-num {
    width: 34px;
    height: 34px;
  }
  .si-label {
    display: block;
    width: 100%;
    font-size: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .form-section,
  .success-card,
  .search-card,
  .result-card {
    border-radius: 16px !important;
  }
  .form-section {
    padding: 20px;
  }
  .form-row,
  .form-row-3,
  .checkbox-grid,
  .review-grid,
  .details-grid {
    grid-template-columns: 1fr !important;
  }
  .heard-via-grid,
  .radio-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .heard-via-pill span,
  .radio-opt span {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
  }
  .child-card {
    padding: 16px;
  }
  .child-card-header,
  .review-child,
  .success-row,
  .current-status,
  .result-header {
    align-items: flex-start;
  }
  .current-status,
  .result-header {
    flex-direction: column;
    gap: 12px;
  }
  .status-badge-big {
    align-self: flex-start;
  }
  .search-row {
    flex-direction: column;
  }
  .search-input,
  .search-btn {
    width: 100%;
  }
  .progress-section {
    overflow-x: auto;
    padding-bottom: 16px;
  }
  .progress-steps {
    min-width: 560px;
  }
  .child-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .child-row span {
    display: block;
    margin-left: 0 !important;
  }
  .form-actions,
  .success-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .form-actions .btn,
  .success-actions .btn,
  .btn-next {
    width: 100%;
    max-width: none;
  }
}

@media(max-width: 520px) {
  .public-header .landing-shell {
    width: min(100% - 24px, 480px);
  }
  .public-header .header-inner {
    height: 76px;
  }
  .public-header .landing-mark,
  .public-header .landing-mark svg {
    width: 42px;
    height: 42px;
  }
  .public-header .landing-logo {
    gap: 10px;
  }
  .public-header .landing-logo strong {
    font-size: 17px;
  }
  .public-header .landing-logo em {
    font-size: 15px;
    letter-spacing: .22em;
    margin-top: 1px;
  }
  .public-header .portal-tenant-badge {
    margin-top: 3px;
  }
  .public-header .landing-menu {
    width: 44px;
    height: 44px;
  }
  .public-header .landing-nav {
    top: 76px;
    left: 12px;
    right: 12px;
  }
  .reg-container,
  .status-container {
    width: min(100% - 20px, 480px) !important;
    padding-top: 28px !important;
  }
  .reg-header,
  .status-header {
    margin-bottom: 22px;
  }
  .reg-title,
  .status-header h1 {
    font-size: 26px !important;
  }
  .reg-title::before,
  .status-header h1::before {
    font-size: 10px;
    letter-spacing: .1em;
  }
  .steps-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .step-indicator {
    padding: 8px;
    border: 1px solid #e0ebe3;
    border-radius: 12px;
    background: #fff;
  }
  .form-section {
    padding: 16px;
  }
  .form-section-title {
    font-size: 13px;
    line-height: 1.35;
  }
  .heard-via-grid,
  .radio-options {
    grid-template-columns: 1fr;
  }
  .success-card {
    padding: 28px 18px;
  }
  .success-icon {
    font-size: 48px;
  }
  .success-title {
    font-size: 24px;
  }
  .success-row {
    flex-direction: column;
    gap: 3px;
  }
  .result-header,
  .current-status,
  .details-section,
  .children-section,
  .card-download,
  .progress-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
