@charset "utf-8";
/* CSS Document */

:root {
  --posr-red: #F94144;
  --posr-green: #2ECC71;
  --golden-yellow: #FFC947;
  --sunrise-orange: #FF7A29;
  --sky-blue: #3FA9F5;
  --playful-purple: #8E6CF3;
  --bg: #F8F9FB;
  --panel: #F2F4F7;
  --border: #E4E7EC;
  --text: #344054;
  --text-soft: #667085;
  --white: #FFFFFF;
  --shadow: 0 12px 30px rgba(52, 64, 84, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.10);
  color: #178a4d;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h1, h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.lead {
  font-size: 1.18rem;
  max-width: 720px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--posr-green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(46, 204, 113, 0.22);
}

.btn-primary:hover {
  background: #27b765;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost {
  color: var(--text-soft);
  padding: 0;
  min-height: auto;
  border-radius: 0;
  font-weight: 700;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--posr-green);
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 249, 251, 0.86);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--posr-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(249, 65, 68, 0.18);
}

.brand-text {
  min-width: 0;
}

.brand-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.brand-tag {
  font-size: 0.86rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.97rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 48px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hero-copy p.lead {
  max-width: 640px;
}

.hero-art {
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f9 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(52, 64, 84, 0.12);
  padding: 8px;
}

.app-frame {
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: auto;
  box-shadow:
    0 20px 60px rgba(52, 64, 84, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfd;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.frame-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 470px;
}

.side-rail {
  background: #fbfcfd;
  border-right: 1px solid var(--border);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rail-pill {
  height: 44px;
  border-radius: 14px;
  background: var(--panel);
}

.rail-pill.active {
  background: rgba(249, 65, 68, 0.14);
  border: 1px solid rgba(249, 65, 68, 0.18);
}

.mock-main {
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.mock-title,
.mock-subtitle,
.mock-line,
.mock-chip,
.mock-card,
.mock-button,
.mock-image,
.placeholder-box {
  border-radius: 16px;
  background: var(--panel);
  border: 1px dashed #c7ced8;
  color: #8d98a8;
}

.mock-title {
  height: 26px;
  width: 58%;
}

.mock-subtitle {
  height: 18px;
  width: 82%;
}

.mock-line {
  height: 16px;
  width: 100%;
}

.mock-line.short {
  width: 62%;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mock-chip {
  height: 34px;
  width: 120px;
}

.mock-chip.red { background: rgba(249, 65, 68, 0.12); }
.mock-chip.green { background: rgba(46, 204, 113, 0.12); }
.mock-chip.yellow { background: rgba(255, 201, 71, 0.16); }

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock-card {
  min-height: 128px;
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.mock-button {
  height: 44px;
  width: 180px;
  background: rgba(63, 169, 245, 0.12);
}

.section-head {
  margin-bottom: 34px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.three-up,
.feature-grid,
.proof-grid,
.value-grid {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.value-grid {
  grid-template-columns: 1fr 1fr;
}

.info-card,
.feature-card,
.proof-card,
.quote-card,
.price-card,
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: 18px 0 0 18px;
  background: var(--sky-blue);
}

.feature-card.red::before { background: var(--posr-red); }
.feature-card.green::before { background: var(--posr-green); }
.feature-card.yellow::before { background: var(--golden-yellow); }
.feature-card.orange::before { background: var(--sunrise-orange); }
.feature-card.purple::before { background: var(--playful-purple); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
  color: #667085;
  background: rgba(63, 169, 245, 0.12);
}

.red .card-icon { background: rgba(249, 65, 68, 0.12); }
.green .card-icon { background: rgba(46, 204, 113, 0.12); }
.yellow .card-icon { background: rgba(255, 201, 71, 0.18); }
.orange .card-icon { background: rgba(255, 122, 41, 0.14); }
.purple .card-icon { background: rgba(142, 108, 243, 0.12); }

.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(249, 65, 68, 0.1);
  color: var(--posr-red);
  font-weight: 800;
  margin-bottom: 18px;
}

.value-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.value-card ul,
.price-card ul,
.cta-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-card li,
.price-card li,
.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

.value-card li:last-child,
.price-card li:last-child,
.cta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--posr-green);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 2px;
}

.demo-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.placeholder-box {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f9 100%);
  font-weight: 700;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.placeholder-box.small {
  min-height: 240px;
}

.proof-quote {
  font-size: 1.16rem;
  color: var(--text);
  line-height: 1.5;
}

.quote-attrib {
  margin-top: 18px;
  color: var(--text-soft);
  font-weight: 700;
}

.price-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 30px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(46, 204, 113, 0.1);
  color: #0f8c49;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-band {
  background: linear-gradient(135deg, rgba(249, 65, 68, 0.08) 0%, rgba(63, 169, 245, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
}

.site-footer {
  padding: 28px 0 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.footer-copy {
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.muted {
  color: var(--text-soft);
}

/* =========================
   REQUEST PRICING PAGE
   ========================= */

.pricing-hero {
  padding-bottom: 52px;
}

.pricing-hero-grid {
  align-items: start;
}

.pricing-rollout-note {
  margin-top: 16px;
  margin-bottom: 0;
}

.pricing-rollout-subtle {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.pricing-rollout-subtle a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-info-card {
  padding: 28px;
}

.pricing-info-card h3 {
  margin-bottom: 12px;
}

.pricing-list {
  margin-top: 18px;
}

.request-pricing-section {
  padding-top: 18px;
}

.request-pricing-wrap {
  max-width: 860px;
}

.request-pricing-card {
  padding: 30px;
}

.request-pricing-intro {
  margin-bottom: 0;
  max-width: 760px;
}

.hubspot-form-shell {
  margin-top: 24px;
}

.hubspot-form-placeholder {
  min-height: 520px;

  border: 1px dashed #c7ced8;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hubspot-form-placeholder strong {
  display: block;
  font-size: 1.06rem;
  color: var(--text);
  margin-bottom: 10px;
}

.request-pricing-followup {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.pricing-support-section {
  padding-top: 0;
}

.pricing-support-grid .info-card {
  height: 100%;
}

@media (max-width: 1100px) {
  .hero-grid,
  .demo-wrap,
  .value-wrap,
  .proof-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .three-up,
  .step-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    gap: 18px;
  }
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 34px 0 60px;
  }

  .feature-grid,
  .three-up,
  .step-row,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .feature-card,
  .info-card,
  .proof-card,
  .quote-card,
  .price-card,
  .value-card,
  .pricing-info-card,
  .request-pricing-card {
    padding: 22px;
  }

  .frame-body {
    grid-template-columns: 72px 1fr;
  }

  .header-inner {
    min-height: 68px;
  }

  .hubspot-form-placeholder {
    min-height: 420px;
    padding: 22px;
  }
}