* , *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #1B3A8F;
  --blue-dark: #122870;
  --blue-light: #EEF3FF;
  --blue-mid: #BCC9F0;
  --green: #10B981;
  --green-dark: #059669;
  --green-light: #ECFDF5;
  --slate: #0F1F3D;
  --slate-mid: #4B5E8A;
  --slate-light: #94A3B8;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #BCC9F0;
  --orange: #F59E0B;
  --orange-light: #FFFBEB;
  --red: #EF4444;
  --radius: 12px;
  --shadow: 0 2px 14px rgba(15, 31, 61, 0.07);
  --shadow-lg: 0 10px 40px rgba(15, 31, 61, 0.13);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea {
  font: inherit;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
/* Shared buttons */
.btn, .btn-primary, .btn-secondary, .btn-demo, .price-btn, .demo-btn, .form-submit, .contact-wa-btn {
  transition: all .15s ease;
}
.btn {
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
}
.btn-blue:hover {
  background: var(--blue-dark);
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--slate-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-demo, .price-btn.s {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-mid);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
}
.btn-demo:hover,
.price-btn.s:hover {
  background: var(--blue-light);
}
.btn-primary, .form-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.btn-primary:hover,
.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--slate-mid);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.price-btn.p {
  background: var(--blue);
  color: #fff;
}
.price-btn.p:hover {
  background: var(--blue-dark);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark,
.sb-logo-mark,
.mock-av,
.row-av,
.wa-icon,
.wa-msg-icon,
.demo-icon,
.cp-check {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark,
.sb-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 9px;
}
.logo-mark svg,
.sb-logo-mark svg {
  width: 19px;
  height: 19px;
}
.logo-name,
.sb-logo-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--slate);
  letter-spacing: -0.02em;
}
.logo-name .dot,
.sb-logo-name .dot {
  color: var(--green);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 64px;
/* Language switch */
.lang-switch a.lang {
  color: var(--slate-mid);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
}
.lang-switch a.lang.active {
  color: var(--blue);
  font-weight: 800;
}
/* Dropdown language selector */
.lang-dropdown{position:relative}
.lang-toggle{background:transparent;border:0;cursor:pointer;padding:6px 10px;border-radius:6px;font-weight:700;color:var(--slate-mid);display:inline-flex;align-items:center;gap:8px}
.lang-toggle .chev{font-size:11px;color:var(--slate-light)}
.lang-list{position:absolute;right:0;top:40px;background:var(--surface);border:1px solid var(--border);box-shadow:var(--shadow);list-style:none;padding:6px;border-radius:8px;min-width:120px}
.lang-list li{padding:6px}
.lang-list a{display:flex;gap:8px;align-items:center;color:var(--slate);text-decoration:none;font-weight:600}
.lang-list a:hover{background:var(--bg);border-radius:6px}
.flag{font-size:16px}
[x-cloak]{display:none}
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-mid);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero {
  padding: 80px 5vw 72px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--slate);
  margin-bottom: 18px;
}
h1 .blue {
  color: var(--blue);
}
h1 .green {
  color: var(--green);
}
.hero-sub,
.section-sub,
.target-desc,
.prob-desc,
.feat-desc,
.demo-desc,
.footer-desc,
.wa-msg-text,
.modal-footer,
.form-sub,
.form-success-text {
  color: var(--slate-mid);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-wa,
.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
}
.hero-wa {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  width: fit-content;
}
.hero-wa:hover {
  background: #D7EED8;
}
.wa-icon,
.wa-msg-icon,
.cp-check {
  width: 30px;
  height: 30px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}
.wa-text {
  font-size: 13.5px;
  font-weight: 600;
}
.wa-subtext {
  font-size: 11.5px;
  color: #4CAF50;
  margin-top: 1px;
}
.mockup-wrap,
.mockup,
.mock-bar,
.mock-body,
.scene,
.scene.active,
.mock-kpis,
.mock-row,
.bull-card,
.wa-msg,
.pay-row,
.progress-step,
.scene-dots,
.float-notif {
  position: relative;
}
.mockup-wrap {
  position: relative;
}
.mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin: 0 auto;
}
.mock-bar {
  background: var(--blue);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-dots {
  display: flex;
  gap: 4px;
}
.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mock-title {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.mock-badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
}
.mock-body {
  padding: 14px 16px;
  min-height: 280px;
}
.scene {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn .4s ease;
}
.scene.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.scene-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 4px;
}
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}
.mock-kpi {
  background: var(--blue-light);
  border-radius: 8px;
  padding: 8px 10px;
}
.mock-kpi-val {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
}
.mock-kpi-lbl {
  font-size: 10px;
  color: var(--slate-light);
  margin-top: 2px;
}
.mock-row,
.pay-row,
.progress-step,
.row,
.notif-item,
.toggle-row,
.form-row,
.cp,
.footer-bottom {
  display: flex;
}
.mock-row,
.pay-row,
.row,
.notif-item,
.toggle-row {
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.mock-row.hi,
.row.hl {
  background: var(--green-light);
  border-color: #A7F3D0;
}
.mock-row.hi {
  animation: rowPop .5s ease;
}
@keyframes rowPop {
  from { transform: scale(.97); opacity: .5; }
  to { transform: scale(1); opacity: 1; }
}
.mock-av,
.row-av,
.pay-row .mock-av,
.td-student div:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-info,
.row-main,
.wa-msg-body,
.cp-body,
.demo-body,
.form-group,
.blc-top,
.blc-stats,
.form-wrap,
.modal-box {
  flex: 1;
}
.mock-name,
.row-name,
.blc-name,
.card-title,
.faq-q,
.modal-title,
.form-title,
.demo-title,
.today-lbl,
.tb-title,
.settings-card h3,
.price-name,
.blc-name {
  font-family: 'Nunito', sans-serif;
}
.mock-name,
.row-name,
.blc-name,
.card-title,
.faq-q,
.modal-title,
.form-title,
.demo-title,
.today-lbl,
.tb-title,
.settings-card h3,
.price-name {
  color: var(--slate);
}
.mock-name,
.blc-name,
.price-name,
.card-title,
.faq-q,
.modal-title,
.form-title,
.demo-title,
.today-lbl,
.tb-title,
.settings-card h3 {
  font-size: 13px;
  font-weight: 800;
}
.mock-sub,
.row-sub,
.today-info,
.form-label,
.data-table td,
.data-table th,
.label,
.faq-a-inner,
.cp-desc,
.footer-col a,
.form-note,
.form-success-text,
.footer-bottom {
  font-size: 13.5px;
}
.mock-sub,
.row-sub,
.today-info,
.cp-desc,
.footer-desc,
.form-sub,
.faq-a-inner {
  color: var(--slate-mid);
}
.mock-tag,
.tag,
.blc-btn,
.price-btn,
.sb-section-label,
.stats .stat-lbl,
.form-input,
.data-table th,
.data-table td,
.stat-num,
.kpi-num,
.bull-avg {
  font-weight: 700;
}
.mock-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.tg { background: var(--green-light); color: var(--green-dark); }
.tb { background: var(--blue-light); color: var(--blue); }
.tr { background: #FEE2E2; color: #B91C1C; }
.to { background: #FFFBEB; color: #92400E; }
.bull-card {
  background: var(--blue);
  border-radius: 10px;
  overflow: hidden;
}
.bull-head {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bull-head-name {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.bull-avg {
  background: var(--green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 6px;
}
.bull-body {
  background: var(--surface);
  padding: 10px 14px;
}
.bull-note-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--bg);
  align-items: center;
  font-size: 11.5px;
}
.bull-note-row:last-child {
  border-bottom: none;
}
.bull-mat {
  color: var(--slate);
  font-weight: 500;
}
.bull-coef {
  color: var(--slate-light);
  font-size: 10.5px;
}
.bull-note {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.bull-footer {
  padding: 8px 14px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.bull-footer-text {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}
.bull-footer-anim,
.demo-cred code {
  border-radius: 50%;
}
.bull-footer-anim {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.7);
  animation: ping 1s infinite;
}
@keyframes ping {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .5; }
}
.wa-msg {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.wa-msg-icon {
  width: 26px;
  height: 26px;
  font-size: 13px;
  flex-shrink: 0;
}
.wa-msg-title {
  font-size: 12px;
  font-weight: 700;
  color: #1B5E20;
}
.wa-msg-text {
  font-size: 11.5px;
  color: #2E7D32;
  line-height: 1.55;
  margin-top: 2px;
}
.wa-msg-time {
  font-size: 10px;
  color: #4CAF50;
  margin-top: 4px;
  text-align: right;
}
.pay-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.pay-row.late {
  background: #FEF2F2;
  border-color: #FECACA;
}
.pay-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--slate);
  margin-left: auto;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.progress-step.done {
  background: var(--green-light);
  border-color: #A7F3D0;
}
.ps-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.progress-step.done .ps-icon {
  background: var(--green);
  color: #fff;
}
.ps-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  flex: 1;
}
.ps-check {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}
.scene-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 10px 0 2px;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all .3s;
}
.sdot.on {
  background: var(--blue);
  width: 16px;
  border-radius: 3px;
}
.float-notif {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  width: 220px;
  animation: floatIn .5s ease 1s both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ticker {
  overflow: hidden;
  background: var(--blue);
  padding: 9px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.ticker-item strong {
  color: #fff;
}
.ticker-sep {
  color: rgba(255,255,255,.25);
  padding: 0 4px;
}
.stats {
  background: var(--slate);
  padding: 52px 5vw;
}
.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num em {
  color: var(--green);
  font-style: normal;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  line-height: 1.5;
}
.section {
  padding: 88px 5vw;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.s-alt {
  background: var(--blue-light);
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--slate);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  max-width: 520px;
  line-height: 1.7;
}
.target-grid,
.prob-grid,
.feat-grid,
.price-grid,
.bull-level-cards,
.settings-grid {
  display: grid;
  gap: 20px;
}
.target-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}
.prob-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}
.feat-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
.price-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
.bull-level-cards {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 14px;
}
.settings-grid {
  grid-template-columns: 1fr 1fr;
}
.target-card,
.prob-card,
.feat-card,
.price-card,
.bull-level-card,
.settings-card,
.card,
.demo-card,
.form-wrap,
.modal-box {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px;
}
.target-card:hover {
  border-color: var(--blue);
}
.target-icon,
.prob-icon,
.feat-icon,
.blc-icon,
.demo-icon {
  font-size: 36px;
}
.target-title,
.prob-title,
.feat-title,
.blc-name,
.demo-title,
.card-title,
.price-name,
.settings-card h3,
.modal-title,
.form-title,
.tb-title,
.stat-num,
.kpi-num {
  font-family: 'Nunito', sans-serif;
}
.target-title,
.prob-title,
.feat-title,
.blc-name,
.demo-title,
.card-title,
.price-name,
.settings-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--slate);
  margin-bottom: 8px;
}
.target-desc,
.prob-desc,
.feat-desc,
.demo-desc,
.footer-desc,
.wa-msg-text,
.form-sub,
.faq-a-inner,
.cta-sub,
.modal-footer,
.form-success-text {
  font-size: 14px;
  line-height: 1.65;
}
.target-list,
.price-items,
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.target-item,
.price-item,
.footer-col a,
.footer-bottom span {
  font-size: 13.5px;
}
.target-item::before,
.price-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  margin-right: 8px;
}
.target-item,
.price-item {
  color: var(--slate-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.prob-card {
  display: flex;
  gap: 14px;
  padding: 22px;
}
.prob-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FEF2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.prob-desc {
  margin-top: 5px;
}
.prob-cost {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 4px;
  padding: 3px 10px;
}
.feat-card,
.price-card,
.bull-level-card,
.settings-card,
.card,
.demo-card,
.form-wrap,
.modal-box {
  box-shadow: var(--shadow);
}
.feat-icon,
.blc-icon,
.demo-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feat-desc,
.target-desc,
.prob-desc {
  margin-bottom: 16px;
}
.price-card {
  padding: 28px;
  position: relative;
}
.price-card.feat {
  background: var(--surface);
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(27, 58, 143, .12);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-light);
}
.price-capacity {
  font-size: 13px;
  color: var(--slate-light);
  margin-bottom: 16px;
}
.price-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.price-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.price-btn {
  display: block;
  text-align: center;
  border-radius: 9px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}
.plan-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-mid);
  margin: 10px 0 16px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 29, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-backdrop.is-open {
  display: flex;
}
.modal-card {
  width: min(920px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  padding: 24px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 24px;
  cursor: pointer;
}
.modal-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-form-wrap {
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}
body.modal-open {
  overflow: hidden;
}
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  user-select: none;
}
.faq-icon {
  font-size: 20px;
  color: var(--slate-light);
  transition: transform .25s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-q.open .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a.open {
  max-height: 200px;
}
.faq-a-inner {
  padding: 0 20px 16px;
}
.demo-section,
.contact-section,
.cta,
footer {
  padding: 88px 5vw;
}
.demo-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.demo-inner,
.contact-inner,
.cta-inner {
  max-width: 960px;
  margin: 0 auto;
}
.demo-card {
  background: var(--blue);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.demo-icon {
  font-size: 52px;
  flex-shrink: 0;
}
.demo-body {
  flex: 1;
}
.demo-title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.demo-desc {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.demo-creds {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 24px;
}
.demo-cred {
  font-size: 13.5px;
  color: rgba(255,255,255,.9);
}
.demo-cred strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 3px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-promises {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cp {
  display: flex;
  gap: 12px;
}
.cp-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: #10B981;
}
.cp-body {
  flex: 1;
}
.cp-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 2px;
}
.cp-desc {
  font-size: 13.5px;
  line-height: 1.6;
}
.contact-wa-btn {
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  width: fit-content;
}
.contact-wa-btn:hover {
  background: #1DA851;
}
.wa-btn-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.wa-btn-text {
  font-size: 15px;
  font-weight: 700;
}
.wa-btn-sub {
  font-size: 12px;
  opacity: .85;
  margin-top: 1px;
}
.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.form-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13.5px;
  margin-bottom: 22px;
}
.form-group {
  margin-bottom: 13px;
}
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-mid);
  margin-bottom: 5px;
}
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  outline: none;
}
.form-input:focus,
.filter-input:focus {
  border-color: var(--blue);
}
.form-input::placeholder {
  color: var(--slate-light);
}
.form-row-2,
.students-filters,
.card-head,
.modal-footer,
.notification-row,
.form-row {
  display: grid;
}
.form-row-2 {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-note {
  font-size: 12px;
  color: var(--slate-light);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--green-light);
  border: 1px solid #A7F3D0;
  border-radius: 10px;
}
.form-success-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.form-success-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-success-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}
.cta {
  background: var(--blue);
  text-align: center;
}
.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.7;
}
footer {
  padding: 48px 5vw 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-desc {
  font-size: 13.5px;
  color: var(--slate-light);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--slate-light);
  text-decoration: none;
  margin-bottom: 9px;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--slate-light);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: var(--slate-light);
  text-decoration: none;
}
/* App layout */
html, body {
  min-height: 100%;
}
.app {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 100vh;
  overflow: hidden;
}
.sidebar {
  background: var(--blue);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.main {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sb-logo-row,
.sb-school-row,
.sb-footer,
.topbar,
.content,
.card-head,
.today-card,
.notif-btn,
.kpi-row,
.dash-layout,
.students-filters,
.data-table,
.bull-level-cards,
.modal-box,
.toast {
  width: 100%;
}
.sb-logo-row,
.sb-school-row,
.sb-footer {
  padding: 16px 14px;
}
.sb-school-row {
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sb-school-av {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}
.sb-school-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}
.sb-school-plan {
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  margin-top: 1px;
}
.sb-nav {
  padding: 10px 7px;
  flex: 1;
}
.sb-section-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 12px 9px 5px;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .13s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  margin-bottom: 1px;
  text-decoration: none;
}
.sb-item:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.sb-item.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.sb-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .7;
}
.sb-item.active svg,
.sb-item:hover svg {
  opacity: 1;
}
.sb-badge {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: auto;
}
.sb-share {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background .14s;
}
.sb-share:hover {
  background: rgba(255,255,255,.18);
}
.sb-share-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}
.sb-share-url {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 22px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.tb-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.tb-sub {
  font-size: 11.5px;
  color: var(--slate-light);
  margin-top: 1px;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 9px;
}
.notif-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.notif-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.content {
  padding: 22px;
  flex: 1;
}
.view {
  display: none;
}
.view.active {
  display: block;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-bottom: 18px;
}
.kpi-card,
.card,
.today-card,
.bull-level-card,
.settings-card,
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.kpi-label {
  font-size: 11px;
  color: var(--slate-light);
  font-weight: 500;
  margin-bottom: 6px;
}
.kpi-num {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-change {
  font-size: 11px;
  font-weight: 600;
}
.kpi-up {
  color: var(--green);
}
.kpi-down {
  color: var(--red);
}
.kpi-neutral {
  color: var(--slate-light);
}
.dash-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 13px;
}
.card { margin-bottom: 13px; }
.card-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
}
.card-link {
  font-size: 11.5px;
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
}
.row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .12s;
}
.row:last-child {
  border-bottom: none;
}
.row:hover {
  background: var(--bg);
}
.row.hl {
  background: var(--green-light);
}
.row-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.row-main {
  flex: 1;
}
.row-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}
.row-sub {
  font-size: 11.5px;
  color: var(--slate-light);
  margin-top: 1px;
}
.tag {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.tag-green {
  background: var(--green-light);
  color: var(--green-dark);
}
.tag-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.tag-red {
  background: var(--red-light);
  color: var(--red);
}
.tag-orange {
  background: var(--orange-light);
  color: #92400E;
}
.tag-purple {
  background: #EDE9FE;
  color: #7C3AED;
}
.tag-gray {
  background: var(--bg);
  color: var(--slate-light);
  border: 1px solid var(--border);
}
.today-card {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 11px;
}
.today-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.today-big {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.today-info {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.today-progress {
  margin-top: 12px;
  background: rgba(255,255,255,.18);
  border-radius: 3px;
  height: 4px;
}
.today-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}
.today-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 10.5px;
  color: rgba(255,255,255,.55);
}
.notif-item {
  display: flex;
  gap: 9px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .12s;
}
.notif-item:last-child {
  border-bottom: none;
}
.notif-item:hover {
  background: var(--bg);
}
.notif-item.unread {
  background: #FFFBEB;
}
.notif-dot2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}
.notif-dot2.r {
  background: transparent;
}
.notif-txt {
  font-size: 12px;
  color: var(--slate-mid);
  flex: 1;
  line-height: 1.5;
}
.notif-txt strong {
  color: var(--slate);
  font-weight: 700;
}
.notif-time2 {
  font-size: 10.5px;
  color: var(--slate-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-top: 10px;
  padding: 0 2px;
}
.mini-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.mini-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.mini-bar,
.mini-bar.hl {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: var(--blue-mid);
}
.mini-bar.hl {
  background: var(--blue);
}
.mini-bar-lbl {
  font-size: 9.5px;
  color: var(--slate-light);
}
.students-filters {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-input,
.form-input,
.data-table select,
.data-table input {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 11px;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  outline: none;
  background: var(--surface);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 8px 14px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-light);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--slate-mid);
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: var(--bg);
}
.td-student {
  display: flex;
  align-items: center;
  gap: 9px;
}
.bull-level-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blc-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.blc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.blc-level,
.blc-stat-lbl {
  font-size: 11px;
  color: var(--slate-light);
}
.blc-stats {
  display: flex;
  gap: 7px;
}
.blc-stat {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
}
.blc-stat-val {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
}
.blc-btn {
  background: var(--blue-light);
  color: var(--blue);
  border: none;
  border-radius: 7px;
  padding: 8px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .14s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.blc-btn:hover {
  background: var(--blue-mid);
}
.settings-grid {
  gap: 13px;
}
.settings-card {
  padding: 18px;
}
.settings-card h3 {
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
}
.toggle-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.toggle-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.toggle-sub {
  font-size: 11px;
  color: var(--slate-light);
  margin-top: 1px;
}
.toggle {
  width: 40px;
  height: 21px;
  border-radius: 11px;
  background: var(--border-strong);
  cursor: pointer;
  position: relative;
  transition: background .18s;
  border: none;
  flex-shrink: 0;
}
.toggle.on {
  background: var(--blue);
}
.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle.on::after {
  left: 22px;
}
.form-group {
  margin-bottom: 12px;
}
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--slate);
  outline: none;
  transition: border-color .14s;
}
.form-input:focus {
  border-color: var(--blue);
}
.modal-wrap {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(15,31,61,.4);
  z-index: 50;
  align-items: center;
  justify-content: center;
}
.modal-wrap.open {
  display: flex;
}
.modal-box {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px;
  width: 380px;
  max-width: 90%;
}
.modal-title {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--slate);
  margin-bottom: 14px;
}
.modal-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  border-radius: 9px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(60px);
  opacity: 0;
  transition: all .26s;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 280px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.blue {
  background: var(--blue);
  color: #fff;
}
.toast.green {
  background: var(--green);
  color: #fff;
}
.toast.orange {
  background: var(--orange);
  color: var(--slate);
}
@media (max-width: 960px) {
  .hero,
  .contact-inner,
  .target-grid,
  .prob-grid,
  .feat-grid,
  .price-grid,
  .stats-grid,
  .footer-inner,
  .demo-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual,
  .mockup-wrap {
    display: none;
  }
  .demo-card {
    flex-direction: column;
    text-align: center;
  }
  .demo-creds {
    flex-direction: column;
    gap: 12px;
  }
  .form-row-2,
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 740px) {
  .nav {
    padding: 0 4vw;
  }
  .hero {
    padding-top: 60px;
  }
  .content {
    padding: 16px;
  }
  .app {
    grid-template-columns: 1fr;
    height: auto;
  }
  .sidebar {
    position: relative;
    height: auto;
  }
  .main {
    min-height: calc(100vh - 56px);
  }
}
