/* Start custom CSS for html, class: .elementor-element-8d30742 */.em-keenetic {
  --em-bg: #0f1720;
  --em-bg-soft: #16212d;
  --em-card: #ffffff;
  --em-text: #18212b;
  --em-muted: #5f6b76;
  --em-line: #dfe5ea;
  --em-accent: #f2b84b;
  --em-accent-soft: #fff5df;
  --em-danger-soft: #fff0ed;
  --em-danger-line: #e7a89d;
  max-width: 1120px;
  margin: 0 auto;
  color: var(--em-text);
  font-family: Onest, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.em-keenetic * {
  box-sizing: border-box;
}

.em-keenetic h1,
.em-keenetic h2,
.em-keenetic h3,
.em-keenetic p {
  margin-top: 0;
}

.em-keenetic h1 {
  max-width: 920px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.em-keenetic h2 {
  margin-bottom: 20px;
  font-size: clamp(27px, 3.5vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.em-keenetic h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.em-keenetic p:last-child {
  margin-bottom: 0;
}

.em-keenetic > section {
  margin: 34px 0;
}

.em-keenetic__hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 18%, rgba(242, 184, 75, .24), transparent 30%),
    linear-gradient(135deg, #0f1720 0%, #192838 100%);
}

.em-keenetic__hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.em-keenetic__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.em-keenetic__lead {
  max-width: 860px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
}

.em-keenetic__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.em-keenetic__chips span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--em-accent);
  color: #1c1b17;
  font-size: 13px;
  font-weight: 800;
}

.em-keenetic__notice,
.em-keenetic__warning {
  padding: 22px 24px;
  border-radius: 18px;
}

.em-keenetic__notice {
  border: 1px solid #ead7a6;
  background: var(--em-accent-soft);
}

.em-keenetic__warning {
  margin-top: 22px;
  border: 1px solid var(--em-danger-line);
  background: var(--em-danger-soft);
}

.em-keenetic__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.em-keenetic__card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--em-line);
  border-radius: 20px;
  background: var(--em-card);
  box-shadow: 0 10px 30px rgba(26, 40, 52, .06);
}

.em-keenetic__card-num {
  margin-bottom: 16px;
  color: #9a6a13;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.em-keenetic code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eef2f5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}

.em-keenetic__steps {
  counter-reset: em-step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-keenetic__steps li {
  position: relative;
  margin: 0 0 12px;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--em-line);
  border-radius: 16px;
  background: #fff;
}

.em-keenetic__steps li::before {
  counter-increment: em-step;
  content: counter(em-step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--em-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.em-keenetic__check {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.em-keenetic__check div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px 16px;
  border-radius: 14px;
  background: #f4f7f9;
}

.em-keenetic__check span {
  color: #28704b;
  font-weight: 900;
}

.em-keenetic__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.em-keenetic__links a {
  display: inline-flex;
  padding: 11px 14px;
  border: 1px solid var(--em-line);
  border-radius: 12px;
  color: #1c2935;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease;
}

.em-keenetic__links a:hover {
  transform: translateY(-1px);
  border-color: #b7c1c9;
}

.em-keenetic__faq {
  display: grid;
  gap: 10px;
}

.em-keenetic__faq details {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: 16px;
  background: #fff;
}

.em-keenetic__faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  line-height: 1.35;
}

.em-keenetic__faq details p {
  padding: 0 20px 20px;
  color: var(--em-muted);
}

.em-keenetic__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: var(--em-bg);
  color: #fff;
}

.em-keenetic__cta h2 {
  margin-bottom: 10px;
  color: #fff;
}

.em-keenetic__cta p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
}

.em-keenetic__cta > a {
  display: inline-flex;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--em-accent);
  color: #16191c;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .em-keenetic {
    font-size: 16px;
  }

  .em-keenetic__hero {
    border-radius: 20px;
  }

  .em-keenetic__grid,
  .em-keenetic__check,
  .em-keenetic__cta {
    grid-template-columns: 1fr;
  }

  .em-keenetic__card {
    min-height: 0;
  }

  .em-keenetic__cta > a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .em-keenetic__hero {
    padding: 24px 20px;
  }

  .em-keenetic__notice,
  .em-keenetic__warning,
  .em-keenetic__card {
    padding: 18px;
  }

  .em-keenetic__steps li {
    padding-right: 14px;
  }
}/* End custom CSS */