* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Gilroy', Arial, sans-serif;
  color: #0e1d34;
  background: #fff;
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.section {
  padding: 76px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 62px 0;
  background: radial-gradient(circle at 70% 20%, rgba(41, 120, 210, .45), transparent 28%), linear-gradient(115deg, #023d77 0%, #022d61 50%, #001d43 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .35;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: 19%;
  top: -180px;
  background: #0e8eff;
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -180px;
  background: #00c882;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e3151e;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: .78rem;
}

.eyebrow-dark {
  color: #FFFFFF;
  background: rgb(227, 21, 30, .3);
  border: 1px solid #e3151e;
  padding: 7px 12px;
  border-radius: 999px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e3151e;
  box-shadow: 0 0 0 5px rgba(255, 0, 24, .22);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: #e3151e;
}

.hero-lead {
  max-width: 680px;
  font-size: 1.05rem;
  color: #dce9fa;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-benefits article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-benefits h3 {
  font-size: .92rem;
  margin: 0 0 4px;
}

.hero-benefits p {
  margin: 0;
  color: #c6d7ea;
  font-size: .78rem;
  line-height: 1.5;
}

.mini-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: .75rem;
}

.lead-card {
  background: #fff;
  color: #0e1d34;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
}

.lead-card-heading {
  text-align: center;
  margin-bottom: 16px;
}

.lead-card h2 {
  font-size: 1.35rem;
  margin: 0 0 5px;
}

.lead-card-heading p {
  margin: 0;
  color: #5e6a7c;
  font-size: .88rem;
}

.lead-card form {
  display: grid;
  gap: 10px;
}

.lead-card label {
  margin-bottom: 2px;
  display: block;
}

.lead-card label span {
  position: absolute;
  clip: rect(0 0 0 0);
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  border: 1px solid #d9e0e8 !important;
  border-radius: 7px;
  padding: 6px 13px;
  color: #0e1d34;
  background: #fff;
  outline: none;
  transition: .2s;
}

.lead-card input:focus,
.lead-card select:focus,
.lead-card textarea:focus {
  border-color: #1262d6;
  box-shadow: 0 0 0 3px rgba(18, 98, 214, .12);
}

.lead-card textarea {
  resize: vertical;
  min-height: 88px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 13px 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #fd232e, #e3151e) !important;
  box-shadow: 0 10px 24px rgba(227, 21, 30, .2) !important;
  border-color: #e3151e !important
}

.privacy-note,
.form-message {
  margin: 0;
  text-align: center;
  font-size: .76rem;
  color: #657083;
}

.form-message {
  min-height: 20px;
  color: #087b4a;
}

.form-group {
  width: 100%;
  margin-bottom: 10px;
}

.w-100 {
  width: 100%;
}

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

.section-heading h2 {
  margin: 9px 0 9px;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.section-heading p {
  margin: 0;
  color: #5e6a7c;
}

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

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

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(10, 38, 75, .06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #c8d9f5;
  box-shadow: 0 16px 40px rgba(8, 34, 72, .12);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: .96rem;
  line-height: 1.4;
}
.service-card:hover h3{
  color: #e3151e;
}
.service-card p {
  margin: 0;
  color: #5e6a7c;
  font-size: .82rem;
  line-height: 1.55;
}

.brand-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #1262d6;
  background: #eef5ff;
  border: 1px solid #d8e8ff;
  font-size: .7rem;
  font-weight: 800;
}

.service-card:nth-child(3n) .brand-icon {
  color: #e4572e;
  background: #fff4ee;
  border-color: #ffe0d2;
}

.service-card:nth-child(4n) .brand-icon {
  color: #398c42;
  background: #f0faef;
  border-color: #d7efd4;
}

.section-soft {
  background: linear-gradient(180deg, #f5f9ff 0%, #f8fbff 100%);
}

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

.benefit-grid article {
  padding: 10px;
}

.outline-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 13px;
  border: 2px solid #1262d6;
  border-radius: 50%;
  color: #1262d6;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 0 0 7px;
  font-size: .9rem;
}

.benefit-grid p {
  margin: 0;
  color: #5e6a7c;
  font-size: .77rem;
}

.technology {
  padding-top: 58px;
  padding-bottom: 54px;
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech-strip span,
.tech-strip a {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(8, 34, 72, .04);
  color: #33435a;
  font-size: .83rem;
  font-weight: 700;
}

.tech-note {
  text-align: center;
  margin: 20px 0 0;
  color: #4b5e78;
  text-decoration: underline;
  font-size: .82rem;
}

.stats {
  padding: 48px 0;
  color: #0e1d34;
  background: #e4e4e4;
  /* background: linear-gradient(90deg, #04396f, #002651); */
}

.stats h2 {
  text-align: center;
  margin: 0 0 30px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

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

.stats-grid article {
  text-align: left;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(0, 0, 0, .22);
}

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

.stats-grid strong {
  display: block;
  font-size: 2.05rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 7px;
  color: #0e1d34;
  font-size: .82rem;
}

.final-cta {
  background: #f8fbff;
}

.cta-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ff;
  font-size: 2.7rem;
  box-shadow: inset 0 0 0 10px #f5f9ff;
}

.cta-grid h2 {
  margin: 0 0 7px;
  max-width: 660px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.25;
}

.cta-grid p {
  margin: 0;
  color: #5e6a7c;
}

.cta-actions {
  text-align: center;
  min-width: 260px;
}

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

.cta-actions p {
  margin-top: 12px;
  font-size: .9rem;
}

.cta-actions a:not(.btn) {
  color: #e3151e;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 35px;
  }

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

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

@media (max-width: 820px) {
  .section {
    padding: 58px 0;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-benefits {
    text-align: left;
  }

  .lead-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
  }

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .cta-grid {
    grid-template-columns: auto 1fr;
  }

  .cta-actions {
    grid-column: 1 / -1;
    width: min(360px, 100%);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 45px 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

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

  .service-grid,
  .benefit-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 22px;
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon {
    margin: 0 auto;
  }
}

/* SEO content: accessible FAQ section */
.faq-container {
  max-width: 940px
}

.faq-list {
  display: grid;
  gap: 14px
}

.faq-list details {
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: 12px;
  padding: 0 22px;
  box-shadow: 0 8px 24px rgba(5, 35, 75, .06)
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #071c3b;
  padding: 20px 30px 20px 0;
  position: relative;
  list-style: none
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 26px;
  color: #e3151e
}

.faq-list details[open] summary:after {
  content: '−'
}

.faq-list details p {
  margin: 0 0 20px;
  color: #4c5b70;
  line-height: 1.7
}

.hero-copy h1 {
  max-width: 760px
}