/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8FAFF;
  color: #0A1628;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
  --primary:      #2E86C1;
  --primary-dark: #1A6A9E;
  --primary-glow: rgba(46,134,193,0.22);
  --green:        #10B981;
  --amber:        #F59E0B;
  --red:          #EF4444;
  --bg:           #F8FAFF;
  --surface:      #EDF2FB;
  --card:         #FFFFFF;
  --border:       rgba(46,134,193,0.13);
  --border-hover: rgba(46,134,193,0.30);
  --text:         #0A1628;
  --subtext:      #4B607A;
  --muted:        #8FA3BA;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-card:  0 2px 16px rgba(46,134,193,0.09), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-glow:  0 0 60px rgba(46,134,193,0.12);
}

/* ─── UTILITIES ────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.gradient-text {
  background: linear-gradient(135deg, #2E86C1 0%, #7C3AED 50%, #0E7490 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.w-full { width: 100%; justify-content: center; }

/* ─── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(46,134,193,0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(46,134,193,0.13); border-color: var(--border-hover); }
.btn-outline {
  background: transparent;
  color: var(--subtext);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(46,134,193,0.05); }
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { background: #F0F7FF; transform: translateY(-1px); }
.btn-ghost-white {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.24); }

/* ─── NAV ──────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,250,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
#nav.scrolled {
  border-color: var(--border);
  background: rgba(248,250,255,0.97);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px; max-width: 1160px;
  margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
}
.logo-dot { color: var(--primary); }
.nav-links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--subtext); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 20px 24px; border-top: 1px solid var(--border);
  background: rgba(248,250,255,0.98);
}
.mobile-menu a { font-size: 15px; color: var(--subtext); }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn { align-self: flex-start; }
.mobile-menu.open { display: flex; }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,134,193,0.28), rgba(124,58,237,0.16));
  top: -200px; right: -200px; animation-duration: 14s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.18), rgba(46,134,193,0.16));
  bottom: -100px; left: -100px;
  animation-duration: 10s; animation-direction: alternate-reverse;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,134,193,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,134,193,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  position: relative; z-index: 1;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,134,193,0.09);
  border: 1px solid rgba(46,134,193,0.24);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1px; color: var(--text); margin-bottom: 20px;
}
.hero-sub { font-size: 17px; color: var(--subtext); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 20px; }
.trust-item { display: flex; align-items: baseline; gap: 4px; }
.trust-num {
  font-size: 22px; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif; color: var(--primary);
}
.trust-item span:last-child { font-size: 13px; color: var(--subtext); }
.trust-sep { width: 1px; height: 24px; background: var(--border); }

/* ─── HERO VISUAL / MOCKUP CARDS ───────────────────────────────────────────── */
.hero-visual { position: relative; height: 480px; }
.mockup-stack { position: relative; width: 100%; height: 100%; }
.mock-card {
  position: absolute; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-card);
}
.card-project { width: 260px; top: 20px; right: 20px; z-index: 3; }
.card-att { width: 230px; top: 140px; left: 0; z-index: 2; }
.card-finance { width: 220px; bottom: 20px; right: 60px; z-index: 1; }

@keyframes float1 { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-8px)} }
@keyframes float3 { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-15px)} }
.float-1 { animation: float1 5s ease-in-out infinite; }
.float-2 { animation: float2 6.5s ease-in-out infinite; }
.float-3 { animation: float3 4.5s ease-in-out infinite; }

.mock-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-size: 12px; font-weight: 600; color: var(--subtext);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.blue { background: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }
.mock-dot.green { background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.mock-dot.amber { background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.4); }
.mock-title { font-size: 12px; font-weight: 600; color: var(--text); }
.mock-badge { margin-left: auto; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.mock-badge.active { background: rgba(16,185,129,0.12); color: #059669; }
.mock-progress-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mock-progress-bar { flex: 1; height: 6px; background: rgba(46,134,193,0.1); border-radius: 3px; overflow: hidden; }
.mock-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #7C3AED); border-radius: 3px; }
.mock-pct { font-size: 11px; font-weight: 700; color: var(--primary); }
.mock-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.mock-label { font-size: 11px; color: var(--subtext); }
.mock-value { font-size: 12px; font-weight: 600; color: var(--text); }
.att-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--text);
}
.att-row:last-of-type { border-bottom: none; }
.att-footer { margin-top: 8px; font-size: 10px; color: var(--subtext); text-align: center; }
.chip { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; flex-shrink: 0; }
.chip.present { background: rgba(16,185,129,0.12); color: #059669; }
.chip.half { background: rgba(245,158,11,0.12); color: #D97706; }
.chip.absent { background: rgba(239,68,68,0.12); color: #DC2626; }
.chip.task-planned { background: rgba(100,116,139,0.12); color: #64748B; }
.finance-amount { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); }
.finance-sub { font-size: 11px; color: var(--subtext); margin-bottom: 10px; }
.finance-bar { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.fb-item { flex: 1; background: linear-gradient(to top, var(--primary), rgba(46,134,193,0.25)); border-radius: 3px 3px 0 0; }

/* ─── FEATURES BENTO ───────────────────────────────────────────────────────── */
.features { background: var(--surface); }
.features .section-heading { text-align: center; margin: 0 auto 12px; }
.features .section-label { display: block; text-align: center; }
.features-sub {
  text-align: center; color: var(--subtext); font-size: 15px;
  margin: 0 auto 52px; max-width: 520px;
}
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bento-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.bento-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,134,193,0.12);
}
.bento-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.bento-card p { font-size: 13.5px; color: var(--subtext); line-height: 1.6; }

/* ─── AI ADVISOR SECTION ────────────────────────────────────────────────────── */
.ai-section { background: var(--bg); }
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.ai-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7C3AED, var(--primary));
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; padding: 4px 12px;
  border-radius: 999px; margin-bottom: 16px; text-transform: uppercase;
}
.ai-sub { font-size: 15px; color: var(--subtext); line-height: 1.75; margin-bottom: 24px; }
.ai-langs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.lang-chip {
  background: rgba(46,134,193,0.08); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  font-size: 13px; font-weight: 600; color: var(--primary);
}

/* Chat mock */
.chat-mock {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.chat-avatar-wrap { position: relative; }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.chat-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--surface);
}
.chat-name { font-size: 14px; font-weight: 700; color: var(--text); }
.chat-status { font-size: 11px; color: var(--green); }
.chat-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  max-width: 85%; padding: 10px 14px;
  border-radius: 14px; font-size: 13px; line-height: 1.5;
}
.chat-bubble.user {
  background: var(--primary); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-bubble.bot {
  background: var(--surface); color: var(--text);
  align-self: flex-start; border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}
.chat-detail { font-size: 11.5px; color: var(--subtext); display: block; margin-top: 4px; }
.chat-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 8px 12px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  border-bottom-left-radius: 4px; align-self: flex-start; width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); animation: typingDot 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-input-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-top: 1px solid var(--border);
  background: var(--surface);
}
.chat-input-mock {
  flex: 1; font-size: 13px; color: var(--muted);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px;
}
.chat-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0; cursor: default;
}

/* ─── SPOTLIGHT ─────────────────────────────────────────────────────────────── */
.spotlight { background: var(--surface); }
.spot-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 100px;
}
.spot-row:last-child { margin-bottom: 0; }
.spot-row-rev { direction: rtl; }
.spot-row-rev > * { direction: ltr; }
.spot-text .section-label { display: block; margin-bottom: 12px; }
.spot-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 16px;
}
.spot-text p { font-size: 15px; color: var(--subtext); line-height: 1.7; margin-bottom: 24px; }
.spot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spot-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--subtext); }
.spot-check { color: var(--green); font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── MOCK SCREEN ──────────────────────────────────────────────────────────── */
.mock-screen {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(46,134,193,0.07);
}
.screen-header {
  background: var(--surface); padding: 14px 18px;
  font-size: 14px; font-weight: 700; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.tab-bar {
  display: flex; background: rgba(46,134,193,0.03);
  border-bottom: 1px solid var(--border); padding: 0 18px;
}
.tab { font-size: 12px; font-weight: 600; padding: 10px 14px; color: var(--muted); cursor: default; border-bottom: 2px solid transparent; }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.att-list { padding: 12px 18px; }
.att-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.att-item:last-child { border-bottom: none; }
.att-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.att-name { flex: 1; }
.att-name strong { display: block; font-size: 13px; color: var(--text); }
.att-name small { font-size: 11px; color: var(--subtext); }
.chip-row { margin-left: auto; }
.screen-fab {
  margin: 16px 18px; background: var(--green); color: #fff;
  text-align: center; padding: 11px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.finance-chips { display: flex; gap: 10px; padding: 16px 18px; }
.fin-chip {
  flex: 1; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px;
}
.fin-chip small { display: block; font-size: 10px; color: var(--subtext); margin-bottom: 4px; }
.fin-chip strong { font-size: 15px; font-weight: 800; color: var(--text); }
.fin-chip.green strong { color: #059669; }
.util-wrap { padding: 4px 18px 14px; }
.util-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--subtext); margin-bottom: 6px; }
.util-track { height: 6px; background: rgba(46,134,193,0.1); border-radius: 3px; overflow: hidden; }
.util-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #7C3AED); border-radius: 3px; }
.invoice-list { padding: 0 18px 16px; display: flex; flex-direction: column; gap: 2px; }
.inv-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; color: var(--text); }
.inv-row:last-child { border: none; }
.inv-row.muted span { color: var(--muted); }
.inv-amt { font-weight: 700; }
.inv-amt.green { color: #059669; }

/* ─── ANALYTICS MOCK ────────────────────────────────────────────────────────── */
.kpi-strip { display: flex; border-bottom: 1px solid var(--border); }
.kpi-item { flex: 1; padding: 14px 12px; text-align: center; border-right: 1px solid var(--border); }
.kpi-item:last-child { border-right: none; }
.kpi-val { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); }
.kpi-item.kpi-green .kpi-val { color: #059669; }
.kpi-label { font-size: 10px; color: var(--subtext); margin-top: 2px; }

.chart-wrap { padding: 14px 18px 12px; }
.chart-label { font-size: 10px; font-weight: 600; color: var(--subtext); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.bar-chart { display: flex; align-items: flex-end; gap: 5px; }
.bar-col { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.bar-col .bar { width: 100%; min-height: 4px; background: rgba(46,134,193,0.2); border-radius: 3px 3px 0 0; }
.bar-col.bar-today .bar { background: var(--primary); }
.bar-col span { font-size: 9px; color: var(--muted); line-height: 1; }

.cost-breakdown { padding: 10px 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.cost-row { display: flex; align-items: center; gap: 8px; }
.cost-label { font-size: 11px; color: var(--subtext); width: 68px; flex-shrink: 0; }
.cost-track { flex: 1; height: 6px; background: rgba(46,134,193,0.08); border-radius: 3px; overflow: hidden; }
.cost-fill { height: 100%; border-radius: 3px; }
.cost-fill.labour { background: var(--primary); }
.cost-fill.materials { background: #10B981; }
.cost-fill.petty { background: #F59E0B; }
.cost-pct { font-size: 11px; font-weight: 700; color: var(--subtext); width: 28px; text-align: right; flex-shrink: 0; }

/* ─── TASK MOCK ─────────────────────────────────────────────────────────────── */
.task-list { padding: 8px 18px; display: flex; flex-direction: column; }
.task-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.task-item:last-child { border-bottom: none; }
.task-status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.task-status-dot.done { background: #10B981; }
.task-status-dot.inprog { background: var(--primary); box-shadow: 0 0 0 3px rgba(46,134,193,0.15); }
.task-status-dot.planned { background: var(--muted); }
.task-info { flex: 1; min-width: 0; }
.task-info strong { display: block; font-size: 12.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task-info small { font-size: 10.5px; color: var(--subtext); }
.task-progress-wrap { padding: 10px 18px 16px; }
.task-progress-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--subtext); margin-bottom: 6px; }

/* ─── CLIENT EXPERIENCE ─────────────────────────────────────────────────────── */
.client-section { background: var(--bg); }
.client-section .section-label { display: block; text-align: center; }
.client-section .section-heading { text-align: center; margin: 0 auto 16px; }
.client-sub {
  text-align: center; font-size: 16px; color: var(--subtext);
  line-height: 1.7; max-width: 560px; margin: 0 auto 52px;
}
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.client-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.client-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,134,193,0.10);
}
.client-icon { font-size: 32px; margin-bottom: 14px; }
.client-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.client-card p { font-size: 13px; color: var(--subtext); line-height: 1.6; }

/* ─── ROLES ─────────────────────────────────────────────────────────────────── */
.roles { background: var(--surface); }
.roles .section-heading { text-align: center; margin: 0 auto 48px; }
.roles .section-label { display: block; text-align: center; }
.roles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.role-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.role-card:hover {
  border-color: var(--primary); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,134,193,0.12);
}
.role-icon { font-size: 28px; margin-bottom: 10px; }
.role-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.role-card p { font-size: 12.5px; color: var(--subtext); line-height: 1.5; }

/* ─── PRICING ────────────────────────────────────────────────────────────────── */
.pricing { background: var(--surface); }
.pricing .section-heading { text-align: center; margin: 0 auto 32px; }
.pricing .section-label { display: block; text-align: center; }
.pricing-note { text-align: center; font-size: 15px; color: var(--subtext); margin-bottom: 48px; }
.price-enquiry {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 18px; font-weight: 700; color: var(--primary);
  transition: gap 0.2s, color 0.2s;
}
.price-enquiry:hover { color: var(--primary-dark); gap: 10px; }
.enquiry-arrow { font-size: 16px; transition: transform 0.2s; }
.price-enquiry:hover .enquiry-arrow { transform: translateX(3px); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
  transition: border-color 0.3s, transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
.pricing-grid:hover .plan-card {
  opacity: 0.42;
  transform: translateY(0);
}
.pricing-grid .plan-card:hover {
  opacity: 1;
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(46,134,193,0.18);
}
.plan-popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(46,134,193,0.25), 0 8px 32px rgba(46,134,193,0.10);
}
.plan-enterprise { border-color: rgba(124,58,237,0.28); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--subtext); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.plan-trial { font-size: 11.5px; color: var(--green); font-weight: 600; margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-features li { font-size: 13px; color: var(--subtext); display: flex; align-items: center; gap: 8px; }
.plan-features li.yes::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.plan-features li.no { color: var(--muted); }
.plan-features li.no::before { content: '×'; color: var(--muted); font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* ─── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--primary); position: relative;
  overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.28), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.58); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer { background: #0A1628; padding: 60px 0 0; }
.footer-inner { display: flex; gap: 60px; margin-bottom: 48px; }
.footer-brand { flex: 1; }
.footer-brand .logo { margin-bottom: 14px; color: #fff; }
.footer-brand .logo-dot { color: #60A5FA; }
.footer-brand p { font-size: 13px; color: #8FA3BA; line-height: 1.6; max-width: 260px; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: #8FA3BA; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px; font-size: 12px; color: #4B607A;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .spot-row, .spot-row-rev { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .spot-row-rev > * { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid:hover .plan-card { opacity: 1; }
  .pricing-grid .plan-card:hover { transform: translateY(-6px); }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-heading { font-size: 40px; }
}

@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-sep { display: none; }
  .client-grid { grid-template-columns: 1fr; }
  .ai-langs { gap: 6px; }
}
