/* devani-site-styles:{"backgroundColor":"#ffffff","textColor":"#1a1a26","fontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","baseFontSize":"17px","headingFontFamily":"'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","headingColor":"#1a1a26","linkColor":"#5b2be0","containerMaxWidth":"1120px","customCss":""} */

* { box-sizing: border-box; }

:root {
  --ink: #1a1a26;
  --ink-soft: #5b5b6b;
  --ink-faint: #8c8c9c;
  --paper: #ffffff;
  --paper-2: #f6f5fb;
  --line: #ecebf2;
  --pop: #5b2be0;
  --pop-2: #7a4dff;
  --pop-soft: #f0ebff;
  --radius: 14px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout primitives ---------- */
.section { padding: 104px 24px; }
.section.tight { padding: 72px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.container.narrow { max-width: 820px; }

h1, h2, h3 { letter-spacing: -0.03em; color: var(--ink); margin: 0; }
h1 em, h2 em {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pop);
}
.eyebrow .pill {
  background: var(--pop-soft);
  color: var(--pop);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.08; margin-bottom: 16px; }
.section-head p { font-size: 1.14rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26, 26, 38, 0.18); }
.btn.pop { background: var(--pop); border-color: var(--pop); }
.btn.pop:hover { background: var(--pop-2); box-shadow: 0 14px 34px rgba(91, 43, 224, 0.32); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.ghost:hover { background: var(--paper-2); box-shadow: none; transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: 128px; padding-bottom: 96px; }
.hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  max-width: 880px;
  margin: 0 auto 22px;
}
.hero .tagline {
  font-size: 1.28rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero .btn-row { justify-content: center; }
.hero-note { margin-top: 20px; font-size: 0.9rem; color: var(--ink-faint); }

/* Browser mock under hero */
.hero-mock {
  max-width: 940px;
  margin: 72px auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(26, 26, 38, 0.13);
  overflow: hidden;
}
.hero-mock .bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.hero-mock .bar i { width: 11px; height: 11px; border-radius: 50%; background: #d7d5e2; display: block; }
.hero-mock .bar .url {
  margin-left: 14px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 14px;
}
.hero-mock .screen { padding: 0; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 30px;
}
.mock-course {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  background: #fff;
}
.mock-course .thumb { height: 92px; background: linear-gradient(135deg, var(--pop) 0%, var(--pop-2) 100%); }
.mock-course .thumb.b { background: linear-gradient(135deg, #1a1a26 0%, #3a3358 100%); }
.mock-course .thumb.c { background: linear-gradient(135deg, #ff7a59 0%, #ffb259 100%); }
.mock-course .body { padding: 14px 16px 18px; }
.mock-course .body h4 { margin: 0 0 6px; font-size: 0.92rem; font-weight: 700; }
.mock-course .body span { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------- Logo strip ---------- */
.logos { text-align: center; padding: 48px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; }
.logos .row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; }
.logos .row span { font-size: 1.2rem; font-weight: 800; color: #b9b7c8; letter-spacing: -0.02em; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.feature-card {
  padding: 34px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(26, 26, 38, 0.08); border-color: #ded9f0; }
.feature-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 1rem; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--pop-soft);
  color: var(--pop);
  margin-bottom: 20px;
}
.feature-icon svg { display: block; }

/* ---------- Split / alternating ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split + .split { margin-top: 96px; }
.split.flip .split-media { order: 2; }
.split-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.split-copy p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 22px; }
.split-list { list-style: none; margin: 0; padding: 0; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--ink); font-size: 1.02rem; }
.split-list li svg { flex: 0 0 auto; color: var(--pop); margin-top: 3px; }
.split-media {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-2);
  min-height: 320px;
  box-shadow: 0 24px 60px rgba(26, 26, 38, 0.08);
  overflow: hidden;
  position: relative;
}
.split-panel { padding: 28px; height: 100%; }
.panel-row { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; }
.panel-row .ico { width: 38px; height: 38px; border-radius: 9px; background: var(--pop-soft); flex: 0 0 auto; }
.panel-row .ico.b { background: #fff0e8; }
.panel-row .ico.c { background: #e8f7ee; }
.panel-row .lines { flex: 1; }
.panel-row .lines b { display: block; height: 9px; width: 60%; background: #e4e2ee; border-radius: 5px; margin-bottom: 7px; }
.panel-row .lines i { display: block; height: 7px; width: 40%; background: #eeedf6; border-radius: 5px; }
.panel-row .toggle { width: 40px; height: 23px; border-radius: 999px; background: var(--pop); flex: 0 0 auto; position: relative; }
.panel-row .toggle::after { content: ''; position: absolute; top: 3px; right: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: left; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 1.05rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Dark band ---------- */
.section.dark { background: var(--ink); color: #efeef6; }
.section.dark .section-head h2 { color: #fff; }
.section.dark .section-head p { color: #b6b4c8; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat .n { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.stat .n em { font-family: 'Georgia', serif; font-style: italic; font-weight: 400; color: var(--pop-2); }
.stat .l { font-size: 0.98rem; color: #b6b4c8; margin-top: 6px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.price-card.featured { border-color: var(--pop); box-shadow: 0 24px 60px rgba(91, 43, 224, 0.16); position: relative; }
.price-card .tag {
  position: absolute; top: -13px; left: 30px;
  background: var(--pop); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.price-card .plan { font-size: 1.05rem; font-weight: 700; }
.price-card .price { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 4px; }
.price-card .price span { font-size: 1rem; font-weight: 600; color: var(--ink-faint); }
.price-card .price-sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 0.98rem; color: var(--ink); }
.price-card li svg { flex: 0 0 auto; color: var(--pop); margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Quote / testimonial ---------- */
.quote-band { text-align: center; }
.quote {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  line-height: 1.32; font-weight: 700; letter-spacing: -0.02em;
  max-width: 820px; margin: 0 auto;
}
.quote em { font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; font-weight: 400; }
.quote-cite { display: block; margin-top: 26px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 4px; }
.faq summary { font-size: 1.1rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--pop); }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin-top: 14px; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--pop-soft); border-radius: 26px; padding: 72px 32px; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.08; margin-bottom: 16px; }
.cta-band p { font-size: 1.16rem; color: var(--ink-soft); max-width: 540px; margin: 0 auto 30px; }

/* ---------- Header ---------- */
header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
header nav {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 24px;
}
.brand { font-weight: 800; font-size: 1.32rem; color: var(--ink) !important; letter-spacing: -0.04em; }
.brand .dot { color: var(--pop); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.98rem; font-weight: 500; color: var(--ink-soft); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 10px 20px; border-radius: 9px; font-weight: 600 !important;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--pop); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 64px 24px 40px; background: var(--paper-2); }
footer .footer-inner { max-width: 1120px; margin: 0 auto; }
footer .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
footer .footer-brand .brand { font-size: 1.4rem; }
footer .footer-brand p { color: var(--ink-soft); font-size: 0.98rem; margin-top: 14px; max-width: 280px; }
footer .footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 16px; }
footer .footer-col a { display: block; color: var(--ink-soft); font-size: 0.96rem; padding: 6px 0; transition: color 0.15s ease; }
footer .footer-col a:hover { color: var(--pop); }
footer .footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
footer .footer-bottom p { font-size: 0.88rem; color: var(--ink-faint); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split, .steps, .stat-grid, .price-grid { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split + .split { margin-top: 56px; }
  .mock-grid { grid-template-columns: 1fr 1fr; }
  footer .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section { padding: 72px 20px; }
}
@media (max-width: 520px) {
  .mock-grid { grid-template-columns: 1fr; }
  footer .footer-top { grid-template-columns: 1fr; }
}
/* @devani:region fake-ui */
/* ============================================================
   FICTIONAL SOFTWARE UI — course cards, thumbnails, dashboard
   ============================================================ */

/* ---- Illustrated course thumbnail (pure CSS) ---- */
.cv {
  position: relative;
  height: 132px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv::before { /* soft radial glow */
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
  top: -60px; right: -40px;
  background: rgba(255,255,255,0.16);
}
.cv .glyph { position: relative; z-index: 2; color: #fff; opacity: 0.96; }
.cv .cat {
  position: absolute; z-index: 3; top: 12px; left: 12px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.22);
  padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.cv.violet { background: linear-gradient(135deg, #5b2be0 0%, #9a6bff 100%); }
.cv.ink    { background: linear-gradient(135deg, #1a1a26 0%, #4a4170 100%); }
.cv.coral  { background: linear-gradient(135deg, #ff6a4d 0%, #ffab5e 100%); }
.cv.teal   { background: linear-gradient(135deg, #0fb8a6 0%, #4be0c4 100%); }
.cv.blue   { background: linear-gradient(135deg, #2b6be0 0%, #5ea8ff 100%); }
.cv.pink   { background: linear-gradient(135deg, #e02b8a 0%, #ff6bb5 100%); }
/* decorative floating shapes inside the cover */
.cv .shape { position: absolute; opacity: 0.18; z-index: 1; background: #fff; }
.cv .shape.s1 { width: 80px; height: 80px; border-radius: 22px; transform: rotate(18deg); bottom: -26px; left: -18px; }
.cv .shape.s2 { width: 46px; height: 46px; border-radius: 50%; top: -14px; left: 40%; opacity: 0.12; }

/* ---- Rich course card ---- */
.course-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(26,26,38,0.12); border-color: #ded9f0; }
.course-card .meta { padding: 15px 16px 17px; }
.course-card .meta h4 { margin: 0 0 4px; font-size: 0.98rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
.course-card .by { font-size: 0.8rem; color: var(--ink-faint); margin: 0 0 10px; }
.course-card .stat-line { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--ink-soft); }
.course-card .stars { color: #f5a623; font-weight: 700; letter-spacing: 0.02em; }
.course-card .stat-line .price { margin-left: auto; font-weight: 800; color: var(--ink); font-size: 0.95rem; }
.course-card .stat-line .free { margin-left: auto; font-weight: 800; color: var(--pop); font-size: 0.95rem; }

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 20px;
}

/* tiny instructor avatar */
.avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.66rem; font-weight: 800; color: #fff; flex: 0 0 auto;
}
.avatar.a { background: #5b2be0; }
.avatar.b { background: #0fb8a6; }
.avatar.c { background: #ff6a4d; }
.avatar.d { background: #2b6be0; }
.avatar.e { background: #e02b8a; }
.by-row { display: flex; align-items: center; gap: 7px; margin: 0 0 10px; }
.by-row span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---- Window chrome (reuse for big app shot) ---- */
.appshot {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(26,26,38,0.16);
  overflow: hidden;
}
.appshot .bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2);
}
.appshot .bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.appshot .bar i.r { background: #ff5f57; } .appshot .bar i.y { background: #febc2e; } .appshot .bar i.g { background: #28c840; }
.appshot .bar .url {
  margin-left: 12px; font-size: 0.8rem; color: var(--ink-faint);
  background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 5px 14px;
}

/* ---- Dashboard layout inside appshot ---- */
.dash { display: grid; grid-template-columns: 200px 1fr; min-height: 420px; }
.dash .side { background: #fafaff; border-right: 1px solid var(--line); padding: 20px 16px; }
.dash .side .logo { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.03em; margin-bottom: 22px; }
.dash .side .logo .dot { color: var(--pop); }
.dash .side nav { display: flex; flex-direction: column; gap: 3px; }
.dash .side nav a {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
  padding: 9px 11px; border-radius: 9px;
}
.dash .side nav a svg { flex: 0 0 auto; opacity: 0.7; }
.dash .side nav a.on { background: var(--pop-soft); color: var(--pop); font-weight: 700; }
.dash .side nav a.on svg { opacity: 1; }
.dash .main { padding: 24px 26px; }
.dash .main .h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash .main .h h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.dash .main .h .new {
  font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--pop);
  padding: 8px 15px; border-radius: 9px;
}
.dash .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.dash .kpi { border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; }
.dash .kpi .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.dash .kpi .val { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.dash .kpi .val em { font-style: normal; color: #19b36b; font-size: 0.8rem; font-weight: 700; margin-left: 6px; }
.dash .chart {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 12px; margin-bottom: 6px;
}
.dash .chart .ct { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 14px; }
.dash .bars { display: flex; align-items: flex-end; gap: 10px; height: 96px; }
.dash .bars .b { flex: 1; background: var(--pop-soft); border-radius: 6px 6px 0 0; position: relative; }
.dash .bars .b::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; border-radius: 6px 6px 0 0; background: var(--pop); }
.dash .bars .b.b1::after { height: 42%; } .dash .bars .b.b1 { height: 42%; }
.dash .bars .b.b2::after { height: 60%; } .dash .bars .b.b2 { height: 60%; }
.dash .bars .b.b3::after { height: 48%; } .dash .bars .b.b3 { height: 48%; }
.dash .bars .b.b4::after { height: 78%; } .dash .bars .b.b4 { height: 78%; }
.dash .bars .b.b5::after { height: 66%; } .dash .bars .b.b5 { height: 66%; }
.dash .bars .b.b6::after { height: 92%; } .dash .bars .b.b6 { height: 92%; }
.dash .bars .b.b7::after { height: 84%; } .dash .bars .b.b7 { height: 84%; }

/* ---- Course builder / lesson list panel (for split media) ---- */
.builder { padding: 22px; }
.builder .bhead { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.builder .bhead .pin { font-weight: 800; font-size: 0.96rem; letter-spacing: -0.02em; }
.builder .bhead .tag2 { margin-left: auto; font-size: 0.72rem; font-weight: 700; color: var(--pop); background: var(--pop-soft); padding: 4px 10px; border-radius: 999px; }
.lesson {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 15px; margin-bottom: 10px;
}
.lesson .grip { color: #c7c3d8; flex: 0 0 auto; }
.lesson .play {
  width: 32px; height: 32px; border-radius: 8px; flex: 0 0 auto;
  background: var(--pop-soft); color: var(--pop);
  display: inline-flex; align-items: center; justify-content: center;
}
.lesson .txt { flex: 1; }
.lesson .txt b { display: block; font-size: 0.88rem; font-weight: 700; }
.lesson .txt span { font-size: 0.76rem; color: var(--ink-faint); }
.lesson .dur { font-size: 0.76rem; color: var(--ink-faint); font-weight: 600; flex: 0 0 auto; }
.lesson.done { opacity: 0.62; }

/* ---- Progress bar (course player) ---- */
.progress { height: 8px; border-radius: 999px; background: var(--pop-soft); overflow: hidden; margin-top: 4px; }
.progress > i { display: block; height: 100%; background: var(--pop); border-radius: 999px; }

@media (max-width: 860px) {
  .dash { grid-template-columns: 1fr; }
  .dash .side { display: none; }
  .course-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .course-grid { grid-template-columns: 1fr; }
  .dash .kpis { grid-template-columns: 1fr; }
}
/* @devani:endregion */
/* @devani:region cover-image */
/* Real generated image inside a course cover */
.cv.has-img { background: var(--paper-2); }
.cv .cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cv.has-img .cat { z-index: 3; }
/* taller covers for the showcase image cards read better at 16:9-ish */
.course-card .cv.has-img { height: 150px; }
/* @devani:endregion */
/* @devani:region contact */
/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px; background: #fff; margin-bottom: 16px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--pop-soft); color: var(--pop); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-card h3 { font-size: 1.08rem; font-weight: 700; margin: 0 0 4px; }
.contact-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.contact-card a { color: var(--pop); font-weight: 600; }
.form-panel { border: 1px solid var(--line); border-radius: 18px; padding: 32px; background: #fff; box-shadow: 0 20px 50px rgba(26,26,38,0.06); }
.form-panel .fld { margin-bottom: 18px; }
.form-panel label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 7px; }
.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--paper-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus {
  outline: none; border-color: var(--pop); background: #fff;
}
.form-panel textarea { resize: vertical; min-height: 120px; }
.form-panel .btn { width: 100%; justify-content: center; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
/* @devani:endregion */
