﻿/* =========================================================
   LLMBuddy – Page Styles  (desktop + mobile)
   Font-face declarations intentionally omitted (blob URLs).
   font-family: 'Inter' replaced with 'Plus Jakarta Sans','Inter',sans-serif
   ========================================================= */

/* === SHARED BASE === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  background: #fff;
  color: #0e0f17;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
  
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Logo Marquee ===== */
.trusted { overflow: hidden; }
.logos {
  display: block !important;
  overflow: hidden;
  margin-top: 24px;
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoMarquee 32s linear infinite;
}
.logos-track > div {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  height: 80px;
  position: relative;
}
.logos-track > div::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: #e2e0ec;
}
.logos-track > div:last-child::after { display: none; }
.logos-track .cl-img {
  height: 34px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}
.logos:hover .logos-track { animation-play-state: paused; }
@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Dashboard Float ===== */
@keyframes dashFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.dash {
  animation: dashFloat 6s ease-in-out infinite;
  will-change: transform;
}

/* ===== Card Hover Glow ===== */
/* parent containers must allow overflow so raised cards can overlap */
.stats,
.insights,
.insights-list {
  overflow: visible;
}
.scard {
  position: relative;
  z-index: 1;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, border-color .22s ease, z-index 0s;
}
.scard:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px -10px rgba(0,87,255,0.22);
  border-color: rgba(0,87,255,0.35);
  z-index: 10;
}
.icard {
  position: relative;
  z-index: 1;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, border-color .22s ease;
}
.icard:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px -10px rgba(0,87,255,0.22);
  border-color: rgba(0,87,255,0.35);
  z-index: 10;
}

/* Toggle: desktop/mobile views */
.desktop-view { display: block; }
.mobile-view  { display: none; }
@media (max-width: 760px) {
  .desktop-view { display: none; }
  .mobile-view  { display: block; }
  body { background: #f8f7fc; }
}

/* =====================================================
   DESKTOP STYLES
   ===================================================== */

:root{
  --bg: #f8f7fc;
  --bg-soft: #ecebf2;
  --ink: #0e0f17;
  --ink-2: #1a1b26;
  --muted: #62636e;
  --muted-2: #8a8b95;
  --line: #e6e5ed;
  --line-2: #d9d8e2;
  --white: #ffffff;
  --indigo: #0057ff;
  --indigo-2: #0070ff;
  --indigo-soft: #e6efff;
  --indigo-soft-2: #d9e8ff;
  --dark: #0a0c1a;
  --dark-2: #0f1224;
  --green: #16a34a;
}
*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
body{
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}
a{ color: inherit; text-decoration: none; }

.wrap{ max-width: 1440px; margin: 0 auto; padding: 0 130px; }
@media (max-width: 980px) {
  .wrap { padding: 0 18px; }
}

/* ===== PAGE BUTTONS (scoped to .wrap to avoid header conflicts) ===== */
.wrap .btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.wrap .btn:hover{ transform: translateY(-1px); }
.wrap .btn.dark{ background: var(--ink); color: white; }
.wrap .btn.light{ background: white; color: var(--ink); border-color: var(--line-2); }
.wrap .arrow{ width: 14px; height: 14px; }

/* ===== HERO ===== */
.hero{ text-align: center; padding: 56px 0 32px; }
.pill{
  display: inline-block;
  background: var(--indigo-soft);
  color: var(--indigo);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1.hero-title{
  font-size: 64px; line-height: 1.05; font-weight: 700;
  letter-spacing: -0.025em;
  margin: 22px auto 18px;
  max-width: 800px;
}
h1.hero-title .accent{ color: var(--indigo); }
.hero-sub{
  max-width: 560px; margin: 0 auto;
  color: #4a4b58; font-size: 16px; line-height: 1.55;
}
.hero-sub u{ text-decoration-color: #c5c4cf; text-underline-offset: 3px; }
.hero-ctas{
  display: flex; gap: 12px; justify-content: center;
  margin-top: 28px;
}
.hero-meta{
  display: flex; gap: 18px; justify-content: center; align-items: center;
  margin-top: 16px;
  color: var(--muted); font-size: 13px;
}
.hero-meta .dot{ width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%; }
.hero-meta .check{
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.3px solid #b9b8c4; display: inline-flex; align-items: center; justify-content: center;
}
.hero-meta .check svg{ width: 8px; height: 8px; }
.hero-meta span{ display: inline-flex; align-items: center; gap: 6px; }

/* ===== TRUSTED ===== */
.trusted{ padding: 48px 0 8px; text-align: center; }
.trusted-label{
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
}

/* ===== SEARCH SHIFT (dark) ===== */
.shift{
  margin: 36px 0 0;
  background: linear-gradient(180deg, #08091a 0%, #0c0e22 100%);
  border-radius: 18px;
  padding: 56px 56px;
  color: white;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  position: relative;
}
.shift .eyebrow{
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  color: #4da6ff; text-transform: uppercase;
}
.shift h2{
  font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 16px 0 18px; letter-spacing: -0.02em;
}
.shift h2 .accent{ color: #7bbfff; }
.shift p{ color: #aeb0c4; font-size: 14px; line-height: 1.6; margin: 0; }

.compare{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative; align-items: stretch;
}
.compare .swap{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: #0057ff; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(0,87,255,0.18);
  z-index: 2;
}
.ccard{
  background: #14172c; border: 1px solid #1f2240;
  border-radius: 14px; padding: 20px;
  margin-right: 20px;
}
.ccard.light{
  background: white; color: var(--ink);
  border: none;
  margin-right: 0; margin-left: 20px;
}
.ccard .ctitle{ font-size: 11px; color: #8c8ea8; margin-bottom: 14px; font-weight: 500; }
.ccard.light .ctitle{ color: var(--muted); }
.google-w{
  font-size: 22px; font-weight: 500; letter-spacing: -0.5px;
  display: flex; gap: 0.5px; margin-bottom: 14px;
}
.google-w span:nth-child(1){ color:#4285F4; }
.google-w span:nth-child(2){ color:#EA4335; }
.google-w span:nth-child(3){ color:#FBBC05; }
.google-w span:nth-child(4){ color:#4285F4; }
.google-w span:nth-child(5){ color:#34A853; }
.google-w span:nth-child(6){ color:#EA4335; }
.gsearch{
  background: #1a1d36; border-radius: 999px;
  padding: 9px 14px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #b5b7cc; margin-bottom: 14px;
}
.gsearch svg{ width: 14px; height: 14px; opacity: .6; }
.gresult{ display: flex; align-items: center; gap: 8px; font-size: 12px; color: #c6c8db; padding: 7px 4px; }
.gresult .gbar{ flex:1; height: 6px; background: #1f2240; border-radius: 3px; }
.gpt-head{ display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gpt-icon{
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #3b94ff, #0057ff);
  display: flex; align-items: center; justify-content: center;
}
.gpt-icon svg{ width: 18px; height: 18px; color: white; }
.gpt-bar{ flex: 1; height: 6px; background: #e9e7f0; border-radius: 3px; }
.gpt-body{
  background: #f6f5fb; border-radius: 10px;
  padding: 12px; font-size: 13px; line-height: 1.5;
  color: #2c2d36;
}
.gpt-tags{ display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.gpt-tag{
  background: #ece9ff; color: #0057ff;
  font-size: 11px; padding: 5px 10px; border-radius: 6px; font-weight: 500;
}

/* ===== SECTION HEADER ===== */
.seclabel{
  text-align: center;
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--indigo); text-transform: uppercase;
  margin-top: 72px;
}
.sectitle{
  text-align: center; font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em; margin: 14px 0 36px;
}

/* ===== STATS ===== */
.stats{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.scard{
  background: white; border-radius: 14px; padding: 24px 22px;
  border: 1px solid #ecebf2;
}
.stat-icon{
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--indigo);
}
.stat-icon svg{ width: 18px; height: 18px; }
.stat-num{
  font-size: 38px; font-weight: 700; color: var(--indigo);
  letter-spacing: -0.025em; line-height: 1; margin-bottom: 12px;
}
.stat-label{ font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.stat-desc{ font-size: 13px; color: var(--muted); line-height: 1.5; }
.scard.cac .stat-num{ font-size: 22px; margin-bottom: 4px; }
.scard.cac .stat-sub{ font-size: 13px; color: var(--ink); font-weight: 500; margin-bottom: 10px; line-height: 1.4; }

/* ===== ABOUT PROSE (Why LLMBuddy) ===== */
.about-prose {
  margin-top: 56px;
  background: linear-gradient(160deg, #fafcff 0%, #ffffff 55%, #fdf9ff 100%);
  border-radius: 24px;
  border: 1px solid #e4e2ef;
  padding: 64px 64px 0;
  position: relative;
  box-shadow: 0 4px 32px -4px rgba(0,57,180,.07), 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
}
.about-prose .ap-eyebrow {
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,87,255,.14);
  margin-bottom: 20px;
}
.about-prose .ap-eyebrow-wrap {
  text-align: center;
  margin-bottom: 0;
}
.about-prose h2 {
  text-align: center;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 auto 18px;
  max-width: 680px;
  color: var(--ink-2);
}
.about-prose .ap-intro {
  text-align: center;
  font-size: 16px;
  color: #5a5b68;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 52px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 0;
}
.ap-pillar {
  background: white;
  border-radius: 16px;
  padding: 28px 26px 30px;
  border: 1px solid #eceaf4;
  box-shadow: 0 2px 12px -2px rgba(0,0,0,.05);
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s ease, border-color .22s ease;
}
.ap-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0,87,255,0.22);
  box-shadow: 0 16px 40px -10px rgba(0,87,255,.14);
}
.ap-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f0ff 0%, #dbeaff 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo);
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,87,255,.12);
}
.ap-pillar-icon svg { width: 21px; height: 21px; }
.ap-pillar h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ap-pillar p {
  font-size: 14px;
  color: #5a5b68;
  line-height: 1.65;
  margin: 0;
}
.ap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 44px -64px 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #f5f0ff 100%);
  border-top: 1px solid #e2dcf5;
  border-radius: 0 0 24px 24px;
  padding: 36px 64px;
}
.ap-stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(0,87,255,.12);
}
.ap-stat:last-child { border-right: none; }
.ap-stat .v {
  font-size: 32px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 7px;
}
.ap-stat .l {
  font-size: 13px;
  color: #6a6b7a;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== DASHBOARD ===== */
.dash-section{
  margin-top: 28px;
  background: white;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #ecebf2;
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 36px;
  align-items: center;
}
.dash{
  border: 1px solid #ecebf2;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  display: grid; grid-template-columns: 168px 1fr;
  min-height: 320px;
}
.dash .side{
  border-right: 1px solid #ecebf2;
  padding: 18px 12px;
  background: #fafaff;
}
.dash .brand{
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  padding: 0 6px 18px;
}
.dash .brand svg{ width: 14px; height: 14px; color: var(--indigo); }
.dash .nav-i{
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 12.5px; color: #4a4b58; font-weight: 500;
  margin-bottom: 2px;
}
.dash .nav-i.act{ background: var(--indigo-soft); color: var(--indigo); font-weight: 600; }
.dash .nav-i svg{ width: 13px; height: 13px; }
.dash .main{ padding: 18px 20px; }
.dash .toprow{
  display: flex; justify-content: flex-end; margin-bottom: 14px;
}
.dash .chip{
  font-size: 11px; padding: 5px 10px; border-radius: 6px;
  border: 1px solid var(--line-2); color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.dash .kpis{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 18px;
}
.kpi-label{ font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.kpi-val{
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 4px;
}
.kpi-val .small{ font-size: 11px; color: var(--muted); font-weight: 500; }
.kpi-delta{
  font-size: 11px; color: var(--green); font-weight: 600;
  margin-left: 6px;
}
.charts{
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px;
}
.chartbox{ border: 1px solid #ecebf2; border-radius: 10px; padding: 12px 14px; }
.chartbox h4{ font-size: 11px; color: var(--muted); margin: 0 0 8px; font-weight: 500; }
.line-chart{ position: relative; height: 110px; }
.line-chart svg{ width: 100%; height: 100%; }
.pf-list{ font-size: 11.5px; color: #4a4b58; }
.pf-list .row{ display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.pf-list .dot{ width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; vertical-align: middle; }
.donut-wrap{ display: flex; align-items: center; gap: 12px; }
.donut-wrap svg{ width: 80px; height: 80px; }
.dash-copy .eyebrow{
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--indigo); text-transform: uppercase;
}
.dash-copy h3{
  font-size: 30px; font-weight: 700; line-height: 1.18;
  letter-spacing: -0.02em; margin: 14px 0 18px;
}
.dash-copy p{
  color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 18px;
}
.link-cta{
  color: var(--indigo); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== PROCESS ===== */
.process{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative;
  margin-top: 14px;
  margin-bottom: 60px;
}
.pstep{ padding: 0 6px; position: relative; }
.pstep .icon{
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo);
  margin: 0 auto 18px;
  position: relative; z-index: 2;
}
.pstep .num{
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; border: 1px solid var(--line);
  font-size: 9px; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.pstep h4{
  font-size: 14px; font-weight: 600; margin: 0 0 8px; text-align: center;
  letter-spacing: -0.01em;
}
.pstep p{ font-size: 12.5px; color: var(--muted); margin: 0; text-align: center; line-height: 1.5; }
.process::before{
  content: ''; position: absolute;
  top: 24px; left: 12%; right: 12%;
  border-top: 1.5px dashed #c9c7d4;
  z-index: 1;
}

/* ===== CASE STUDY + VIDEO ===== */
.cs-row{
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}
.csbox, .vidbox{
  background: white; border-radius: 16px; padding: 26px;
  border: 1px solid #ecebf2;
}
.csbox{
  display: flex; flex-direction: column;
}
.csbox .link-cta{
  margin-top: auto;
  padding-top: 16px;
}
.csbox .eyebrow, .vidbox .eyebrow{
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--indigo); text-transform: uppercase;
}
.csbox h3{ font-size: 24px; font-weight: 700; margin: 12px 0 12px; letter-spacing: -0.02em; }
.cs-brand{ display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.cs-meta{ color: var(--muted); font-size: 12.5px; margin-bottom: 22px; }
.cs-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.cs-stat .v{ font-size: 22px; font-weight: 700; color: var(--indigo); letter-spacing: -0.02em; }
.cs-stat .l{ font-size: 12px; color: var(--muted); margin-top: 4px; }
.vidbox{ display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: center; padding:22px; }
.video-thumb{
  aspect-ratio: 4/3; border-radius: 12px;
  background: linear-gradient(135deg, #c9bfb4 0%, #a89c8d 60%, #6b5d4d 100%);
  position: relative; overflow: hidden;
}
.video-thumb::after{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(60,40,20,0.25), transparent 60%);
}
.video-thumb .play{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.video-thumb .play svg{ width: 18px; height: 18px; color: var(--ink); margin-left: 2px; }
.video-thumb .person{
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 38%, #d9cfc4 0 12%, transparent 12.5%),
    radial-gradient(ellipse at 50% 78%, #2c2a30 0 28%, transparent 28.5%),
    linear-gradient(180deg, #b8a896 0%, #8a7a68 100%);
}
.quote{ font-size: 14px; line-height: 1.55; color: var(--ink); margin: 0 0 18px; }
.qauthor{ display: flex; align-items: center; gap: 10px; }
.qauthor .avatar{
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #c2b0a0, #6b5d4d);
}
.qauthor .who{ font-size: 13px; font-weight: 600; }
.qauthor .role{ font-size: 12px; color: var(--muted); }
.qauthor .company{ font-size: 12px; margin-top: 4px; display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* ===== INSIGHTS ===== */
.ins-head{
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: end; margin-top: 60px;
}
.ins-head .left{ font-size: 11px; letter-spacing: 0.15em; font-weight: 600; color: var(--indigo); text-transform: uppercase; }
.ins-head .ctr{ text-align: center; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.ins-head .right{ text-align: right; font-size: 13px; font-weight: 600; color: var(--indigo); }
.insights{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.icard{
  background: white; border-radius: 16px;
  border: 1px solid #ecebf2;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding: 0;
}
/* Cover image area */
.icard-cover{
  position: relative; height: 160px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.icard-c1{ background: linear-gradient(135deg, #0070ff 0%, #0040cc 100%); }
.icard-c2{ background: linear-gradient(135deg, #0891b2 0%, #4338ca 100%); }
.icard-c3{ background: linear-gradient(135deg, #7c3aed 0%, #1e1b4b 100%); }
.cover-bg{
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.cover-icon{
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  position: relative; z-index: 1;
}
.cover-tag{
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: white;
  font-size: 10px; letter-spacing: 0.12em; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
  position: relative; z-index: 1;
  align-self: flex-start;
}
/* Card body & foot */
.icard-body{ padding: 18px 20px 10px; flex: 1; }
.icard h4{ font-size: 16px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.3; }
.icard p{ font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.icard-foot{
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 20px 18px;
  font-size: 12px;
}
.icard-foot .more{ color: var(--indigo); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.icard-foot .date{ color: var(--muted-2); }

/* ===== FINAL CTA ===== */
.final-cta{
  margin-top: 28px;
  margin-bottom: 60px;
  background: #e6efff;
  border-radius: 16px;
  padding: 38px 40px;
  display: grid; grid-template-columns: 1.3fr auto; gap: 24px;
  align-items: center;
}
.final-cta h3{
  font-size: 30px; font-weight: 700; line-height: 1.15;
  margin: 0 0 10px; letter-spacing: -0.02em;
}
.final-cta h3 .accent{ color: var(--indigo); }
.final-cta p{ color: var(--muted); margin: 0; font-size: 14px; line-height: 1.5; }
.final-right{ display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.final-buttons{ display: flex; gap: 10px; }
.final-meta{ display: flex; gap: 16px; color: var(--muted); font-size: 13px; }
.final-meta span{ display: inline-flex; align-items: center; gap: 6px; }

footer{ padding: 60px 0 40px; color: var(--muted-2); font-size: 12px; text-align: left; }


/* =====================================================
   MOBILE STYLES
   ===================================================== */

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

/* Phone frame (480px small device) */
@media (max-width: 480px) {
  body{ background: var(--bg); }
  .device{ max-width: 100%; margin: 0; border-radius: 0; box-shadow: none; min-height: 100vh; }
}

@media (max-width: 760px) {
/* Phone frame for desktop preview */
.device{
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.px{ padding-left: 22px; padding-right: 22px; }

/* ===== TOP BAR ===== */
.topbar{ display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 10px; }
.logo{ display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.logo svg{ color: var(--indigo); width: 24px; height: 24px; }
.ham{
  width: 32px; height: 32px; display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 0; background: none; border: none;
}
.ham span{ display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.ham span:nth-child(1){ width: 22px; }
.ham span:nth-child(2){ width: 22px; }
.ham span:nth-child(3){ width: 22px; }

/* ===== HERO ===== */
.hero{ text-align: center; padding: 18px 22px 30px; }
.pill{
  display: inline-block;
  background: var(--indigo-soft); color: var(--indigo);
  padding: 7px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1.hero-title{
  font-size: 34px; line-height: 1.08; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
}
h1.hero-title .accent{ color: var(--indigo); }
.hero-sub{
  color: #4a4b58; font-size: 14px; line-height: 1.55;
  margin: 0 0 22px;
}
.hero-sub u{ text-decoration-color: #c5c4cf; text-underline-offset: 3px; }

.email-row{
  background: white; border-radius: 12px;
  display: flex; align-items: center; gap: 0;
  padding: 6px;
  border: 1px solid var(--line);
}
.email-row input{
  flex: 1; border: none; outline: none; background: transparent;
  padding: 10px 12px; font-size: 14px; color: var(--ink);
  font-family: inherit;
}
.email-row input::placeholder{ color: #8a8b95; }
.email-row button{
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--indigo); border: none;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.email-row button svg{ width: 18px; height: 18px; }

.hero-meta{
  display: flex; gap: 12px; justify-content: center; align-items: center;
  margin-top: 16px;
  color: var(--muted); font-size: 12px;
}
.hero-meta .dot{ width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%; }
.hero-meta span{ display: inline-flex; align-items: center; gap: 5px; }
.hero-meta .check{
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.3px solid #b9b8c4; display: inline-flex; align-items: center; justify-content: center;
}
.hero-meta .check svg{ width: 8px; height: 8px; }

/* ===== TRUSTED ===== */
.trusted{ padding: 18px 0 8px; text-align: center; overflow: hidden; }
.trusted-label{
  font-size: 10px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  padding: 0 22px;
}
.tlogos-wrap{
  overflow: hidden;
  margin-top: 14px;
}
.tlogos-track{
  display: flex;
  align-items: center;
  width: max-content;
  animation: mLogoMarquee 18s linear infinite;
}
.tlogos-track > div{
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px;
  height: 52px;
  position: relative;
}
.tlogos-track > div::after{
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 22px;
  background: #e2e0ec;
}
.tlogos-track > div:last-child::after{ display: none; }
.tlogos-track .cl-img{
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
@keyframes mLogoMarquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SEARCH SHIFT (dark) ===== */
.shift{
  margin: 26px 0 0;
  background: linear-gradient(180deg, #08091a 0%, #0c0e22 100%);
  border-radius: 16px;
  padding: 24px 20px 22px;
  color: white;
  display: block; /* override desktop grid */
  overflow:hidden;
}
.shift .eyebrow{
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  color: #4da6ff; text-transform: uppercase;
}
.shift h2{
  font-size: 20px; font-weight: 700; line-height: 1.2;
  margin: 12px 0 16px; letter-spacing: -0.015em;
}
.shift h2 .accent{ color: #7bbfff; }
.shift .tail{ color: #aeb0c4; font-size: 13px; line-height: 1.55; margin: 16px 0 0; }

.compare{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative;
  margin-top: 20px;
  overflow:hidden;
}
.compare .swap{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #0057ff; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(0,87,255,0.18);
  z-index: 2;
}
.ccard{
  background: #14172c; border: 1px solid #1f2240;
  border-radius: 12px; padding: 14px;
  margin-right: 10px;
  min-height: 130px;
}
.ccard.light{
  background: white; color: var(--ink);
  border: none;
  margin-right: 0; margin-left: 10px;
}
.ccard .ctitle{ font-size: 10px; color: #8c8ea8; margin-bottom: 8px; font-weight: 500; }
.ccard.light .ctitle{ color: var(--muted); }
.google-w{
  font-size: 16px; font-weight: 500; letter-spacing: -0.5px;
  display: flex; gap: 0.5px; margin-bottom: 10px;
}
.google-w span:nth-child(1){ color:#4285F4; }
.google-w span:nth-child(2){ color:#EA4335; }
.google-w span:nth-child(3){ color:#FBBC05; }
.google-w span:nth-child(4){ color:#4285F4; }
.google-w span:nth-child(5){ color:#34A853; }
.google-w span:nth-child(6){ color:#EA4335; }
.gresult{ display: flex; align-items: center; font-size: 10px; color: #c6c8db; padding: 3px 0; }
.gpt-head{ display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.gpt-icon{
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #3b94ff, #0057ff);
  display: flex; align-items: center; justify-content: center;
}
.gpt-icon svg{ width: 14px; height: 14px; color: white; }
.gpt-lines > div{
  height: 4px; background: #e9e7f0; border-radius: 2px; margin: 4px 0;
}
.gpt-lines > div:nth-child(2){ width: 75%; }
.gpt-lines > div:nth-child(3){ width: 60%; }

/* ===== SECTION HEADER ===== */
.seclabel{
  text-align: center;
  font-size: 11px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--indigo); text-transform: uppercase;
  margin-top: 40px;
}
.sectitle{
  text-align: center; font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em; margin: 10px 22px 22px;
  line-height: 1.2;
}

/* ===== STATS ===== */
.stats{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 22px;
}
.scard{
  background: white; border-radius: 14px; padding: 18px 16px;
  border: 1px solid #ecebf2;
}
.stat-icon{
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--indigo);
}
.stat-icon svg{ width: 16px; height: 16px; }
.stat-num{
  font-size: 30px; font-weight: 700; color: var(--indigo);
  letter-spacing: -0.025em; line-height: 1; margin-bottom: 10px;
}
.stat-label{ font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.stat-desc{ font-size: 12px; color: var(--muted); line-height: 1.5; }
.scard.cac .stat-num{ font-size: 18px; margin-bottom: 4px; }
.scard.cac .stat-sub{ font-size: 12px; color: var(--ink); font-weight: 500; margin-bottom: 8px; line-height: 1.35; }

/* ===== DASHBOARD ===== */
.dash-wrap{ background: white; margin: 24px 0 0; padding: 28px 22px 22px; }
.dash-eye{ text-align: center; font-size: 10px; letter-spacing: 0.15em; font-weight: 600; color: var(--indigo); text-transform: uppercase; }
.dash-title{ text-align: center; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 8px 0 22px; }
.dash-chart{
  background: white; border: 1px solid #ecebf2; border-radius: 12px;
  padding: 16px; margin-bottom: 12px;
}
.dash-chart .lbl{ font-size: 11px; color: var(--muted); }
.dash-chart .row{ display: flex; align-items: center; gap: 8px; }
.dash-chart .val{ font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.dash-chart .small{ font-size: 11px; color: var(--muted); font-weight: 500; }
.dash-chart .delta{ font-size: 11px; color: var(--green); font-weight: 600; background: #e8f7ed; padding: 3px 7px; border-radius: 5px; }
.dash-chart svg{ width: 100%; height: 90px; margin-top: 8px; }

.dash-kpis{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.dash-kpi{ background: white; border: 1px solid #ecebf2; border-radius: 12px; padding: 14px 16px; }
.dash-kpi .lbl{ font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.dash-kpi .row{ display: flex; align-items: baseline; gap: 8px; }
.dash-kpi .v{ font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.dash-kpi .delta{ font-size: 11px; color: var(--green); font-weight: 600; background: #e8f7ed; padding: 3px 7px; border-radius: 5px; }

.tabbar{
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 12px;
}
.tabbar > div{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted); font-weight: 500;
}
.tabbar > div.act{ color: var(--indigo); }
.tabbar > div.act::after{
  content: ''; display: block; width: 26px; height: 2px; background: var(--indigo); border-radius: 2px; margin-top: 2px;
}
.tabbar svg{ width: 18px; height: 18px; }

/* ===== PROCESS ===== */
.process-wrap{ padding: 0 14px; margin-top: 6px; }
.process{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  position: relative; margin-top: 14px;
}
.pstep{ padding: 0 2px; text-align: center; position: relative; }
.pstep .ic{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--indigo-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo);
  margin: 0 auto 8px;
  position: relative; z-index: 2;
}
.pstep .ic svg{ width: 16px; height: 16px; }
.pstep .num{
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--indigo); color: white;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
}
.pstep h4{
  font-size: 10.5px; font-weight: 600; margin: 0;
  letter-spacing: -0.01em; line-height: 1.25;
}
.process::before{
  content: ''; position: absolute;
  top: 15px; left: 14%; right: 14%;
  border-top: 1.5px dashed #c9c7d4;
  z-index: 1;
}
.process .arrow{
  position: absolute; top: 11px; z-index: 3;
  color: var(--indigo);
}
.process .arrow svg{ width: 9px; height: 9px; }

/* ===== CASE STUDY ===== */
.cs{ padding: 36px 22px 8px; }
.cs .eyebrow{ font-size: 11px; letter-spacing: 0.15em; font-weight: 600; color: var(--indigo); text-transform: uppercase; }
.cs h3{ font-size: 26px; font-weight: 700; margin: 12px 0 14px; letter-spacing: -0.02em; line-height: 1.18; }
.cs-brand{ display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.cs-brand svg{ width: 20px; height: 20px; }
.cs-meta{ color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.cs-quote{ font-size: 17px; line-height: 1.5; color: var(--ink); margin: 0 0 18px; letter-spacing: -0.01em; }
.cs-author{ display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.cs-author .avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c2b0a0, #6b5d4d);
}
.cs-author .who{ font-size: 15px; font-weight: 700; }
.cs-author .role{ font-size: 13px; color: var(--muted); }
.cs-stat-rows{ display: flex; flex-direction: column; gap: 10px; }
.cs-stat-row{
  background: white; border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid #ecebf2;
}
.cs-stat-row .ic{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--indigo-soft); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
}
.cs-stat-row .ic svg{ width: 16px; height: 16px; }
.cs-stat-row .v{ font-size: 18px; font-weight: 700; color: var(--indigo); letter-spacing: -0.02em; }
.cs-stat-row .l{ font-size: 13px; color: var(--ink); margin-left: 4px; }

/* ===== VIDEO ===== */
.video{ padding: 36px 22px 8px; }
.video .eyebrow{ font-size: 11px; letter-spacing: 0.15em; font-weight: 600; color: var(--indigo); text-transform: uppercase; margin-bottom: 16px; }
.video-thumb{
  aspect-ratio: 16/12; border-radius: 14px;
  background: linear-gradient(135deg, #c9bfb4 0%, #a89c8d 60%, #6b5d4d 100%);
  position: relative; overflow: hidden;
}
.video-thumb .person{
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 36%, #d9cfc4 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 50% 80%, #2c2a30 0 30%, transparent 30.5%),
    linear-gradient(180deg, #b8a896 0%, #8a7a68 100%);
}
.video-thumb .play{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.video-thumb .play svg{ width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.video-thumb .progress{
  position: absolute; left: 14px; right: 50px; bottom: 14px;
  height: 4px; background: rgba(255,255,255,0.4); border-radius: 2px; z-index: 2;
}
.video-thumb .progress::after{
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 55%; background: var(--indigo); border-radius: 2px;
}
.video-thumb .progress::before{
  content: ''; position: absolute; left: 55%; top: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--indigo);
}
.video-thumb .time{
  position: absolute; right: 14px; bottom: 6px;
  font-size: 11px; color: white; font-weight: 600; z-index: 2;
}

/* ===== INSIGHTS ===== */
.insights-section{ padding: 36px 22px 8px; }
.insights-section .eyebrow{ font-size: 11px; letter-spacing: 0.15em; font-weight: 600; color: var(--indigo); text-transform: uppercase; }
.insights-section h2{ font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; margin: 12px 0 22px; }
.insights-list{ display: flex; flex-direction: column; gap: 14px; }
.icard{
  background: white; border-radius: 14px; padding: 18px;
  border: 1px solid #ecebf2;
}
.icard .tag{
  display: inline-block; background: var(--indigo-soft); color: var(--indigo);
  font-size: 10px; letter-spacing: 0.1em; font-weight: 600;
  padding: 4px 8px; border-radius: 5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.icard-top{ display: flex; gap: 14px; align-items: flex-start; }
.icard-top .text{ flex: 1; }
.icard h4{ font-size: 16px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; line-height: 1.25; }
.icard p{ font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; }
.icard .thumb{
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, #3b94ff, #0057ff);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.icard .thumb svg{ width: 26px; height: 26px; }
.icard-foot{ display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 12px; }
.icard-foot .more{ color: var(--indigo); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.icard-foot .date{ color: var(--muted-2); }

.view-all{ text-align: center; margin: 22px 0 8px; }
.view-all a{ color: var(--indigo); font-weight: 600; font-size: 14px; text-decoration:none; text-underline-offset: 4px; }

/* ===== FINAL CTA ===== */
.final-cta{
  margin: 22px 22px 0;
  background: #e6efff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::after{
  content: ''; position: absolute; right: -30px; bottom: -30px;
  width: 160px; height: 160px;
  background:
    linear-gradient(45deg, transparent 47%, rgba(0,87,255,0.18) 48%, rgba(0,87,255,0.18) 52%, transparent 53%) 0 0/14px 14px,
    linear-gradient(-45deg, transparent 47%, rgba(0,87,255,0.18) 48%, rgba(0,87,255,0.18) 52%, transparent 53%) 0 0/14px 14px;
  opacity: .35;
}
.final-cta h3{
  font-size: 26px; font-weight: 700; line-height: 1.18;
  margin: 0 0 12px; letter-spacing: -0.02em;
  position: relative; z-index: 2;
}
.final-cta h3 .accent{ color: var(--indigo); }
.final-cta p{ color: var(--muted); margin: 0 0 22px; font-size: 14px; line-height: 1.5; position: relative; z-index: 2; }
.final-buttons{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; position: relative; z-index: 2; }
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  width: 100%;
}
.btn.dark{ background: var(--ink); color: white; }
.btn.light{ background: white; color: var(--ink); border-color: var(--line-2); }
.btn svg{ width: 14px; height: 14px; }
.final-meta{
  display: flex; justify-content: center; gap: 18px;
  color: var(--muted); font-size: 12px;
  position: relative; z-index: 2;
}
.final-meta span{ display: inline-flex; align-items: center; gap: 5px; }
.final-meta svg{ width: 14px; height: 14px; }

footer{ padding: 38px 0 28px; color: var(--muted-2); font-size: 11px; text-align: left; }

/* Dashboard snapshot label */
.dash-snapshot-label{
  font-size:11.5px;color:#6B6B7B;
  display:flex;align-items:center;gap:6px;
  margin-bottom:12px;font-style:italic;
}

/* Hero ICP qualifier */
.hero-icp-note{
  font-size:12.5px;color:#9396A6;
  line-height:1.55;margin:10px 0 0;
  max-width:420px;
}

} /* end mobile 760px */

/* Hero ICP line */
.hero-icp-line{
  font-size:13px;color:#0057ff;font-weight:600;
  margin:8px 0 0;letter-spacing:.01em;
}

/* Homepage positioning badge */
.hero-positioning-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,87,255,.08);
  border:1px solid rgba(0,87,255,.2);
  color:#0057ff;
  font-size:12px;font-weight:700;letter-spacing:.06em;
  padding:7px 16px;border-radius:999px;
  margin-bottom:18px;
}




/* Positioning paragraph */
.positioning-para{
  padding:40px 0 8px;
  text-align:left;
  width:100%;
}
.pos-headline{
  font-size:36px;font-weight:700;
  color:#0B0B12;line-height:1.25;
  margin:0 0 8px;
  letter-spacing:-0.02em;
}
.pos-sub{
  font-size:34px;font-weight:400;
  color:#B0B3C6;line-height:1.45;
  margin:0;
  letter-spacing:-0.01em;
}
@media(max-width:860px){
  .pos-headline{font-size:28px;}
  .pos-sub{font-size:26px;}
}
@media(max-width:600px){
  .pos-headline{font-size:22px;}
  .pos-sub{font-size:20px;}
}







/* ===== AGENT CARDS SECTION ===== */
.agents-section{
  background:#f5f5f7;
  padding:80px 130px 90px;
  margin:0 -130px;
}
.agents-head{text-align:center;max-width:760px;margin:0 auto 56px;}
.agents-title{font-size:38px;font-weight:700;letter-spacing:-.025em;color:#0e0f17;line-height:1.18;margin:0 0 16px;}
.agents-sub{font-size:17px;color:#62636e;line-height:1.6;margin:0;}

/* Grid */
.agents-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;}
.agents-grid .agent-card:nth-child(4){grid-column:1/3;}
.agents-grid .agent-card:nth-child(5){grid-column:3/4;}

/* Card base */
.agent-card{
  background:#fff;
  border-radius:20px;
  padding:28px;
  display:flex;flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  transition:box-shadow .2s,transform .2s;
}
.agent-card:hover{
  box-shadow:0 8px 32px rgba(0,0,0,.10);
  transform:translateY(-2px);
}

/* Colored top accent strip */
.ac-blue{}
.ac-purple{}
.ac-green{}
.ac-dark{}
.ac-indigo{}

/* Icon badge */
.ac-icon-badge{
  width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;flex-shrink:0;
}
.ac-icon-blue{background:#e6efff;color:#0057ff;}
.ac-icon-purple{background:#f3e8ff;color:#7c3aed;}
.ac-icon-green{background:#dcfce7;color:#16a34a;}
.ac-icon-dark{background:#f1f1f3;color:#0B0B12;}
.ac-icon-indigo{background:#e6efff;color:#0057ff;}

.agent-card-title{font-size:17px;font-weight:700;color:#0e0f17;margin:0 0 10px;line-height:1.3;}
.agent-card-desc{font-size:13.5px;color:#4a4b58;line-height:1.65;margin:0;flex:1;}

/* Visual container */
.agent-card-visual{
  margin-top:24px;
  border-top:1px solid #f0eff6;
  padding-top:20px;
}

/* - Audit bars - */
.av-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;}
.av-title{font-size:11px;font-weight:600;color:#8a8b95;text-transform:uppercase;letter-spacing:.08em;}
.av-score{font-size:22px;font-weight:800;color:#0057ff;letter-spacing:-.02em;}
.av-score span{font-size:13px;font-weight:500;color:#9ca3af;}
.av-row{display:flex;align-items:center;gap:10px;margin-bottom:7px;}
.av-row:last-child{margin-bottom:0;}
.av-label{font-size:12px;color:#62636e;width:62px;flex-shrink:0;}
.av-bar{flex:1;height:7px;background:#f0eff6;border-radius:99px;overflow:hidden;}
.av-fill{height:100%;border-radius:99px;}
.av-val{font-size:12px;font-weight:600;color:#0e0f17;width:22px;text-align:right;}

/* - Entity map - */
.entity-map{display:flex;flex-direction:column;gap:12px;}
.em-center{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#0057ff,#7c3aed);
  color:#fff;font-size:13px;font-weight:700;
  padding:8px 18px;border-radius:999px;
  align-self:flex-start;
}
.em-tags{display:flex;flex-wrap:wrap;gap:8px;}
.em-tag{font-size:12px;font-weight:500;padding:5px 13px;border-radius:999px;}
.em-green{background:#dcfce7;color:#15803d;}
.em-blue{background:#dbeafe;color:#1d4ed8;}
.em-purple{background:#f3e8ff;color:#7c3aed;}
.em-orange{background:#fff7ed;color:#c2410c;}
.em-teal{background:#f0fdfa;color:#0d9488;}

/* - Citation list - */
.citation-list{display:flex;flex-direction:column;gap:10px;}
.cit-item{display:flex;align-items:center;gap:12px;padding:10px 14px;border-radius:10px;background:#f9f9fb;}
.cit-done .cit-icon{width:22px;height:22px;border-radius:50%;background:#dcfce7;color:#16a34a;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;}
.cit-progress .cit-icon{width:22px;height:22px;border-radius:50%;background:#fef9c3;color:#ca8a04;display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0;}
.cit-name{font-size:13px;font-weight:600;color:#0e0f17;}
.cit-type{font-size:11px;color:#8a8b95;margin-top:1px;}

/* - Content compare - */
.content-compare{display:flex;align-items:center;gap:12px;}
.cc-panel{flex:1;background:#f9f9fb;border-radius:12px;padding:14px;}
.cc-label{font-size:11px;font-weight:600;color:#8a8b95;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px;}
.cc-lines{display:flex;flex-direction:column;gap:6px;margin-bottom:12px;}
.cc-line{height:7px;border-radius:99px;}
.w100{width:100%;}.w85{width:85%;}.w95{width:95%;}.w75{width:75%;}.w60{width:60%;}.w80{width:80%;}.w50{width:50%;}.w70{width:70%;}
.gray{background:#e2e0ec;}
.blue{background:linear-gradient(90deg,#0057ff,#7c3aed);opacity:.75;}
.cc-badge{display:inline-flex;align-items:center;font-size:11px;font-weight:600;padding:4px 10px;border-radius:999px;}
.cc-bad{background:#fee2e2;color:#dc2626;}
.cc-good{background:#dcfce7;color:#16a34a;}
.cc-arrow{font-size:20px;color:#9ca3af;flex-shrink:0;}

/* - Monitor stats - */
.monitor-stats{display:flex;gap:0;border:1px solid #ededf0;border-radius:12px;overflow:hidden;}
.ms-item{flex:1;padding:12px 16px;text-align:center;border-right:1px solid #ededf0;}
.ms-item:last-child{border-right:none;}
.ms-val{font-size:18px;font-weight:800;color:#0057ff;letter-spacing:-.02em;}
.ms-lab{font-size:11px;color:#8a8b95;margin-top:2px;}

/* Responsive */
@media(max-width:1100px){
  .agents-section{padding:64px 40px 72px;margin:0 -40px;}
  .agents-title{font-size:30px;}
}
@media(max-width:860px){
  .agents-section{padding:56px 22px 64px;margin:0 -18px;}
  .agents-grid{grid-template-columns:1fr 1fr;}
  .agents-grid .agent-card:nth-child(4),
  .agents-grid .agent-card:nth-child(5){grid-column:span 1;}
  .agents-title{font-size:26px;}
}
@media(max-width:600px){
  .agents-section{padding:48px 18px 56px;margin:0;}
  .agents-grid{grid-template-columns:1fr;}
  .agents-grid .agent-card:nth-child(4),
  .agents-grid .agent-card:nth-child(5){grid-column:1;}
  .agents-title{font-size:22px;}
}


/* AI Recommendation Card (replaces video) */
.ai-rec-card{
  background:#1a1a2e;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.arc-chrome{
  background:#242438;
  padding:12px 16px;
  display:flex;align-items:center;gap:12px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.arc-dots{display:flex;gap:5px;}
.arc-dots span{width:10px;height:10px;border-radius:50%;}
.arc-dots span:nth-child(1){background:#ff5f57;}
.arc-dots span:nth-child(2){background:#ffbd2e;}
.arc-dots span:nth-child(3){background:#28c840;}
.arc-platform{
  display:flex;align-items:center;gap:6px;
  font-size:12.5px;font-weight:600;color:rgba(255,255,255,.65);
  flex:1;
}
.arc-live{
  background:rgba(16,163,127,.18);color:#10A37F;
  font-size:10px;font-weight:700;letter-spacing:.08em;
  padding:3px 8px;border-radius:999px;
}
.arc-body{padding:14px 18px;}
.arc-query{
  font-size:12px;color:rgba(255,255,255,.45);
  font-style:italic;margin-bottom:10px;line-height:1.4;
}
.arc-response{
  display:flex;gap:10px;margin-bottom:12px;
}
.arc-ai-icon{
  width:24px;height:24px;border-radius:50%;
  background:rgba(16,163,127,.2);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px;
}
.arc-text{
  font-size:13.5px;color:rgba(255,255,255,.8);
  line-height:1.65;
}
.arc-highlight{color:#4d9eff;font-weight:700;}
.arc-result{
  display:flex;align-items:center;gap:10px;
  background:rgba(77,158,255,.1);
  border:1px solid rgba(77,158,255,.2);
  border-radius:10px;padding:10px 14px;
}
.arc-rank-badge{
  width:26px;height:26px;border-radius:8px;
  background:linear-gradient(135deg,#0057ff,#7c3aed);
  color:#fff;font-size:13px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.arc-brand-name{font-size:14px;font-weight:700;color:#fff;flex:1;}
.arc-footer{
  padding:10px 20px 14px;
  font-size:11px;color:rgba(255,255,255,.3);
  display:flex;align-items:center;gap:8px;
  border-top:1px solid rgba(255,255,255,.06);
}
.arc-pulse{
  width:7px;height:7px;border-radius:50%;background:#10A37F;
  animation:arcPulse 2s infinite;flex-shrink:0;
}
@keyframes arcPulse{0%,100%{box-shadow:0 0 0 0 rgba(16,163,127,.5)}70%{box-shadow:0 0 0 5px rgba(16,163,127,0)}}

/* =====================================================
   COMPREHENSIVE RESPONSIVE - All desktop sections
   ===================================================== */

/* ── 1100px: Wide tablet ── */
@media (max-width: 1100px) {
  /* Section titles */
  .sectitle{ font-size:28px; }
  .seclabel{ margin-top:52px; }

  /* Search Shift */
  .shift{ padding:40px 32px; }
  .shift h2{ font-size:28px; }

  /* About prose */
  .about-prose{ padding:36px 36px 40px; }
  .about-pillars{ grid-template-columns:1fr 1fr; gap:14px; }

  /* Process */
  .process{ grid-template-columns:repeat(5,1fr); gap:8px; }
  .pstep h4{ font-size:12px; }

  /* Case study row */
  .cs-row{ grid-template-columns:1fr 1.2fr; }

  /* Insights */
  .insights{ gap:12px; }
  .ins-head .ctr{ font-size:24px; }
}

/* ── 980px: Tablet landscape ── */
@media (max-width: 980px) {
  /* Section titles */
  .sectitle{ font-size:24px; margin:12px 0 28px; }

  /* Shift: stack */
  .shift{ padding:32px 24px; flex-direction:column; gap:28px; }
  .shift h2{ font-size:26px; margin-bottom:12px; }
  .compare{ max-width:480px; margin:0 auto; }

  /* About prose: stack */
  .about-prose{ padding:32px 24px; }
  .about-pillars{ grid-template-columns:1fr; gap:12px; }
  .ap-intro{ font-size:14px; }

  /* Process: 3+2 grid */
  .process{
    grid-template-columns:repeat(3,1fr);
    gap:12px;
  }
  .process::before{ display:none; }

  /* Stats */
  .stats{ grid-template-columns:repeat(2,1fr); gap:12px; }

  /* Dashboard section */
  .dash-section{ flex-direction:column; gap:24px; }
  .dash-section .dash-left{ max-width:100%; }

  /* Case study: stack */
  .cs-row{ grid-template-columns:1fr; gap:14px; }
  .vidbox{ grid-template-columns:1.1fr 1fr; }

  /* Insights */
  .insights{ grid-template-columns:repeat(3,1fr); }
  .ins-head{ gap:8px; }
  .ins-head .ctr{ font-size:22px; }
  .icard-cover{ height:130px; }
}

/* ── 860px: Tablet portrait ── */
@media (max-width: 860px) {
  /* Section titles */
  .sectitle{ font-size:22px; }
  .seclabel{ margin-top:40px; }

  /* Shift */
  .shift h2{ font-size:22px; }

  /* Process: 2+3 */
  .process{ grid-template-columns:repeat(2,1fr); gap:10px; }

  /* Case study: stack vidbox too */
  .vidbox{ grid-template-columns:1fr; gap:16px; }
  .vidbox > div:last-child{ padding-top:0; }

  /* Insights: 2 cols */
  .insights{ grid-template-columns:repeat(2,1fr); }
  .ins-head{
    display:flex;flex-direction:column;align-items:flex-start;gap:8px;
    margin-top:40px;
  }
  .ins-head .right{ align-self:flex-start; }

  /* Stats: 2 cols */
  .stats{ grid-template-columns:repeat(2,1fr); }
}

/* ── 760px: Already switches to mobile-view, but cover edge cases ── */
@media (max-width: 780px) {
  .insights{ grid-template-columns:1fr; }
  .cs-row .vidbox{ grid-template-columns:1fr; }
}

/* ===== MOBILE VIEW NEW SECTIONS ===== */
/* Positioning paragraph (mobile) */
.m-positioning{
  padding:20px 22px 8px;
}
.m-pos-headline{
  font-size:20px;font-weight:700;color:#0e0f17;
  line-height:1.25;margin:0 0 8px;letter-spacing:-.01em;
}
.m-pos-sub{
  font-size:16px;font-weight:400;color:#9396A6;
  line-height:1.55;margin:0;
}

/* AI Recommendation card (mobile) */
.m-ai-result{
  padding:20px 22px;
}
.m-arc{
  background:#1a1a2e;
  border-radius:14px;
  overflow:hidden;
  margin:12px 0 16px;
  border:1px solid rgba(255,255,255,.08);
}
.m-arc-top{
  background:#242438;
  padding:10px 14px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.m-arc-query{
  padding:12px 14px 8px;
  font-size:12px;color:rgba(255,255,255,.45);
  font-style:italic;line-height:1.45;
}
.m-arc-answer{
  padding:0 14px 12px;
  font-size:13px;color:rgba(255,255,255,.8);line-height:1.6;
}
.m-arc-rank{
  margin:0 14px 14px;
  display:flex;align-items:center;gap:10px;
  background:rgba(77,158,255,.1);
  border:1px solid rgba(77,158,255,.2);
  border-radius:9px;padding:10px 12px;
}
.m-quote{
  font-size:15px;color:#3A3A48;line-height:1.65;
  font-style:italic;margin:0;
}





/* ===== GLOBAL MOBILE FIXES (max-width: 760px already in @media block above) ===== */
@media (max-width: 480px) {
  .wrap{ padding:0 16px; }
  /* Overflow protection */
  .shift, .about-prose, .cs-row, .process-wrap{ overflow:hidden; }
  /* Stats 2-col on small phones */
  .stats{ grid-template-columns:1fr 1fr; gap:10px; }
  .scard{ padding:16px; }
  .stat-num{ font-size:28px; }
  /* Section headings */
  .sectitle{ font-size:20px; margin:10px 0 20px; }
  /* Case study */
  .cs-stat-rows{ display:flex; flex-direction:column; gap:10px; }
  /* Positioning text */
  .m-pos-headline{ font-size:18px; }
  .m-pos-sub{ font-size:15px; }
}

/* ===== MOBILE ONLY FIXES (760px and below) ===== */
@media (max-width: 760px) {
  /* Overflow protection */
  body { overflow-x: hidden; }

  /* Wrap: no padding - sections handle their own */
  .wrap { padding: 0; }

  /* Text/content sections: 16px side padding */
  .hero, .trusted, .positioning-para,
  .seclabel, .sectitle,
  .about-prose, .process-wrap,
  .agents-section, .insights-section, .ins-head,
  .stats, .process, .cs-row,
  .seclabel, .final-cta {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Cards with side margin like other sections */
  .shift {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  /* Content inside shift gets 20px padding */
  .shift > div, .shift > p, .shift > h2, .shift > .eyebrow {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .shift .compare-mobile { padding: 0 20px 20px; }
  .shift .compare-desktop { display: none; }

  /* Case study: stack vertically, each card full width */
  .cs-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .csbox, .vidbox {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 22px !important;
  }
  .vidbox {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }

  /* Re-apply vertical spacing only */
  .hero    { padding-top: 18px !important; padding-bottom: 30px !important; }
  .trusted { padding-top: 18px !important; padding-bottom: 8px !important; }
  .sectitle{ margin-top: 10px !important; margin-bottom: 20px !important; }
  .about-prose { padding: 24px 0 !important; }
  .dash-wrap   { padding: 24px 0 !important; }

  /* Shift section: single column, no overflow */
  .shift {
    display: block !important;
    padding: 20px 18px !important;
    overflow: hidden;
  }
  .shift h2 { font-size: 20px; margin: 10px 0 14px; }
  .compare { margin-top: 18px; overflow: hidden; }
  .ccard { padding: 12px; min-height: 110px; margin-right: 8px; font-size: 12px; }
  .ccard.light { margin-left: 8px; }
  .gresult { font-size: 9px; }
  .gpt-lines > div { height: 5px; margin-bottom: 4px; }

  /* Stats 2x2 grid */
  .stats { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .scard { padding: 16px 14px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 12px; }
  .stat-desc { font-size: 11px; }

  /* Section headings */
  .seclabel { margin-top: 36px; }
  .sectitle { font-size: 20px; margin: 10px 0 20px; }

  /* Process: vertical cards */
  .process {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .process::before { display: none !important; }
  .pstep {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #fff !important;
    border: 1px solid #EEEEF2 !important;
    border-radius: 14px !important;
    padding: 16px !important;
    text-align: left !important;
  }
  .pstep .icon {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }
  .pstep h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 0 3px !important;
  }
  .pstep p {
    font-size: 12.5px !important;
    color: #6B6B7B !important;
    margin: 0 !important;
    line-height: 1.4 !important;
  }

  /* Case study */
  .cs-row { grid-template-columns: 1fr !important; }
  .vidbox { grid-template-columns: 1fr !important; }

  /* Agent cards */
  .agents-section { padding: 48px 16px 56px; margin: 0; }
  .agents-grid { grid-template-columns: 1fr !important; }
  .agents-grid .agent-card:nth-child(4),
  .agents-grid .agent-card:nth-child(5) { grid-column: 1 !important; }

  /* Positioning text */
  .positioning-para { padding: 24px 0 4px; }
  .pos-headline { font-size: 20px; }
  .pos-sub { font-size: 17px; }

  /* Insights */
  .ins-head { flex-direction: column; gap: 8px; margin-top: 36px; }
  .ins-head .ctr { font-size: 22px; text-align: left; }
  .insights { grid-template-columns: 1fr !important; }
}

/* ===== MOBILE COMPARE (new design) ===== */
.compare-mobile { display: none; }

@media (max-width: 760px) {
  /* Hide desktop compare, show mobile */
  .compare-desktop { display: none !important; }
  .compare-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  /* Row */
  .cm-row {
    border-radius: 14px;
    padding: 16px 18px;
  }
  .cm-before {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
  }
  .cm-after {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(77,158,255,.3);
  }

  /* Label row */
  .cm-label {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
  }
  .cm-badge {
    font-size: 9px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; padding: 3px 8px;
    border-radius: 999px;
  }
  .cm-badge-red  { background: rgba(239,68,68,.2);  color: #fca5a5; }
  .cm-badge-green{ background: rgba(16,163,127,.2); color: #6ee7b7; }
  .cm-platform { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.55); }

  /* Content */
  .cm-results { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
  .cm-result { font-size: 12px; color: rgba(255,255,255,.45); padding: 2px 0; }
  .cm-note {
    font-size: 11px; color: rgba(255,255,255,.35);
    font-style: italic; margin-top: 6px;
  }
  .cm-note-green { color: #6ee7b7; font-style: normal; font-weight: 600; }

  /* AI response */
  .cm-ai-response {
    font-size: 13px; color: rgba(255,255,255,.85);
    line-height: 1.55; margin-bottom: 10px;
  }
  .cm-tags {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px;
  }
  .cm-tags span {
    font-size: 10px; font-weight: 600;
    background: rgba(77,158,255,.15);
    color: #93c5fd; padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(77,158,255,.25);
  }

  /* Down arrow between rows */
  .cm-arrow {
    display: flex; justify-content: center;
    padding: 8px 0;
  }
}



/* ===== DASHBOARD MOBILE ===== */
.dash-mobile { display: none; }
.dash-desktop { display: flex; }

@media (max-width: 760px) {
  .dash-desktop { display: none !important; }
  .dash-mobile {
    display: block;
    background: #fff;
    border: 1px solid #EEEEF2;
    border-radius: 20px;
    padding: 20px !important;
    margin: 28px 16px 0 !important;
  }

  /* Head */
  .dm-eyebrow{
    font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
    color:#0057ff;display:block;margin-bottom:10px;
  }
  .dm-title{
    font-size:20px;font-weight:700;color:#0B0B12;
    line-height:1.25;margin:0 0 20px;letter-spacing:-.01em;
  }

  /* Main metric */
  .dm-metric-main{
    background:linear-gradient(135deg,#eef3ff,#f3eeff);
    border:1px solid rgba(0,87,255,.12);
    border-radius:14px;padding:18px;margin-bottom:12px;
  }
  .dm-metric-label{
    font-size:11px;font-weight:600;color:#6B6B7B;
    text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px;
  }
  .dm-metric-val{
    font-size:36px;font-weight:800;color:#0057ff;
    letter-spacing:-.03em;line-height:1;
  }
  .dm-metric-val span{ font-size:16px;font-weight:500;color:#9396A6; }
  .dm-metric-val.sm{ font-size:22px; }
  .dm-metric-delta{
    font-size:12px;font-weight:600;color:#16a34a;
    margin-top:4px;
  }
  .dm-bar{
    height:5px;background:#E4E5EC;border-radius:99px;
    margin-top:12px;overflow:hidden;
  }
  .dm-bar-fill{
    height:100%;background:linear-gradient(90deg,#0057ff,#7c3aed);
    border-radius:99px;
  }

  /* Small metrics row */
  .dm-metric-row{
    display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;
    margin-bottom:12px;
  }
  .dm-metric-sm{
    background:#F8F9FC;border:1px solid #EEEEF2;
    border-radius:12px;padding:14px 12px;
  }

  /* Platform breakdown */
  .dm-platforms{
    background:#F8F9FC;border:1px solid #EEEEF2;
    border-radius:14px;padding:16px;
  }
  .dm-plat-label{
    font-size:11px;font-weight:700;color:#6B6B7B;
    text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px;
  }
  .dm-plat-bars{ display:flex;flex-direction:column;gap:8px; }
  .dm-plat-row{
    display:flex;align-items:center;gap:10px;font-size:12px;
  }
  .dm-plat-row > span:first-child{ width:64px;color:#3A3A48;font-weight:500; }
  .dm-plat-row > span:last-child{ width:28px;text-align:right;color:#6B6B7B; }
  .dm-plat-bar{
    flex:1;height:6px;background:#E4E5EC;
    border-radius:99px;overflow:hidden;
  }
  .dm-plat-bar > div{ height:100%;border-radius:99px; }

  /* Note */
  .dm-note{
    display:flex;align-items:center;gap:6px;
    font-size:11px;color:#9396A6;margin-top:14px;
  }
}




/* ===================================================
   MOBILE VIEW STYLES - Added cleanly
   (Only applies inside @media max-width:760px)
   =================================================== */
@media (max-width: 760px) {

  /* --- Positioning paragraph --- */
  .m-positioning {
    padding: 20px 22px 4px;
  }
  .m-pos-headline {
    font-size: 20px;
    font-weight: 700;
    color: #0B0B12;
    line-height: 1.25;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .m-pos-sub {
    font-size: 16px;
    font-weight: 400;
    color: #9396A6;
    line-height: 1.6;
    margin: 0;
  }

  /* --- Insights icard --- */
  .insights-section {
    padding: 24px 22px 16px;
  }
  .insights-section .eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    color: #0057ff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }
  .insights-section h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #0B0B12;
  }
  .insights-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .icard {
    background: #fff;
    border: 1px solid #EEEEF2;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .icard .tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0057ff;
    background: #e6efff;
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
    align-self: flex-start;
  }
  .icard-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .icard-top .text { flex: 1; }
  .icard h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0B0B12;
    margin: 0 0 6px;
    line-height: 1.3;
  }
  .icard p {
    font-size: 12.5px;
    color: #6B6B7B;
    margin: 0;
    line-height: 1.5;
  }
  .icard .thumb {
    width: 36px;
    height: 36px;
    background: #e6efff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0057ff;
    flex-shrink: 0;
  }
  .icard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #F0F0F5;
  }
  .icard-foot .more {
    font-size: 13px;
    font-weight: 600;
    color: #0057ff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .icard-foot .date {
    font-size: 11.5px;
    color: #9396A6;
  }
  .view-all {
    text-align: center;
    margin-top: 16px;
    padding-bottom: 8px;
  }
  .view-all a {
    font-size: 13.5px;
    font-weight: 600;
    color: #0057ff;
  }

  /* --- Dash mobile spacing --- */
  .dash-mobile {
    margin: 20px 16px 0;
  }

}

/* ===================================================
   MOBILE BUTTON FIXES - All buttons/links
   =================================================== */
@media (max-width: 760px) {

  /* Link CTA (Explore Platform →, View Full Case Study →) */
  .link-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    font-size: 14px;
    font-weight: 600;
    color: #0057ff;
    padding: 10px 0;
  }
  .link-cta .arrow,
  .link-cta svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  /* More links (Read More →) */
  .more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    font-size: 13px;
    font-weight: 600;
    color: #0057ff;
  }

  /* Book a Demo button in mobile drawer */
  .m-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    white-space: nowrap;
  }

  /* Process step link */
  .pstep a, .cs a.link-cta {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  /* Section CTA buttons */
  .btn, .hero-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  /* View all insights link */
  .view-all a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

}

/* ===================================================
   MOBILE VIEW - text alignment
   =================================================== */
@media (max-width: 760px) {
  /* Headings left */
  .mobile-view h1, .mobile-view h2, .mobile-view h3, .mobile-view h4,
  .mobile-view .seclabel, .mobile-view .sectitle,
  .mobile-view .dash-eye, .mobile-view .dash-title,
  .mobile-view .pstep h4,
  .mobile-view .m-pos-headline,
  .mobile-view .icard-title {
    text-align: left !important;
  }
  /* Body text justify */
  .mobile-view p, .mobile-view span,
  .mobile-view .m-pos-sub,
  .mobile-view .cs-desc,
  .mobile-view .icard-excerpt,
  .mobile-view .pstep p {
    text-align: justify !important;
  }
}
