/* Edufuture marketing — Atum design system (matches teacher dashboard) */
:root {
  --neutral-50: #F7F8FC;
  --neutral-100: #F2F5FB;
  --neutral-200: #DBECF6;
  --neutral-300: #D0D7E7;
  --neutral-400: #93A2B3;
  --neutral-500: #667085;
  --neutral-600: #475467;
  --neutral-700: #344054;
  --neutral-800: #1D2433;
  --neutral-900: #161A2D;
  --color-indigo: #586CFF;
  --color-blue: #7EA6FF;
  --color-mint: #7FE0C2;
  --color-yellow: #FFDB6B;
  --color-lavender: #C8B6FF;
  --color-coral: #FF8FA3;
  --primary: var(--color-indigo);
  --primary-hover: #4055E6;
  --primary-light: rgba(88, 108, 255, 0.1);
  --text: var(--neutral-800);
  --text2: var(--neutral-600);
  --text3: var(--neutral-400);
  --bg: var(--neutral-50);
  --surface: #FFFFFF;
  --border: var(--neutral-200);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 10px 24px rgba(16, 24, 40, 0.08);
  --shadow-xl: 0 20px 40px rgba(16, 24, 40, 0.1);
  --shadow-glow: 0 12px 40px rgba(88, 108, 255, 0.12);
  --font-display: 'Sora', 'Alexandria', sans-serif;
  --font-ui: 'Inter', 'Alexandria', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.marketing {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: padding-bottom 0.3s ease;
}
body.marketing.mkt-sticky-on { padding-bottom: 76px; }
body.marketing :where(:not(i[class*="fa-"]):not(.fa):not(.fas)) {
  font-family: var(--font-ui);
}
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.fa-solid, .fas, i.fa-solid { font-weight: 900 !important; }
.fa-brands, i.fa-brands { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* Nav */
.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  background: rgba(247, 248, 252, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mkt-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.mkt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mkt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-display);
}
.mkt-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.mkt-nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.mkt-nav-links a:hover { color: var(--primary); }
.mkt-nav-actions { display: flex; align-items: center; gap: 10px; }
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.mkt-btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.mkt-btn-ghost:hover { background: var(--surface); color: var(--text); }
.mkt-btn-primary {
  background: var(--color-indigo);
  color: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 4px 12px rgba(88, 108, 255, 0.2);
}
.mkt-btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88, 108, 255, 0.28);
}
.mkt-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(88, 108, 255, 0.2);
}
.mkt-btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }
.mkt-menu-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: var(--text); cursor: pointer; }

/* Hero */
.mkt-hero {
  position: relative;
  padding: 140px 0 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.mkt-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.mkt-hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(88, 108, 255, 0.15) 0%, transparent 70%);
}
.mkt-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 45%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(127, 224, 194, 0.12) 0%, transparent 70%);
}
.mkt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 108, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 108, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}
.mkt-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.mkt-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(127, 224, 194, 0.2);
}
.mkt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--neutral-900);
}
.mkt-hero h1 .gradient {
  background: linear-gradient(135deg, var(--color-indigo) 0%, #8B5CF6 50%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mkt-hero-lead {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.mkt-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.mkt-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text3);
  font-weight: 600;
}
.mkt-hero-trust span { display: flex; align-items: center; gap: 6px; }
.mkt-hero-trust i { color: var(--color-mint); }

/* Dashboard mock */
.mkt-mock {
  position: relative;
  perspective: 1200px;
}
.mkt-mock-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.mkt-mock:hover .mkt-mock-main { box-shadow: 0 16px 48px rgba(16, 24, 40, 0.1); }
.mkt-mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--border);
}
.mkt-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mkt-mock-body { display: flex; min-height: 320px; }
.mkt-mock-sidebar {
  width: 72px;
  background: var(--neutral-100);
  border-left: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mkt-mock-nav-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text3);
}
.mkt-mock-nav-item.active {
  background: var(--primary-light);
  border-color: rgba(88, 108, 255, 0.25);
  color: var(--primary);
}
.mkt-mock-content { flex: 1; padding: 16px; }
.mkt-mock-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.mkt-mock-tab {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--neutral-100);
  color: var(--text2);
}
.mkt-mock-tab.on {
  background: var(--primary);
  color: #fff;
}
.mkt-mock-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mkt-mock-card {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
.mkt-mock-card.accent {
  background: linear-gradient(135deg, rgba(88, 108, 255, 0.08), rgba(200, 182, 255, 0.12));
  border-color: rgba(88, 108, 255, 0.2);
}
.mkt-mock-card h4 { font-size: 0.72rem; color: var(--text3); margin-bottom: 4px; font-weight: 600; }
.mkt-mock-card strong { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.mkt-float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
}
.mkt-float-card i { color: var(--primary); font-size: 1.2rem; }
.mkt-float-1 { top: 8%; left: -8%; }
.mkt-float-2 { bottom: 18%; right: -6%; }
.mkt-float-subtle {
  animation: mkt-float-subtle 6s ease-in-out infinite;
}
.mkt-float-2.mkt-float-subtle { animation-delay: -3s; }
@keyframes mkt-float-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.mkt-ui-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}
.mkt-ui-lab-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: rgba(127,224,194,0.15);
  border: 1px solid rgba(127,224,194,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0d9488;
  animation: mkt-lab-tile 0.5s ease forwards;
  opacity: 0;
}
.mkt-showcase-panel.active .mkt-ui-lab-tile:nth-child(1) { animation-delay: 0.1s; }
.mkt-showcase-panel.active .mkt-ui-lab-tile:nth-child(2) { animation-delay: 0.2s; }
.mkt-showcase-panel.active .mkt-ui-lab-tile:nth-child(3) { animation-delay: 0.3s; }
.mkt-showcase-panel.active .mkt-ui-lab-tile:nth-child(4) { animation-delay: 0.4s; }
@keyframes mkt-lab-tile {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.mkt-feature-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.mkt-feature-bullet {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.mkt-feature-bullet i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-feature-bullet strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.mkt-feature-bullet p { font-size: 0.82rem; color: var(--text2); line-height: 1.5; margin: 0; }
.mkt-page-hero--mint { background: linear-gradient(180deg, rgba(127,224,194,0.12), var(--bg)); }
.mkt-page-hero--lavender { background: linear-gradient(180deg, rgba(200,182,255,0.12), var(--bg)); }
.mkt-page-hero--blue { background: linear-gradient(180deg, rgba(59,130,246,0.08), var(--bg)); }
.mkt-page-hero--yellow { background: linear-gradient(180deg, rgba(250,204,21,0.1), var(--bg)); }
.mkt-page-hero--green { background: linear-gradient(180deg, rgba(37,211,102,0.08), var(--bg)); }
.mkt-page-hero--coral { background: linear-gradient(180deg, rgba(255,143,163,0.1), var(--bg)); }
.mkt-compare-verdict {
  margin-top: 32px;
  padding: 24px;
  background: var(--neutral-100);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.mkt-compare-verdict h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }

/* Stats */
.mkt-stats {
  padding: 48px 0;
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.mkt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.mkt-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.mkt-stat-label { font-size: 0.85rem; color: var(--text2); font-weight: 600; }

/* Section common */
.mkt-section { padding: 88px 0; }
.mkt-section-alt { background: var(--surface); }
.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}
.mkt-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--neutral-900);
}
.mkt-section-lead {
  font-size: 1.02rem;
  color: var(--text2);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.mkt-section-head.center { text-align: center; }
.mkt-section-head.center .mkt-section-lead { margin-inline: auto; }

/* Dual platform */
.mkt-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mkt-platform-card {
  border-radius: var(--radius-2xl);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mkt-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mkt-platform-card.school {
  background: linear-gradient(160deg, #fff 0%, rgba(62, 142, 247, 0.06) 100%);
}
.mkt-platform-card.platform {
  background: linear-gradient(160deg, #fff 0%, rgba(88, 108, 255, 0.08) 100%);
}
.mkt-platform-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.mkt-platform-card.school .mkt-platform-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}
.mkt-platform-card.platform .mkt-platform-icon {
  background: var(--primary-light);
  color: var(--primary);
}
.mkt-platform-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.mkt-platform-card p { color: var(--text2); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.7; }
.mkt-platform-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mkt-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--neutral-100);
  color: var(--text2);
  border: 1px solid var(--border);
}

/* Bento features */
.mkt-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.mkt-bento-item {
  grid-column: span 4;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mkt-bento-item:hover {
  border-color: rgba(88, 108, 255, 0.3);
  box-shadow: var(--shadow-md);
}
.mkt-bento-item.span-6 { grid-column: span 6; }
.mkt-bento-item.span-8 { grid-column: span 8; }
.mkt-bento-item.span-4 { grid-column: span 4; }
.mkt-bento-item.featured {
  background: linear-gradient(145deg, rgba(88, 108, 255, 0.06), rgba(200, 182, 255, 0.1));
  border-color: rgba(88, 108, 255, 0.2);
}
.mkt-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.mkt-bento-item h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.mkt-bento-item p { font-size: 0.88rem; color: var(--text2); line-height: 1.65; }

/* AI band */
.mkt-ai-band {
  background: linear-gradient(135deg, var(--neutral-900) 0%, #2a2f4a 50%, #1a1f35 100%);
  border-radius: var(--radius-3xl);
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.mkt-ai-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(88, 108, 255, 0.35) 0%, transparent 65%);
}
.mkt-ai-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.mkt-ai-band p { color: rgba(255, 255, 255, 0.75); line-height: 1.75; margin-bottom: 20px; position: relative; }
.mkt-ai-list {
  list-style: none;
  position: relative;
}
.mkt-ai-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.mkt-ai-list i { color: var(--color-mint); }
.mkt-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.mkt-ai-chip {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Hubs strip */
.mkt-hubs-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mkt-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* How it works */
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.mkt-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.mkt-step { text-align: center; position: relative; }
.mkt-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.mkt-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.mkt-step p { font-size: 0.88rem; color: var(--text2); line-height: 1.65; }

/* Pricing */
.mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.mkt-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mkt-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mkt-price-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.mkt-price-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.mkt-price-card.popular .mkt-price-body { padding-top: 36px; }
.mkt-price-name { font-weight: 800; color: var(--text2); margin-bottom: 8px; font-size: 0.9rem; }
.mkt-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.mkt-price-amount span { font-size: 0.95rem; font-weight: 600; color: var(--text3); }
.mkt-price-period { font-size: 0.82rem; color: var(--text3); margin-bottom: 24px; }
.mkt-price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.mkt-price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--neutral-100);
}
.mkt-price-features li i { color: var(--color-mint); margin-top: 3px; flex-shrink: 0; }
.mkt-price-card .mkt-btn { width: 100%; }
.mkt-price-yearly-note {
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: -16px;
  margin-bottom: 20px;
  font-weight: 600;
}
.mkt-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.mkt-billing-opt {
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text3);
  cursor: pointer;
  padding: 6px 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mkt-billing-opt.active { color: var(--primary); }
.mkt-billing-save {
  font-size: 0.72rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
}
.mkt-billing-switch {
  position: relative;
  width: 52px;
  height: 28px;
  display: inline-block;
}
.mkt-billing-switch input { opacity: 0; width: 0; height: 0; }
.mkt-billing-slider {
  position: absolute;
  inset: 0;
  background: var(--neutral-200);
  border-radius: 999px;
  transition: 0.2s;
  cursor: pointer;
}
.mkt-billing-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: var(--shadow-sm);
}
.mkt-billing-switch input:checked + .mkt-billing-slider { background: var(--primary); }
.mkt-billing-switch input:checked + .mkt-billing-slider::before { transform: translateX(24px); }

/* CTA */
.mkt-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--neutral-100) 0%, var(--bg) 100%);
}
.mkt-cta-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mkt-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.mkt-cta p { color: var(--text2); margin-bottom: 28px; }

/* Footer */
.mkt-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mkt-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.mkt-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.mkt-footer-links a { color: var(--text2); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.mkt-footer-links a:hover { color: var(--primary); }
.mkt-footer-copy { font-size: 0.82rem; color: var(--text3); }

/* ── Motion tokens ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reveal + stagger */
.mkt-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mkt-reveal.visible { opacity: 1; transform: translateY(0); }
.mkt-reveal[data-delay="1"] { transition-delay: 0.1s; }
.mkt-reveal[data-delay="2"] { transition-delay: 0.2s; }
.mkt-reveal[data-delay="3"] { transition-delay: 0.3s; }
.mkt-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Hero ambient (static — no looping motion) */
.mkt-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mkt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
}
.mkt-orb-1 { width: 320px; height: 320px; background: rgba(88, 108, 255, 0.2); top: 8%; right: 0; }
.mkt-orb-2 { width: 240px; height: 240px; background: rgba(127, 224, 194, 0.15); bottom: 15%; left: 5%; }
.mkt-orb-3 { display: none; }
.mkt-hero h1 .gradient {
  background: linear-gradient(135deg, var(--color-indigo) 0%, #6B5CE7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Marquee */
.mkt-marquee-wrap {
  padding: 20px 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.mkt-marquee {
  display: flex;
  width: max-content;
  animation: mkt-marquee 80s linear infinite;
}
.mkt-marquee:hover { animation-play-state: paused; }
.mkt-marquee-track {
  display: flex;
  gap: 12px;
  padding-inline: 12px;
  flex-shrink: 0;
}
@keyframes mkt-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[dir="rtl"] .mkt-marquee {
  animation-name: mkt-marquee-rtl;
}
@keyframes mkt-marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.mkt-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--neutral-100);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text2);
  white-space: nowrap;
}
.mkt-marquee-item i { color: var(--primary); }

/* Pain → solution */
.mkt-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.mkt-pain-card {
  border-radius: var(--radius-2xl);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.mkt-pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mkt-pain-card.before {
  background: linear-gradient(160deg, #fff 0%, rgba(255, 143, 163, 0.08) 100%);
}
.mkt-pain-card.after {
  background: linear-gradient(160deg, #fff 0%, rgba(127, 224, 194, 0.12) 100%);
  border-color: rgba(127, 224, 194, 0.4);
}
.mkt-pain-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
}
.mkt-pain-card.before .mkt-pain-label { background: rgba(255, 143, 163, 0.2); color: #e11d48; }
.mkt-pain-card.after .mkt-pain-label { background: rgba(127, 224, 194, 0.25); color: #0d9488; }
.mkt-pain-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; font-family: var(--font-display); }
.mkt-pain-list { list-style: none; }
.mkt-pain-list li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--border);
}
.mkt-pain-list li:last-child { border: none; }
.mkt-pain-card.before .mkt-pain-list i { color: var(--color-coral); }
.mkt-pain-card.after .mkt-pain-list i { color: #0d9488; }
.mkt-pain-arrow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Sticky feature showcase (Monday / Zoho style) */
.mkt-showcase-wrap {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
.mkt-showcase-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.mkt-showcase-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mkt-showcase-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: transparent;
  cursor: pointer;
  text-align: start;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  font-family: inherit;
  width: 100%;
}
.mkt-showcase-tab:hover { background: var(--surface); border-color: var(--border); }
.mkt-showcase-tab.active {
  background: var(--surface);
  border-color: rgba(88, 108, 255, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}
[dir="rtl"] .mkt-showcase-tab.active { transform: translateX(4px); }
.mkt-showcase-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s;
}
.mkt-showcase-tab.active .mkt-showcase-tab-icon { transform: none; }
.mkt-showcase-tab strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.mkt-showcase-tab span { font-size: 0.78rem; color: var(--text3); font-weight: 600; line-height: 1.4; }
.mkt-showcase-progress {
  height: 3px;
  background: var(--neutral-200);
  border-radius: 100px;
  margin-top: 20px;
  overflow: hidden;
}
.mkt-showcase-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-indigo), var(--color-mint));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.mkt-showcase-stage {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.mkt-showcase-panel {
  min-height: 420px;
  scroll-margin-top: 120px;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.mkt-showcase-panel.active {
  opacity: 1;
}
.mkt-showcase-panel .mkt-ui-frame {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.mkt-showcase-panel.active .mkt-ui-frame {
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 108, 255, 0.2);
}
.mkt-ui-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.mkt-ui-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--border);
}
.mkt-ui-chrome span { font-size: 0.75rem; font-weight: 700; color: var(--text3); flex: 1; text-align: center; }
.mkt-ui-body { padding: 20px; min-height: 380px; position: relative; }

/* Animated UI: AI */
.mkt-ui-ai-flow { display: flex; flex-direction: column; gap: 14px; }
.mkt-ui-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  background: var(--neutral-50);
}
.mkt-ui-typing {
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text2);
  min-height: 48px;
  border: 1px solid var(--border);
}
.mkt-ui-questions {
  display: grid;
  gap: 8px;
}
.mkt-ui-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(16px);
  animation: mkt-slide-in 0.5s ease forwards;
}
.mkt-showcase-panel.active .mkt-ui-q:nth-child(1) { animation-delay: 0.2s; }
.mkt-showcase-panel.active .mkt-ui-q:nth-child(2) { animation-delay: 0.45s; }
.mkt-showcase-panel.active .mkt-ui-q:nth-child(3) { animation-delay: 0.7s; }
.mkt-showcase-panel.active .mkt-ui-q:nth-child(4) { animation-delay: 0.95s; }
@keyframes mkt-slide-in {
  to { opacity: 1; transform: translateX(0); }
}
[dir="rtl"] .mkt-ui-q { transform: translateX(-16px); }
[dir="rtl"] .mkt-showcase-panel.active .mkt-ui-q { animation-name: mkt-slide-in-rtl; }
@keyframes mkt-slide-in-rtl {
  to { opacity: 1; transform: translateX(0); }
}
.mkt-ui-q .badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
}

/* Animated UI: Exams */
.mkt-ui-exam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mkt-ui-exam-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--neutral-50);
  transition: transform 0.3s;
}
.mkt-showcase-panel.active .mkt-ui-exam-card {
  animation: mkt-pop 0.45s ease forwards;
  opacity: 0;
}
.mkt-showcase-panel.active .mkt-ui-exam-card:nth-child(1) { animation-delay: 0.15s; }
.mkt-showcase-panel.active .mkt-ui-exam-card:nth-child(2) { animation-delay: 0.3s; }
.mkt-showcase-panel.active .mkt-ui-exam-card:nth-child(3) { animation-delay: 0.45s; }
.mkt-showcase-panel.active .mkt-ui-exam-card:nth-child(4) { animation-delay: 0.6s; }
@keyframes mkt-pop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mkt-ui-score-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--color-mint) 0% 87%, var(--neutral-200) 87% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 12px auto 0;
  animation: mkt-ring-fill 1.2s ease 0.5s forwards;
}
@keyframes mkt-ring-fill {
  from { background: conic-gradient(var(--color-mint) 0% 0%, var(--neutral-200) 0% 100%); }
  to { background: conic-gradient(var(--color-mint) 0% 87%, var(--neutral-200) 87% 100%); }
}

/* Animated UI: Classroom */
.mkt-ui-seatmap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 280px;
  margin: 0 auto 16px;
}
.mkt-ui-seat {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--neutral-100);
  border: 1px solid var(--border);
  transition: background 0.3s, transform 0.3s;
}
.mkt-showcase-panel.active .mkt-ui-seat.present {
  animation: mkt-seat-pop 0.35s ease forwards;
}
.mkt-ui-seat.present { background: rgba(127, 224, 194, 0.35); border-color: #0d9488; }
.mkt-ui-seat.absent { background: rgba(255, 143, 163, 0.2); border-color: var(--color-coral); }
@keyframes mkt-seat-pop {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animated UI: Gamification */
.mkt-ui-leaderboard { display: flex; flex-direction: column; gap: 8px; }
.mkt-ui-lb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transform: translateY(12px);
  opacity: 0;
}
.mkt-showcase-panel.active .mkt-ui-lb-row {
  animation: mkt-lb-in 0.45s ease forwards;
}
.mkt-showcase-panel.active .mkt-ui-lb-row:nth-child(1) { animation-delay: 0.1s; }
.mkt-showcase-panel.active .mkt-ui-lb-row:nth-child(2) { animation-delay: 0.25s; }
.mkt-showcase-panel.active .mkt-ui-lb-row:nth-child(3) { animation-delay: 0.4s; }
.mkt-showcase-panel.active .mkt-ui-lb-row:nth-child(4) { animation-delay: 0.55s; }
@keyframes mkt-lb-in {
  to { opacity: 1; transform: translateY(0); }
}
.mkt-ui-lb-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-ui-lb-row:first-child .mkt-ui-lb-rank {
  background: linear-gradient(135deg, #FFDB6B, #f59e0b);
  color: #92400e;
}
.mkt-ui-lb-bar {
  flex: 1;
  height: 6px;
  background: var(--neutral-200);
  border-radius: 100px;
  overflow: hidden;
}
.mkt-ui-lb-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--color-mint));
  border-radius: 100px;
  width: 0;
  transition: width 1s ease 0.3s;
}
.mkt-showcase-panel.active .mkt-ui-lb-bar i { width: var(--w, 60%); }

/* Animated UI: Parents WhatsApp */
.mkt-ui-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.mkt-ui-bubble {
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 0.8rem;
  max-width: 85%;
  opacity: 0;
  transform: translateY(8px);
}
.mkt-ui-bubble.out {
  align-self: flex-end;
  background: #dcf8c6;
  border-radius: 14px 14px 4px 14px;
  color: #1a1a1a;
}
.mkt-ui-bubble.in {
  background: var(--neutral-100);
  border: 1px solid var(--border);
}
.mkt-showcase-panel.active .mkt-ui-bubble {
  animation: mkt-chat-in 0.4s ease forwards;
}
.mkt-showcase-panel.active .mkt-ui-bubble:nth-child(1) { animation-delay: 0.2s; }
.mkt-showcase-panel.active .mkt-ui-bubble:nth-child(2) { animation-delay: 0.5s; }
.mkt-showcase-panel.active .mkt-ui-bubble:nth-child(3) { animation-delay: 0.8s; }
@keyframes mkt-chat-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Story rows (alternating) */
.mkt-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.mkt-story:last-child { border-bottom: none; }
.mkt-story.reverse .mkt-story-visual { order: 2; }
.mkt-story.reverse .mkt-story-copy { order: 1; }
.mkt-story-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.mkt-story-copy p { color: var(--text2); line-height: 1.75; margin-bottom: 20px; }
.mkt-story-points { list-style: none; margin-bottom: 24px; }
.mkt-story-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.mkt-story-points i { color: var(--primary); width: 20px; }
.mkt-story-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 24px;
  background: linear-gradient(145deg, var(--surface), var(--neutral-100));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mkt-story-inner { position: relative; z-index: 1; }

/* Comparison */
.mkt-vs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mkt-vs-table th, .mkt-vs-table td {
  padding: 16px 20px;
  text-align: start;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mkt-vs-table th { background: var(--neutral-100); font-weight: 800; }
.mkt-vs-table tr:last-child td { border-bottom: none; }
.mkt-vs-table .col-us {
  background: rgba(88, 108, 255, 0.04);
  font-weight: 700;
}
.mkt-vs-check { color: #0d9488; }
.mkt-vs-x { color: var(--color-coral); }

/* Testimonials */
.mkt-testimonials {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.mkt-testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-testimonial-card {
  flex: 0 0 min(380px, 88vw);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.mkt-testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 20px;
  font-style: italic;
}
.mkt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mkt-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-indigo), var(--color-lavender));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.mkt-testimonial-author strong { display: block; font-size: 0.9rem; }
.mkt-testimonial-author span { font-size: 0.78rem; color: var(--text3); }
.mkt-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.mkt-testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--neutral-300);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}
.mkt-testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* FAQ */
.mkt-faq { max-width: 720px; margin: 0 auto; }
.mkt-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.mkt-faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(88,108,255,0.25); }
.mkt-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  text-align: start;
}
.mkt-faq-q i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.mkt-faq-item.open .mkt-faq-q i { transform: rotate(180deg); }
.mkt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.mkt-faq-item.open .mkt-faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}
.mkt-faq-a p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

/* Guarantee band */
.mkt-guarantee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.mkt-guarantee-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mkt-guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mkt-guarantee-item i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.mkt-guarantee-item h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; }
.mkt-guarantee-item p { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* Sticky CTA bar */
.mkt-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(16, 24, 40, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-sticky-cta.visible { transform: translateY(0); }
.mkt-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mkt-sticky-cta-text strong { display: block; font-size: 0.95rem; }
.mkt-sticky-cta-text span { font-size: 0.8rem; color: var(--text2); }

/* Counter stats animate */
.mkt-stat-num[data-count] {
  font-variant-numeric: tabular-nums;
}

/* Hubs infinite marquee variant */
.mkt-hubs-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.mkt-hubs-marquee .mkt-marquee { animation-duration: 90s; }

/* Bento hover — subtle only */
.mkt-bento-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.mkt-bento-item:hover {
  transform: translateY(-2px);
}

.mkt-hub-pill {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-hub-pill:hover {
  border-color: rgba(88, 108, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

/* Mobile */
@media (max-width: 960px) {
  .mkt-hero-layout { grid-template-columns: 1fr; text-align: center; }
  .mkt-hero-lead { margin-inline: auto; }
  .mkt-hero-ctas { justify-content: center; }
  .mkt-hero-trust { justify-content: center; }
  .mkt-mock { max-width: 420px; margin: 40px auto 0; }
  .mkt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-platforms { grid-template-columns: 1fr; }
  .mkt-bento-item, .mkt-bento-item.span-6, .mkt-bento-item.span-8, .mkt-bento-item.span-4 { grid-column: span 12; }
  .mkt-ai-band { grid-template-columns: 1fr; padding: 36px 28px; }
  .mkt-steps { grid-template-columns: 1fr; }
  .mkt-steps::before { display: none; }
  .mkt-nav-links { display: none; }
  .mkt-menu-toggle { display: block; }
  .mkt-nav.open .mkt-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .mkt-pain-grid { grid-template-columns: 1fr; }
  .mkt-pain-arrow { display: flex; }
  .mkt-showcase-layout { grid-template-columns: 1fr; }
  .mkt-showcase-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .mkt-showcase-nav::-webkit-scrollbar { display: none; }
  .mkt-showcase-tab { flex: 0 0 auto; min-width: 200px; }
  .mkt-showcase-tab.active { transform: none; }
  .mkt-showcase-stage { min-height: 440px; }
  .mkt-story, .mkt-story.reverse { grid-template-columns: 1fr; }
  .mkt-story.reverse .mkt-story-visual,
  .mkt-story.reverse .mkt-story-copy { order: unset; }
  .mkt-guarantee { grid-template-columns: 1fr; }
  .mkt-vs-table { font-size: 0.8rem; }
  .mkt-vs-table th, .mkt-vs-table td { padding: 12px 10px; }
}
@media (max-width: 600px) {
  .mkt-hero { padding-top: 120px; min-height: auto; }
  .mkt-section { padding: 56px 0; }
  .mkt-float-card { display: none; }
  .mkt-showcase-wrap { padding: 56px 0; }
  .mkt-sticky-cta-inner { justify-content: center; text-align: center; }
}

/* ── Mega menu & pages ── */
.mkt-nav-has-mega { position: static; }
.mkt-nav-mega-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.mkt-nav-mega-trigger:hover, .mkt-nav-has-mega.open .mkt-nav-mega-trigger { color: var(--primary); }
.mkt-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 24px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
}
.mkt-nav-has-mega.open .mkt-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mkt-mega-grid {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 220px;
  gap: 28px;
}
.mkt-mega-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text3);
  margin-bottom: 12px;
  font-weight: 800;
}
.mkt-mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s;
}
.mkt-mega-col a:hover { color: var(--primary); }
.mkt-mega-featured { color: var(--primary) !important; }
.mkt-mega-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(127, 224, 194, 0.25);
  color: #0d9488;
  margin-inline-start: auto;
}
.mkt-mega-cta {
  padding: 16px;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.mkt-mega-cta p { font-size: 0.8rem; color: var(--text2); margin-bottom: 12px; line-height: 1.55; }
.mkt-mega-cta .mkt-btn { width: 100%; margin-bottom: 8px; }
.mkt-lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.mkt-lang-switch a {
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text2);
  background: var(--surface);
}
.mkt-lang-switch a.on { background: var(--primary); color: #fff; }
.mkt-hero-centered { grid-template-columns: 1fr !important; text-align: center; max-width: 780px; margin: 0 auto; }
.mkt-hero-centered .mkt-hero-lead { margin-inline: auto; }
.mkt-hero-centered .mkt-hero-ctas, .mkt-hero-centered .mkt-hero-trust { justify-content: center; }
.mkt-power-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.mkt-power-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.mkt-power-card:hover {
  border-color: rgba(88, 108, 255, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mkt-power-card.highlight { border-color: rgba(127, 224, 194, 0.45); background: linear-gradient(160deg, #fff, rgba(127,224,194,0.08)); }
.mkt-power-badge {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(127, 224, 194, 0.3);
  color: #0d9488;
}
.mkt-power-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.mkt-power-icon.accent-indigo { background: var(--primary-light); color: var(--primary); }
.mkt-power-icon.accent-mint { background: rgba(127,224,194,0.2); color: #0d9488; }
.mkt-power-icon.accent-lavender { background: rgba(200,182,255,0.2); color: #7c3aed; }
.mkt-power-icon.accent-blue { background: rgba(59,130,246,0.12); color: #3B82F6; }
.mkt-power-icon.accent-yellow { background: rgba(250,204,21,0.15); color: #ca8a04; }
.mkt-power-icon.accent-green { background: rgba(37,211,102,0.12); color: #16a34a; }
.mkt-power-icon.accent-coral { background: rgba(255,143,163,0.15); color: #e11d48; }
.mkt-power-card strong { font-size: 0.95rem; font-weight: 800; }
.mkt-power-card > span { font-size: 0.78rem; color: var(--text3); line-height: 1.45; }
.mkt-power-card em { font-size: 0.75rem; color: var(--primary); font-style: normal; font-weight: 700; margin-top: 4px; }
.mkt-spotlight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mkt-spotlight-split.reverse .mkt-spotlight-copy { order: 2; }
.mkt-spotlight-split.reverse .mkt-spotlight-visual { order: 1; }
.mkt-ai-list-inline { list-style: none; }
.mkt-ai-list-inline li { display: flex; gap: 8px; padding: 6px 0; font-size: 0.88rem; font-weight: 600; }
.mkt-ai-list-inline i { color: var(--primary); }
.mkt-teaser-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mkt-teaser-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.mkt-teaser-card:hover { box-shadow: var(--shadow-md); border-color: rgba(88,108,255,0.25); }
.mkt-teaser-card > i { font-size: 1.4rem; color: var(--primary); margin-top: 4px; }
.mkt-teaser-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.mkt-teaser-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.55; }
.mkt-teaser-link { color: var(--primary); font-weight: 700; font-size: 0.85rem; white-space: nowrap; margin-inline-start: auto; }
.mkt-page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, var(--neutral-100), var(--bg));
  border-bottom: 1px solid var(--border);
}
.mkt-page-hero--mint { background: linear-gradient(180deg, rgba(127,224,194,0.12), var(--bg)); }
.mkt-page-hero--indigo { background: linear-gradient(180deg, rgba(88,108,255,0.08), var(--bg)); }
.mkt-page-hero--compact { padding-bottom: 32px; }
.mkt-page-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin: 12px 0; letter-spacing: -0.02em; }
.mkt-page-hero .mkt-lead { color: var(--text2); max-width: 640px; line-height: 1.7; margin-bottom: 20px; }
.mkt-breadcrumb { font-size: 0.8rem; color: var(--text3); font-weight: 600; }
.mkt-breadcrumb a { color: var(--text2); text-decoration: none; }
.mkt-breadcrumb a:hover { color: var(--primary); }
.mkt-prose { max-width: 720px; line-height: 1.75; color: var(--text2); }
.mkt-prose h2 { color: var(--text); font-size: 1.2rem; margin: 24px 0 12px; }
.mkt-prose a { color: var(--primary); font-weight: 700; }
.mkt-check-list { list-style: none; margin: 16px 0; }
.mkt-check-list li { display: flex; gap: 10px; padding: 8px 0; font-weight: 600; color: var(--text); }
.mkt-check-list i { color: #0d9488; }
.mkt-compare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.mkt-compare-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.mkt-compare-card:hover { box-shadow: var(--shadow-md); }
.mkt-compare-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.mkt-compare-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.mkt-compare-card span { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.mkt-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.mkt-blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mkt-blog-card {
  display: block;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.mkt-blog-card:hover { box-shadow: var(--shadow-md); }
.mkt-blog-card.featured { border-color: rgba(88,108,255,0.25); }
.mkt-blog-cat { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--primary); letter-spacing: 0.05em; }
.mkt-blog-card h3 { font-size: 1.05rem; font-weight: 800; margin: 10px 0; line-height: 1.35; }
.mkt-blog-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.6; }
.mkt-blog-card time { font-size: 0.75rem; color: var(--text3); margin-top: 12px; display: block; }
.mkt-top-list { padding-inline-start: 1.25rem; margin: 16px 0; }
.mkt-top-list li { margin-bottom: 10px; line-height: 1.6; }
.mkt-article-cta { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.mkt-article-layout { max-width: 720px; }
.mkt-article-meta { font-size: 0.85rem; color: var(--text3); margin-bottom: 20px; }
.mkt-article-date { font-size: 0.8rem; color: var(--text3); display: block; margin-top: 8px; }
.mkt-article-toc {
  background: var(--surface2, #f8f9fc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.mkt-article-toc ol { margin: 10px 0 0; padding-inline-start: 1.25rem; }
.mkt-article-toc a { color: var(--primary); text-decoration: none; font-weight: 600; }
.mkt-article-toc a:hover { text-decoration: underline; }
.mkt-article-list { margin: 16px 0; padding-inline-start: 1.25rem; line-height: 1.7; }
.mkt-article-list li { margin-bottom: 8px; }
.mkt-article-tip,
.mkt-article-warning {
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin: 24px 0;
  border-inline-start: 4px solid var(--primary);
  background: rgba(88, 108, 255, 0.06);
}
.mkt-article-warning {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}
.mkt-article-tip strong,
.mkt-article-warning strong { display: block; margin-bottom: 6px; }
.mkt-article-tip p,
.mkt-article-warning p { margin: 0; font-size: 0.95rem; }
.mkt-article-link { margin: 20px 0; }
.mkt-article-table-wrap { overflow-x: auto; margin: 20px 0; }
.mkt-article-faq { margin-top: 40px; padding-top: 8px; }
.mkt-cta-inline { text-align: center; margin-top: 40px; }
.d-none-mobile { display: inline-flex; }

/* ——— Unsplash imagery ——— */
.mkt-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mkt-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 108, 255, 0.12), rgba(127, 224, 194, 0.15));
  min-height: 120px;
  width: 100%;
  height: 100%;
}
.mkt-img-wrap .mkt-img { min-height: inherit; }
.mkt-img-wrap .mkt-blog-card-img { aspect-ratio: 16 / 10; }
.mkt-blog-card-media.mkt-img-wrap,
.mkt-blog-card-media { min-height: 0; }
.mkt-feat-index-media.mkt-img-wrap,
.mkt-feat-index-media { min-height: 0; }
.mkt-feat-related-thumb.mkt-img-wrap,
.mkt-feat-related-thumb { min-height: 0; }
.mkt-blog-hero-cover .mkt-img-wrap,
.mkt-feat-hero-photo .mkt-img-wrap {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

/* ——— Feature pages ——— */
.mkt-feat-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 10vw, 96px);
  overflow: hidden;
}
.mkt-feat-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(88, 108, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(127, 224, 194, 0.1), transparent 50%);
  pointer-events: none;
}
.mkt-feat-hero--mint .mkt-feat-hero-bg { background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(127, 224, 194, 0.2), transparent 55%); }
.mkt-feat-hero--lavender .mkt-feat-hero-bg { background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(200, 182, 255, 0.22), transparent 55%); }
.mkt-feat-hero--green .mkt-feat-hero-bg { background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(37, 211, 102, 0.12), transparent 55%); }
.mkt-feat-hero--coral .mkt-feat-hero-bg { background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(255, 143, 163, 0.18), transparent 55%); }
.mkt-feat-hero--yellow .mkt-feat-hero-bg { background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(250, 204, 21, 0.15), transparent 55%); }
.mkt-feat-hero-photo {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mask-image: linear-gradient(105deg, transparent 30%, #000 85%);
  -webkit-mask-image: linear-gradient(105deg, transparent 30%, #000 85%);
}
[dir="rtl"] .mkt-feat-hero-photo {
  mask-image: linear-gradient(-105deg, transparent 30%, #000 85%);
  -webkit-mask-image: linear-gradient(-105deg, transparent 30%, #000 85%);
}
.mkt-feat-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 45%, transparent 100%);
}
[dir="rtl"] .mkt-feat-hero-photo-overlay {
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 45%, transparent 100%);
}
.mkt-feat-hero-img { height: 100%; min-height: 420px; object-position: center 30%; }
.mkt-feat-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.mkt-feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}
.mkt-feat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 14ch;
}
.mkt-feat-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 8px;
}
.mkt-feat-stat {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.mkt-feat-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.mkt-feat-stat span { font-size: 0.75rem; color: var(--text2); font-weight: 600; }
.mkt-feat-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mkt-feat-panel {
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface, #fff);
  box-shadow: var(--shadow-sm);
}
.mkt-feat-panel--pain { border-color: rgba(239, 68, 68, 0.2); background: linear-gradient(145deg, rgba(254, 242, 242, 0.9), var(--surface, #fff)); }
.mkt-feat-panel--gain { border-color: rgba(88, 108, 255, 0.25); background: linear-gradient(145deg, rgba(238, 242, 255, 0.95), var(--surface, #fff)); }
.mkt-feat-panel-label {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.mkt-feat-panel--pain .mkt-feat-panel-label { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.mkt-feat-panel--gain .mkt-feat-panel-label { background: rgba(88, 108, 255, 0.12); color: var(--primary); }
.mkt-feat-panel h2 { font-size: 1.15rem; font-weight: 800; margin: 0 0 10px; }
.mkt-feat-panel p { margin: 0; color: var(--text2); line-height: 1.75; font-size: 0.95rem; }
.mkt-feat-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.mkt-feat-block {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface, #fff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation-delay: var(--delay, 0s);
}
.mkt-feat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mkt-feat-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.mkt-feat-block-icon.accent-mint { background: rgba(127, 224, 194, 0.2); color: #0d9488; }
.mkt-feat-block-icon.accent-indigo { background: rgba(88, 108, 255, 0.12); color: var(--primary); }
.mkt-feat-block-icon.accent-lavender { background: rgba(200, 182, 255, 0.25); color: #7c3aed; }
.mkt-feat-block-icon.accent-blue { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.mkt-feat-block-icon.accent-yellow { background: rgba(250, 204, 21, 0.2); color: #ca8a04; }
.mkt-feat-block-icon.accent-green { background: rgba(37, 211, 102, 0.15); color: #16a34a; }
.mkt-feat-block-icon.accent-coral { background: rgba(255, 143, 163, 0.2); color: #e11d48; }
.mkt-feat-block h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 8px; }
.mkt-feat-block p { margin: 0; font-size: 0.88rem; color: var(--text2); line-height: 1.65; }
.mkt-feat-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.mkt-feat-cap {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface, #fff);
}
.mkt-feat-cap > i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-light, rgba(88, 108, 255, 0.1));
  color: var(--primary);
}
.mkt-feat-cap strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.mkt-feat-cap p { margin: 0; font-size: 0.82rem; color: var(--text2); line-height: 1.55; }
.mkt-feat-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.mkt-feat-step {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: var(--surface, #fff);
  border: 1px solid var(--border);
}
.mkt-feat-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-feat-step h3 { font-size: 0.95rem; font-weight: 800; margin: 0 0 6px; }
.mkt-feat-step p { margin: 0; font-size: 0.84rem; color: var(--text2); line-height: 1.55; }
.mkt-feat-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.mkt-feat-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface, #fff);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.mkt-feat-link-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 108, 255, 0.35);
}
.mkt-feat-link-card > i:first-child {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light, rgba(88, 108, 255, 0.1));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-feat-link-card strong { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--text3); }
.mkt-feat-link-card span { font-weight: 700; font-size: 0.95rem; }
.mkt-feat-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.mkt-feat-related-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  background: var(--surface, #fff);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mkt-feat-related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mkt-feat-related-thumb { aspect-ratio: 16/9; overflow: hidden; }
.mkt-feat-related-body { padding: 16px 18px; }
.mkt-feat-related-body em { font-style: normal; font-size: 0.8rem; color: var(--primary); font-weight: 700; }
.mkt-feat-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mkt-feat-index-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  background: var(--surface, #fff);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mkt-feat-index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mkt-feat-index-card.highlight { border-color: rgba(88, 108, 255, 0.35); box-shadow: 0 0 0 1px rgba(88, 108, 255, 0.12); }
.mkt-feat-index-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.mkt-feat-index-media .mkt-power-icon {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  z-index: 2;
}
.mkt-feat-index-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.mkt-feat-index-body > span { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; color: var(--primary); letter-spacing: 0.04em; }
.mkt-feat-index-body strong { font-size: 1.1rem; margin: 6px 0; }
.mkt-feat-index-body p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; flex: 1; margin: 0 0 12px; }
.mkt-feat-index-body em { font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.mkt-cta-box--glass {
  background: linear-gradient(135deg, rgba(88, 108, 255, 0.12), rgba(127, 224, 194, 0.1));
  border: 1px solid rgba(88, 108, 255, 0.2);
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
}
.mkt-cta-box--glass p { color: var(--text2); margin: 8px 0 20px; }

/* Feature UI mocks */
.mkt-mock {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(30, 35, 60, 0.95), rgba(15, 18, 35, 0.98));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  color: #e2e8f0;
  font-size: 0.8rem;
}
.mkt-mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mkt-mock-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mkt-mock-chrome span:nth-child(1) { background: #ff5f57; }
.mkt-mock-chrome span:nth-child(2) { background: #febc2e; }
.mkt-mock-chrome span:nth-child(3) { background: #28c840; }
.mkt-mock-chrome em { margin-inline-start: auto; font-style: normal; opacity: 0.5; font-size: 0.7rem; }
.mkt-mock-body { padding: 20px; min-height: 200px; }
.mkt-mock-lab-graph {
  height: 100px;
  background: rgba(127, 224, 194, 0.08);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.mkt-mock-wave {
  position: absolute;
  bottom: 20px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #7fe0c2, #586cff);
  border-radius: 2px;
  animation: mkt-mock-pulse 2s ease-in-out infinite;
}
.mkt-mock-slider {
  position: absolute;
  bottom: 8px;
  left: 20%;
  right: 20%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.mkt-mock-slider span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7fe0c2;
  top: -5px;
  left: 55%;
  box-shadow: 0 0 12px rgba(127, 224, 194, 0.6);
}
.mkt-mock-tags { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.mkt-mock-tags li {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}
.mkt-mock-tags li.active { background: rgba(127, 224, 194, 0.25); color: #7fe0c2; }
.mkt-mock-prompt {
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 0.75rem;
}
.mkt-mock-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.mkt-mock-chips span {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
}
.mkt-mock-chips span.on { background: rgba(88, 108, 255, 0.35); color: #c7d2fe; }
.mkt-mock-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.mkt-mock-progress div {
  height: 100%;
  background: linear-gradient(90deg, #586cff, #7fe0c2);
  border-radius: 3px;
  animation: mkt-mock-grow 3s ease-in-out infinite alternate;
}
.mkt-mock-exam .mkt-mock-timer {
  float: inline-end;
  font-weight: 800;
  color: #fbbf24;
}
.mkt-mock-q { font-weight: 700; margin: 12px 0; }
.mkt-mock-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mkt-mock-opts span {
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}
.mkt-mock-opts span.sel { background: rgba(88, 108, 255, 0.4); border: 1px solid #818cf8; }
.mkt-mock-shield { margin-top: 14px; font-size: 0.7rem; color: #7fe0c2; }
.mkt-mock-slide {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
}
.mkt-mock-slide strong { display: block; font-size: 1rem; }
.mkt-mock-slide-nav { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.mkt-mock-slide-nav span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mkt-mock-slide-nav span.on { background: #a78bfa; width: 20px; border-radius: 4px; }
.mkt-mock-flip {
  perspective: 600px;
  height: 120px;
  position: relative;
}
.mkt-mock-card-front,
.mkt-mock-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  backface-visibility: hidden;
  animation: mkt-mock-flip 4s ease-in-out infinite;
}
.mkt-mock-card-front { background: rgba(88, 108, 255, 0.3); font-weight: 700; }
.mkt-mock-card-back {
  background: rgba(127, 224, 194, 0.2);
  transform: rotateY(180deg);
  animation: mkt-mock-flip-back 4s ease-in-out infinite;
  font-size: 0.72rem;
}
.mkt-mock-row {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mkt-mock-domain {
  font-family: monospace;
  color: #7fe0c2;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.mkt-mock-course {
  padding: 14px;
  background: rgba(88, 108, 255, 0.2);
  border-radius: 10px;
}
.mkt-mock-course span { display: block; font-size: 0.7rem; opacity: 0.7; margin-top: 4px; }
.mkt-mock-file {
  padding: 10px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mkt-mock-xp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.mkt-mock-xp-bar div {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 4px;
}
.mkt-mock-leader span { display: block; padding: 4px 0; font-size: 0.72rem; }
.mkt-mock-battle {
  margin-top: 10px;
  text-align: center;
  padding: 8px;
  background: rgba(167, 139, 250, 0.25);
  border-radius: 8px;
  color: #c4b5fd;
}
.mkt-mock-bubble {
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  max-width: 90%;
  font-size: 0.72rem;
}
.mkt-mock-bubble.them { background: rgba(255, 255, 255, 0.1); }
.mkt-mock-bubble.me {
  background: rgba(37, 211, 102, 0.2);
  margin-inline-start: auto;
  color: #bbf7d0;
}
.mkt-mock-live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: mkt-mock-blink 1s infinite;
  margin-inline-end: 6px;
}
.mkt-mock-board {
  margin-top: 12px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
}
.mkt-mock-money { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mkt-mock-kpi {
  padding: 16px;
  background: rgba(250, 204, 21, 0.12);
  border-radius: 10px;
  text-align: center;
}
.mkt-mock-kpi strong { display: block; font-size: 1.2rem; color: #fde047; }
.mkt-mock-kpi span { font-size: 0.65rem; opacity: 0.7; }
@keyframes mkt-mock-pulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}
@keyframes mkt-mock-grow {
  from { width: 40%; }
  to { width: 88%; }
}
@keyframes mkt-mock-flip {
  0%, 45% { transform: rotateY(0); }
  55%, 100% { transform: rotateY(180deg); }
}
@keyframes mkt-mock-flip-back {
  0%, 45% { transform: rotateY(180deg); }
  55%, 100% { transform: rotateY(360deg); }
}
@keyframes mkt-mock-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ——— Blog imagery & layout ——— */
.mkt-page-hero--blog {
  background: linear-gradient(180deg, rgba(88, 108, 255, 0.06), var(--bg));
}
.mkt-blog-hero {
  position: relative;
  padding: 0 0 48px;
}
.mkt-blog-hero--cover { padding-top: 0; min-height: 420px; display: flex; align-items: flex-end; }
.mkt-blog-hero-cover {
  position: absolute;
  inset: 0;
  max-height: 480px;
  overflow: hidden;
}
.mkt-blog-hero-cover-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-position: center 35%;
}
.mkt-blog-hero-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 35, 0.15) 0%, rgba(15, 18, 35, 0.75) 55%, var(--bg) 100%);
}
.mkt-blog-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 18vw, 200px);
  max-width: 780px;
}
.mkt-blog-hero--cover .mkt-blog-hero-inner h1,
.mkt-blog-hero--cover .mkt-blog-hero-inner .mkt-lead,
.mkt-blog-hero--cover .mkt-breadcrumb a { color: #fff; }
.mkt-blog-hero--cover .mkt-breadcrumb { opacity: 0.85; }
.mkt-blog-hero--cover .mkt-blog-cat {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
.mkt-blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text3);
}
.mkt-blog-hero--cover .mkt-blog-hero-meta { color: rgba(255, 255, 255, 0.85); }
.mkt-blog-article-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 1100px;
}
.mkt-article-toc--sticky {
  position: sticky;
  top: 100px;
}
.mkt-blog-card.has-thumb {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mkt-blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.mkt-blog-card-media .mkt-blog-cat {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.mkt-blog-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mkt-blog-card-body h3 { margin: 0 0 8px; }
.mkt-blog-card-body p { flex: 1; }
.mkt-blog-card-link {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mkt-blog-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mkt-blog-featured .mkt-blog-card.featured:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
}
.mkt-blog-featured .mkt-blog-card.featured:first-child .mkt-blog-card-media {
  flex: 0 0 52%;
  aspect-ratio: auto;
  min-height: 280px;
}
.mkt-blog-grid--related { margin-top: 16px; }

@media (max-width: 960px) {
  .mkt-feat-hero-grid { grid-template-columns: 1fr; }
  .mkt-feat-hero-photo { opacity: 0.12; mask-image: none; -webkit-mask-image: none; }
  .mkt-feat-narrative-grid,
  .mkt-feat-blocks,
  .mkt-feat-cap-grid,
  .mkt-feat-steps,
  .mkt-feat-related-grid,
  .mkt-feat-index-grid { grid-template-columns: 1fr; }
  .mkt-blog-article-grid { grid-template-columns: 1fr; }
  .mkt-article-toc--sticky { position: static; }
  .mkt-blog-featured { grid-template-columns: 1fr; }
  .mkt-blog-featured .mkt-blog-card.featured:first-child { flex-direction: column; }
  .mkt-blog-featured .mkt-blog-card.featured:first-child .mkt-blog-card-media { flex: none; min-height: 200px; }
  .mkt-mega-grid { grid-template-columns: 1fr 1fr; }
  .mkt-mega-cta { grid-column: span 2; }
  .mkt-spotlight-split, .mkt-spotlight-split.reverse { grid-template-columns: 1fr; }
  .mkt-spotlight-split.reverse .mkt-spotlight-copy,
  .mkt-spotlight-split.reverse .mkt-spotlight-visual { order: unset; }
  .mkt-teaser-row { grid-template-columns: 1fr; }
  .mkt-blog-featured { grid-template-columns: 1fr; }
  .d-none-mobile { display: none !important; }
  .mkt-nav-has-mega .mkt-mega { position: static; box-shadow: none; border: none; padding: 12px 0; display: none; }
  .mkt-nav-has-mega.open .mkt-mega { display: block; opacity: 1; visibility: visible; transform: none; }
}
