.elementor-58385 .elementor-element.elementor-element-7ed5e73{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d9a5614 */:root {
  --bg: #161616;
  --panel: #1e1e1e;
  --panel-soft: rgba(30, 30, 30, 0.8);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #90a1b9;
  --soft: #cad5e2;
  --blue: #2ea6ff;
  --cyan: #6fd3ff;
  --red: #ff6467;
  --red-soft: rgba(251, 44, 54, 0.1);
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(46, 166, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 86% 68%, rgba(0, 63, 110, 0.42), transparent 32rem),
    var(--bg);
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.hero {
  position: relative;
  padding: 148px 0 112px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 718px) minmax(420px, 515px);
  gap: 84px;
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero__copy {
  padding-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 28px;
  padding: 9px 17px;
  border: 1px solid rgba(111, 211, 255, 0.3);
  border-radius: 999px;
  background: rgba(111, 211, 255, 0.1);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.badge--danger {
  border-color: rgba(251, 44, 54, 0.3);
  background: var(--red-soft);
  color: var(--red);
}

.badge--small {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
}

.badge__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 0;
}

.badge__icon .icon-svg {
  width: 11px;
  height: 11px;
  stroke-width: 3;
}

.hero h1,
.section-title h2,
.solution__copy h2,
.profile-card h2,
.cta__copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 64px;
  line-height: 1.05;
}

.hero h1 span,
.section-title h2 span,
.solution__copy h2 span,
.profile-card h2 span {
  display: inline;
  color: var(--blue);
}

.hero__lead {
  max-width: 672px;
  margin: 34px 0 30px;
  color: var(--soft);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.45;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.check-list li::before,
.deliver-card li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(46, 166, 255, 0.1);
  border: 1px solid rgba(46, 166, 255, 0.3);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 33px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(30, 30, 30, 0.84);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.form-head {
  margin-bottom: 12px;
}

.form-head h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 32px;
}

.form-head p,
.field span,
.radio-group legend,
.secure-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.form-head p {
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span,
.radio-group legend {
  color: var(--soft);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 10px 14px;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.field select {
  background-color: #242424;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(46, 166, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(46, 166, 255, 0.14);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 8px 0 16px;
  padding: 0;
  border: 0;
}

.radio-group legend {
  width: 100%;
  margin-bottom: 0;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.radio-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 15px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button--primary {
  background: var(--blue);
  color: var(--text);
  box-shadow: 0 8px 10px rgba(46, 166, 255, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(46, 166, 255, 0.22);
}

.button__icon .icon-svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 12px;
}

.secure-note__icon {
  display: inline-grid;
  place-items: center;
  color: var(--muted);
}

.secure-note__icon .icon-svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.pain {
  padding-top: 84px;
}

.section-title {
  margin-bottom: 58px;
}

.section-title--center {
  text-align: center;
}

.section-title h2 {
  margin-inline: auto;
  max-width: 830px;
  font-size: 40px;
  line-height: 1.18;
}

.section-title p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pain .section-title h2 {
  max-width: 760px;
  font-size: 32px;
}

.pain .section-title h2 strong {
  color: var(--red);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-card,
.benefit-card,
.step-card,
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(30, 30, 30, 0.82);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mini-card {
  min-height: 150px;
  padding: 25px;
  border-radius: 14px;
}

.mini-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(251, 44, 54, 0.22);
  background: rgba(251, 44, 54, 0.06);
  color: var(--red);
}

.mini-card__icon .icon-svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.mini-card h3,
.benefit-card h3,
.step-card h3,
.profile-list h3,
.testimonial-card span,
.deliver-card h3 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.mini-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.mini-card p,
.benefit-card p,
.step-card p,
.profile-list p,
.testimonial-card blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-card p {
  font-size: 14px;
}

.model-break {
  position: relative;
  min-height: 426px;
  padding: 90px 0;
  background: #0c92e8;
  color: #171617;
  overflow: hidden;
}

.model-break__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}

.model-break__content {
  position: relative;
  text-align: center;
}

.model-break h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #171617;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.25;
}

.model-break h2 span {
  display: block;
}

.model-break p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 608px) minmax(0, 608px);
  gap: 64px;
  align-items: center;
}

.solution__copy h2 {
  margin-top: 20px;
  font-size: 48px;
  line-height: 1.25;
}

.solution__copy h2 span {
  display: block;
}

.solution__copy p {
  margin: 30px 0 0;
  color: var(--soft);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 106px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.6);
}

.step-card > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(46, 166, 255, 0.2);
  border-radius: 14px;
  background: rgba(46, 166, 255, 0.1);
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.step-card h3 {
  font-size: 18px;
  line-height: 28px;
}

.step-card p {
  margin-top: 4px;
  font-size: 14px;
}

.benefits {
  padding-top: 0;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.benefit-card {
  width: min(410px, 100%);
  min-height: 240px;
  padding: 33px;
  border-radius: 16px;
  text-align: center;
}

.visual-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.visual-icon .icon-svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.9;
}

.benefit-card h3 {
  font-size: 20px;
  line-height: 1.35;
}

.benefit-card p {
  margin-top: 12px;
  font-size: 14px;
}

.profile {
  padding-top: 0;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(0, 570px);
  gap: 64px;
  align-items: center;
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px;
  border: 1px solid var(--line-strong);
  border-radius: 40px;
  background: linear-gradient(154deg, #1c1c1c 0%, #121212 100%);
  box-shadow: var(--shadow);
}

.profile-card h2 {
  margin-top: 24px;
  font-size: 48px;
  line-height: 1.15;
}

.profile-card__copy > p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.profile-list {
  display: grid;
  gap: 16px;
}

.profile-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 134px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(33, 33, 33, 0.6);
}

.visual-icon--left {
  width: 56px;
  height: 56px;
  margin: 0;
  border: 1px solid rgba(46, 166, 255, 0.2);
  background: linear-gradient(135deg, rgba(46, 166, 255, 0.1), transparent);
}

.visual-icon--left .icon-svg {
  width: 25px;
  height: 25px;
}

.profile-list h3 {
  font-size: 20px;
  line-height: 28px;
}

.profile-list p {
  margin-top: 4px;
  font-size: 16px;
}

.testimonials {
  padding-top: 20px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 auto 72px;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  min-width: max-content;
}

.logo-item {
  display: grid;
  place-items: center;
  min-width: 110px;
  min-height: 56px;
  color: #f2f5f9;
  font-size: 14px;
  font-weight: 800;
}

.logo-item img {
  display: block;
  max-width: 148px;
  max-height: 46px;
  object-fit: contain;
}

.logo-item span {
  display: none;
}

.logo-item.is-fallback img {
  display: none;
}

.logo-item.is-fallback span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  display: flex;
  min-height: 348px;
  flex-direction: column;
  justify-content: space-between;
  padding: 33px;
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stars {
  color: #ffe15c;
  font-size: 18px;
  line-height: 20px;
}

.testimonial-card blockquote {
  margin: 24px 0 28px;
  color: var(--soft);
  font-size: 18px;
  font-style: italic;
}

.person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.person img,
.person__fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  background: rgba(46, 166, 255, 0.16);
}

.person__fallback {
  display: none;
  place-items: center;
  color: var(--cyan);
  font-weight: 900;
}

.person.is-fallback img {
  display: none;
}

.person.is-fallback .person__fallback {
  display: grid;
}

.person span {
  color: var(--cyan);
  font-size: 16px;
}

.cta {
  padding: 96px 0;
  background: #0b94e9;
  color: #111111;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 608px) minmax(0, 608px);
  gap: 64px;
  align-items: center;
}

.cta__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: #1e1e1e;
  color: var(--blue);
  font-weight: 900;
}

.cta__icon .icon-svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.cta__copy h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.25;
}

.cta__copy h2 span {
  color: #1e1e1e;
}

.cta__copy p {
  margin: 32px 0 0;
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.deliver-card {
  padding: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.deliver-card h3 {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 24px;
  line-height: 32px;
}

.deliver-card ul {
  display: grid;
  gap: 20px;
  margin: 32px 0 40px;
  padding: 0;
  list-style: none;
}

.deliver-card li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #e2e8f0;
  font-size: 18px;
  font-weight: 600;
}

.deliver-card li::before {
  width: 40px;
  height: 40px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.04);
  font-size: 18px;
}

@media (max-width: 1160px) {
  .hero__inner,
  .solution-grid,
  .cta-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 56px;
  }

  .lead-form {
    max-width: 560px;
  }

  .pain-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-card {
    width: min(920px, calc(100% - 48px));
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .container,
  .hero__inner,
  .profile-card {
    width: min(100% - 32px, 640px);
  }

  .hero,
  .section,
  .cta {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .section-title h2,
  .solution__copy h2,
  .model-break h2,
  .profile-card h2,
  .cta__copy h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero__lead,
  .solution__copy p,
  .profile-card__copy > p:last-child,
  .cta__copy p {
    font-size: 18px;
  }

  .lead-form,
  .profile-card,
  .deliver-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-row,
  .pain-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .model-break {
    min-height: auto;
    padding: 74px 0;
  }

  .step-card,
  .profile-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .step-card > span,
  .visual-icon--left {
    width: 48px;
    height: 48px;
  }

  .benefit-card {
    min-height: auto;
  }

  .logo-track {
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 34px;
  }

  .badge {
    align-items: flex-start;
    border-radius: 20px;
    white-space: normal;
  }

  .check-list {
    font-size: 16px;
  }

  .button {
    font-size: 16px;
    line-height: 22px;
  }
}/* End custom CSS */