:root {
  --ignite-ink: #09111f;
  --ignite-muted: #5a6475;
  --ignite-line: #dce3ef;
  --ignite-paper: #ffffff;
  --ignite-soft: #f5f8fc;
  --ignite-orange: #ff5b18;
  --ignite-blue: #0767d9;
  --ignite-navy: #071343;
  --ignite-green: #11a36a;
  --ignite-shadow: 0 18px 50px rgba(7, 19, 67, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ignite-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.frontend-page {
  margin: 0;
  background: var(--ignite-paper);
}

.frontend-page button,
.frontend-page input,
.frontend-page select {
  font: inherit;
}

.frontend-page button {
  border: 0;
}

.frontend-page a {
  color: inherit;
  text-decoration: none;
}

.frontend-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 227, 239, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

.frontend-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ignite-navy);
  font-weight: 800;
  text-decoration: none;
}

.frontend-page .brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.frontend-page .header-actions,
.frontend-page .hero-actions,
.frontend-page .center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.frontend-page .mobile-copy {
  display: none;
}

.frontend-page .mobile-sticky-reserve {
  display: none;
}

.frontend-page .btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.frontend-page .btn:hover {
  transform: translateY(-1px);
}

.frontend-page .btn-primary,
.frontend-page .btn-ignite {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ignite-orange);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff6d20;
  --bs-btn-hover-border-color: transparent;
  background: linear-gradient(135deg, var(--ignite-orange), #ff8a35);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 91, 24, .24);
}

.frontend-page .btn-secondary,
.frontend-page .btn-blue {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ignite-blue);
  --bs-btn-border-color: var(--ignite-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #055ac0;
  --bs-btn-hover-border-color: #055ac0;
  background: var(--ignite-blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(7, 103, 217, .2);
}

.frontend-page .btn-ghost {
  background: #edf4ff;
  color: var(--ignite-blue);
  box-shadow: none;
}

.frontend-page .btn-dark {
  width: fit-content;
  margin: 24px auto 0;
  background: var(--ignite-ink);
  color: #fff;
  box-shadow: none;
}

.frontend-page .hero {
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(120deg, rgba(255, 91, 24, .09), rgba(7, 103, 217, .1) 48%, rgba(17, 163, 106, .08)),
    #fbfdff;
}

.frontend-page .hero h1 {
  max-width: 850px;
  margin: 14px 0;
  color: var(--ignite-ink);
  font-size: clamp(42px, 7vw, 68px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 800;
}

.frontend-page .hero-lede {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--ignite-muted);
  font-size: clamp(18px, 2vw, 24px);
}

.frontend-page .eyebrow,
.frontend-page .section-heading span,
.frontend-page .panel-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--ignite-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.frontend-page .eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(7, 103, 217, .18);
  border-radius: 8px;
  background: #fff;
}

.frontend-page .hero-points {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.frontend-page .hero-points li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(220, 227, 239, .9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 19, 67, .05);
  font-weight: 700;
}

.frontend-page .hero-points li::before {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ignite-green);
  content: "";
}

.frontend-page .hero-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(220, 227, 239, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .logo-mark {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  background: #f8fbff;
}

.frontend-page .logo-mark img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.frontend-page .hero-card p,
.frontend-page .hero-card strong {
  margin: 0;
}

.frontend-page .hero-card p {
  color: var(--ignite-muted);
  font-weight: 800;
}

.frontend-page .hero-card strong {
  color: var(--ignite-navy);
  font-size: 32px;
  line-height: 1.05;
}

.frontend-page .hero-card span {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--ignite-soft);
  color: var(--ignite-muted);
  font-weight: 800;
}

.frontend-page .section {
  padding: clamp(54px, 7vw, 52px) clamp(18px, 6vw, 60px);
}

.frontend-page .section-light {
  background: var(--ignite-soft);
}

.frontend-page .section-blue {
  background: #eef6ff;
}

.frontend-page .section-dark {
  background: var(--ignite-navy);
  color: #fff;
}

.frontend-page .section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.frontend-page .section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.frontend-page .section-heading h2,
.frontend-page .mentor-copy h2,
.frontend-page .contact h2 {
  margin: 8px 0 0;
  color: var(--ignite-ink);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.frontend-page .section-dark .section-heading h2 {
  color: #fff;
}

.frontend-page .section-heading p,
.frontend-page .mentor-copy p,
.frontend-page .contact p {
  color: var(--ignite-muted);
  font-size: 18px;
}

.frontend-page .overview-grid,
.frontend-page .support-grid,
.frontend-page .stats-grid,
.frontend-page .why-grid,
.frontend-page .story-grid,
.frontend-page .recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.frontend-page .overview-grid article,
.frontend-page .support-grid article,
.frontend-page .stats-grid article,
.frontend-page .why-grid article,
.frontend-page .story-grid article,
.frontend-page .recognition-grid article {
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 19, 67, .05);
}

.frontend-page .overview-grid article {
  padding: 20px;
  font-weight: 800;
}

.frontend-page .overview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1604px;
  margin-right: auto;
  margin-left: auto;
  gap: 28px 34px;
}

.frontend-page .overview-grid article {
  flex: 1 1 calc((100% - 68px) / 3);
  max-width: 510px;
  min-width: 300px;
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(9, 17, 31, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.frontend-page .overview-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 103, 217, .28);
  box-shadow: 0 26px 58px rgba(7, 19, 67, .13);
}

.frontend-page .overview-grid article strong {
  color: #22242a;
  font-size: clamp(12px, 1.15vw, 21px);
  font-weight: 800;
  line-height: 1.16;
}

.frontend-page .overview-icon {
  flex: 0 0 70px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 10px;
  background: #e8e8ff;
  color: #062cff;
}

.frontend-page .overview-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frontend-page .tabs {
  display: flex;
  max-width: 920px;
  margin: 0 auto 20px;
  padding: 6px;
  gap: 6px;
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .tab {
  flex: 1;
  min-height: 48px;
  border-radius: 6px;
  background: transparent;
  color: var(--ignite-muted);
  cursor: pointer;
  font-weight: 900;
}

.frontend-page .tab.active,
.frontend-page .tab[aria-selected="true"] {
  background: var(--ignite-navy);
  color: #fff;
}

.frontend-page .tab-panels {
  max-width: 920px;
  margin: 0 auto;
}

.frontend-page .tab-panel {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .tab-panel h3 {
  margin: 8px 0;
  color: var(--ignite-navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.frontend-page .tab-panel p {
  color: var(--ignite-muted);
  font-size: 18px;
}

.frontend-page .tab-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.frontend-page .tab-panel li {
  padding: 14px;
  border-radius: 8px;
  background: var(--ignite-soft);
  font-weight: 800;
}

.frontend-page .takeaway {
  padding: 16px;
  border-left: 4px solid var(--ignite-orange);
  background: #fff7f2;
}

.frontend-page .center-action {
  justify-content: center;
  margin-top: 24px;
}

.frontend-page .tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.frontend-page .tool-cloud span {
  padding: 12px 16px;
  border: 1px solid rgba(7, 103, 217, .18);
  border-radius: 8px;
  background: #fff;
  color: var(--ignite-navy);
  font-weight: 900;
}

.frontend-page .batch-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .batch-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.frontend-page .batch-summary p,
.frontend-page .batch-summary h3 {
  margin: 0;
}

.frontend-page .batch-summary p {
  color: var(--ignite-orange);
  font-weight: 900;
}

.frontend-page .batch-summary h3 {
  color: var(--ignite-ink);
  font-size: 30px;
  font-weight: 800;
}

.frontend-page .batch-summary strong {
  color: var(--ignite-blue);
  font-size: 22px;
}

.frontend-page .table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
}

.frontend-page table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.frontend-page th {
  background: var(--ignite-ink);
  color: #fff;
}

.frontend-page th,
.frontend-page td {
  padding: 16px;
  border-bottom: 1px solid var(--ignite-line);
  text-align: left;
  vertical-align: top;
}

.frontend-page td:first-child {
  color: var(--ignite-blue);
  font-weight: 900;
}

.frontend-page .note {
  margin: 16px 0 0;
  color: var(--ignite-muted);
}

.frontend-page .recognition-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.frontend-page .recognition-grid article,
.frontend-page .support-grid article,
.frontend-page .story-grid article {
  padding: 22px;
}

.frontend-page .recognition-grid img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ignite-soft);
}

.frontend-page .recognition-grid h3,
.frontend-page .support-grid h3 {
  margin-bottom: 8px;
  color: var(--ignite-navy);
  font-size: 22px;
  font-weight: 800;
}

.frontend-page .recognition-grid p,
.frontend-page .support-grid p,
.frontend-page .story-grid span {
  color: var(--ignite-muted);
}

.frontend-page .support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.frontend-page .mentor {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(135deg, #fff, #f4f8ff);
}

.frontend-page .mentor-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ignite-soft);
  box-shadow: var(--ignite-shadow);
}

.frontend-page .mentor-image img {
  display: block;
  width: 100%;
  height: auto;
}

.frontend-page .text-link {
  color: var(--ignite-blue);
  font-weight: 900;
}

.frontend-page .stats-grid article,
.frontend-page .why-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.frontend-page .stats-grid strong,
.frontend-page .why-grid strong {
  color: var(--ignite-orange);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.frontend-page .stats-grid span,
.frontend-page .why-grid span {
  font-weight: 800;
}

.frontend-page .why-grid article {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.frontend-page .why-grid small {
  color: rgba(255, 255, 255, .72);
}

.frontend-page .school-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.frontend-page .school-marquee span {
  padding: 10px 12px;
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
  color: var(--ignite-muted);
  font-size: 14px;
  font-weight: 800;
}

.frontend-page .story-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.frontend-page .story-grid article {
  display: grid;
  gap: 4px;
}

.frontend-page .faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.frontend-page details {
  border: 1px solid var(--ignite-line);
  border-radius: 8px;
  background: #fff;
}

.frontend-page summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

.frontend-page details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ignite-muted);
}

.frontend-page .contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  background: #fff7f2;
}

.frontend-page .contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 91, 24, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .contact-card a {
  color: var(--ignite-navy);
  font-weight: 900;
  text-decoration: none;
}

.frontend-page input:focus,
.frontend-page select:focus,
.frontend-page button:focus-visible,
.frontend-page a:focus-visible,
.frontend-page summary:focus-visible {
  outline: 3px solid rgba(7, 103, 217, .32);
  outline-offset: 2px;
}

.frontend-page .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}
/*
.frontend-page .modal-dialog {
  max-width: min(1120px, calc(100% - 32px));
}
*/
.frontend-page .modal-content {
  padding: clamp(12px, 2vw, 22px);
}

/*.frontend-page .modal-title {
  font-size: clamp(24px, 4vw, 42px);
}
  */

.frontend-page .modal .text-primary {
  color: var(--ignite-blue) !important;
  font-weight: 900;
}

.frontend-page .form-label,
.frontend-page .form-check-label {
  font-weight: 800;
}

.frontend-page .modal .form-label {
  color: #05070c;
  font-size: 18px;
  font-weight: 900;
}

.frontend-page .modal .form-control,
.frontend-page .modal .form-select {
  min-height: 48px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  color: var(--ignite-ink);
  font-size: 20px;
}

.frontend-page .modal .input-group-lg > .form-control,
.frontend-page .modal .input-group-lg > .form-select {
  min-height: 58px;
}

.frontend-page .modal-footer .btn {
  min-height: 64px;
  background: #5344ee;
  border-color: #5344ee;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: none;
}

.frontend-page .payment-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px) 18px;
  background:
    linear-gradient(120deg, rgba(255, 91, 24, .07), rgba(7, 103, 217, .09) 52%, rgba(17, 163, 106, .06)),
    var(--ignite-soft);
}

.frontend-page .payment-wrap {
  width: min(100%, 860px);
}

.frontend-page .payment-wrap-narrow {
  width: min(100%, 760px);
}

.frontend-page .payment-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--ignite-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ignite-shadow);
}

.frontend-page .payment-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.frontend-page .payment-logo {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 8px;
  border: 1px solid rgba(220, 227, 239, .9);
  border-radius: 16px;
  background: #f8fbff;
  object-fit: contain;
}

.frontend-page .payment-header h1,
.frontend-page .payment-status-card h1 {
  margin: 0;
  color: var(--ignite-ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

.frontend-page .payment-header p {
  margin: 6px 0 0;
  color: var(--ignite-muted);
  font-size: 18px;
  font-weight: 700;
}

.frontend-page .payment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.frontend-page .payment-info {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 10px;
  background: var(--ignite-soft);
}

.frontend-page .payment-info strong,
.frontend-page .payment-label {
  color: var(--ignite-ink);
  font-size: 17px;
  font-weight: 900;
}

.frontend-page .payment-info span {
  color: var(--ignite-ink);
  font-size: 20px;
}

.frontend-page .payment-label {
  display: block;
  margin-bottom: 10px;
}

.frontend-page .payment-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 12px;
}

.frontend-page .payment-coupon .form-control {
  min-height: 58px;
  border: 1px solid var(--ignite-line);
  border-radius: 10px;
  font-size: 18px;
}

.frontend-page .payment-coupon .btn {
  min-width: 118px;
  border-radius: 10px;
  font-weight: 900;
  background-color: #0d6efd;
  color: #fff;
}

.frontend-page .payment-coupon .form-control:disabled {
  background: #f1f5f9;
  color: var(--ignite-muted);
  opacity: 1;
}

.frontend-page .payment-coupon .btn:disabled {
  background-color: #94a3b8;
  border-color: #94a3b8;
  color: #fff;
  opacity: 1;
}

.frontend-page .payment-coupon-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: #15803d;
  font-size: 16px;
  font-weight: 900;
}

.frontend-page .payment-coupon-status .btn {
  padding: 0;
  color: #dc2626;
  font-weight: 900;
  text-decoration: none;
}

.frontend-page .payment-coupon-status .btn:hover {
  color: #991b1b;
  text-decoration: underline;
}

.frontend-page .payment-pay-button {
  width: 100%;
  min-height: 60px;
  font-size: 20px;
  font-weight: 900;
}

.frontend-page .payment-retry {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: var(--ignite-blue);
  font-weight: 900;
  text-decoration: none;
}

.frontend-page .payment-status-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.table-nowrap td,
.table-nowrap th {
  white-space: nowrap;
}

.frontend-page .site-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--ignite-line);
  background: #fff6f2;
  color: var(--ignite-muted);
  font-size: 14px;
  text-align: center;
}

.admin-page,
.admin-login-page {
  margin: 0;
  background: #f6f8fc;
  color: #14213d;
}

.admin-page .btn-ignite,
.admin-login-page .btn-ignite {
  border: 0;
  background: linear-gradient(135deg, #ff5b18, #ff8a35);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 91, 24, .2);
}

.admin-page .btn-ignite:hover,
.admin-login-page .btn-ignite:hover {
  background: linear-gradient(135deg, #ee4d0e, #ff7822);
  color: #fff;
}

.admin-page .soft-card {
  border: 1px solid #e4e9f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 40, 73, .06);
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1040;
  display: flex;
  width: 268px;
  flex-direction: column;
  border-right: 1px solid #e7ebf2;
  background: #fff;
  transition: transform .24s ease;
}

.admin-sidebar-head {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #edf0f5;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #14213d;
  text-decoration: none;
}

.admin-brand:hover {
  color: #14213d;
}

.admin-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.admin-brand span {
  display: grid;
}

.admin-brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.admin-brand small {
  color: #748097;
  font-size: 11px;
  font-weight: 700;
}

.admin-nav-label {
  padding: 22px 20px 8px;
  color: #9aa4b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 3px;
  padding: 0 12px 18px;
  overflow-y: auto;
}

.admin-nav a,
.admin-sidebar-footer a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #566278;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.admin-nav a svg,
.admin-sidebar-footer a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 2;
}

.admin-nav a:hover {
  background: #fff3ed;
  color: #ec561d;
  transform: translateX(2px);
}

.admin-nav a.active {
  background: #fff0e9;
  color: #ef5b24;
}

.admin-sidebar-footer {
  margin-top: auto;
  padding: 14px 12px;
  border-top: 1px solid #edf0f5;
}

.admin-sidebar-footer a:hover {
  background: #fff1f1;
  color: #dc3545;
}

.admin-sidebar-backdrop {
  display: none;
}

.admin-workspace {
  width: calc(100% - 268px);
  margin-left: 268px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  border-bottom: 1px solid #e7ebf2;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.admin-topbar-start,
.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-topbar-start > div,
.admin-user > span:last-child {
  display: grid;
}

.admin-topbar-label,
.admin-user small {
  color: #7f8a9f;
  font-size: 12px;
  font-weight: 600;
}

.admin-topbar-start strong,
.admin-user strong {
  color: #192640;
  font-size: 14px;
}

.admin-user-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0767d9, #2da8ff);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(7, 103, 217, .2);
}

.admin-icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #e4e9f2;
  border-radius: 8px;
  background: #fff;
  color: #344157;
}

.admin-icon-button svg {
  width: 19px;
  height: 19px;
}

.admin-menu-toggle,
.admin-sidebar-close {
  display: none;
}

.admin-main {
  display: flex;
  min-height: calc(100vh - 82px);
  flex-direction: column;
}

.admin-content {
  width: 100%;
  max-width: 1760px;
  flex: 1;
  padding: 28px;
}

.admin-footer {
  padding: 16px 28px;
  border-top: 1px solid #e7ebf2;
  background: #fff;
  color: #7a8498;
  font-size: 13px;
  text-align: center;
}

.admin-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-page-heading p,
.admin-card-heading p {
  margin: 0 0 4px;
  color: #ef5b24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.admin-page-heading h1 {
  margin: 0;
  color: #15223d;
  font-size: 30px;
  font-weight: 800;
}

.admin-page-heading span {
  display: block;
  margin-top: 4px;
  color: #7c879b;
  font-size: 14px;
}

.admin-stat-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid;
  border-radius: 10px;
}

.admin-stat-card p {
  margin: 14px 0 1px;
  color: #536075;
  font-size: 14px;
  font-weight: 700;
}

.admin-stat-card strong {
  color: #17223b;
  font-size: 30px;
}

.admin-stat-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
}

.admin-stat-icon svg {
  width: 22px;
  height: 22px;
}

.admin-stat-orange {
  border-color: #ffd1bf;
  background: #fff4ef;
}

.admin-stat-orange .admin-stat-icon {
  background: #f0602f;
}

.admin-stat-green {
  border-color: #bdebcf;
  background: #f0fbf4;
}

.admin-stat-green .admin-stat-icon {
  background: #11a36a;
}

.admin-stat-red {
  border-color: #ffcbd1;
  background: #fff4f5;
}

.admin-stat-red .admin-stat-icon {
  background: #ec4555;
}

.admin-stat-blue {
  border-color: #bde5f4;
  background: #f0faff;
}

.admin-stat-blue .admin-stat-icon {
  background: #0ca6d8;
}

.admin-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-card-heading h2 {
  margin: 0;
  color: #1c2942;
  font-size: 20px;
  font-weight: 800;
}

.admin-card-heading > svg {
  color: #0767d9;
}

.admin-page h1 {
  color: #17223b;
  font-size: clamp(24px, 3vw, 32px);
}

.admin-page .table {
  margin-bottom: 0;
  color: #3c475a;
  font-size: 14px;
}

.admin-page .table > :not(caption) > * > * {
  padding: 14px 12px;
  border-bottom-color: #edf0f5;
  vertical-align: middle;
}

.admin-page .table thead th {
  color: #7d8799;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.admin-page .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: #fafbfe;
  color: #3c475a;
}

.admin-pagination,
.admin-page .dt-paging {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.admin-pagination .pagination,
.admin-page .dt-paging nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.admin-pagination .page-link,
.admin-page .dt-paging .dt-paging-button {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 11px !important;
  border: 1px solid #e0e6ef !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #59667b !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.admin-pagination .page-link:hover,
.admin-page .dt-paging .dt-paging-button:hover {
  border-color: #ffb290 !important;
  background: #fff3ed !important;
  color: #e9571f !important;
  transform: translateY(-1px);
}

.admin-pagination .page-item.active .page-link,
.admin-page .dt-paging .dt-paging-button.current {
  border-color: #ff6c2c !important;
  background: linear-gradient(135deg, #ff5b18, #ff8a35) !important;
  color: #fff !important;
  box-shadow: 0 7px 14px rgba(255, 91, 24, .2);
}

.admin-pagination .page-item.disabled .page-link,
.admin-page .dt-paging .dt-paging-button.disabled {
  pointer-events: none;
  opacity: .45;
}

.admin-page .dt-paging nav:empty,
.admin-page .dt-paging:has(.dt-paging-button.current:only-child) {
  display: none;
}

.admin-page .form-control,
.admin-page .form-select {
  min-height: 44px;
  border-color: #dfe5ef;
  border-radius: 7px;
}

.admin-page .form-control:focus,
.admin-page .form-select:focus,
.admin-login-page .form-control:focus {
  border-color: #7eb5f1;
  box-shadow: 0 0 0 4px rgba(7, 103, 217, .1);
}

.admin-login-page {
  min-height: 100vh;
  background: #f8faff;
}

.admin-login-shell {
  display: grid;
  min-height: calc(100vh - 50px);
  grid-template-columns: minmax(340px, .95fr) minmax(460px, 1.05fr);
}

.admin-login-brand {
  display: grid;
  place-items: center;
  padding: 48px;
  background:
    linear-gradient(145deg, rgba(7, 103, 217, .95), rgba(7, 19, 67, .98)),
    #071343;
  color: #fff;
}

.admin-login-brand-content {
  max-width: 540px;
}

.admin-login-brand img {
  width: 98px;
  height: 98px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
}

.admin-login-eyebrow {
  margin: 0 0 8px;
  color: #ff7d3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-login-brand h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
}

.admin-login-brand p:not(.admin-login-eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.admin-login-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.admin-login-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
}

.admin-login-highlights svg {
  width: 16px;
  height: 16px;
  color: #ff8a35;
}

.admin-login-form-wrap {
  display: grid;
  place-items: center;
  padding: 36px 24px;
}

.admin-login-card {
  width: min(100%, 470px);
  padding: 42px;
  border: 1px solid #e0e6ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 33, 61, .09);
}

.admin-login-card h2 {
  margin: 0;
  color: #14213d;
  font-size: 31px;
  font-weight: 900;
}

.admin-login-intro {
  margin: 8px 0 26px;
  color: #7a8598;
  font-size: 14px;
}

.admin-login-card .form-label {
  color: #3c485d;
  font-size: 14px;
  font-weight: 800;
}

.admin-input-wrap {
  position: relative;
}

.admin-input-wrap svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #9aa4b7;
  transform: translateY(-50%);
}

.admin-input-wrap .form-control {
  min-height: 54px;
  padding-left: 43px;
  border-color: #dfe5ef;
  border-radius: 8px;
  font-size: 15px;
}

.admin-login-card .btn {
  min-height: 54px;
  border-radius: 8px;
}

.admin-login-mobile-brand {
  display: none;
}

.admin-login-footer {
  display: flex;
  min-height: 50px;
  place-items: center;
  border-top: 1px solid #e7ebf2;
  background: #fff;
  color: #7a8598;
  font-size: 13px;
  text-align: center;
  justify-content: center;
}

.admin-login-footer a,
.admin-footer a {
    text-decoration: none;
}

@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1030;
    background: rgba(9, 17, 31, .5);
  }

  .admin-sidebar-backdrop.is-open {
    display: block;
  }

  .admin-menu-toggle,
  .admin-sidebar-close {
    display: inline-grid;
  }

  .admin-workspace {
    width: 100%;
    margin-left: 0;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-login-shell {
    min-height: calc(100vh - 50px);
    grid-template-columns: 1fr;
  }

  .admin-login-brand {
    display: none;
  }

  .admin-login-mobile-brand {
    display: block;
    margin-bottom: 18px;
  }

  .admin-login-mobile-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
  }
}

@media (max-width: 575px) {
  .admin-topbar {
    min-height: 72px;
    padding: 12px 14px;
  }

  .admin-topbar-label,
  .admin-user small {
    display: none;
  }

  .admin-topbar-start strong,
  .admin-user strong {
    font-size: 13px;
  }

  .admin-user-avatar {
    width: 36px;
    height: 36px;
  }

  .admin-content {
    padding: 16px 12px;
  }

  .admin-footer {
    padding: 14px 12px;
    font-size: 12px;
  }

  .admin-page h1 {
    font-size: 23px;
  }

  .admin-page .soft-card {
    padding: 16px !important;
  }

  .admin-pagination,
  .admin-page .dt-paging {
    justify-content: center;
  }

  .admin-pagination .page-link,
  .admin-page .dt-paging .dt-paging-button {
    min-width: 34px;
    min-height: 34px;
    padding: 6px 9px !important;
  }

  .admin-page .d-flex.justify-content-between.align-items-center.mb-4 {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 12px;
  }

  .admin-page .d-flex.justify-content-between.align-items-center.mb-4 .btn {
    width: 100%;
  }

  .admin-stat-card {
    min-height: 132px;
  }

  .admin-login-form-wrap {
    align-items: start;
    padding: 24px 14px;
  }

  .admin-login-card {
    padding: 26px 20px;
  }

  .admin-login-card h2 {
    font-size: 26px;
  }
}

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(9, 17, 31, .64);
}

.loader-overlay.is-open {
  display: grid;
}

@media (max-width: 1100px) {
  .frontend-page .hero,
  .frontend-page .mentor,
  .frontend-page .contact {
    grid-template-columns: 1fr;
  }

  .frontend-page .hero {
    min-height: auto;
  }

  .frontend-page .overview-grid,
  .frontend-page .stats-grid,
  .frontend-page .why-grid,
  .frontend-page .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .frontend-page .overview-grid article {
    flex-basis: calc((100% - 28px) / 2);
    max-width: none;
  }
}

@media (max-width: 780px) {
  .frontend-page {
    padding-bottom: 86px;
  }

  .frontend-page .site-header {
    position: static;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    min-height: 98px;
    padding: 17px 16px;
    background: #fff;
    backdrop-filter: none;
  }

  .frontend-page .brand {
    min-width: 0;
    justify-content: flex-start;
  }

  .frontend-page .brand span {
    display: none;
  }

  .frontend-page .brand img {
    width: 58px;
    height: 58px;
  }

  .frontend-page .desktop-copy {
    display: none;
  }

  .frontend-page .mobile-copy {
    display: inline;
  }

  .frontend-page .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: stretch;
    gap: 10px;
    min-width: 0;
  }

  .frontend-page .header-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 58px;
    padding: 10px 6px;
    border-radius: 12px;
    font-size: clamp(13px, 3.35vw, 17px);
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
  }

  .frontend-page .header-actions .btn-ghost {
    max-width: none;
  }

  .frontend-page .header-actions .btn-ghost {
    border: 0;
    background: #edf4ff;
    color: #075bd8;
    box-shadow: none;
  }

  .frontend-page .header-actions .btn-primary {
    background: linear-gradient(135deg, var(--ignite-orange), #ff8a35);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 91, 24, .2);
  }

  .frontend-page .mobile-sticky-reserve {
    position: fixed;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 1050;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ignite-orange), #ff8a35);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 91, 24, .28);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
  }

  .frontend-page::after {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    height: calc(86px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(220, 227, 239, .9);
    background: #fff;
    content: "";
  }

  .frontend-page .hero-points,
  .frontend-page .tab-panel ul,
  .frontend-page .support-grid,
  .frontend-page .recognition-grid,
  .frontend-page .form-grid {
    grid-template-columns: 1fr;
  }

  .frontend-page .tabs {
    overflow-x: auto;
  }

  .frontend-page .tab {
    min-width: 150px;
  }

  .frontend-page .batch-summary {
    display: grid;
  }

  .frontend-page .mentor-image {
    max-width: 320px;
  }

  .frontend-page .modal-dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    padding-top: 54px;
  }

  .frontend-page .modal .form-label {
    font-size: 19px;
  }

  .frontend-page .modal .form-control,
  .frontend-page .modal .form-select {
    min-height: 52px;
    font-size: 18px;
  }

  .frontend-page .payment-page {
    align-items: flex-start;
    padding: 18px 12px 96px;
  }

  .frontend-page .payment-card {
    padding: 20px;
    border-radius: 12px;
  }

  .frontend-page .payment-header {
    align-items: flex-start;
    gap: 14px;
  }

  .frontend-page .payment-logo {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .frontend-page .payment-summary,
  .frontend-page .payment-coupon {
    grid-template-columns: 1fr;
  }

  .frontend-page .payment-coupon .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .frontend-page .overview-grid,
  .frontend-page .stats-grid,
  .frontend-page .why-grid,
  .frontend-page .story-grid {
    grid-template-columns: 1fr;
  }

  .frontend-page .hero-actions .btn,
  .frontend-page .contact-card .btn {
    width: 100%;
  }

  .frontend-page .overview-grid {
    gap: 14px;
  }

  .frontend-page .overview-grid article {
    min-width: 0;
    flex-basis: 100%;
    min-height: 112px;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
  }

  .frontend-page .overview-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .frontend-page .overview-icon svg {
    width: 29px;
    height: 29px;
  }

  .frontend-page .overview-grid article strong {
    font-size: 18px;
  }
}
