/* =============================================================================
   Smart School Kit ERP — Marketing Site
   Design system: Blue & White premium SaaS theme
============================================================================= */

:root {
  --primary: #3556f0;
  --primary-dark: #1f3bc4;
  --primary-light: #eef1fe;
  --accent: #00c2b8;
  --accent-dark: #00a89f;
  --navy: #0b1437;
  --navy-soft: #101a45;
  --ink: #1a1f36;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --bg-soft: #f6f8ff;
  --border-soft: #e6ebfb;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 14px rgba(20, 34, 100, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 34, 100, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 34, 100, 0.16);

  --gradient-primary: linear-gradient(135deg, #3556f0 0%, #6a3df0 100%);
  --gradient-soft: linear-gradient(135deg, #eef1fe 0%, #f6f8ff 100%);
  --gradient-navy: linear-gradient(160deg, #0b1437 0%, #16205c 100%);

  --font-heading: "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ── Base ──────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

p { color: var(--muted); }

a { text-decoration: none; transition: all .2s ease; }

img { max-width: 100%; }

::selection { background: var(--primary); color: #fff; }

.text-primary-brand { color: var(--primary) !important; }
.bg-soft { background: var(--bg-soft); }

/* ── Utility: section spacing / eyebrow / titles ──────────────────────── */
.section-py { padding: 100px 0; }
@media (max-width: 767.98px) { .section-py { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow i { font-size: 0.7rem; }

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
}

.section-header { margin-bottom: 56px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn { border-radius: 50px; font-weight: 600; padding: 12px 28px; font-size: 0.95rem; border: none; }

.btn-brand-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(53, 86, 240, 0.30);
}
.btn-brand-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(53, 86, 240, 0.4); }

.btn-brand-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-soft);
}
.btn-brand-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.btn-brand-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-brand-white:hover { color: var(--primary-dark); transform: translateY(-2px); }

.btn-lg-pill { padding: 15px 34px; font-size: 1.02rem; }
.btn-sm-pill { padding: 8px 20px; font-size: 0.85rem; }

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar-brand-erp {
  padding: 18px 0;
  transition: all .3s ease;
  background: rgba(255,255,255,0.0);
}
.navbar-brand-erp.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.navbar-brand-erp .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand-erp .navbar-brand .brand-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(53,86,240,.35);
}
.navbar-brand-erp .nav-link {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 10px 18px !important;
}
.navbar-brand-erp .nav-link:hover,
.navbar-brand-erp .nav-link.active { color: var(--primary); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 170px 0 120px;
  background: var(--gradient-soft);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: #7c8cf8; top: -120px; right: -100px; }
.hero::after  { width: 340px; height: 340px; background: #00c2b8; bottom: -140px; left: -80px; opacity: .25; }
.hero .container { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 34px; max-width: 560px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .9rem; }
.hero-trust .stars { color: #f5a623; letter-spacing: 2px; }

.hero-visual { position: relative; }
.hero-visual .browser-frame { transform: rotate(1.2deg); }
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  animation: floaty 4s ease-in-out infinite;
}
.hero-floating-card .icon-badge { width: 38px; height: 38px; border-radius: 10px; display:flex; align-items:center; justify-content:center; font-size: 1rem; }
.hero-fc-1 { top: -6%; left: -8%; }
.hero-fc-2 { bottom: 6%; right: -10%; animation-delay: 1.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Browser mockup frame (for screenshots) ───────────────────────────── */
.browser-frame {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.browser-frame .browser-bar {
  background: #f1f3fb;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.browser-frame .browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; } .dot-yellow { background: #ffbd2e; } .dot-green { background: #28c840; }
.browser-frame .browser-body { background: linear-gradient(160deg,#eef1fe,#f6f8ff); }
.browser-frame img { display:block; width: 100%; }

/* ── Stats ─────────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(53,86,240,.35), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(0,194,184,.28), transparent 45%);
}
.stat-item { position: relative; z-index: 1; text-align: center; color: #fff; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  display: block;
  background: linear-gradient(135deg,#fff,#c9d3ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: rgba(255,255,255,.7); font-size: 0.92rem; margin-top: 6px; }

/* ── Feature cards (general) ──────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition: all .28s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: var(--gradient-primary);
  margin-bottom: 22px;
  box-shadow: 0 10px 20px rgba(53,86,240,.25);
}
.feature-card h5 { font-size: 1.12rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; margin-bottom: 0; }

/* alt icon palette for variety across many cards */
.feature-icon.alt-teal   { background: linear-gradient(135deg,#00c2b8,#00a89f); box-shadow:0 10px 20px rgba(0,194,184,.25);}
.feature-icon.alt-purple { background: linear-gradient(135deg,#7b5cf0,#5a3dd6); box-shadow:0 10px 20px rgba(123,92,240,.25);}
.feature-icon.alt-orange { background: linear-gradient(135deg,#ff9f45,#ff7a45); box-shadow:0 10px 20px rgba(255,140,69,.25);}
.feature-icon.alt-pink   { background: linear-gradient(135deg,#ff5c8a,#e8407a); box-shadow:0 10px 20px rgba(232,64,122,.25);}

/* ── Module section (Features page) ───────────────────────────────────── */
.module-block { padding: 70px 0; border-bottom: 1px solid var(--border-soft); }
.module-block:last-child { border-bottom: none; }
.module-icon-lg {
  width: 74px; height: 74px; border-radius: 20px;
  background: var(--gradient-primary);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size: 1.8rem;
  box-shadow: 0 14px 28px rgba(53,86,240,.28);
  margin-bottom: 22px;
}
.module-tag-list { display:flex; flex-wrap:wrap; gap:10px; margin-top: 24px; }
.module-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 50px;
  display: inline-flex; align-items:center; gap:8px;
}
.module-tag i { font-size: 0.72rem; color: var(--accent-dark); }

/* ── Portal comparison cards ───────────────────────────────────────────── */
.portal-card {
  border-radius: var(--radius-md);
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--border-soft);
}
.portal-card.portal-teacher { background: var(--primary-light); }
.portal-card.portal-student { background: #fff; box-shadow: var(--shadow-sm); }
.portal-card.portal-parent  { background: #fff5ec; }
.portal-card h4 { display:flex; align-items:center; gap:12px; }
.portal-card .portal-icon {
  width: 46px; height:46px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background:#fff; color: var(--primary); font-size:1.1rem; box-shadow: var(--shadow-sm);
}
.portal-list { list-style:none; padding:0; margin: 22px 0 0; }
.portal-list li { display:flex; align-items:flex-start; gap:10px; margin-bottom: 12px; font-size:0.92rem; color: var(--ink); }
.portal-list li i { margin-top: 3px; }
.portal-list.allow li i { color: #16a34a; }
.portal-list.deny li i { color: #e11d48; }
.portal-list.deny li { color: var(--muted); }

/* ── Security / Cloud badges ───────────────────────────────────────────── */
.badge-pill-soft {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--border-soft);
  padding: 10px 18px; border-radius: 50px;
  font-weight:600; font-size:0.86rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.badge-pill-soft i { color: var(--primary); }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial-quote { color: var(--primary); font-size: 2rem; line-height: 1; margin-bottom: 14px; }
.testimonial-text { color: var(--ink); font-size: 0.98rem; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testimonial-role { color: var(--muted); font-size: 0.8rem; }
.testimonial-stars { color: #f5a623; font-size: 0.8rem; margin-bottom: 6px; }

.swiper { padding-bottom: 56px; }
.swiper-pagination-bullet { background: var(--primary); opacity: .3; }
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-button-next, .swiper-button-prev {
  color: var(--primary);
  background: #fff; width: 44px; height: 44px; border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem; }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  height: 100%;
  transition: all .3s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--gradient-navy);
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-card.featured h3, .pricing-card.featured .pricing-plan-desc { color: #fff; }
.pricing-card.featured .price-value { color: #fff; }
.pricing-card.featured .pricing-feature-list li { color: rgba(255,255,255,.85); }
.pricing-card.featured .pricing-feature-list li i { color: var(--accent); }

.pricing-badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color:#fff; font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 50px; letter-spacing:.04em; text-transform:uppercase;
  box-shadow: 0 8px 16px rgba(0,194,184,.4);
}
.pricing-plan-name { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-plan-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }
.price-value { font-family: var(--font-heading); font-weight: 800; font-size: 2.6rem; color: var(--navy); }
.price-period { color: var(--muted); font-size: 0.95rem; }
.pricing-feature-list { list-style:none; padding:0; margin: 26px 0 30px; }
.pricing-feature-list li { display:flex; align-items:flex-start; gap:10px; margin-bottom: 13px; font-size: 0.9rem; }
.pricing-feature-list li i { color: var(--accent-dark); margin-top: 3px; }

.pricing-compare-table th, .pricing-compare-table td { vertical-align: middle; text-align:center; padding: 16px; }
.pricing-compare-table thead th { background: var(--navy); color:#fff; font-family: var(--font-heading); }
.pricing-compare-table td:first-child, .pricing-compare-table th:first-child { text-align:left; font-weight:600; }
.pricing-compare-table i.fa-check { color: #16a34a; }
.pricing-compare-table i.fa-xmark { color: #cbd5e1; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.accordion-erp .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 14px;
}
.accordion-erp .accordion-button {
  font-weight: 700; font-family: var(--font-heading);
  color: var(--navy); font-size: 1rem;
  padding: 20px 24px;
}
.accordion-erp .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
  box-shadow: none;
}
.accordion-erp .accordion-button:focus { box-shadow: none; }
.accordion-erp .accordion-body { color: var(--muted); padding: 4px 24px 22px; }
.faq-category-pills { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 46px; }
.faq-pill {
  border: 1.5px solid var(--border-soft); background:#fff; color: var(--ink);
  padding: 9px 20px; border-radius: 50px; font-weight:600; font-size:0.88rem; cursor:pointer;
}
.faq-pill.active, .faq-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact-info-card {
  background: var(--gradient-navy);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #fff;
  height: 100%;
}
.contact-info-item { display:flex; gap:16px; align-items:flex-start; margin-bottom: 26px; }
.contact-info-item .icon-badge {
  width: 46px; height:46px; border-radius:12px; flex-shrink:0;
  background: rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center;
}
.contact-info-item h6 { color:#fff; margin-bottom:4px; font-size:0.92rem; }
.contact-info-item p { color: rgba(255,255,255,.72); margin:0; font-size:0.88rem; }
.social-icons-row { display:flex; gap:12px; margin-top: 30px; }
.social-icons-row a {
  width: 42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,.1); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.social-icons-row a:hover { background: var(--accent); color:#fff; }

.form-control-erp {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 0.94rem;
}
.form-control-erp:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.form-label-erp { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }

.map-frame { border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--border-soft); }

/* ── CTA band ──────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.18), transparent 50%);
}
.cta-band h2, .cta-band p { color:#fff; position:relative; z-index:1; }
.cta-band .cta-actions { position:relative; z-index:1; }

/* ── About page ────────────────────────────────────────────────────────── */
.value-pillar {
  text-align:center; padding: 30px 20px;
}
.value-pillar .value-icon {
  width: 72px; height:72px; border-radius:50%;
  background: var(--primary-light); color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; margin: 0 auto 20px;
}
.timeline-erp { position:relative; padding-left: 34px; }
.timeline-erp::before { content:''; position:absolute; left:8px; top:6px; bottom:6px; width:2px; background: var(--border-soft); }
.timeline-item { position:relative; margin-bottom: 34px; }
.timeline-item::before {
  content:''; position:absolute; left:-34px; top:4px; width:18px; height:18px; border-radius:50%;
  background: var(--gradient-primary); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--primary-light);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 80px 0 0; }
.site-footer h6 { color: #fff; font-size: 0.92rem; margin-bottom: 22px; letter-spacing:.03em; text-transform:uppercase; }
.site-footer .footer-brand { font-family: var(--font-heading); font-weight:800; font-size:1.3rem; color:#fff; display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.site-footer .footer-links { list-style:none; padding:0; }
.site-footer .footer-links li { margin-bottom: 12px; }
.site-footer .footer-links a { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.site-footer .footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding: 26px 0; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: #fff; }
.footer-newsletter .form-control { border-radius: 50px 0 0 50px; border:none; padding: 12px 20px; }
.footer-newsletter .btn { border-radius: 0 50px 50px 0; }

/* ── Back to top ───────────────────────────────────────────────────────── */
#backToTop {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); }

/* ── Misc ──────────────────────────────────────────────────────────────── */
.divider-soft { height:1px; background: var(--border-soft); border:none; margin: 0; }
.rounded-xl { border-radius: var(--radius-md) !important; }
.shadow-soft { box-shadow: var(--shadow-sm) !important; }

@media (max-width: 991.98px) {
  .hero { padding: 140px 0 80px; }
  .hero-floating-card { display:none; }
  .pricing-card.featured { transform:none; }
}

/* ── Mock UI graphics (used inside .browser-frame in place of real screenshots) ── */
.mock-ui { display:flex; min-height: 300px; font-size: 0; }
.mock-sidebar { width: 22%; background: var(--navy); padding: 18px 12px; }
.mock-sidebar .mock-logo { width: 60%; height: 10px; border-radius: 4px; background: rgba(255,255,255,.7); margin-bottom: 22px; }
.mock-sidebar .mock-item { height: 9px; border-radius: 4px; background: rgba(255,255,255,.18); margin-bottom: 14px; }
.mock-sidebar .mock-item.active { background: var(--accent); width: 70%; }
.mock-sidebar .mock-item:nth-child(3) { width: 85%; }
.mock-sidebar .mock-item:nth-child(4) { width: 60%; }
.mock-sidebar .mock-item:nth-child(5) { width: 75%; }
.mock-sidebar .mock-item:nth-child(6) { width: 50%; }

.mock-main { flex:1; padding: 20px 24px; }
.mock-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom: 20px; }
.mock-topbar .mock-title { width: 140px; height: 14px; border-radius: 4px; background: #d7defb; }
.mock-topbar .mock-avatar { width: 32px; height:32px; border-radius:50%; background: var(--gradient-primary); }

.mock-cards-row { display:flex; gap: 14px; margin-bottom: 18px; }
.mock-stat-card { flex:1; background:#fff; border:1px solid var(--border-soft); border-radius:10px; padding:14px; box-shadow: var(--shadow-sm); }
.mock-stat-card .mock-line { height: 8px; border-radius:4px; background:#e6ebfb; margin-bottom:8px; width: 60%; }
.mock-stat-card .mock-line.big { height: 16px; width: 45%; background: var(--primary); opacity:.8; }

.mock-chart-block { background:#fff; border:1px solid var(--border-soft); border-radius:10px; padding:18px; box-shadow: var(--shadow-sm); }
.mock-bars { display:flex; align-items:flex-end; gap:10px; height: 110px; }
.mock-bars span { flex:1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg,#6a3df0,#3556f0); opacity:.85; }

.mock-table-row { display:flex; gap:12px; align-items:center; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.mock-table-row .mock-dot { width:8px; height:8px; border-radius:50%; background: var(--accent); flex-shrink:0; }
.mock-table-row .mock-line { flex:1; height: 8px; border-radius:4px; background:#e6ebfb; }
.mock-table-row .mock-badge { width: 54px; height: 18px; border-radius: 20px; background: var(--primary-light); }
