:root {
  --pg-ink: #111827;
  --pg-muted: #5b6472;
  --pg-soft: #f6f8fc;
  --pg-line: #d9e0ec;
  --pg-blue: #4f46e5;
  --pg-blue-dark: #3730a3;
  --pg-teal: #0f9f8f;
  --pg-orange: #f59e0b;
  --pg-green: #16a34a;
  --pg-cyan: #0891b2;
  --pg-navy: #111827;
  --pg-white: #ffffff;
  --pg-primary-glow: rgba(79, 70, 229, 0.22);
  --pg-teal-glow: rgba(15, 159, 143, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--pg-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background: var(--pg-white);
}

a {
  color: var(--pg-blue);
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.88);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-ink);
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  color: var(--pg-white);
  background: var(--pg-blue);
  box-shadow: none;
  font-weight: 900;
  line-height: 1;
}

.nav-link {
  color: #334155;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pg-blue);
}

.btn-primary {
  background: var(--pg-blue);
  border-color: var(--pg-blue);
  font-weight: 800;
}

.btn-primary:hover {
  background: var(--pg-blue-dark);
  border-color: var(--pg-blue-dark);
}

.btn-outline-dark {
  font-weight: 800;
}

.hero {
  min-height: 720px;
  color: var(--pg-ink);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, #f8fbff 0%, #eef2ff 42%, #ecfeff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0) 74%),
    repeating-linear-gradient(135deg, rgba(79, 70, 229, 0.07) 0 1px, transparent 1px 22px);
}

.hero-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 128px 0 72px;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--pg-blue-dark);
  background: #e0e7ff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero p {
  color: var(--pg-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #334155;
  font-weight: 650;
}

.product-scene {
  position: absolute;
  right: -80px;
  top: 118px;
  width: min(620px, 50vw);
  transform: rotate(-3deg);
  opacity: 0.96;
  z-index: 1;
}

.product-window {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.14);
  overflow: hidden;
}

.window-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background: #f8fafc;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot.blue { background: var(--pg-blue); }
.dot.orange { background: var(--pg-orange); }
.dot.green { background: var(--pg-green); }

.window-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 380px;
}

.mock-sidebar {
  padding: 18px;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  background: #f8fafc;
}

.mock-nav {
  height: 14px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 15px;
}

.mock-nav.active {
  background: var(--pg-blue);
  width: 82%;
}

.mock-main {
  padding: 22px;
}

.mock-title {
  width: 52%;
  height: 24px;
  border-radius: 999px;
  background: var(--pg-navy);
  margin-bottom: 22px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mock-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.mock-number {
  height: 28px;
  width: 70%;
  border-radius: 999px;
  background: #e0e7ff;
  margin-bottom: 10px;
}

.mock-line {
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 9px;
}

.mock-table {
  display: grid;
  gap: 10px;
}

.mock-row {
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: #fff;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--pg-soft);
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.section-title p {
  color: var(--pg-muted);
  font-size: 18px;
  line-height: 1.6;
}

.feature-card,
.industry-card,
.pricing-card,
.contact-card,
.legal-card {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 850;
  margin-bottom: 16px;
}

.feature-icon.blue { background: var(--pg-blue); }
.feature-icon.orange { background: var(--pg-orange); }
.feature-icon.green { background: var(--pg-green); }
.feature-icon.cyan { background: var(--pg-cyan); }

.feature-card h3,
.industry-card h3,
.pricing-card h3 {
  font-size: 21px;
  font-weight: 820;
  letter-spacing: 0;
}

.feature-card p,
.industry-card p,
.pricing-card p,
.contact-card p,
.legal-card p,
.legal-card li {
  color: var(--pg-muted);
  line-height: 1.62;
}

.metric-band {
  background: var(--pg-navy);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
}

.metric {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 22px;
}

.metric:first-child {
  border-left: 0;
  padding-left: 0;
}

.metric strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.metric span {
  color: #cbd5e1;
}

.cta-band {
  background: var(--pg-blue);
  color: #fff;
  border-radius: 8px;
  padding: 46px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--pg-line);
  background: #fff;
}

.footer a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--pg-blue);
}

.page-hero {
  padding: 138px 0 68px;
  background: #ffffff;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  color: var(--pg-muted);
  font-size: 19px;
  line-height: 1.62;
  max-width: 740px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #334155;
}

.check-list li::before {
  content: "✓";
  color: var(--pg-green);
  font-weight: 900;
}

.price {
  font-size: 48px;
  font-weight: 850;
  letter-spacing: 0;
}

.price span {
  font-size: 18px;
  color: var(--pg-muted);
  font-weight: 650;
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 14px;
}

@media (max-width: 991px) {
  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    padding: 118px 0 56px;
  }

  .product-scene {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
    margin-top: 34px;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .metric {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
  }

  .metric:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
