:root {
  --blue: #1168e8;
  --blue-2: #0a55c9;
  --navy: #172b4d;
  --deep-navy: #102347;
  --text: #14213d;
  --muted: #617089;
  --line: #e7edf7;
  --soft: #f6f8fc;
  --warm: #f7f5f0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 35, 71, 0.12);
  --shadow-soft: 0 12px 32px rgba(16, 35, 71, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(17, 104, 232, 0.08), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(17, 104, 232, 0.07), transparent 36%),
    #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 82px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 237, 247, 0.8);
}

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

.brand-mark {
  width: 36px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  align-items: end;
}

.brand-mark span {
  display: block;
  border-radius: 4px;
  background: linear-gradient(135deg, #2788ff, #0357cb);
}

.brand-mark span:nth-child(1) {
  grid-column: 1;
  grid-row: 3;
}

.brand-mark span:nth-child(2) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.brand-mark span:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 4;
}

.brand-mark span:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  opacity: 0.92;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #111d2f;
}

.brand-text small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--deep-navy);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 28px rgba(17, 104, 232, 0.22);
}

.btn-secondary {
  color: var(--blue);
  background: white;
  border-color: rgba(17, 104, 232, .36);
}

.btn-light {
  color: var(--blue);
  background: white;
  min-width: 190px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
  padding: 76px 0 44px;
}

.promo-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--blue);
  background: #eef5ff;
  border: 1px solid #d9e8ff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 28px;
}

.promo-pill span {
  font-size: 12px;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -0.055em;
  color: var(--deep-navy);
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.micro-trust span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.micro-trust span::first-letter {
  color: var(--blue);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% -3% -6% 8%;
  background: linear-gradient(135deg, rgba(17, 104, 232, .10), rgba(17, 104, 232, 0));
  border-radius: 32px;
  z-index: -1;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfcff;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
}

.browser-bar span:nth-child(1) { background: #ff6464; }
.browser-bar span:nth-child(2) { background: #ffbd4a; }
.browser-bar span:nth-child(3) { background: #36c37f; }

.browser-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: top left;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #dcecff;
}

.section-heading h2,
.final-cta h2,
.contact h2 {
  margin-bottom: 14px;
  color: var(--deep-navy);
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.features,
.sectors,
.benefits,
.testimonials,
.contact {
  padding: 74px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card,
.testimonial-card,
.demo-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 210px;
  padding: 28px 20px;
  text-align: center;
}

.icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  font-size: 26px;
}

.feature-card h3,
.benefit-grid h3 {
  margin-bottom: 10px;
  color: var(--deep-navy);
  font-size: 17px;
}

.feature-card p,
.benefit-grid p,
.testimonial-card p,
.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.sectors {
  padding-top: 40px;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.sector-pills span {
  min-height: 62px;
  min-width: 168px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fbff;
  color: var(--deep-navy);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 35, 71, .05);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}

.benefit-grid article {
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef5ff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.testimonials {
  padding-top: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-card p {
  min-height: 92px;
  color: var(--text);
  font-size: 16px;
}

.testimonial-card strong {
  display: block;
  color: var(--deep-navy);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  margin-top: 44px;
  margin-bottom: 74px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(135deg, #1684ff, #034fc4);
  color: white;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17, 104, 232, .26);
}

.final-cta h2 {
  max-width: 720px;
  color: white;
  margin-bottom: 10px;
}

.final-cta p {
  margin: 0;
  color: #eaf3ff;
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.demo-form {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-navy);
  font-weight: 800;
  font-size: 14px;
}

.demo-form input,
.demo-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: #fbfcff;
  outline: none;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: rgba(17, 104, 232, .7);
  box-shadow: 0 0 0 4px rgba(17, 104, 232, .10);
}

.demo-form small {
  text-align: center;
  color: var(--muted);
}

.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .75fr);
  gap: 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--deep-navy);
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

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

@media (max-width: 1020px) {
  .site-header {
    padding: 0 24px;
  }

  .nav {
    display: none;
  }

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

  .hero {
    padding-top: 48px;
  }

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

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid article {
    border-right: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }

  .brand-text small,
  .header-cta {
    display: none;
  }

  .section,
  .footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .feature-grid,
  .benefit-grid,
  .testimonial-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 30px;
  }

  .browser-frame img {
    aspect-ratio: 4 / 3;
  }
}


.btn-ghost {
  color: var(--deep-navy);
  background: transparent;
  border-color: transparent;
  min-width: auto;
  padding-inline: 10px;
}

.btn-ghost:hover {
  color: var(--blue);
  box-shadow: none;
}

.trial-section {
  padding: 44px 0 22px;
}

.trial-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid #d9e8ff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 18%, rgba(17, 104, 232, .12), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: var(--shadow-soft);
}

.trial-copy h2 {
  margin-bottom: 14px;
  color: var(--deep-navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.trial-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trial-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--deep-navy);
  font-weight: 750;
}

.trial-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-outline-light {
  color: white;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.16);
}

@media (max-width: 1020px) {
  .trial-card {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .trial-card {
    padding: 28px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-ghost {
    border-color: var(--line);
    background: white;
    padding-inline: 24px;
  }

  .final-actions {
    width: 100%;
  }

  .final-actions .btn {
    width: 100%;
  }
}


/* Brand square decorations */
.hero {
  position: relative;
}

.brand-squares {
  position: absolute;
  width: 86px;
  height: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 7px;
  opacity: .12;
  pointer-events: none;
}

.brand-squares span {
  display: block;
  border-radius: 7px;
  background: linear-gradient(135deg, #2788ff, #0357cb);
}

.brand-squares span:nth-child(1) {
  grid-column: 1;
  grid-row: 3;
}

.brand-squares span:nth-child(2) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.brand-squares span:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 4;
}

.brand-squares span:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.hero-squares {
  left: -22px;
  bottom: 72px;
}

.hero-price {
  width: fit-content;
  display: grid;
  gap: 2px;
  margin: -10px 0 30px;
  padding: 16px 18px;
  border: 1px solid #d9e8ff;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(16, 35, 71, .08);
}

.hero-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--deep-navy);
  font-size: 26px;
  line-height: 1.1;
}

.hero-price small {
  color: var(--blue);
  font-weight: 800;
}

.pricing-section {
  position: relative;
  padding: 72px 0 48px;
}

.pricing-squares {
  right: -12px;
  top: 72px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  padding: 38px;
  border: 1px solid #d9e8ff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(17, 104, 232, .12), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6f9ff);
  box-shadow: var(--shadow);
}

.pricing-card::before {
  content: "";
  position: absolute;
  left: -32px;
  top: -32px;
  width: 128px;
  height: 128px;
  background:
    linear-gradient(135deg, rgba(39, 136, 255, .22), rgba(3, 87, 203, .08));
  border-radius: 28px;
  transform: rotate(12deg);
}

.pricing-main,
.pricing-includes {
  position: relative;
  z-index: 1;
}

.pricing-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 16px;
  color: var(--deep-navy);
  font-size: clamp(54px, 6vw, 86px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price span {
  font-size: .45em;
  vertical-align: super;
  margin-right: 4px;
}

.price small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 800;
}

.pricing-main p {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.launch-discount {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(17, 104, 232, .18);
  border-radius: 18px;
  background: #eef5ff;
}

.launch-discount strong {
  color: var(--deep-navy);
  font-size: 17px;
}

.launch-discount span {
  color: var(--blue);
  font-weight: 800;
}

.pricing-includes ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: var(--deep-navy);
  font-weight: 750;
}

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

@media (max-width: 1020px) {
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .brand-squares {
    display: none;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 28px;
  }

  .pricing-actions .btn {
    width: 100%;
  }

  .hero-price {
    width: 100%;
  }
}
