/* ============================================================
   EasyShiksha Partner Portal — Design System
   Brand orange + near-black ink + growth green · Poppins + Inter
   ============================================================ */

:root {
  --ink: #101828;
  --ink-2: #1d2939;
  --ink-soft: #475467;
  --es-theme: #de9406;
  --es-theme-dark: #f1bb56;
  --es-theme-light: #fffdee;
  --theme-accent: #de9406;
  --theme-accent-soft: #e7f9f0;
  --bg: #ffffff;
  --bg-soft: #fffdee;
  --bg-soft-2: #ffebc4;
  --border: #e4e7ec;
  --border-strong: #cfd5de;
  --text: #101828;
  --text-muted: #667085;
  --text-on-ink: #f5f6f8;
  --es-text-dark: #1e1e1e;
  --danger: #d92d20;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card:
    0 1px 2px rgba(16, 24, 40, 0.06), 0 10px 28px -12px rgba(16, 24, 40, 0.18);
  --max-width: 1180px;

  --section-heading: clamp(20px, 1.636vw + 10.5766px, 42px) !important;
}

@font-face {
  font-display: swap;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
header,
nav,
main,
aside,
footer,
section,
article {
  display: block;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Roboto",
    -apple-system,
    sans-serif !important;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Roboto", "Inter", sans-serif !important;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

.mono,
.stat-figure,
.kpi-value,
.amount {
  font-family: "Roboto", monospace;
  font-feature-settings: "tnum";
}

p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--es-theme);
  color: var(--ink);
}
.btn-primary:hover {
  background: #eb9f28;
}

.btn-ink {
  background: var(--ink);
  color: var(--text-on-ink);
}
.btn-ink:hover {
  background: var(--ink-2);
}

.btn.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn.btn-ghost:hover {
  border-color: var(--ink);
}

.btn.btn-ghost-light {
  background: transparent;
  border-color: rgba(237, 241, 247, 0.35);
  color: var(--text-on-ink);
}
.btn.btn-ghost-light:hover {
  border-color: rgba(237, 241, 247, 0.7);
}

.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.hero-grid > .right .certification-box > p {
  color: #de9406;
  font-weight: bold;
  font-size: 16px;
  margin: 1.5em 0 1em;
}

/* ---------- Top nav (marketing) ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);

  padding: 20px 0;
}
.topnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--es-theme);
  flex-shrink: 0;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}
.brand-logo-plate {
  background: #fff;
  padding: 5px 9px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo-plate .brand-logo {
  height: 22px;
}
.brand-tag {
  font-size: 11px;
  font-weight: 600;
  color: #1e1e1e;
}
.sidebar .brand-tag,
.auth-side .brand-tag {
  color: var(--es-text-dark);
}
.brand small {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #de9406;
  letter-spacing: 0.02em;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-soft);
}
.navlinks a:hover {
  color: var(--ink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(26px, 2.5297vw + 11.43px, 60px) 0;
  background: var(--bg);
}
.hero-grid {
  display: flex;
  gap: clamp(20px, 1.636vw + 10.5766px, 42px);
  align-items: center;
}

.hero-grid > div {
  flex: 1 1 0;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}
.eyebrow-line .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-accent);
}
.hero h1 {
  font-size: clamp(26px, 2.5297vw + 11.43px, 60px);
  line-height: 1.06;
  max-width: 620px;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: #1e1e1e;
  max-width: 480px;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-cta > * {
  font-weight: bold;
}

.hero-actions > * {
  flex: 1 1 0;
}

.hero-actions > a {
  padding: 1em 1.25em;
}

.hero-trust {
  margin-top: 44px;
  display: flex;
  gap: 40px;
}
.trust-stat .num {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  color: var(--ink);
}
.trust-stat .label {
  font-size: 13px;
  color: #1e1e1e;
  margin-top: 2px;
}

/* Calculator card in hero */
.calc-card {
  background: #ffebc4;
  border-radius: var(--radius-lg);
  padding: clamp(16px, 9.15px + 1.19vw, 32px);
  color: #1e1e1e;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(242, 169, 59, 0.22),
    transparent 70%
  );
}
.calc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--es-theme);
  margin-bottom: 4px;
}
.calc-sub {
  font-size: 14px;
  color: var(--es-text-dark);
  margin-bottom: 26px;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--es-text-dark);
  margin-bottom: 10px;
}
.calc-field label .val {
  color: var(--es-theme);
  font-family: "Roboto", monospace;
  font-weight: 600;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #de9406;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--es-theme);
  border: 3px solid var(--ink);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--es-theme);
  border: 3px solid var(--ink);
  cursor: pointer;
}
.calc-divider {
  height: 1px;
  background: rgba(237, 241, 247, 0.14);
  margin: 24px 0;
}
.calc-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.calc-result .r-label {
  font-size: 14px;
  color: var(--es-text-dark);
}
.calc-result .r-value {
  font-family: "Roboto", monospace;
  font-size: clamp(16px, 9.15px + 1.19vw, 32px) !important;
  font-weight: 600;
  color: #1e1e1e;
}
.calc-tier {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 169, 59, 0.14);
  border: 1px solid rgba(242, 169, 59, 0.3);
  color: var(--es-theme);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

/* ---------- Section shell ---------- */
.section {
  padding: clamp(26px, 2.5297vw + 11.43px, 60px) 0;
}
.section-soft {
  background: var(--bg-soft);
}
.section-head {
  margin-bottom: clamp(20px, 1.636vw + 10.5766px, 42px);
}
.section-tag {
  color: var(--theme-accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  display: block;
}
.section h2 {
  font-size: var(--section-heading);
  line-height: 1.15;
}
.section-lede {
  margin-top: 16px;
  font-size: 16.5px;
  color: #1e1e1e;
  line-height: 1.65;
}

/* ---------- How it works ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.flow-step {
  background: var(--bg);
  padding: clamp(16px, 9.15px + 1.19vw, 32px) !important;
  position: relative;
}
.flow-num {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--theme-accent);
  border: 1px solid var(--theme-accent);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.flow-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.flow-step p {
  color: #1e1e1e;
  font-size: 14.5px;
  line-height: 1.6;
}
.flow-arrow {
  position: absolute;
  right: -13px;
  top: 40px;
  width: 26px;
  height: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  z-index: 2;
}

/* ---------- Roles split ---------- */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.role-card {
  border-radius: var(--radius-lg);
  padding: clamp(16px, 9.15px + 1.19vw, 32px) !important;
  border: 1px solid var(--border);
}
.role-card.you {
  background: var(--bg);
  border-color: var(--es-theme);
  border-width: 1.5px;
}
.role-card.us {
  background: #ffebc4;
  color: #1e1e1e;
}
.role-card .role-tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 18px;
}
.role-card.you .role-tag {
  background: #fcefd8;
  color: var(--es-theme-dark);
}
.role-card.us .role-tag {
  background: rgba(242, 169, 59, 0.16);
  color: var(--es-theme);
}
.role-card h3 {
  font-size: clamp(16px, 12.57px + 0.595vw, 24px) !important;
  margin-bottom: 6px;
}
.role-card.us h3 {
  color: #de9406;
}
.role-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.role-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.role-card.us .role-list {
  color: var(--es-text-dark);
}
.role-card.you .role-list {
  color: #1e1e1e;
}
.role-list .tick {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--theme-accent);
}
.role-card.us .role-list .tick {
  color: var(--es-theme);
}

/* ---------- Commission table ---------- */
.slab-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);

  max-width: 100%;
  overflow-x: auto;
}
.slab-table th {
  background: #ffebc4;
  color: #1e1e1e;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  padding: 16px 24px;
}
.slab-table td {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
}
.slab-table tr:nth-child(odd) td {
  background: var(--bg-soft);
}
.slab-table .tier-pct {
  font-family: "Roboto", monospace;
  font-weight: 600;
  color: var(--theme-accent);
  font-size: 18px;
}
.slab-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: #1e1e1e;
}

/* ---------- Footer CTA ---------- */
.cta-band {
  background: #ffebc4;
  padding: clamp(26px, 2.5297vw + 11.43px, 60px) 0;
  color: #1e1e1e;
  text-align: center;
}

.cta-band .footer-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band .footer-actions > button {
  padding: 1em 1.25em;
}

.cta-band h2 {
  color: #de9406;
  font-size: var(--section-heading);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.4em;
}
.cta-band p {
  color: var(--es-text-dark);
  font-size: 16px;
  margin: 1.25em 0;
}
.cta-band .hero-actions {
  justify-content: center;
  margin-top: 30px;

  flex-wrap: wrap;
}

.site-footer {
  padding: 1.5em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #fff;
  background: #1e1e1e;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer .foot-links {
  display: flex;
  gap: 24px;
}

/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}
.auth-side {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(30, 122, 108, 0.35),
    transparent 70%
  );
}
.auth-quote {
  font-family: "Roboto", sans-serif;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.35;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.auth-quote .accent {
  color: var(--es-theme);
}
.auth-metrics {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.auth-metrics .num {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  color: #fff;
}
.auth-metrics .label {
  font-size: 12.5px;
  color: var(--es-text-dark);
  margin-top: 4px;
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
}
.auth-box {
  width: 100%;
  max-width: 400px;
}
.auth-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 34px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e1e1e;
  border-radius: 100px;
  border: none;
  background: transparent;
}
.auth-tab.active {
  background: var(--ink);
  color: #fff;
}

.auth-panel {
  display: none;
}
.auth-panel.active {
  display: block;
}

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px var(--theme-accent-soft);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-hint {
  font-size: 12.5px;
  color: #1e1e1e;
  margin-top: 6px;
}

.form-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  margin: 4px 0 22px;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #1e1e1e;
  margin: 14px 0 22px;
}
.checkbox-row input {
  margin-top: 3px;
}

.approval-note {
  margin-top: 18px;
  padding: 13px 16px;
  background: var(--theme-accent-soft);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: #1c5c50;
  line-height: 1.5;
}

.auth-switch-back {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  z-index: 2;
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dash-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand {
  color: #fff;
  padding: 0 8px;
  margin-bottom: 34px;
}
.sidebar .brand small {
  color: var(--es-text-dark);
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--es-text-dark);
}
.side-link svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.side-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.side-link.active {
  background: rgba(255, 106, 26, 0.14);
  color: var(--es-theme);
}
.side-link.nav-locked {
  opacity: 0.4;
  pointer-events: none;
}
.side-link.active svg {
  opacity: 1;
}
.side-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 12px;
}
.side-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--es-text-dark);
  padding: 0 12px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--es-theme);
}
.status-dot.live {
  background: #4caf7d;
}

.dash-main {
  background: var(--bg-soft);
  min-height: 100vh;
}
.dash-topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-topbar h1 {
  font-size: 21px;
}
.dash-topbar .sub {
  color: #1e1e1e;
  font-size: 13.5px;
  margin-top: 3px;
}
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill-pending {
  background: #fcefd8;
  color: var(--es-theme-dark);
}
.pill-active {
  background: var(--theme-accent-soft);
  color: var(--theme-accent);
}
.pill-paid {
  background: var(--theme-accent-soft);
  color: var(--theme-accent);
}
.pill-processing {
  background: #fcefd8;
  color: var(--es-theme-dark);
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--es-theme);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14.5px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dash-body {
  padding: 32px 36px 56px;
}

.approval-banner {
  background: #fcefd8;
  border: 1px solid #f0d19a;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
  font-size: 14px;
  color: #6b4c0f;
}
.approval-banner strong {
  color: var(--es-theme-dark);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.kpi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.kpi-label {
  font-size: 13px;
  color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kpi-value {
  font-size: 27px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.kpi-delta {
  font-size: 12.5px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kpi-delta.up {
  color: var(--theme-accent);
}
.kpi-delta.flat {
  color: #1e1e1e;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-head h3 {
  font-size: 16.5px;
}
.card-head .link {
  font-size: 13px;
  color: var(--theme-accent);
  font-weight: 600;
}

/* Tier progress */
.tier-track {
  position: relative;
  height: 8px;
  background: var(--bg-soft-2);
  border-radius: 100px;
  margin: 26px 0 10px;
}
.tier-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--theme-accent), var(--es-theme));
  border-radius: 100px;
}
.tier-marks {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #1e1e1e;
}
.tier-marks span.reached {
  color: var(--theme-accent);
  font-weight: 600;
}
.tier-current {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.tier-current .big {
  font-family: "Roboto", monospace;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.data-table th {
  text-align: left;
  color: #1e1e1e;
  font-weight: 500;
  font-size: 12px;
  padding: 0 14px 12px;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td {
  border-bottom: none;
}
.student-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Bar chart */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-top: 8px;
}
.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}
.bar-col .bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--bg-soft-2);
  position: relative;
}
.bar-col .bar.filled {
  background: var(--theme-accent);
}
.bar-col .bar.current {
  background: var(--es-theme);
}
.bar-col .m {
  font-size: 11px;
  color: #1e1e1e;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.resource-item .ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--theme-accent-soft);
  color: var(--theme-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-item .t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.resource-item .s {
  font-size: 12px;
  color: #1e1e1e;
}

/* Referral code box */
.code-box {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--text-on-ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.code-box .lbl {
  font-size: 12.5px;
  color: var(--es-text-dark);
  margin-bottom: 6px;
}
.code-box .code {
  font-family: "Roboto", monospace;
  font-size: 19px;
  letter-spacing: 0.03em;
  color: var(--es-theme);
}

/* ============================================================
   NEW BRAND COMPONENTS — promo bar, stat strip, social proof,
   trust badges, phone/OTP verification, step wizard
   ============================================================ */

/* Promo announcement bar */
.promo-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
}
.promo-bar strong {
  color: var(--es-theme);
  font-weight: 700;
}
.promo-bar .fire {
  margin-right: 4px;
}
.nav-cta > * {
  font-weight: bold;
}
/* Hero badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffebc4;
  color: #de9406;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px 7px 8px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge .chip {
  background: var(--es-theme);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Gradient hero backdrop */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #de94063d, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}

.nav-cta > .btn {
  padding: 0.5em 1.25em;
  font-weight: bold;
}

/* Buttons — pill CTAs for a friendlier, energetic feel */
.btn.btn-primary {
  background: linear-gradient(135deg, var(--es-theme), #ff8a3d);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 20px -8px rgba(255, 106, 26, 0.55);
  border: none;
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, #f45f12, var(--es-theme));
  transform: translateY(-1px);
}
.btn.btn-ghost {
  border-radius: 100px;
}
.btn.btn-ink {
  border-radius: 100px;
}
.btn.btn-ghost-light {
  border-radius: 100px;
}

/* Stat strip (mirrors easyshiksha.com's homepage counters) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(20px, 1.636vw + 10.5766px, 42px);
  background: var(--border);
  gap: 1px;
}
.stat-strip .stat-cell {
  background: var(--bg);
  padding: clamp(12px, 6.8576px + 0.8928vw, 24px);
  text-align: center;
}
.stat-strip .stat-cell .n {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 12.57px + 0.595vw, 24px) !important;
  color: var(--ink);
}
.stat-strip .stat-cell .l {
  font-size: 12.5px;
  color: #1e1e1e;
  margin-top: 4px;
}

/* Social proof avatar row */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.avatar-stack .av:first-child {
  margin-left: 0;
}
.social-proof .sp-text {
  font-size: 13.5px;
  color: #1e1e1e;
}
.social-proof .sp-text strong {
  color: var(--ink);
}

/* Trust badges strip (footer) */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-badge .dot2 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #de9406;
}

/* ---------- Phone input group ---------- */
.phone-group {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
}
.phone-group select {
  padding: 12px 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #fff;
  font-family: inherit;
}
.phone-verify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}
.phone-verify-row .field {
  margin-bottom: 0;
}

.btn-verify {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
}
.btn-verify:hover {
  background: var(--ink-2);
}
.btn-verify:disabled {
  background: var(--border-strong);
  color: #1e1e1e;
  cursor: not-allowed;
}
.btn-verify.verified {
  background: var(--theme-accent);
}

.verify-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--theme-accent);
  margin-top: 8px;
}

/* ---------- OTP boxes ---------- */
.otp-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 4px;
}
.otp-block .otp-sub {
  font-size: 13px;
  color: #1e1e1e;
  margin-bottom: 14px;
}
.otp-block .otp-sub strong {
  color: var(--ink);
}
.otp-inputs {
  display: flex;
  gap: 10px;
}
.otp-inputs input {
  width: 52px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: "Roboto", monospace;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.otp-inputs input:focus {
  outline: none;
  border-color: var(--es-theme);
  box-shadow: 0 0 0 3px var(--es-theme-light);
}
.otp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: #1e1e1e;
}
.otp-meta .resend {
  color: var(--es-theme-dark);
  font-weight: 600;
}
.otp-meta .resend.disabled {
  color: #1e1e1e;
  font-weight: 500;
  pointer-events: none;
}

/* ---------- Step wizard ---------- */
.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.step-progress .seg {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: var(--border);
}
.step-progress .seg.done {
  background: var(--es-theme);
}
.step-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--es-theme-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}

/* Type toggle (Individual / Business) */
.type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.type-option {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  text-align: left;
  background: #fff;
}
.type-option .t-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg-soft-2);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.type-option .t-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.type-option .t-desc {
  font-size: 12px;
  color: #1e1e1e;
  margin-top: 2px;
}
.type-option.selected {
  border-color: var(--es-theme);
  background: var(--es-theme-light);
  box-shadow: 0 0 0 1px var(--es-theme);
}
.type-option.selected .t-icon {
  background: var(--es-theme);
  color: #fff;
}

.field-collapsible {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.field-collapsible.open {
  max-height: 160px;
}

/* ---------- Pending-state dashboard ---------- */
.pending-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 20px;
  text-align: center;
}
.pending-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--es-theme-light);
  color: var(--es-theme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.pending-shell h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.pending-shell p {
  color: #1e1e1e;
  font-size: 15px;
  line-height: 1.6;
}
.pending-steps {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 32px 0;
}
.pending-steps .ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1e1e1e;
  width: 100px;
}
.pending-steps .ps .circ {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-strong);
  font-size: 13px;
  font-weight: 700;
  color: #1e1e1e;
}

.hero-grid p.motto {
  font-size: 12px;
  font-weight: bold;
  margin: 1e, 0;
  margin: 2em 0 1em;
  color: #0c9f0c;
}
.pending-steps .ps.done .circ {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  color: #fff;
}
.pending-steps .ps.current .circ {
  background: var(--es-theme);
  border-color: var(--es-theme);
  color: #fff;
}

.profile-card {
  text-align: left;
  margin-top: 12px;
}

/* ============================================================
   AUTH MODAL — popup login/signup, launched from the landing page
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.6);
  backdrop-filter: blur(3px);
  z-index: 100;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 32px 32px 28px;
  position: relative;
  box-shadow: 0 24px 60px -16px rgba(16, 24, 40, 0.35);
  animation: modalPop 0.22s ease;
  margin: auto 0;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft-2);
  color: var(--ink-soft);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-close:hover {
  background: var(--border-strong);
  color: var(--ink);
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.modal-brand .mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.modal-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1e1e1e;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: inherit;
}
.modal-tab.active {
  background: var(--ink);
  color: #fff;
}

.modal-panel {
  display: none;
}
.modal-panel.active {
  display: block;
}

.modal-panel h2 {
  font-size: 21px;
  margin-bottom: 5px;
}
.modal-sub {
  color: #1e1e1e;
  font-size: 13.5px;
  margin-bottom: 22px;
}

.modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  color: #1e1e1e;
}
.modal-trust .dot2 {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--theme-accent);
}

/* ---------- Who partners with us ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(12px, 6.8576px + 0.8928vw, 24px);
  background: var(--bg);
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.who-card:hover {
  border-color: var(--es-theme);
  transform: translateY(-2px);
}
.who-icon > svg {
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-card h3 {
  font-size: clamp(12px, calc(12px + (100vw - 992px) * 0.00215), 14px);
}
.who-card p {
  font-size: 13.5px;
  color: #1e1e1e;
  line-height: 1.55;
}
.who-earn {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--es-theme-dark);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  background: none;
  border: none;
  margin-top: auto;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(12px, 6.8576px + 0.8928vw, 24px) !important;
}
.testi-quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}
.testi-quote::before {
  content: "“";
  color: var(--es-theme);
  font-weight: 700;
}
.testi-quote::after {
  content: "”";
  color: var(--es-theme);
  font-weight: 700;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.testi-role {
  font-size: 12px;
  color: #1e1e1e;
}
.testi-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--theme-accent);
  background: var(--theme-accent-soft);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ---------- Benefit strip ---------- */
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(16px, 12.57px + 0.595vw, 24px) !important;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-item .b-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--es-theme-light);
  color: var(--es-theme-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item .b-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.benefit-item .b-sub {
  font-size: 12px;
  color: #1e1e1e;
  margin-top: 2px;
}
section#who,
section#how,
.lifetime-banner,
section#commission {
  scroll-margin-top: 80px;
}

.images-container-footer > img {
  max-width: 80px;
}

/* ---------- Lifetime earning banner ---------- */
.lifetime-banner {
  background: #ffebc4;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.5297vw + 11.43px, 60px) 0;
}

.lifetime-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.lifetime-icon {
  width: clamp(26px, 2.5297vw + 11.43px, 60px) !important;
  height: clamp(26px, 2.5297vw + 11.43px, 60px) !important;
  padding: 5px;
  border-radius: 16px;
  background: #de940645;
  color: #de9406;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-list .faq-item:last-child {
  border-bottom: none;
}

.cta-section {
  margin: 16px auto;
  width: fit-content;
}

.lifetime-tag {
  font-size: 12.5px;
  color: var(--theme-accent);

  background: linear-gradient(
    110deg,
    var(--theme-accent) 0%,
    var(--theme-accent) 40%,
    #e4bf7c 50%,
    var(--theme-accent) 60%,
    var(--theme-accent) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmertext 3s linear infinite;

  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  display: block;
}

@keyframes shimmertext {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.lifetime-text h2 {
  color: #de9406;
  font-size: var(--section-heading);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: bold;
}
.lifetime-text p {
  color: var(--es-text-dark);
  font-size: 14.5px;
  line-height: 1.65;
}
.lifetime-example {
  background: #de940645;
  border: 1px solid #de9406;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  min-width: 270px;
}
.lifetime-example .ex-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lifetime-example .ex-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--es-theme);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lifetime-example .ex-desc {
  font-size: 13px;
  color: var(--es-text-dark);
}
.lifetime-example .ex-amt {
  font-family: "Roboto", monospace;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e1e1e;
}
.lifetime-example .ex-arrow {
  font-size: 11px;
  color: var(--es-text-dark);
  text-align: center;
  margin: 10px 0;
  font-style: italic;
}

/* ---------- Yes/No toggle (GST registered) ---------- */
.yesno-toggle {
  display: flex;
  gap: 10px;
}
.yn-btn {
  flex: 1;
  padding: 11px 0;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.yn-btn.selected {
  border-color: var(--es-theme);
  background: var(--es-theme-light);
  color: var(--es-theme-dark);
}

/* ---------- Field section divider (e.g. "Bank details") ---------- */
.field-divider {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1e1e1e;
  margin: 22px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* ---------- File upload input ---------- */
.field input[type="file"] {
  padding: 9px 12px;
  font-size: 13px;
  color: #1e1e1e;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  padding: 7px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button:hover {
  background: var(--ink-2);
}

/* ============================================================
   REFERRALS PAGE
   ============================================================ */
.referral-tool-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  color: var(--text-on-ink);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.referral-tool-col .lbl {
  font-size: 12px;
  color: var(--es-text-dark);
  margin-bottom: 8px;
}
.copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.copy-row .val {
  flex: 1;
  font-family: "Roboto", monospace;
  font-size: 13.5px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-row .code-val {
  color: var(--es-theme);
  font-weight: 600;
  font-size: 16px;
}
.copy-btn {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}
.copy-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.share-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--es-text-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
}
.share-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-input-wrap svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e1e1e;
}
.search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.search-input:focus {
  outline: none;
  border-color: var(--es-theme);
}
.filter-select {
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
}
.filter-count {
  font-size: 13px;
  color: #1e1e1e;
  white-space: nowrap;
}

/* Advanced filter panel — multi-field search */
.filter-panel {
  margin-bottom: 20px;
}
.filter-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.filter-panel-grid .field {
  margin-bottom: 0;
}
.filter-panel-grid label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 6px;
}
.filter-panel-grid input,
.filter-panel-grid select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.filter-panel-grid input:focus,
.filter-panel-grid select:focus {
  outline: none;
  border-color: var(--es-theme);
}
.filter-panel-grid .date-range {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-panel-grid .date-range input {
  flex: 1;
}
.filter-panel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.student-name-link {
  font-weight: 600;
  color: var(--ink);
}
.student-name-link:hover {
  color: var(--es-theme-dark);
  text-decoration: underline;
}
.pill-signup {
  background: #eaf0fe;
  color: #3e5fe0;
}

/* ============================================================
   COMMISSIONS PAGE
   ============================================================ */
.tier-hero {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  color: var(--text-on-ink);
  margin-bottom: 24px;
}
.tier-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
.tier-hero-rate {
  font-family: "Roboto", monospace;
  font-size: 42px;
  font-weight: 600;
  color: var(--es-theme);
  line-height: 1;
}
.tier-hero-label {
  font-size: 13px;
  color: var(--es-text-dark);
  margin-top: 6px;
}
.tier-hero-next {
  text-align: right;
}
.tier-hero-next .n-val {
  font-family: "Roboto", monospace;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.tier-hero-next .n-lbl {
  font-size: 12.5px;
  color: var(--es-text-dark);
  margin-top: 4px;
}
.tier-hero .tier-track {
  background: rgba(255, 255, 255, 0.12);
}
.tier-hero .tier-marks span {
  color: var(--es-text-dark);
}
.tier-hero .tier-marks span.reached {
  color: var(--es-theme);
}

/* Category breakdown bars */
.cat-row {
  margin-bottom: 16px;
}
.cat-row:last-child {
  margin-bottom: 0;
}
.cat-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 7px;
}
.cat-row-top .c-name {
  font-weight: 600;
  color: var(--ink);
}
.cat-row-top .c-amt {
  font-family: "Roboto", monospace;
  color: var(--ink-soft);
}
.cat-bar-track {
  height: 8px;
  background: var(--bg-soft-2);
  border-radius: 100px;
  overflow: hidden;
}
.cat-bar-fill {
  height: 100%;
  border-radius: 100px;
}

/* Slab reference table */
.slab-ref-table {
  width: 100%;
  font-size: 13.5px;
}
.slab-ref-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.slab-ref-table tr:last-child td {
  border-bottom: none;
}
.slab-ref-table .sr-range {
  color: #1e1e1e;
}
.slab-ref-table .sr-pct {
  font-family: "Roboto", monospace;
  font-weight: 600;
  text-align: right;
}
.slab-ref-table tr.current-tier td {
  color: var(--ink);
  font-weight: 700;
}
.slab-ref-table tr.current-tier .sr-pct {
  color: var(--es-theme-dark);
}
.current-tier-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--es-theme-dark);
  background: var(--es-theme-light);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 8px;
  text-transform: uppercase;
}

/* ============================================================
   PAYOUTS PAGE
   ============================================================ */
.payout-method-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  color: var(--text-on-ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.payout-method-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.payout-method-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 106, 26, 0.16);
  color: var(--es-theme);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payout-method-info .pm-label {
  font-size: 12px;
  color: var(--es-text-dark);
  margin-bottom: 4px;
}
.payout-method-info .pm-value {
  font-family: "Roboto", monospace;
  font-size: 16px;
  color: #fff;
}
.payout-method-info .pm-sub {
  font-size: 12.5px;
  color: var(--es-text-dark);
  margin-top: 3px;
}

.next-payout-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--es-theme-light);
  border: 1px solid #f0d19a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: #6b4c0f;
}
.next-payout-strip strong {
  color: var(--es-theme-dark);
}

/* ============================================================
   MARKETING RESOURCES PAGE
   ============================================================ */
.res-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.res-tab {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.res-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.res-tab:hover:not(.active) {
  border-color: var(--ink);
  color: var(--ink);
}

.res-section {
  margin-bottom: 30px;
}
.res-section-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.res-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.res-card .res-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.res-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.res-card p {
  font-size: 12.5px;
  color: #1e1e1e;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}
.res-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: #1e1e1e;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.res-card-meta .badge {
  background: var(--bg-soft-2);
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.res-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 0;
  border-radius: var(--radius-sm);
  background: var(--bg-soft-2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border: none;
}
.res-download-btn:hover {
  background: var(--ink);
  color: #fff;
}
.business-only-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--es-theme-dark);
  background: var(--es-theme-light);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Message templates */
.template-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.template-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.template-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.template-card-head h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.template-text {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  white-space: pre-wrap;
}

/* ============================================================
   PROFILE & SETTINGS PAGE
   ============================================================ */
.profile-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.profile-header .p-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--es-theme);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.profile-header h2 {
  font-size: 22px;
}
.profile-header .p-sub {
  font-size: 13.5px;
  color: #1e1e1e;
  margin-top: 3px;
}

.settings-section {
  margin-bottom: 22px;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.toggle-switch .track {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 100px;
  transition: background 0.2s;
}
.toggle-switch input:checked ~ .track {
  background: var(--es-theme);
}
.toggle-switch .thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.toggle-switch input:checked ~ .thumb {
  transform: translateX(18px);
}

.notif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.notif-row:last-child {
  border-bottom: none;
}
.notif-row .n-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.notif-row .n-desc {
  font-size: 12.5px;
  color: #1e1e1e;
  margin-top: 2px;
}
.notif-channels {
  display: flex;
  gap: 22px;
  align-items: center;
}
.notif-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1e1e1e;
}

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.account-row:last-child {
  border-bottom: none;
}
.account-row .a-label {
  font-size: 13px;
  color: #1e1e1e;
}
.account-row .a-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

/* Pills — extra statuses for the referrals table */
.pill-lead {
  background: var(--bg-soft-2);
  color: var(--ink-soft);
}
.pill-refunded {
  background: #fde8e6;
  color: var(--danger);
}
.pill-failed {
  background: #fde8e6;
  color: var(--danger);
}

.repeat-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--theme-accent);
  background: var(--theme-accent-soft);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 8px;
}
.view-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--es-theme-dark);
  white-space: nowrap;
}
.view-link:hover {
  text-decoration: underline;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
.table-wrap * {
  white-space: nowrap;
}

.table-wrap .data-table {
  min-width: 720px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pagination .p-info {
  font-size: 13px;
  color: #1e1e1e;
}
.pagination .p-controls {
  display: flex;
  gap: 8px;
}
.p-btn {
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.p-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.p-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.p-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ============================================================
   STUDENT DETAIL PAGE
   ============================================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 18px;
}
.back-link:hover {
  color: var(--ink);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.detail-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--es-theme);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.detail-header h2 {
  font-size: 21px;
}
.detail-header .sub2 {
  font-size: 13.5px;
  color: #1e1e1e;
  margin-top: 2px;
}

.detail-section-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--es-theme-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
}
.detail-cell {
  background: var(--es-theme-light);
  padding: 14px 16px;
}
.detail-cell.span2 {
  grid-column: span 2;
}
.detail-cell.span4 {
  grid-column: span 4;
}
.detail-cell .d-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--es-theme-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.detail-cell .d-value {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}
.detail-cell .d-value.empty {
  color: #1e1e1e;
  font-weight: 400;
}
.detail-cell .d-value a {
  color: var(--es-theme-dark);
}
.verified-tick {
  display: inline-flex;
  color: var(--theme-accent);
  margin-left: 4px;
  vertical-align: middle;
}

.purchase-section {
  margin-bottom: 24px;
}
.purchase-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.purchase-section-head h3 {
  font-size: 16px;
}
.purchase-section-head .sec-total {
  font-family: "Roboto", monospace;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--theme-accent);
}
.data-table tfoot td {
  border-top: 1.5px solid var(--border-strong);
  font-weight: 700;
  color: var(--ink);
  padding-top: 14px;
}
.grand-total-band {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-on-ink);
  margin-top: 8px;
}
.grand-total-band .gt-label {
  font-size: 13.5px;
  color: var(--es-text-dark);
}
.grand-total-band .gt-value {
  font-family: "Roboto", monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--es-theme);
}

.gap-2 {
  gap: 0.5rem !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.d-flex {
  display: flex !important;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.who-card .who-icon {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-q {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-a {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-item .b-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--marigold-light);
  color: var(--marigold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item .b-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.benefit-item .b-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.b-icon .b-title {
  display: none;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container.hero-grid {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .navlinks {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow {
    display: none;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-side {
    display: none;
  }
  .dash-shell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .type-toggle {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .benefit-strip {
    grid-template-columns: 1fr 1fr;
  }
  .lifetime-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .lifetime-example {
    min-width: 0;
  }
  .otp-inputs input {
    width: 44px;
    height: 50px;
    font-size: 19px;
  }
  .pending-steps {
    gap: 14px;
  }
  .modal-box {
    padding: 26px 20px 22px;
  }
  .otp-inputs input {
    width: 15%;
  }
  .referral-tool-card {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .res-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-cell.span2 {
    grid-column: span 2;
  }
  .detail-cell.span4 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-sub,
  .lifetime-text p,
  .section-lede,
  .flow-step p,
  .slab-table td,
  .slab-table th,
  .role-list li {
    font-size: 14px;
  }

  .slab-note {
    margin-top: 1em;
    font-size: 9px;
    color: #1e1e1e;
    font-style: italic;
  }

  .who-card .who-icon,
  .flow-num {
    margin-bottom: 5px;
  }

  .benefit-strip {
    gap: 5px;
  }

  .who-icon > svg {
    width: 26px;
    height: 26px;
    padding: 5px;
  }

  .promo-bar {
    padding: 10px 5px;
    font-size: 12.5px;
  }

  .lifetime-icon {
    display: none;
  }

  .benefit-item {
    flex-direction: column;
  }

  .benefit-item .b-icon {
    width: 38px;
    height: 38px;
  }

  .benefit-item .b-icon {
    width: 26px;
    height: 26px;
    padding: 5px;
  }

  .who-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 576px) {
  .cta-band .footer-actions > button {
    flex: 1 1 0;
  }

  .topnav .nav-cta {
    display: none;
  }

  .justify-xs-center {
    justify-content: center !important;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/* ---------- Responsive ---------- */
