/* ============================================
   UTasko Theme — v3 Design System
   Clean light SaaS aesthetic (Inter font)
   Full v1 site support
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-tint: #eef2ff;
  --ink: #10233e;
  --ink-2: #44556f;
  --line: #dbe4f0;
  --primary: #10233e;
  --accent: #6f6bff;
  --accent-2: #8b5cf6;
  --shadow: 0 20px 60px rgba(16,35,62,.08);
  --shadow-sm: 0 4px 12px rgba(16,35,62,.04);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .18s ease; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.1; font-weight: 700; letter-spacing: -.03em; }

/* ---- LAYOUT ---- */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.container-narrow { max-width: 800px; }
.section { padding: 76px 0; position: relative; }
.section.soft { background: var(--bg-soft); }

/* ---- BUTTONS ---- */
.btn, .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border-radius: 14px;
  font-weight: 600; font-size: 15px; border: 1px solid transparent;
  transition: .18s ease; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border-radius: 14px;
  font-weight: 600; font-size: 15px; transition: .18s ease;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.btn-outline:hover, .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost, .text-link {
  display: inline-flex; align-items: center;
  padding: 8px 14px; font-size: 15px; font-weight: 500;
  color: var(--ink-2); border-radius: 8px; transition: .18s ease;
}
.btn-ghost:hover, .text-link:hover { color: var(--ink); }
.btn-soft { display: inline-flex; align-items: center; padding: 0 18px; min-height: 46px; background: var(--bg-tint); color: var(--ink); border-radius: 14px; font-weight: 600; font-size: 15px; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 14px; }
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.btn-primary.btn-white { background: #fff; color: var(--primary); }
.btn-primary.btn-white:hover { background: var(--bg-soft); }
.btn-ghost-light { display: inline-flex; align-items: center; padding: 0 18px; min-height: 46px; color: rgba(255,255,255,.9); font-weight: 600; font-size: 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; transition: .18s ease; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(219,228,240,.8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 34px; width: auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
img.logo-icon { width: auto; height: 32px; border-radius: 8px; }
.logo-text {
  font-weight: 700; font-size: 20px; color: var(--ink);
  letter-spacing: -.02em;
}
.desktop-nav { display: flex; gap: 28px; align-items: center; }
.nav-link { font-size: 15px; color: var(--ink-2); transition: .18s ease; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px; font-size: 15px; font-weight: 500;
  color: var(--ink-2); border-radius: 8px; transition: .18s ease;
}
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s ease; }

/* ---- HERO ---- */
.hero {
  padding: 72px 0 32px;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(111,107,255,.12), transparent 55%),
    radial-gradient(700px 300px at 0% 0%, rgba(0,191,255,.06), transparent 45%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero-content { padding: 20px 0; }
.hero-badge, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 18px;
}
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(111,107,255,.4)} 50%{opacity:.8;box-shadow:0 0 0 6px rgba(111,107,255,0)} }

.hero h1, .page-hero h1 { font-size: 62px; line-height: 1.02; letter-spacing: -.04em; margin: 18px 0 14px; color: var(--ink); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub, .hero p.lead, .page-hero p.lead { font-size: 20px; color: var(--ink-2); max-width: 680px; margin-bottom: 28px; line-height: 1.5; }
p.lead { font-size: 20px; color: var(--ink-2); max-width: 680px; }
.hero-ctas, .hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-item { text-align: left; }
.stat-num { font-size: 24px; font-weight: 700; color: var(--ink); }
.stat-label { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--line); }
.meta { margin-top: 12px; color: var(--ink-2); font-size: 14px; }

/* Hero Visual / Screen */
.hero-visual { position: relative; }
.screen {
  border: 1px solid var(--line); background: #fff;
  border-radius: 28px; box-shadow: var(--shadow); overflow: hidden;
}
.screen img { width: 100%; height: auto; }
.callouts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.callout {
  padding: 9px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--ink-2); box-shadow: 0 8px 20px rgba(16,35,62,.06);
}

/* Mockup Window (v2 compat) */
.mockup-window {
  border: 1px solid var(--line); background: #fff;
  border-radius: 28px; box-shadow: var(--shadow); overflow: hidden;
}
.mockup-toolbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots i { display: block; width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots i:nth-child(1) { background: #EF4444; }
.mockup-dots i:nth-child(2) { background: #F59E0B; }
.mockup-dots i:nth-child(3) { background: #10B981; }
.mockup-title { font-size: 12px; color: var(--ink-2); }
.mockup-body { padding: 16px; }
.mockup-float { display: none; }
.hero-scroll-indicator { display: none; }
.hero-grid-bg, .hero-glow { display: none; }

/* ---- SECTION HEADERS ---- */
.section-head, .section-header { max-width: 740px; margin-bottom: 26px; }
.section-header { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center, .center { text-align: center; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section h2, .section-header h2 { font-size: 44px; line-height: 1.06; letter-spacing: -.03em; margin: 10px 0 12px; color: var(--ink); }
.section-label, .kicker {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: #667792; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 10px;
}
.section-sub, .section p.sub, p.sub { font-size: 18px; color: var(--ink-2); max-width: 520px; margin: 0; }

/* ---- GRIDS ---- */
.trust-grid, .card-grid, .template-grid, .integrations-grid, .use-grid, .quote-grid, .mini-grid {
  display: grid; gap: 18px;
}
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.card-grid.three, .quote-grid, .mini-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.template-grid { grid-template-columns: repeat(3, 1fr); }
.integrations-grid { grid-template-columns: repeat(4, 1fr); }
.use-grid { grid-template-columns: repeat(4, 1fr); }

/* ---- CARDS ---- */
.card, .quote, .mini-card {
  border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 22px;
  box-shadow: 0 12px 34px rgba(16,35,62,.04);
}
.card h3, .quote h3, .mini-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; }
.card p, .quote p, .mini-card p, .muted { color: var(--ink-2); margin: 0; }

/* ---- FEATURE ROWS ---- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-top: 30px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-copy h3 { font-size: 38px; letter-spacing: -.03em; line-height: 1.08; margin: 10px 0 12px; }

/* ---- BULLETS ---- */
.bullets { padding: 0; margin: 18px 0 0; list-style: none; }
.bullets li { display: flex; gap: 10px; margin: 10px 0; color: var(--ink-2); }
.bullets li::before { content: "•"; color: var(--accent); font-weight: 900; }

/* ---- TABS ---- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.tab { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2); background: #fff; font-size: 14px; cursor: pointer; transition: .18s ease; }
.tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- SPLIT PANEL ---- */
.split-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: center; }
.panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 22px; box-shadow: var(--shadow);
}
.panel h3 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.03em; }
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.panel-mini { border: 1px solid var(--line); background: var(--bg-soft); border-radius: 18px; padding: 14px; }
.panel-mini strong { display: block; font-size: 14px; margin-bottom: 4px; }

/* ---- TWO-COL ---- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }

/* ---- INLINE LINKS ---- */
.inline-links { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- METRICS ---- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.metric { border: 1px solid var(--line); background: #fff; border-radius: 20px; padding: 18px; }
.metric span { display: block; color: var(--ink-2); font-size: 13px; }
.metric strong { display: block; font-size: 28px; margin-top: 6px; }

/* ---- SECTION DIVIDER ---- */
.section-divider { height: 1px; background: var(--line); margin: 20px 0 0; }

/* ---- PAIN POINTS ---- */
.section-pain { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.pain-card {
  padding: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); transition: .25s ease;
  box-shadow: var(--shadow-sm);
}
.pain-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pain-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); border-radius: 14px; color: var(--accent); margin-bottom: 16px;
}
.pain-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }
.pain-card p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.pain-transition { text-align: center; font-size: 17px; color: var(--ink-2); }
.pain-transition strong { color: var(--accent); }

/* ---- FEATURES ---- */
.section-features { background: var(--bg-soft); }
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: center; margin-bottom: 60px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block-reverse .feature-text { order: 2; }
.feature-block-reverse .feature-visual { order: 1; }
.feature-num { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 10px; letter-spacing: .18em; text-transform: uppercase; }
.feature-text h3 { font-size: 38px; color: var(--ink); margin-bottom: 12px; letter-spacing: -.03em; line-height: 1.08; }
.feature-text p { font-size: 15px; color: var(--ink-2); margin-bottom: 18px; line-height: 1.6; }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.feature-list li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.feature-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Feature Mockups */
.feat-mock {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.fmt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fmt-status { display: inline-flex; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.fmt-status-progress { background: rgba(245,158,11,.1); color: #F59E0B; }
.fmt-priority { font-size: 11px; font-weight: 600; color: #EF4444; padding: 4px 10px; background: rgba(239,68,68,.06); border-radius: 6px; }
.fmt-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.fmt-assignee { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.fmt-avatar { width: 28px; height: 28px; border-radius: 8px; background: var(--accent-2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.fmt-progress { height: 6px; background: var(--bg-soft); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.fmt-bar { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; transition: width 1s ease; }
.fmt-sub { font-size: 12px; color: var(--ink-2); }
.fmt-project-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.fmt-project-icon { font-size: 28px; }
.fmt-project-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.fmt-project-meta { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.fmt-team-row { display: flex; gap: -4px; margin-bottom: 20px; }
.fmt-team-row .fmt-avatar { margin-left: -4px; border: 2px solid #fff; }
.fmt-team-row .fmt-avatar:first-child { margin-left: 0; }
.fmt-avatar-more { background: var(--line); color: var(--ink-2); font-size: 10px; }
.fmt-mini-bars { display: flex; flex-direction: column; gap: 10px; }
.fmt-mini-bar { position: relative; }
.fmt-mini-bar span { display: block; height: 8px; border-radius: 4px; background: var(--accent); }
.fmt-mini-bar small { font-size: 11px; color: var(--ink-2); margin-top: 4px; display: block; }
.fmt-kanban-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fmt-k-col { min-width: 0; }
.fmt-k-head { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.fmt-k-head span { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fmt-k-card { height: 36px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 6px; }
.fmt-k-active { border-color: #F59E0B; background: rgba(245,158,11,.04); }
.fmt-k-done { border-color: #10B981; background: rgba(16,185,129,.04); }
.fmt-dept-tree { text-align: center; }
.fmt-dept-node { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--ink); }
.fmt-dept-node small { font-weight: 400; color: var(--ink-2); }
.fmt-dept-root { background: var(--primary); color: #fff; border-color: var(--primary); margin-bottom: 20px; }
.fmt-dept-branches { display: flex; justify-content: center; gap: 12px; position: relative; }
.fmt-dept-branches::before { content: ''; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 1px; height: 20px; background: var(--line); }
.fmt-dept-branch { position: relative; }
.fmt-dept-branch::before { content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 1px; height: 10px; background: var(--line); }
.fmt-org-switcher { display: flex; flex-direction: column; gap: 8px; }
.fmt-org-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; transition: .25s ease; }
.fmt-org-active { border-color: var(--accent); background: rgba(111,107,255,.03); }
.fmt-org-logo { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.fmt-org-item strong { font-size: 14px; color: var(--ink); display: block; }
.fmt-org-item small { font-size: 12px; color: var(--ink-2); }
.fmt-org-check { margin-left: auto; color: var(--accent); font-weight: 700; }
.fmt-leader-stats { display: flex; gap: 16px; margin-bottom: 20px; }
.fmt-lstat { flex: 1; text-align: center; padding: 14px 8px; background: var(--bg-soft); border-radius: 10px; }
.fmt-lstat-num { font-size: 22px; font-weight: 700; color: var(--ink); }
.fmt-lstat small { font-size: 11px; color: var(--ink-2); display: block; margin-top: 2px; }
.fmt-leader-chart { display: flex; align-items: flex-end; gap: 12px; height: 80px; padding-top: 8px; }
.fmt-chart-bar { flex: 1; border-radius: 6px 6px 0 0; position: relative; transition: height 1s ease; }
.fmt-chart-bar::after { content: attr(data-label); position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 10px; color: var(--ink-2); }

/* ---- HOW IT WORKS ---- */
.section-how { background: var(--bg); }
.steps-timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step-item { text-align: center; padding: 0 24px; max-width: 220px; }
.step-num { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-weight: 700; font-size: 18px; border-radius: 50%; margin: 0 auto 16px; }
.step-item h3 { font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.step-connector { width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--line)); margin-top: 23px; flex-shrink: 0; border-radius: 1px; }

/* ---- ECOSYSTEM ---- */
.section-ecosystem { background: var(--bg-soft); }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eco-card {
  padding: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center; transition: .25s ease;
  box-shadow: var(--shadow-sm);
}
.eco-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.eco-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bg-tint); border-radius: 14px; margin: 0 auto 14px; color: var(--accent); }
.eco-card h4 { font-size: 15px; color: var(--ink); margin-bottom: 8px; }
.eco-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* ---- PRICING ---- */
.section-pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card {
  padding: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); position: relative; transition: .25s ease;
  box-shadow: var(--shadow-sm);
}
.price-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; }
.price-card p { color: var(--ink-2); margin: 0; }
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.price-card-popular, .price-card.popular { border-color: var(--primary); box-shadow: var(--shadow); background: var(--primary); color: #fff; }
.price-card.popular p, .price-card.popular .muted, .price-card.popular li { color: #d7dff0; }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--bg-tint); color: #3f3ba7; margin-bottom: 10px; }
.price-header { margin-bottom: 20px; }
.price-header h3 { font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.price-desc { font-size: 13px; color: var(--ink-2); }
.price-amount { margin-bottom: 24px; }
.price-val, .price { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -.04em; margin: 10px 0 6px; }
.price-period, .muted { font-size: 15px; color: var(--ink-2); }
.price-currency { font-size: 28px; font-weight: 700; color: var(--ink); }
.price-features { margin-bottom: 24px; }
.price-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--ink-2); border-bottom: 1px solid var(--bg-soft); }
.price-features li:last-child { border-bottom: none; }
.price-features li svg { flex-shrink: 0; }
.price-feature-disabled { color: var(--line) !important; }

/* ---- COMPARISON TABLE ---- */
.compare {
  width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
}
.compare th, .compare td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.compare th { background: var(--bg-soft); color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

/* ---- FAQ ---- */
.section-faq { background: var(--bg-soft); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: .25s ease; }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--ink); text-align: left; cursor: pointer; transition: .18s ease; }
.faq-question:hover { color: var(--accent); }
.faq-icon { transition: transform .3s ease; flex-shrink: 0; color: var(--ink-2); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* ---- CTA BAND ---- */
.cta-band {
  padding: 34px; border-radius: 32px;
  background: linear-gradient(135deg, rgba(16,35,62,1), rgba(40,57,96,1));
  color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.cta-band h2 { font-size: 34px; color: #fff; margin: 0 0 8px; }
.cta-band p { color: #d7dff0; margin: 0; }
.cta-band .btn-secondary { background: #fff; }

/* ---- FINAL CTA ---- */
.section-cta {
  background: linear-gradient(135deg, rgba(16,35,62,1), rgba(40,57,96,1));
  text-align: center; padding: 76px 0; position: relative; overflow: hidden; border-radius: 32px;
  margin: 0 auto; max-width: var(--max); color: #fff;
}
.cta-glow { display: none; }
.section-cta h2 { font-size: 44px; color: #fff; margin-bottom: 16px; line-height: 1.06; letter-spacing: -.03em; }
.section-cta p { font-size: 17px; color: #d7dff0; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FORMS ---- */
.form-card {
  width: min(520px, 100%); margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 28px; padding: 26px; box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 10px; margin-bottom: 16px; }
label { font-size: 14px; font-weight: 600; }
input, select, textarea {
  width: 100%; height: 48px; border-radius: 14px; border: 1px solid var(--line); padding: 0 14px; font: inherit;
  transition: border-color .18s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { height: 120px; padding: 14px; resize: vertical; }
.small-link { font-size: 14px; color: var(--accent); }

/* ---- FOOTER ---- */
.site-footer { background: #0f1d34; color: #d7dff0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 34px 0; }
.footer-logo { height: 36px; width: auto; filter: brightness(1.3); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.footer-links a { color: #d7dff0; font-size: 15px; transition: color .18s ease; }
.footer-links a:hover { color: #fff; }
.footer-copy { max-width: 520px; color: #8a9bba; margin-top: 12px; font-size: 14px; line-height: 1.6; }

/* ---- PAGE CONTENT (Block Editor) ---- */
.page-hero { padding: 62px 0 24px; background: var(--bg); }
.page-content .page-title { font-size: 44px; color: var(--ink); margin-bottom: 24px; letter-spacing: -.03em; }
.page-template-content { padding-top: 80px; }
.entry-content { font-size: 16px; color: var(--ink-2); line-height: 1.8; }
.entry-content h2 { font-size: 28px; color: var(--ink); margin: 32px 0 16px; }
.entry-content h3 { font-size: 22px; color: var(--ink); margin: 24px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 16px 0; padding-left: 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.entry-content a { color: var(--accent); }
.entry-content a:hover { text-decoration: underline; }

/* ---- FRONT PAGE CONTENT ---- */
.front-page-content { max-width: 1200px; margin: 0 auto; padding: 40px 24px; font-size: 16px; color: var(--ink-2); line-height: 1.8; }
.front-page-content h1 { font-size: 44px; color: var(--ink); margin: 40px 0 16px; font-weight: 700; letter-spacing: -.03em; }
.front-page-content h2 { font-size: 28px; color: var(--ink); margin: 32px 0 16px; font-weight: 600; }
.front-page-content h3 { font-size: 22px; color: var(--ink); margin: 24px 0 12px; font-weight: 600; }
.front-page-content p { margin-bottom: 16px; color: var(--ink-2); }
.front-page-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 24px 0; }
.front-page-content a { color: var(--accent); }
.front-page-content a:hover { text-decoration: underline; }
.front-page-content .wp-block-button__link { display: inline-block; padding: 12px 28px; background: var(--primary); color: #fff; border-radius: 14px; text-decoration: none; font-weight: 600; transition: .18s ease; }
.front-page-content .wp-block-button__link:hover { transform: translateY(-1px); text-decoration: none; }

/* ---- KANBAN (hero mockup) ---- */
.kanban-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kanban-col { min-width: 0; }
.kanban-col-header { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; padding: 0 4px; }
.kanban-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.kanban-count { margin-left: auto; background: var(--bg-soft); padding: 1px 7px; border-radius: 10px; font-size: 11px; color: var(--ink-2); }
.kanban-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 8px; transition: .25s ease; }
.kanban-card:hover { border-color: var(--accent); }
.kanban-card.card-active { border-color: #F59E0B; background: rgba(245,158,11,.04); }
.kanban-card.card-done { border-color: rgba(16,185,129,.3); }
.kanban-card.card-dim { opacity: .55; }
.kanban-tag { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 6px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.tag-blue { background: rgba(111,107,255,.12); color: var(--accent); }
.tag-purple { background: rgba(139,92,246,.12); color: var(--accent-2); }
.tag-green { background: rgba(16,185,129,.12); color: #10B981; }
.tag-orange { background: rgba(245,158,11,.12); color: #F59E0B; }
.kanban-card p { font-size: 12px; color: var(--ink-2); line-height: 1.4; margin-bottom: 8px; }
.kanban-meta { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--ink-2); }
.kanban-priority { width: 6px; height: 6px; border-radius: 50%; }
.priority-high { background: #EF4444; }
.priority-medium { background: #F59E0B; }
.priority-low { background: #10B981; }

/* ---- REVEAL ANIMATIONS ---- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   V3 HOMEPAGE ENHANCEMENTS
   Premium visual effects, better depth & motion
   ============================================ */

/* ---- HERO V3 ---- */
.hero-v3 {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  background: #fafbff;
}
.hero-v3-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 75% 10%, rgba(111,107,255,.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 30%, rgba(16,185,129,.06), transparent 50%),
    radial-gradient(ellipse 500px 300px at 50% 80%, rgba(139,92,246,.05), transparent 50%);
  pointer-events: none;
}
.hero-v3-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .4;
}
.hero-v3-orb--1 {
  width: 400px; height: 400px; top: -100px; right: -50px;
  background: linear-gradient(135deg, rgba(111,107,255,.3), rgba(139,92,246,.2));
  animation: orb-drift-1 12s ease-in-out infinite;
}
.hero-v3-orb--2 {
  width: 300px; height: 300px; bottom: -50px; left: -80px;
  background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(59,130,246,.15));
  animation: orb-drift-2 15s ease-in-out infinite;
}
@keyframes orb-drift-1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes orb-drift-2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-15px)} }

.hero-v3-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
}

.hero-v3-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2;
}

.hero-v3-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(111,107,255,.15);
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(111,107,255,.08);
}
.hero-v3-eyebrow-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(111,107,255,.4);
}

.hero-v3-title {
  font-size: 60px; line-height: 1.04; letter-spacing: -.045em;
  color: var(--ink); margin: 0 0 20px; font-weight: 800;
}
.hero-v3-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

.hero-v3-sub {
  font-size: 19px; line-height: 1.6; color: var(--ink-2);
  max-width: 500px; margin-bottom: 32px;
}

.hero-v3-actions { display: flex; gap: 14px; margin-bottom: 24px; }
.btn-v3-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #1e3a5f);
  color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 20px rgba(16,35,62,.2), 0 0 0 1px rgba(255,255,255,.05) inset;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.btn-v3-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,.1));
  opacity: 0; transition: opacity .25s ease;
}
.btn-v3-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,35,62,.25), 0 0 0 1px rgba(255,255,255,.1) inset; }
.btn-v3-primary:hover::after { opacity: 1; }

.btn-v3-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 14px;
  background: rgba(255,255,255,.6); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--ink);
  font-weight: 600; font-size: 16px; transition: all .25s ease;
}
.btn-v3-ghost:hover { background: #fff; border-color: var(--accent); color: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(111,107,255,.08); }

.hero-v3-trust {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.hero-v3-trust-dot { width: 3px; height: 3px; background: var(--line); border-radius: 50%; }

/* Hero visual / screen */
.hero-v3-visual { position: relative; }
.hero-v3-screen {
  border-radius: 20px; overflow: hidden;
  box-shadow:
    0 25px 60px rgba(16,35,62,.12),
    0 8px 20px rgba(16,35,62,.06),
    0 0 0 1px rgba(16,35,62,.04);
  border: 1px solid rgba(219,228,240,.6);
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero-v3-screen:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 80px rgba(16,35,62,.14),
    0 12px 30px rgba(16,35,62,.08),
    0 0 0 1px rgba(111,107,255,.1);
}
.hero-v3-screen img { width: 100%; height: auto; display: block; }

/* Floating stat badges */
.hero-v3-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(219,228,240,.6);
  box-shadow: 0 8px 30px rgba(16,35,62,.1);
  z-index: 5; transition: transform .3s ease;
}
.hero-v3-float:hover { transform: translateY(-2px) scale(1.02); }
.hero-v3-float--1 { bottom: 20%; right: -30px; animation: float-y 4s ease-in-out infinite; }
.hero-v3-float--2 { top: 10%; left: -20px; animation: float-y 5s ease-in-out infinite 1s; }
.hero-v3-float--3 { bottom: 5%; left: 10%; animation: float-y 4.5s ease-in-out infinite .5s; }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-v3-float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-v3-float-icon--green { background: linear-gradient(135deg, #10B981, #059669); }
.hero-v3-float-icon--blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.hero-v3-float-icon--purple { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.hero-v3-float-num { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.hero-v3-float-label { font-size: 11px; color: var(--ink-2); font-weight: 500; }
.hero-v3-float-bar {
  width: 80px; height: 6px; background: var(--bg-soft); border-radius: 3px; overflow: hidden; margin-top: 4px;
}
.hero-v3-float-bar span {
  display: block; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1.5s ease;
}

/* Stats bar */
.hero-v3-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 40px; padding: 28px 40px; border-radius: 20px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(219,228,240,.5);
  box-shadow: 0 4px 24px rgba(16,35,62,.04);
  position: relative; z-index: 2;
}
.hero-v3-stat { text-align: center; }
.hero-v3-stat-num { font-size: 32px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.hero-v3-stat-plus { font-size: 20px; font-weight: 700; color: var(--accent); margin-left: 2px; }
.hero-v3-stat-label { display: block; font-size: 13px; color: var(--ink-2); margin-top: 4px; font-weight: 500; }
.hero-v3-stat-divider { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--line), transparent); }

/* ---- HERO CSS MOCKUP ---- */
.hero-mockup {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(219,228,240,.6);
  background: #fff;
  box-shadow:
    0 25px 60px rgba(16,35,62,.12),
    0 8px 20px rgba(16,35,62,.06),
    0 0 0 1px rgba(16,35,62,.04);
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(16,35,62,.14), 0 12px 30px rgba(16,35,62,.08), 0 0 0 1px rgba(111,107,255,.1);
}
.hero-mockup-toolbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.hero-mockup-dots { display: flex; gap: 6px; }
.hero-mockup-dots i { display: block; width: 10px; height: 10px; border-radius: 50%; }
.hero-mockup-dots i:nth-child(1) { background: #EF4444; }
.hero-mockup-dots i:nth-child(2) { background: #F59E0B; }
.hero-mockup-dots i:nth-child(3) { background: #10B981; }
.hero-mockup-title { font-size: 11px; color: var(--ink-2); font-weight: 500; }
.hero-mockup-body { padding: 16px; }

/* Stats row */
.hm-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px;
}
.hm-stat {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); text-align: center;
}
.hm-stat-val { display: block; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.hm-stat-lbl { display: block; font-size: 10px; color: var(--ink-2); margin-top: 2px; font-weight: 500; }
.hm-c-red { color: #EF4444; }
.hm-c-amber { color: #F59E0B; }
.hm-c-green { color: #10B981; }

/* Kanban */
.hm-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hm-col { min-width: 0; }
.hm-col-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  margin-bottom: 8px; padding: 0 2px; text-transform: uppercase; letter-spacing: .04em;
}
.hm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hm-count {
  margin-left: auto; background: var(--bg-soft); padding: 1px 7px;
  border-radius: 10px; font-size: 10px; color: var(--ink-2); font-weight: 600;
}
.hm-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px; margin-bottom: 8px;
  transition: border-color .25s ease;
}
.hm-card:hover { border-color: var(--accent); }
.hm-card-active { border-color: #F59E0B; background: rgba(245,158,11,.03); }
.hm-card-done { border-color: rgba(16,185,129,.25); }
.hm-card-dim { opacity: .5; }
.hm-tag {
  display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 5px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .4px;
}
.hm-tag-blue { background: rgba(111,107,255,.1); color: var(--accent); }
.hm-tag-purple { background: rgba(139,92,246,.1); color: var(--accent-2); }
.hm-tag-green { background: rgba(16,185,129,.1); color: #10B981; }
.hm-tag-orange { background: rgba(245,158,11,.1); color: #F59E0B; }
.hm-card p { font-size: 12px; color: var(--ink); line-height: 1.35; margin: 0 0 6px; font-weight: 500; }
.hm-card-foot {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--ink-2); font-weight: 500;
}
.hm-pri { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hm-pri-high { background: #EF4444; }
.hm-pri-med { background: #F59E0B; }
.hm-pri-low { background: #10B981; }
.hm-avatar {
  width: 20px; height: 20px; border-radius: 6px; margin-left: auto;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 8px; font-weight: 700;
}

/* ---- ENHANCED CARDS ---- */
.card, .quote, .mini-card {
  transition: all .3s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.card:hover, .mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(16,35,62,.08), 0 0 0 1px rgba(111,107,255,.08);
  border-color: rgba(111,107,255,.15);
}
.quote {
  position: relative; padding-left: 26px;
}
.quote::before {
  content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
.quote p { font-style: italic; font-size: 15px; line-height: 1.7; }

/* Enhanced price card popular */
.price-card.popular {
  background: linear-gradient(135deg, var(--primary), #1e3a5f);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(16,35,62,.15);
  transform: scale(1.02);
}
.price-card.popular h3 { color: #fff; }
.price-card.popular .badge { background: rgba(255,255,255,.15); color: #fff; }
.price-card.popular:hover { transform: scale(1.04); }

/* ---- ENHANCED CTA BAND ---- */
.cta-band {
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 400px 200px at 80% 20%, rgba(111,107,255,.2), transparent),
    radial-gradient(ellipse 300px 200px at 20% 80%, rgba(16,185,129,.1), transparent);
  pointer-events: none;
}

/* V3 CTA Band — centered, clean */
.cta-band-v3 {
  text-align: center; padding: 56px 40px; border-radius: 32px;
  background: linear-gradient(135deg, #10233e 0%, #1e3a5f 50%, #243b5e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band-v3::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 500px 250px at 70% 0%, rgba(111,107,255,.18), transparent),
    radial-gradient(ellipse 400px 200px at 30% 100%, rgba(16,185,129,.1), transparent);
}
.cta-band-v3 h2 {
  font-size: 40px; color: #fff; margin: 0 0 14px;
  line-height: 1.1; letter-spacing: -.03em; position: relative;
}
.cta-band-v3-sub {
  font-size: 18px; color: rgba(215,223,240,.8); max-width: 480px;
  margin: 0 auto 32px; line-height: 1.5; position: relative;
}
.cta-band-v3-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; margin-bottom: 20px;
}
.btn-v3-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 14px;
  background: #fff; color: #10233e;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: all .25s ease;
}
.btn-v3-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.cta-band-v3-note {
  font-size: 13px; color: rgba(255,255,255,.4);
  margin: 0; position: relative;
}

/* ---- ENHANCED SECTIONS ---- */
.section.soft {
  position: relative;
}
.section.soft::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section.soft::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Enhanced screen images — consistent + polished */
.screen {
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
  background: var(--bg-soft);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(16,35,62,.10), 0 0 0 1px rgba(219,228,240,.5);
}
.screen img {
  width: 100%; display: block;
}
.screen:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(16,35,62,.12), 0 0 0 1px rgba(111,107,255,.06);
}

/* Toolbar chrome on screens inside content sections */
.feature-row .screen,
.two-col .screen,
.split-panel .screen {
  padding-top: 36px;
}
.feature-row .screen::before,
.two-col .screen::before,
.split-panel .screen::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 36px; background: var(--bg-soft);
  border-bottom: 1px solid var(--line); z-index: 2;
  background-image:
    radial-gradient(circle 5px at 16px 18px, #EF4444 5px, transparent 0),
    radial-gradient(circle 5px at 32px 18px, #F59E0B 5px, transparent 0),
    radial-gradient(circle 5px at 48px 18px, #10B981 5px, transparent 0);
}

/* Side-by-side screens (feature-row with 2 screens) — equal height */
.feature-row {
  align-items: stretch;
}
.feature-row .screen {
  display: flex; flex-direction: column;
}
.feature-row .screen img {
  flex: 1; object-fit: cover; object-position: top left;
  min-height: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero-v3-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-v3-sub { margin-left: auto; margin-right: auto; }
  .hero-v3-actions { justify-content: center; }
  .hero-v3-trust { justify-content: center; }
  .hero-v3-visual { max-width: 600px; margin: 0 auto; }
  .hero-v3-float--1 { right: 0; }
  .hero-v3-float--2 { left: 0; }
  .hero-v3-stats { flex-wrap: wrap; gap: 20px; }
  .hero-grid, .split-panel, .feature-block, .two-col, .feature-row { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; text-align: center; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas, .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 550px; margin: 0 auto; }
  .feature-block-reverse .feature-text { order: 0; }
  .feature-block-reverse .feature-visual { order: 0; }
  .feat-mock { max-width: 450px; margin: 0 auto; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card-popular { transform: none; }
  .card-grid.five { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row.reverse { direction: ltr; }
}

@media (max-width: 840px) {
  .section { padding: 56px 0; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  .desktop-nav.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 100px 32px 32px;
    gap: 0; z-index: 999;
  }
  .desktop-nav.mobile-open a { color: var(--ink); font-size: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); display: block; }

  .hero-v3-title { font-size: 42px; }
  .hero-v3-float { display: none; }
  .hm-stats { grid-template-columns: repeat(2, 1fr); }
  .hm-kanban .hm-col:nth-child(3) { display: none; }
  .hero-v3-stats { padding: 20px; gap: 16px; }
  .hero-v3-stat-num { font-size: 24px; }
  .hero-v3-stat-divider { display: none; }
  .hero h1, .page-hero h1 { font-size: 44px; }
  .section h2, .section-header h2, .section-cta h2, .front-page-content h1 { font-size: 34px; }
  .feature-text h3, .feature-copy h3 { font-size: 30px; }

  .pain-grid, .eco-grid, .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid, .template-grid, .integrations-grid, .quote-grid, .mini-grid, .card-grid.three { grid-template-columns: 1fr; }
  .card-grid.two, .use-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .panel-grid, .metrics { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }

  .steps-timeline { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--accent), var(--line)); margin: 0; }

  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .kanban-board { grid-template-columns: 1fr 1fr; }
  .kanban-board .kanban-col:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .hero-v3-title { font-size: 34px; }
  .hero-v3-actions { flex-direction: column; }
  .hero-v3-actions .btn-v3-primary, .hero-v3-actions .btn-v3-ghost { width: 100%; justify-content: center; text-align: center; }
  .hero-v3-stats { flex-direction: column; gap: 12px; }
  .hero h1 { font-size: 32px; }
  .hero-ctas, .hero-actions { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
}
