:root {
  --navy: #0f2747;
  --blue: #1769c2;
  --light: #eaf5ff;
  --text: #102033;
  --muted: #64748b;
  --line: #dbe7f3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 39, 71, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f6fbff;
}

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

img {
  max-width: 100%;
  display: block;
}

.demo-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-back {
  font-weight: 900;
  color: var(--navy);
}

.demo-header nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 60px;
}

.demo-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 44px;
  border-radius: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #e9f5ff 100%);
  box-shadow: var(--shadow);
}

.demo-logo {
  width: 240px;
  margin-bottom: 26px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  margin: 24px 0 30px;
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.button,
button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
  cursor: pointer;
}

.primary {
  background: var(--blue);
  color: var(--white);
}

.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(15, 39, 71, 0.16);
}

.demo-note {
  margin: 24px 0;
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.demo-note strong {
  color: var(--blue);
}

.about,
.contact {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  margin-top: 72px;
}

.cards,
.why-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cards article,
.why-grid div,
.project-grid article,
.faq details,
.contact form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 39, 71, 0.08);
}

.cards h3,
.project-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid div {
  color: var(--navy);
  font-weight: 950;
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.faq {
  max-width: 900px;
}

.faq details {
  margin-bottom: 12px;
}

.faq summary {
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.contact {
  align-items: start;
  padding: 36px;
  border-radius: 34px;
  background: var(--navy);
}

.contact h2,
.contact .section-label {
  color: var(--white);
}

.contact p {
  color: #cfe0f4;
}

.contact form {
  display: grid;
  gap: 12px;
  box-shadow: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

button {
  background: var(--blue);
  color: var(--white);
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 60px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

footer a {
  font-weight: 900;
  color: var(--blue);
}

@media (max-width: 900px) {
  .demo-header,
  .demo-header nav,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards,
  .why-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .demo-hero {
    padding: 26px;
  }

  .demo-logo {
    width: 200px;
  }
}

/* SALES POLISH */
.header-phone {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

.stats-strip {
  margin: 24px 0 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 39, 71, 0.08);
}

.stats-strip strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.stats-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.pagespoon-demo-cta {
  margin-top: 72px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #e9f5ff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pagespoon-demo-cta p {
  max-width: 780px;
}

@media (max-width: 900px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .header-phone {
    width: fit-content;
  }

  .pagespoon-demo-cta {
    padding: 26px;
  }
}

.showcase {
  margin-top: 56px;
}

.showcase-image {
  margin-top: 24px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}


.demo-disclaimer {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}


.demo-disclaimer {
  margin: 12px 0 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}


/* FINAL SALES POLISH */
.demo-page-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.lead-small {
  margin: -14px 0 28px;
  max-width: 620px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.55;
}

.demo-offer-box,
.price-compare {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.demo-offer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.demo-offer-box h2,
.price-compare h2 {
  margin-bottom: 10px;
}

.process-demo-grid,
.price-compare-grid {
  display: grid;
  gap: 16px;
}

.process-demo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-demo-grid article,
.price-compare-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 39, 71, 0.08);
}

.process-demo-grid strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  font-weight: 950;
}

.process-demo-grid span,
.price-compare-grid span {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-weight: 900;
}

.price-compare-grid {
  grid-template-columns: 1fr 1fr;
}

.price-compare-grid strong {
  color: var(--muted);
}

.price-compare-grid span {
  font-size: 28px;
  letter-spacing: -0.04em;
}

@media (max-width: 900px) {
  .demo-offer-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-demo-grid,
  .price-compare-grid {
    grid-template-columns: 1fr;
  }
}
