:root {
  --ink: #14213d;
  --muted: #5f6f89;
  --line: #d9e2ec;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --blue: #2563eb;
  --blue-dark: #183d99;
  --teal: #0f766e;
  --gold: #f59e0b;
  --green: #16a34a;
  --shadow: 0 24px 60px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(54px, 8vw, 94px) clamp(20px, 5vw, 72px) 42px;
  background:
    linear-gradient(115deg, rgba(244, 248, 251, 0.98) 0%, rgba(244, 248, 251, 0.72) 52%, rgba(218, 242, 238, 0.92) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  background: #101828;
  color: #fff;
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f87171;
}

.preview-toolbar span:nth-child(2) {
  background: #fbbf24;
}

.preview-toolbar span:nth-child(3) {
  background: #34d399;
}

.preview-toolbar strong {
  margin-left: auto;
  font-size: 0.85rem;
}

.preview-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.income-range {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.preview-card p {
  color: var(--muted);
  line-height: 1.65;
}

.lead-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-card span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-card small {
  color: var(--muted);
  line-height: 1.55;
}

.logos-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.logos-strip span {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.section,
.demo-section,
.roi-section,
.contact-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.roi-card,
.add-on-row article,
.contact-form,
.contact-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.feature-card h3,
.price-card h4,
.add-on-row h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.feature-card p,
.price-card li,
.fit,
.add-on-row p,
.roi-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.demo-section {
  background: var(--mist);
}

.demo-frame-wrap {
  overflow: hidden;
  height: min(760px, 78vh);
  min-height: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.roi-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background: #101828;
}

.roi-section .eyebrow {
  color: #93c5fd;
}

.roi-section h2 {
  margin-bottom: 0;
}

.roi-card {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.roi-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.pricing-group {
  margin-top: 36px;
}

.pricing-group h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.13);
}

.popular {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: #dbeafe;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.fit {
  min-height: 52px;
  margin-bottom: 18px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.compact .price {
  font-size: 2rem;
}

.add-on-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.add-on-row article {
  padding: 24px;
  background: var(--mist);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.contact-copy p {
  max-width: 620px;
  font-size: 1.05rem;
}

.contact-note {
  max-width: 620px;
  margin-top: 28px;
  padding: 20px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.16);
  border-color: var(--blue);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.form-status.error {
  color: #b91c1c;
}

.hidden-field {
  display: none;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #101828;
}

.site-footer p {
  margin: 0;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.thanks-brand {
  align-self: start;
}

.thanks-card {
  align-self: center;
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 64px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.thanks-card p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .two-column,
  .roi-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .pricing-grid,
  .add-on-row {
    grid-template-columns: 1fr;
  }

  .fit {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-metrics,
  .feature-grid,
  .logos-strip {
    grid-template-columns: 1fr;
  }

  .demo-frame-wrap {
    min-height: 560px;
    height: 70vh;
  }
}
