/* ── FRONT PAGE OVERRIDES ── */
/* Dark-only: no light theme transition on front page */
body { transition: none; }

/* Front page nav: narrower, no light theme */
nav { max-width: 640px; }

/* Front page btn-primary with glow pulse */
.btn-primary {
  font-weight: 600;
  box-shadow: 0 0 20px rgba(30,245,173,0.25), 0 0 60px rgba(30,245,173,0.1);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(30,245,173,0.25), 0 0 60px rgba(30,245,173,0.1); }
  50% { box-shadow: 0 0 30px rgba(30,245,173,0.4), 0 0 80px rgba(30,245,173,0.18); }
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 32px rgba(30,245,173,0.45), 0 0 80px rgba(30,245,173,0.2);
  transform: translateY(-2px);
  animation: none;
}

@media (max-width: 700px) {
  .nav-ghost, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 8px 10px; }
  .nav-by { display: none; }
}

/* ── URGENCY BANNER ── */
.urgency-bar {
  display: block !important;
  background: #1EF5AD !important; color: #080808;
  width: 100% !important; max-width: none !important;
  padding: 14px 24px; margin: 0;
  position: relative; z-index: 200;
  box-sizing: border-box;
  text-align: center !important;
}
.urgency-inner {
  display: flex !important; align-items: center; justify-content: center !important;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  width: 100%; max-width: none !important;
  margin: 0 auto; text-align: center;
}
.urgency-text { color: #080808; }
.urgency-text strong { font-weight: 700; }
.urgency-cta {
  display: inline-block; background: #080808; color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 8px 22px; border-radius: 100px;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.urgency-cta:hover { background: #222; }

/* ── HERO ── */
.hero {
  padding: 148px 24px 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 560px;
  background: radial-gradient(ellipse, rgba(30,245,173,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--mint); font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--fg2); line-height: 1.7;
  max-width: 560px; margin: 0 auto 34px;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.hero-micro {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--fg3); margin-bottom: 28px;
}
.hero-micro span { margin: 0 6px; opacity: 0.4; }
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}
.trust-tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--mint-dim); border: 1px solid var(--mint-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-tick svg { width: 9px; height: 9px; color: var(--mint); }

/* ── PLATFORM FLOW DIAGRAM ── */
.flow-diagram {
  max-width: 560px; margin: 48px auto 0;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.flow-icons {
  display: flex; justify-content: center;
  gap: 10px; width: 100%; margin-bottom: 0;
}
.flow-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.flow-icon svg { width: 26px; height: 26px; }
.flow-svg { width: 100%; overflow: visible; }
.flow-line-static {
  fill: none; stroke: rgba(30,245,173,0.15); stroke-width: 1.5;
}
.flow-line-anim {
  fill: none; stroke: rgba(30,245,173,0.55); stroke-width: 1.5;
  stroke-dasharray: 5 8;
  animation: flowDash 1.8s linear infinite;
}
.flow-line-anim.d1 { animation-delay: 0s; }
.flow-line-anim.d2 { animation-delay: -0.3s; }
.flow-line-anim.d3 { animation-delay: -0.6s; }
.flow-line-anim.d4 { animation-delay: -0.9s; }
.flow-line-anim.d5 { animation-delay: -1.2s; }
.flow-line-anim.d6 { animation-delay: -1.5s; }
@keyframes flowDash { to { stroke-dashoffset: -26; } }
.flow-mono {
  width: 60px; height: 60px; border-radius: 18px;
  background: #fff; border: 1.5px solid rgba(30,245,173,0.45);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 28px rgba(30,245,173,0.25), 0 0 60px rgba(30,245,173,0.1);
  animation: monoBob 3.6s ease-in-out infinite;
}
@keyframes monoBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.flow-mono-icon { color: #1A1A1A; }
.flow-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  color: var(--fg3); margin-top: 12px; letter-spacing: 0.04em;
}

/* ── APP MOCKUP (always light) ── */
.mockup-wrap {
  max-width: 960px; margin: 24px auto 0;
  position: relative;
}
.mockup-glow {
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(30,245,173,0.18), transparent 55%, rgba(30,245,173,0.06));
  border-radius: 22px; z-index: 0;
}
.mockup-shell {
  position: relative; z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.app-chrome {
  background: #F8F8F6;
  border-bottom: 1px solid #E8E8E4;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot.r { background: #FF5F57; }
.chrome-dot.y { background: #FEBC2E; }
.chrome-dot.g { background: #28C840; }
.chrome-bar {
  flex: 1; max-width: 260px; margin: 0 auto;
  background: #EBEBEA; border-radius: 6px;
  height: 22px; display: flex; align-items: center;
  padding: 0 10px;
  font-family: var(--font-body); font-size: 11px; color: #9A9A9A;
}
.app-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 460px;
  overflow: hidden;
}
.app-sidebar {
  background: #FFFFFF;
  border-right: 1px solid #EBEBEA;
  padding: 16px 0;
  overflow: hidden;
}
.app-sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 16px 16px;
  border-bottom: 1px solid #F0F0EE;
  margin-bottom: 8px;
}
.sidebar-logo-text {
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; color: #1A1A1A; letter-spacing: -0.01em;
}
.sidebar-section {
  padding: 8px 16px 4px;
  font-family: var(--font-body); font-size: 9px;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: #ABABAB;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin: 1px 8px;
  border-radius: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: #555555; transition: background 0.15s;
}
.sidebar-item.active {
  background: rgba(30,245,173,0.12);
  color: #0A6B48; font-weight: 500;
}
.sidebar-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }
.sidebar-item.active svg { opacity: 1; }
.app-main {
  background: #FAFAF8;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* ── ANIMATED MOCKUP SCREENS ── */
.app-screen {
  position: absolute; inset: 0;
  padding: 16px 18px 28px;
  background: #FAFAF8;
  opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none;
  overflow-y: auto;
}
.app-screen::-webkit-scrollbar { display: none; }
.app-screen { -ms-overflow-style: none; scrollbar-width: none; }
.app-screen.active { opacity: 1; pointer-events: all; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-item { opacity: 0; }
.app-screen.active .anim-item { animation: fadeSlideUp 0.4s ease forwards; }
@keyframes growBar { from { width: 0; } }
.app-screen.active .ar-progress-fill { animation: growBar 0.9s ease forwards; animation-delay: 0.5s; }
@keyframes countIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }
.app-screen.active .topic-relevance { animation: countIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.screen-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ar-badge {
  font-family: var(--font-body); font-size: 9px; font-weight: 500;
  padding: 2px 8px; border-radius: 100px;
  background: rgba(30,245,173,0.15); color: #0A6B48;
  border: 1px solid rgba(30,245,173,0.2);
}
.ar-progress { height: 4px; background: #EAEAE8; border-radius: 2px; overflow: hidden; }
.ar-progress-fill { height: 100%; background: #1EF5AD; border-radius: 2px; }
.ar-tabs {
  display: flex; gap: 2px; margin-bottom: 12px;
  background: #EDEDEA; border-radius: 10px; padding: 3px;
  overflow-x: auto; flex-shrink: 0;
}
.ar-tabs::-webkit-scrollbar { display: none; }
.ar-tab {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  padding: 5px 9px; border-radius: 7px; white-space: nowrap;
  color: #AAA; flex-shrink: 0;
}
.ar-tab svg { width: 11px; height: 11px; flex-shrink: 0; }
.ar-tab.active { background: #fff; color: #1A1A1A; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.app-card { background: #fff; border: 1px solid #EAEAE8; border-radius: 10px; padding: 12px 14px; margin-bottom: 8px; }
.camp-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.camp-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(30,245,173,0.12); border: 1px solid rgba(30,245,173,0.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.camp-icon svg { width: 13px; height: 13px; }
.camp-name { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #1A1A1A; }
.camp-month { font-family: var(--font-body); font-size: 9px; color: #AAA; margin-top: 1px; }
.camp-theme { display: flex; align-items: center; gap: 5px; margin: 6px 0 3px; }
.camp-theme-dot { width: 8px; height: 8px; border-radius: 50%; background: #1EF5AD; flex-shrink: 0; }
.camp-theme-name { font-family: var(--font-body); font-size: 10px; font-weight: 500; color: #1A1A1A; }
.camp-desc { font-family: var(--font-body); font-size: 9px; color: #888; line-height: 1.45; margin-bottom: 6px; }
.camp-bullet { display: flex; align-items: flex-start; gap: 5px; font-family: var(--font-body); font-size: 9px; color: #555; margin-bottom: 2px; line-height: 1.4; }
.camp-bullet svg { width: 9px; height: 9px; flex-shrink: 0; margin-top: 1px; }
.month-row { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px solid #F4F4F2; }
.month-row:last-child { border-bottom: none; padding-bottom: 0; }
.month-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.month-dot.current { background: #1EF5AD; box-shadow: 0 0 6px rgba(30,245,173,0.5); }
.month-dot.upcoming { background: #E4E4E0; }
.month-label { font-family: var(--font-body); font-size: 10px; color: #888; min-width: 48px; margin-top: 1px; }
.month-name { font-family: var(--font-body); font-size: 10px; font-weight: 500; color: #1A1A1A; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.month-current { font-family: var(--font-body); font-size: 8px; font-weight: 500; padding: 1px 6px; border-radius: 100px; background: rgba(30,245,173,0.15); color: #0A6B48; }
.month-date { font-family: var(--font-body); font-size: 9px; color: #CCC; }
.sec-label { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: #BBB; margin-bottom: 5px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 4px; }
.pill-gray { font-family: var(--font-body); font-size: 10px; padding: 3px 9px; background: #F0F0EE; border: 1px solid #E4E4E0; border-radius: 6px; color: #444; }
.pill-mint { font-family: var(--font-body); font-size: 10px; padding: 3px 9px; background: rgba(30,245,173,0.12); border: 1px solid rgba(30,245,173,0.22); border-radius: 6px; color: #0A6B48; }
.kw-pill { display: inline-flex; align-items: center; gap: 5px; background: #F0F0EE; border: 1px solid #E4E4E0; border-radius: 100px; padding: 4px 10px; font-family: var(--font-body); font-size: 10px; color: #333; }
.kw-x { color: #AAA; font-size: 12px; line-height: 1; margin-left: 1px; }
.kw-input { background: #F8F8F6; border: 1px solid #EBEBEA; border-radius: 8px; padding: 8px 12px; font-family: var(--font-body); font-size: 11px; color: #CCC; flex: 1; }
.kw-add-btn { background: #1EF5AD; border-radius: 100px; padding: 7px 14px; font-family: var(--font-body); font-size: 11px; font-weight: 500; color: #000; flex-shrink: 0; }
.topic-card { background: #fff; border: 1px solid #EAEAE8; border-radius: 10px; padding: 10px 12px; margin-bottom: 6px; }
.topic-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 3px; }
.topic-title { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #1A1A1A; line-height: 1.35; }
.topic-relevance { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: #1EF5AD; flex-shrink: 0; }
.topic-sub { font-family: var(--font-body); font-size: 9px; color: #888; line-height: 1.4; margin-bottom: 6px; }
.topic-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 5px; }
.topic-tag { font-family: var(--font-body); font-size: 9px; font-weight: 500; padding: 2px 7px; border-radius: 4px; }
.tt-edu { background: #E8F0FE; color: #2A5FD8; }
.tt-cam { background: rgba(30,245,173,0.12); color: #0A6B48; }
.topic-plats { display: flex; gap: 4px; }
.tc-plat { font-family: var(--font-body); font-size: 9px; font-weight: 500; padding: 2px 8px; border-radius: 100px; background: #1A1A1A; color: #fff; }
.tc-plat.li { background: #0A66C2; }
.tc-plat.ig { background: linear-gradient(135deg,#f09433,#bc1888); }
.tc-plat.tw { background: #000; }
.plat-section { background: #fff; border: 1px solid #EAEAE8; border-radius: 10px; padding: 10px 12px; margin-bottom: 6px; }
.plat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.plat-name { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #1A1A1A; display: flex; align-items: center; gap: 6px; }
.plat-active { font-family: var(--font-body); font-size: 9px; font-weight: 500; padding: 2px 7px; border-radius: 100px; background: rgba(30,245,173,0.1); color: #0A6B48; border: 1px solid rgba(30,245,173,0.2); }
.days-row { display: flex; gap: 4px; margin-bottom: 6px; }
.day-pill { width: 30px; height: 24px; border-radius: 100px; font-family: var(--font-body); font-size: 9px; font-weight: 500; display: flex; align-items: center; justify-content: center; color: #AAA; background: #F4F4F2; flex-shrink: 0; }
.day-pill.on { background: #1EF5AD; color: #000; }
.sched-toggle { width: 30px; height: 17px; border-radius: 9px; display: flex; align-items: center; padding: 2px; flex-shrink: 0; }
.sched-toggle.on { background: #1EF5AD; justify-content: flex-end; }
.sched-toggle.off { background: #E0E0DA; justify-content: flex-start; }
.sched-toggle-nub { width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.auto-mode-row { display: flex; align-items: center; justify-content: space-between; background: rgba(30,245,173,0.06); border: 1px solid rgba(30,245,173,0.2); border-radius: 7px; padding: 6px 10px; }
.cq-post { background: #fff; border: 1px solid #EAEAE8; border-radius: 10px; padding: 10px 12px; margin-bottom: 6px; }
.cq-post-top { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; flex-wrap: wrap; }
.cq-plat-badge { font-family: var(--font-body); font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 100px; color: #fff; }
.cq-plat-badge.li { background: #0A66C2; }
.cq-plat-badge.fb { background: #1877F2; }
.cq-plat-badge.tw { background: #000; }
.cq-plat-badge.ig { background: linear-gradient(135deg,#f09433,#bc1888); }
.cq-scheduled { font-family: var(--font-body); font-size: 9px; font-weight: 500; padding: 2px 8px; border-radius: 100px; background: rgba(30,245,173,0.12); color: #0A6B48; }
.cq-campaign { font-family: var(--font-body); font-size: 9px; color: #AAA; display: flex; align-items: center; gap: 4px; }
.cq-date { font-family: var(--font-body); font-size: 9px; color: #CCC; margin-left: auto; }
.cq-text { font-family: var(--font-body); font-size: 10px; color: #444; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; }
.cq-preview { font-family: var(--font-body); font-size: 9px; color: #1EF5AD; display: flex; align-items: center; gap: 4px; }
.app-page-title { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: #1A1A1A; margin-bottom: 4px; }
.app-page-sub { font-family: var(--font-body); font-size: 12px; color: #999; margin-bottom: 20px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-month { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: #333; display: flex; align-items: center; gap: 8px; }
.cal-arrow { width: 24px; height: 24px; border-radius: 6px; background: #F0F0EE; display: flex; align-items: center; justify-content: center; color: #666; font-size: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: #E8E8E4; border: 1px solid #E8E8E4; border-radius: 10px; overflow: hidden; }
.cal-day-header { background: #F8F8F6; font-family: var(--font-body); font-size: 10px; font-weight: 500; color: #AAAAAA; padding: 8px 6px; text-align: center; }
.cal-day { background: #FFFFFF; min-height: 64px; padding: 6px; }
.cal-day.today { background: #F0FEF8; }
.cal-date { font-family: var(--font-body); font-size: 11px; color: #888; margin-bottom: 4px; }
.cal-day.today .cal-date { width: 20px; height: 20px; border-radius: 50%; background: var(--mint); color: #000; display: flex; align-items: center; justify-content: center; }
.cal-post { font-family: var(--font-body); font-size: 9px; background: rgba(30,245,173,0.15); color: #0A6B48; border-radius: 4px; padding: 2px 4px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.screen-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10; pointer-events: none;
}
.screen-dot {
  height: 5px; width: 5px; border-radius: 3px; background: #D8D8D4;
  transition: background 0.3s ease, width 0.3s ease;
}
.screen-dot.active { background: #1EF5AD; width: 14px; }

/* ── STATS ── */
.stats-strip { padding: 0 0 72px; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-cell {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-head); font-weight: 500;
  font-size: 40px; color: var(--mint);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
  transition: opacity 0.2s ease;
}
.stat-val.counting { opacity: 0.7; }
.stat-label {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 400; color: var(--fg2);
}
.stat-detail {
  display: block; font-size: 11px; color: var(--fg3);
  margin-top: 2px; font-weight: 400;
}

/* ── PROBLEM SECTION ── */
.problem-section { padding: 0 0 96px; }
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 48px 40px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px; margin-bottom: 32px;
}
.problem-item {
  font-family: var(--font-body); font-size: 16px;
  font-weight: 400; color: var(--fg2); line-height: 1.65;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.problem-item span {
  font-size: 24px; display: block; margin-bottom: 12px;
}
.problem-transition {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--mint); text-align: center;
}

/* ── SECTION HEADERS ── */
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(22px, 3.2vw, 36px); margin-bottom: 12px; }
.section-head p {
  font-size: 16px; font-weight: 400;
  color: var(--fg2); line-height: 1.7; max-width: 480px;
}
.section-head.center p { margin: 0 auto; }

/* ── 3 STEP BLOCKS ── */
.steps { padding: 120px 0; }
.step-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  margin-bottom: 140px;
}
.step-block:last-child { margin-bottom: 0; }
.step-block.rev .step-vis { order: -1; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--mint-dim); border: 1.5px solid var(--mint-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; color: var(--mint);
  margin-bottom: 14px; flex-shrink: 0;
}
.step-feature-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.02em;
  line-height: 1.2; text-transform: none;
  color: var(--mint); margin-bottom: 22px;
}
.step-copy h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500; color: var(--fg);
  margin-bottom: 8px;
}
.step-copy p {
  font-size: 15px; font-weight: 400;
  color: var(--fg2); line-height: 1.72;
  margin-bottom: 20px;
}
.step-pills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.step-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 12px;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: var(--fg2); white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.step-pill:hover { border-color: var(--mint-border); color: var(--fg); }
.step-pill svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--mint); }
.step-pill-tick {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--mint-dim); border: 1px solid var(--mint-border);
  display: flex; align-items: center; justify-content: center;
}
.step-pill-tick svg { width: 8px; height: 8px; color: var(--mint); }

/* Step visuals */
.step-vis {
  background: #ffffff;
  border: 1px solid #E0E0DA;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.vis-header {
  background: #F8F8F6;
  border-bottom: 1px solid #EEEEED;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.vis-title {
  font-family: var(--font-head); font-weight: 500;
  font-size: 14px; color: #1A1A1A;
}
.vis-badge {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  padding: 2px 8px; border-radius: 100px;
  background: rgba(30,245,173,0.15); color: #0A6B48;
}
.vis-body { padding: 18px; }

/* Step 1: Setup checklist */
.setup-steps { display: flex; flex-direction: column; gap: 12px; }
.setup-step {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: #F8F8F6; border: 1px solid #EEEEED;
  transition: background 0.5s ease, border-color 0.5s ease, opacity 0.4s ease;
}
.setup-step.active { background: rgba(30,245,173,0.06); border-color: rgba(30,245,173,0.3); }
.setup-step.pending { opacity: 0.45; }
.setup-step-ico {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.setup-step-ico.done {
  background: rgba(30,245,173,0.18); border: 1px solid rgba(30,245,173,0.4);
}
.setup-step-ico.done svg { width: 9px; height: 9px; color: #0A6B48; }
.setup-step-ico.active {
  background: rgba(30,245,173,0.12); border: 1px solid rgba(30,245,173,0.35);
}
.setup-step-ico.pending {
  background: #EEEEED; border: 1px solid #DCDCD8;
}
.setup-spinner {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid rgba(30,245,173,0.3);
  border-top-color: #1EF5AD;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.setup-step-title {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: #1A1A1A; line-height: 1.3;
}
.setup-step-sub {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  color: #888; margin-top: 1px;
}
@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}
.setup-step-ico.done svg { animation: checkPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
.brand-done { transition: opacity 0.4s ease; }

/* Step 2: Auto-Run */
.autorun-header {
  background: #F8F8F6; border-bottom: 1px solid #EEEEED;
  padding: 14px 18px;
}
.autorun-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 17px; color: #1EF5AD;
  margin-bottom: 3px;
}
.autorun-sub {
  font-family: var(--font-body); font-size: 11px; color: #999;
}
.campaign-card {
  background: #ffffff; border: 1px solid #EAEAE8;
  border-radius: 12px; padding: 14px; margin: 14px;
}
.campaign-card-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; color: #1A1A1A; margin-bottom: 6px;
}
.prog-bar {
  height: 4px; background: #EAEAE8;
  border-radius: 2px; overflow: hidden; margin-bottom: 10px;
}
.prog-fill { height: 100%; background: var(--mint); border-radius: 2px; }
.topic-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #F4F4F2;
}
.topic-item:last-child { border-bottom: none; }
.topic-name {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 500; color: #1A1A1A; flex: 1;
}
.topic-tag-sm { display: flex; gap: 4px; margin-top: 3px; }
.topic-tag-sm span {
  font-family: var(--font-body); font-size: 9px; font-weight: 500;
  padding: 1px 6px; border-radius: 4px;
}
.topic-tag-sm .edu { background: #E8F0FE; color: #2A5FD8; }
.topic-tag-sm .cam { background: rgba(30,245,173,0.12); color: #0A6B48; }
.topic-score {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: #1EF5AD; flex-shrink: 0; min-width: 36px; text-align: right;
}

/* Step 3: Analytics */
.chart-wrap { padding: 14px; }
.chart-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px;
}
.chart-title {
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; color: #333;
}
.chart-delta {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 500; color: #1EF5AD;
}
.bar-chart {
  display: flex; align-items: flex-end;
  gap: 5px; height: 72px; margin-bottom: 14px;
}
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(30,245,173,0.2);
  transform-origin: bottom;
}
.bar.peak { background: #1EF5AD; }
.insight-cards { display: flex; flex-direction: column; gap: 8px; }
.insight-card {
  background: #F8F8F6; border: 1px solid #EAEAE8;
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.insight-ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(30,245,173,0.12);
  border: 1px solid rgba(30,245,173,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insight-ico svg { width: 13px; height: 13px; color: #1EF5AD; }
.insight-txt {
  font-family: var(--font-body); font-size: 11px;
  color: #555; line-height: 1.55;
}
.insight-txt strong { color: #1A1A1A; font-weight: 500; }

/* Step animation CSS */
@keyframes progCycle {
  0%   { width: 14%; }
  60%  { width: 36%; }
  85%  { width: 36%; }
  100% { width: 14%; }
}
.prog-fill { animation: progCycle 6s ease-in-out infinite; }
@keyframes scoreFlash { 0%, 100% { color: #1EF5AD; } 50% { color: #0dc882; } }
.topic-score { animation: scoreFlash 3s ease-in-out infinite; }
@keyframes liveGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(30,245,173,0.3); } 50% { box-shadow: 0 0 0 5px rgba(30,245,173,0); } }
.ar-badge { animation: liveGlow 2.2s ease-in-out infinite; }
@keyframes barRise { from { transform: scaleY(0); transform-origin: bottom; } }
.bars-animated .bar { animation: barRise 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.bars-animated .bar:nth-child(1) { animation-delay: 0.00s; }
.bars-animated .bar:nth-child(2) { animation-delay: 0.07s; }
.bars-animated .bar:nth-child(3) { animation-delay: 0.13s; }
.bars-animated .bar:nth-child(4) { animation-delay: 0.19s; }
.bars-animated .bar:nth-child(5) { animation-delay: 0.25s; }
.bars-animated .bar:nth-child(6) { animation-delay: 0.31s; }
.bars-animated .bar:nth-child(7) { animation-delay: 0.37s; }
.bars-animated .bar:nth-child(8) { animation-delay: 0.43s; }
@keyframes peakPulse { 0%, 100% { background: #1EF5AD; } 50% { background: rgba(30,245,173,0.6); } }
.bar.peak { animation: peakPulse 2s ease-in-out infinite; }

/* ── MID-PAGE CTA ── */
.mid-cta {
  padding: 0 0 96px;
}
.mid-cta-card {
  background: var(--card);
  border: 1.5px solid var(--mint-border);
  border-radius: var(--r);
  padding: 48px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.mid-cta-card::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,245,173,0.06), transparent 60%);
  pointer-events: none;
}
.mid-cta-card > * { position: relative; }
.mid-cta-card h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 20px;
}

/* ── OTHER FEATURES ── */
.other { padding: 0 0 96px; }
.other-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 32px;
}
.other-box .section-head { margin-bottom: 0; }
.other-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 36px;
}
.other-item {
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.other-item:nth-child(3n) { border-right: none; }
.other-item:nth-last-child(-n+3) { border-bottom: none; }
.other-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  background: var(--mint-dim); border: 1px solid var(--mint-border);
  display: flex; align-items: center; justify-content: center;
}
.other-ico svg { width: 15px; height: 15px; color: var(--mint); }
.other-name {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--fg); margin-bottom: 4px;
}
.other-desc {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 400; color: var(--fg2); line-height: 1.55;
}

/* ── CTA / PRICING ── */
.cta-section { padding: 96px 0; background: #080808; color: #ffffff; }
.cta-section h2 { color: #ffffff; }
.cta-section p { color: rgba(255,255,255,0.65); }
.cta-section .label { color: #1EF5AD; background: rgba(30,245,173,0.12); border-color: rgba(30,245,173,0.22); }
.cta-card {
  background: var(--card);
  border: 1.5px solid rgba(30,245,173,0.35);
  border-radius: var(--r);
  padding: 72px 40px 56px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(30,245,173,0.08), 0 0 80px rgba(30,245,173,0.08), inset 0 0 60px rgba(30,245,173,0.03);
}
.cta-card::before {
  content: ''; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(30,245,173,0.10), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 14px; line-height: 1.15;
}
.cta-card > p {
  font-size: 16px; font-weight: 400;
  color: var(--fg2); max-width: 480px;
  margin: 0 auto 36px; line-height: 1.7;
}
.cta-plans {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  justify-content: center; align-items: stretch;
  margin-bottom: 36px;
}
@media (max-width: 960px) { .cta-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cta-plans { grid-template-columns: 1fr; } }
.cta-plan {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px 20px;
  text-align: left;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-plan:hover { border-color: var(--mint-border); box-shadow: 0 0 20px rgba(30,245,173,0.08); }
.cta-plan-pro {
  border-color: rgba(30,245,173,0.4);
  box-shadow: 0 0 24px rgba(30,245,173,0.10);
}
.cta-plan-pro:hover { border-color: var(--mint); box-shadow: 0 0 28px rgba(30,245,173,0.18); }
.cta-plan-badge {
  display: inline-block;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  color: #080808; background: var(--mint);
  border-radius: 100px; padding: 2px 8px;
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  letter-spacing: 0.03em; white-space: nowrap;
}
.cta-plan-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--fg); margin-bottom: 4px;
}
.cta-plan-desc {
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: var(--fg3); margin-bottom: 12px;
}
.cta-plan-price {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  color: var(--fg); line-height: 1; margin-bottom: 16px;
}
.cta-plan-price span { font-size: 13px; font-weight: 400; color: var(--fg3); }
.cta-plan-section-head {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--mint); margin-bottom: 8px;
  padding: 8px 12px;
  background: rgba(30,245,173,0.06);
  border: 1px solid rgba(30,245,173,0.15);
  border-radius: 8px;
}
.cta-plan-section-head svg { stroke: var(--mint); flex-shrink: 0; }
.cta-plan-ai-features { margin-bottom: 0; }
.cta-plan-ai-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' stroke='%231EF5AD' stroke-width='2.2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3'/%3E%3C/svg%3E");
}
.cta-plan-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 12px 0;
}
.cta-plan-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.cta-plan-features li {
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  color: var(--fg2);
  display: flex; align-items: center; gap: 6px;
}
.cta-plan-features li::before {
  content: ''; display: inline-block; width: 13px; height: 13px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' stroke='%231EF5AD' stroke-width='2.2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.cta-plan-feature-icon-people::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231EF5AD' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 00-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 010 7.75'/%3E%3C/svg%3E") !important;
}
.cta-plan-btn {
  display: block; text-align: center;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--fg); background: transparent;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 16px; margin-top: auto; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.cta-plan-btn:hover { border-color: var(--mint-border); background: rgba(30,245,173,0.06); }
.cta-plan-btn-primary {
  background: var(--mint); color: #080808; border-color: var(--mint);
}
.cta-plan-btn-primary:hover { background: #17d99a; border-color: #17d99a; }

/* Agency comparison */
.agency-compare {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.agency-compare-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 24px; border-radius: 10px;
  font-family: var(--font-body);
}
.agency-compare-old {
  background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.2);
}
.agency-compare-new {
  background: rgba(30,245,173,0.08); border: 1px solid rgba(30,245,173,0.25);
}
.agency-compare-label {
  font-size: 11px; font-weight: 500; color: var(--fg3); text-transform: uppercase; letter-spacing: 0.05em;
}
.agency-compare-old .agency-compare-price {
  font-size: 18px; font-weight: 700; color: rgba(255,100,100,0.8); text-decoration: line-through;
}
.agency-compare-new .agency-compare-price {
  font-size: 18px; font-weight: 700; color: var(--mint);
}
.agency-compare-vs {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--fg3); text-transform: uppercase; letter-spacing: 0.08em;
}

/* Risk reversal */
.risk-reversal {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--fg2); margin-bottom: 24px;
  padding: 10px 20px; border-radius: 100px;
  background: rgba(30,245,173,0.06); border: 1px solid rgba(30,245,173,0.15);
}
.risk-reversal svg { color: var(--mint); flex-shrink: 0; }

.cta-btns {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  flex-wrap: wrap;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: #fff; border-radius: 24px;
  padding: 36px 32px; width: 100%; max-width: 440px;
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #F4F4F2; display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: background 0.2s;
}
.modal-close:hover { background: #E8E8E6; }
.modal-close svg { width: 14px; height: 14px; color: #666; }
.modal-heading {
  font-family: var(--font-head); font-weight: 500;
  font-size: 26px; color: #0A0A0A; line-height: 1.2; margin-bottom: 8px;
}
.modal-sub {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: rgba(0,0,0,0.5); margin-bottom: 24px; line-height: 1.6;
}
.modal-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.modal-field label {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase; color: rgba(0,0,0,0.45);
}
.modal-field input {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  background: #F4F4F2; border: 1px solid #E8E8E4;
  color: #0A0A0A; border-radius: 10px; padding: 12px 14px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.modal-field input:focus { border-color: #1EF5AD; background: #fff; }
.modal-field input::placeholder { color: rgba(0,0,0,0.3); }
.modal-submit {
  width: 100%; background: #1EF5AD; color: #000;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px; border-radius: 100px; border: none;
  cursor: pointer; margin-top: 4px; transition: filter 0.2s;
}
.modal-submit:hover { filter: brightness(1.07); }
.modal-benefits {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.modal-benefits li {
  font-family: var(--font-body); font-size: 13px; color: #444;
  display: flex; align-items: center; gap: 8px;
}
.modal-benefits li::before {
  content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' stroke='%231EF5AD' stroke-width='2.2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.modal-success {
  display: none; text-align: center; padding: 12px 0 4px;
  font-family: var(--font-body); font-size: 14px; color: #0A6B48;
}

/* ── FRONT PAGE FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 400; color: var(--fg3);
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg2); transition: var(--t);
}
.social-icon:hover { border-color: var(--mint); color: var(--mint); }
.social-icon svg { width: 14px; height: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .app-body { grid-template-columns: 160px 1fr; }
  .step-block { grid-template-columns: 1fr; gap: 36px; }
  .step-block.rev .step-vis { order: 0; }
  .other-grid { grid-template-columns: 1fr 1fr; }
  .other-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .other-item:nth-child(2n) { border-right: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 20px 40px; }
  .cta-plans { flex-direction: column; align-items: center; }
  .cta-plan { width: 100%; max-width: 300px; }
  .other-box { padding: 28px 20px; }
  .mid-cta-card { padding: 36px 20px; }
}
@media (max-width: 580px) {
  .app-sidebar { display: none; }
  .app-body { grid-template-columns: 1fr; height: 400px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .other-grid { grid-template-columns: 1fr; }
  .other-item { border-right: none !important; }
  .mockup-wrap { margin-top: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 580px) {
  .modal-card { padding: 28px 20px; }
  .modal-heading { font-size: 22px; }
}
