/* ========== PB Software — Global Styles ========== */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0f1e3d;
  --bg-dark-2: #142548;
  --text: #0f1e3d;
  --text-muted: #5a6a85;
  --text-on-dark: #e7ecf5;
  --text-on-dark-muted: #9fb0cc;
  --accent: #10b981;
  --accent-2: #059669;
  --accent-soft: #d1fae5;
  --border: #e5ebf3;
  --border-dark: #223462;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 30, 61, 0.06);
  --shadow: 0 10px 30px -12px rgba(15, 30, 61, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 30, 61, 0.25);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #0b1530;
  --bg-alt: #0f1e3d;
  --bg-dark: #070e22;
  --bg-dark-2: #0f1e3d;
  --text: #e7ecf5;
  --text-muted: #9fb0cc;
  --border: #1e2f56;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }
a  { color: var(--accent-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }

/* ========== Navbar ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
[data-theme="dark"] .nav { background: rgba(11,21,48,0.85); }
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav.scrolled .nav-inner { height: 60px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0f1e3d 0%, #10b981 130%);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: .85rem;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 18px -6px rgba(16,185,129,0.55);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
}
.theme-toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  display: grid; place-items: center;
  transition: all .2s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(16,185,129,0.6);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(16,185,129,0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover { background: var(--bg-dark-2); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ========== Hero ========== */
.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,30,61,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero h1 { color: var(--text); }
.hero h1 .grad {
  background: linear-gradient(90deg, #10b981 0%, #0f1e3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-stats .stat-lbl {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ========== Hero Mockup (fake dashboard) ========== */
.mockup {
  position: relative;
  background: var(--bg-dark);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform .4s var(--ease);
}
.mockup:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(2deg); }
.mockup-dots {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-body {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  min-height: 420px;
}
.m-side {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-side-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: #5a6a85;
  padding: 6px 8px; border-radius: 6px;
}
.m-side-item.active { background: #0f1e3d; color: #fff; }
.m-side-item .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.m-main { display: flex; flex-direction: column; gap: 14px; }
.m-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.m-kpi {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 10px 12px;
}
.m-kpi .lbl { font-size: .65rem; color: #5a6a85; text-transform: uppercase; letter-spacing: .05em; }
.m-kpi .val { font-size: 1rem; font-weight: 700; color: #0f1e3d; margin-top: 2px; }
.m-kpi .delta { font-size: .7rem; color: #10b981; font-weight: 600; }
.m-kpi .delta.down { color: #ef4444; }
.m-chart {
  flex: 1;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 14px;
  position: relative;
  min-height: 140px;
}
.m-chart-title { font-size: .75rem; color: #0f1e3d; font-weight: 600; margin-bottom: 8px; }
.m-chart svg { width: 100%; height: 110px; }
.m-list { display: flex; flex-direction: column; gap: 6px; }
.m-list-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  background: #f7f9fc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: .72rem;
}
.m-list-item .name { color: #0f1e3d; font-weight: 600; }
.m-list-item .amt { color: #0f1e3d; font-weight: 600; }
.m-badge {
  font-size: .6rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.m-badge.ok { background: #d1fae5; color: #059669; }
.m-badge.warn { background: #fef3c7; color: #d97706; }
.m-badge.late { background: #fee2e2; color: #dc2626; }

/* Floating cards around mockup */
.mockup-float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  animation: floaty 4s ease-in-out infinite;
}
.mockup-float .icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.mockup-float.one {
  top: -20px; left: -40px;
  animation-delay: 0s;
}
.mockup-float.two {
  bottom: 30px; right: -50px;
  animation-delay: 2s;
}
.mockup-float .lbl { font-size: .7rem; color: var(--text-muted); }
.mockup-float .val { font-weight: 700; color: var(--text); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== Trust bar ========== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-logos {
  display: flex; gap: 36px; flex-wrap: wrap;
  align-items: center;
  opacity: 0.65;
}
.trust-logo {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.01em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ========== Section heading ========== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head p { font-size: 1.1rem; }

/* ========== Feature Grid ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature-card h3 { color: var(--text); margin-bottom: 10px; }
.feature-card p { margin: 0; font-size: .95rem; }
.feature-card ul {
  list-style: none;
  padding: 0; margin: 16px 0 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.feature-card ul li {
  padding: 4px 0 4px 22px;
  position: relative;
}
.feature-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ========== Why section (alt bg) ========== */
.why {
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  text-align: center;
  padding: 20px;
}
.why-item .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h3 { color: var(--text); margin-bottom: 10px; }
.why-item p { font-size: .95rem; margin: 0; }

/* ========== Calculator widget ========== */
.calc {
  background: linear-gradient(135deg, #0f1e3d 0%, #142548 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 60%);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.calc h2 { color: #fff; margin-bottom: 12px; }
.calc p { color: var(--text-on-dark-muted); }
.calc-form label {
  display: block;
  font-size: .85rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.calc-form input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  margin-bottom: 4px;
}
.calc-form .range-row {
  display: flex; justify-content: space-between;
  font-size: .85rem;
  color: #fff;
  margin-bottom: 20px;
}
.calc-form .range-row .current {
  font-weight: 700;
  color: var(--accent);
}
.calc-result {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.calc-result .label {
  font-size: .8rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.calc-result .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result .small { color: var(--text-on-dark); font-size: .9rem; }
.calc-result hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }

/* ========== Integrations ========== */
.integrations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.int-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 10px;
  text-align: center;
  transition: all .2s ease;
}
.int-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.int-card .int-icon {
  width: 44px; height: 44px;
  margin: 0 auto 10px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--text);
}
.int-card .int-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

/* ========== Testimonials ========== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card .quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-card .person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f1e3d, #10b981);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.testi-card .name { font-weight: 600; color: var(--text); font-size: .95rem; }
.testi-card .role { font-size: .82rem; color: var(--text-muted); }
.stars { color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid; place-items: center;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  color: var(--text-muted);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ========== CTA Banner ========== */
.cta-banner {
  background: linear-gradient(135deg, #0f1e3d 0%, #142548 60%, #10b981 220%);
  color: #fff;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.08'/></svg>");
  opacity: 0.5;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--text-on-dark-muted); max-width: 560px; margin: 0 auto 28px; }

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--text-on-dark-muted);
  font-size: .9rem;
}
.footer-col ul a:hover { color: #fff; }
.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: .9rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--text-on-dark);
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: var(--text-on-dark-muted);
}
.footer-bottom .brand { color: var(--text-on-dark-muted); }

/* ========== Page headers (inner pages) ========== */
.page-head {
  padding: 80px 0 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-head .eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.page-head p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .3s var(--ease);
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -20px rgba(16,185,129,0.35);
  transform: translateY(-8px);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.pricing-card h3 {
  font-size: 1rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.pricing-price .amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-price .per { color: var(--text-muted); font-size: .95rem; }
.pricing-card .desc { color: var(--text-muted); font-size: .92rem; margin-bottom: 24px; }
.pricing-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  font-size: .92rem;
}
.pricing-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.pricing-card ul li:first-child { border-top: 0; }
.pricing-card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--accent); font-weight: 700;
}
.pricing-card ul li.off { color: var(--text-muted); }
.pricing-card ul li.off::before { content: '—'; color: var(--text-muted); }
.pricing-card .btn { margin-top: auto; justify-content: center; }

/* comparison table */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.compare thead th {
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.center, .compare th.center { text-align: center; }
.compare .yes { color: var(--accent); font-weight: 700; }
.compare .no { color: var(--text-muted); }

/* ========== Solutions page ========== */
.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.solution-row:nth-child(even) .solution-img { order: 2; }
.solution-row:nth-child(even) .solution-text { order: 1; }
.solution-row .eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.solution-img {
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.solution-text ul {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.solution-text ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text);
}
.solution-text ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 18px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info .info-item {
  display: flex; gap: 14px;
  margin-bottom: 26px;
}
.contact-info .info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
}
.contact-info h4 { margin: 0 0 4px; font-size: 1rem; color: var(--text); }
.contact-info p { margin: 0; font-size: .95rem; }
form .field {
  margin-bottom: 18px;
}
form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
form input:focus, form select:focus, form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
form textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== Features page list ========== */
.feat-big {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feat-big .feature-card { padding: 36px; }

/* ========== Scroll reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero { padding: 56px 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mockup { transform: none; }
  .mockup:hover { transform: none; }
  .mockup-float.one { left: -10px; top: -10px; }
  .mockup-float.two { right: -10px; bottom: 10px; }
  .features-grid, .why-grid, .testi-grid, .pricing-grid, .feat-big { grid-template-columns: 1fr; }
  .integrations { grid-template-columns: repeat(3, 1fr); }
  .calc { padding: 40px 24px; border-radius: 18px; }
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .solution-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .solution-row:nth-child(even) .solution-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { padding: 48px 28px; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta .btn-primary { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .integrations { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}
