/* Start custom CSS for html, class: .elementor-element-ae362b2 *//* Страница: Электрик на дом */
.ed-page {
  --ed-card: #ffffff;
  --ed-text: #172033;
  --ed-muted: #5d6678;
  --ed-border: #dce3ee;
  --ed-accent: #0f6bff;
  --ed-accent-dark: #0847ad;
  --ed-soft: #eef5ff;
  --ed-warning: #fff7e6;
  --ed-danger: #fff1f1;
  --ed-success: #eefaf1;
  --ed-radius: 18px;
  --ed-shadow: 0 10px 30px rgba(20, 35, 60, 0.08);
  color: var(--ed-text);
  font-size: 17px;
  line-height: 1.65;
}

.ed-page * {
  box-sizing: border-box;
}

.ed-page a {
  color: var(--ed-accent-dark);
  text-decoration: none;
  font-weight: 700;
}

.ed-page a:hover {
  text-decoration: underline;
}

.ed-section {
  margin: 0 0 34px;
  padding: 30px;
  background: var(--ed-card);
  border: 1px solid var(--ed-border);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow);
}

.ed-hero {
  padding: 38px;
  background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 58%, #f7fbff 100%);
  border: 1px solid #d8e8ff;
}

.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 12px;
  background: var(--ed-soft);
  color: var(--ed-accent-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.ed-page h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ed-page h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.ed-page h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.ed-lead {
  max-width: 980px;
  margin: 0 0 18px;
  color: #25314a;
  font-size: 20px;
  line-height: 1.55;
}

.ed-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--ed-soft);
  border-left: 5px solid var(--ed-accent);
  border-radius: 14px;
}

.ed-warning {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--ed-warning);
  border-left: 5px solid #f4a000;
  border-radius: 14px;
}

.ed-danger {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--ed-danger);
  border-left: 5px solid #e03d3d;
  border-radius: 14px;
}

.ed-direct {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--ed-success);
  border-left: 5px solid #2da44e;
  border-radius: 14px;
  font-weight: 700;
}

.ed-grid {
  display: grid;
  gap: 18px;
}

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

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

.ed-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--ed-border);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(20, 35, 60, 0.05);
}

.ed-card p:last-child {
  margin-bottom: 0;
}

.ed-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ed-tag-list li {
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  color: #263550;
  font-size: 15px;
  font-weight: 700;
}

.ed-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--ed-border);
  border-radius: 16px;
  box-shadow: var(--ed-shadow);
}

.ed-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #ffffff;
}

.ed-table th,
.ed-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--ed-border);
  vertical-align: top;
  text-align: left;
}

.ed-table th {
  background: #eef5ff;
  color: #14223b;
  font-weight: 900;
}

.ed-table tr:last-child td {
  border-bottom: 0;
}

.ed-steps {
  counter-reset: ed-step;
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ed-steps li {
  counter-increment: ed-step;
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 64px;
  background: #ffffff;
  border: 1px solid var(--ed-border);
  border-radius: 16px;
}

.ed-steps li::before {
  content: counter(ed-step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ed-accent);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
}

.ed-check-list {
  margin: 14px 0 0;
  padding-left: 22px;
}

.ed-check-list li {
  margin: 8px 0;
}

.ed-faq details {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--ed-border);
  border-radius: 14px;
}

.ed-faq details + details {
  margin-top: 12px;
}

.ed-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: #14223b;
  font-size: 18px;
}

.ed-faq summary::marker {
  color: var(--ed-accent);
}

.ed-faq p {
  margin: 12px 0 0;
  color: var(--ed-muted);
}

.ed-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ed-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.ed-btn-primary {
  background: var(--ed-accent);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(15, 107, 255, 0.24);
}

.ed-btn-secondary {
  background: #ffffff;
  color: var(--ed-accent-dark) !important;
  border: 1px solid #b9d2ff;
}

.ed-final-cta {
  background: linear-gradient(135deg, #0f6bff 0%, #0847ad 100%);
  color: #ffffff;
  border: 0;
}

.ed-final-cta h2,
.ed-final-cta p {
  color: #ffffff;
}

.ed-final-cta .ed-btn-secondary {
  background: #ffffff;
  color: #0847ad !important;
  border: 0;
}

@media (max-width: 1000px) {
  .ed-grid-2,
  .ed-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ed-section,
  .ed-hero {
    padding: 22px;
  }

  .ed-page {
    font-size: 16px;
  }

  .ed-lead {
    font-size: 18px;
  }

  .ed-cta-row {
    flex-direction: column;
  }

  .ed-btn {
    width: 100%;
  }

  .ed-page h1 {
    font-size: 30px;
  }

  .ed-table {
    min-width: 720px;
  }

  .ed-table th,
  .ed-table td {
    padding: 13px 14px;
  }
}/* End custom CSS */