.callout {
  background: #f5f8ff;
  border: 1px solid #d6e2ff;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 20px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.calc-card {
  background: #ffffff;
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(25, 55, 105, 0.06);
}

.calc-card h2 {
  margin-top: 0;
}

.calc-result {
  font-size: 18px;
  font-weight: 700;
  color: #0a7a2f;
  padding: 10px 0;
}

.calc-form .row {
  margin-bottom: 12px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.compare-table th,
.compare-table td {
  border: 1px solid #e1e5ea;
  padding: 10px 12px;
  text-align: left;
}

.compare-table th {
  background: #f5f7fb;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.services-page {
  color: #1f2937;
}

.services-page .widget__header.widget__header_underlined {
  display: none;
}

.services-breadcrumbs {
  margin: 0 0 16px;
  font-size: 14px;
  color: #6b7280;
}

.services-hero {
  background: linear-gradient(135deg, #eaf3ff, #eef4ff);
  border: 1px solid #dbe6ff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}

.services-hero__tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0 10px;
}

.services-hero__title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.services-hero__subtitle {
  font-size: 18px;
  color: #4b5563;
  margin: 0 0 22px;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.services-button {
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
}

.services-button_outline {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #cfe0ff;
}

.services-button_light {
  background: #ffffff;
  color: #1e40af;
}

.services-list {
  margin-top: 36px;
}

.services-list__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.services-list__header h2 {
  margin: 0 0 10px;
}

.services-list__header p {
  margin: 0;
  color: #6b7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #cfe0ff;
}

.service-card__head {
  background: var(--card-gradient, linear-gradient(135deg, #2563eb, #06b6d4));
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 110px;
}

.service-card__head:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.service-card__icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.service-card__icon-img {
  width: 72px;
  height: 72px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.22);
  position: relative;
  z-index: 1;
}

.service-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card__body h3 {
  margin: 0;
  font-size: 20px;
}

.service-card__body p {
  margin: 0;
  color: #6b7280;
}

.service-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.service-card__button {
  margin-top: auto;
  text-align: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card__button:hover {
  background: #dbeafe;
  transform: translateY(-1px);
}

.services-list__cta {
  text-align: center;
  margin-top: 28px;
}

.services-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 20px;
  padding: 32px 26px;
  color: #ffffff;
  text-align: center;
}

.services-cta__inner h2 {
  margin: 0 0 12px;
}

.services-cta__inner p {
  margin: 0 0 18px;
  color: #e0f2fe;
}

.services-cta__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.services-cta__form .input {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.services-cta__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #e0f2fe;
}

.service-detail {
  margin-top: 28px;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-detail__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.service-detail__card h2 {
  margin-top: 0;
  font-size: 18px;
}

.service-detail__list {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
}

.service-faq {
  margin-top: 22px;
}

.service-faq h2 {
  margin: 0 0 10px;
}

.service-faq details {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
}

.service-faq details + details {
  margin-top: 10px;
}

.service-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: #111827;
}

.service-faq p {
  margin: 10px 0 0;
  color: #4b5563;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 28px 20px;
  }

  .services-hero__title {
    font-size: 28px;
  }
}

.article-card {
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

.article-card h3 {
  margin-top: 0;
}

.home-additions {
  padding: 40px 0;
  background: #f7f9fc;
}

.home-additions .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.home-additions .feature-card {
  background: #ffffff;
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  padding: 16px;
}

.home-additions .mini-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.home-additions .mini-review {
  background: #ffffff;
  border: 1px solid #e1e5ea;
  border-radius: 10px;
  padding: 16px;
}

.home-additions .link-btn {
  display: inline-block;
  margin-top: 10px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 20px 0 24px;
}

.region-section h2 {
  margin-top: 0;
}

.region-list {
  column-count: 2;
  column-gap: 24px;
  padding-left: 18px;
}

.region-list li {
  break-inside: avoid;
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .calc-form .row {
    margin-bottom: 8px;
  }

  .region-list {
    column-count: 1;
  }
}

/* Insurance companies page */
.companies-page .widget__header.widget__header_underlined {
  display: none;
}

.companies-hero {
  background: linear-gradient(135deg, #eaf3ff, #eef4ff);
  border: 1px solid #dbe6ff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  color: #1f2937;
}

.companies-hero__badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.companies-hero__title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.companies-hero__subtitle {
  font-size: 18px;
  color: #4b5563;
  margin: 0 0 22px;
}

.companies-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.companies-button {
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
}

.companies-button_outline {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #cfe0ff;
}

.companies-button_light {
  background: #ffffff;
  color: #1e40af;
}

.companies-warning {
  margin-top: 24px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.companies-warning__icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.companies-warning__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #92400e;
}

.companies-warning__text {
  margin: 8px 0 10px;
  color: #92400e;
}

.companies-warning__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.companies-warning__links a {
  color: #7c2d12;
  text-decoration: underline;
  font-weight: 700;
}

.companies-tools {
  margin-top: 18px;
}

.companies-tools__inner {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}

.companies-tools__meta h2 {
  margin: 0 0 6px;
}

.companies-tools__meta p {
  margin: 0;
  color: #6b7280;
}

.companies-search {
  min-width: 260px;
  flex: 1 1 320px;
}

.companies-search__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
  margin: 0 0 6px;
}

.companies-search__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 12px 14px;
}

.companies-tabs {
  display: flex;
  gap: 22px;
  margin: 20px 0 16px;
  border-bottom: 1px solid #e5e7eb;
}

.companies-tabs__btn {
  background: transparent;
  border: 0;
  padding: 12px 0;
  font-weight: 900;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.companies-tabs__btn.is-active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pill--green {
  background: #dcfce7;
  color: #166534;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.company-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.company-card__head {
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.company-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-weight: 900;
  flex: 0 0 auto;
}

.company-card__title h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.company-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #eff6ff;
  color: #1d4ed8;
}

.badge--rating {
  background: #dcfce7;
  color: #166534;
}

.badge--no {
  background: #f3f4f6;
  color: #374151;
}

.company-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.company-card__kv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kv {
  background: #f9fafb;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 10px;
}

.kv__k {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 800;
}

.kv__v {
  font-weight: 900;
  color: #111827;
}

.kv__v_mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 13px;
}

.kv__v a {
  color: #2563eb;
  text-decoration: underline;
}

.company-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.company-card__actions a {
  text-decoration: none;
}

.company-card__actions .button {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.company-card__actions .button_outline {
  background: #ffffff;
  border: 1px solid #cfe0ff;
  color: #2563eb;
}

.company-card__actions .button_primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  border: 0;
}

.companies-empty {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.companies-empty__icon {
  font-size: 34px;
  margin-bottom: 6px;
}

.companies-revoked {
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.companies-revoked h2 {
  margin-top: 0;
}

.companies-revoked__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 0;
}

.companies-revoked__info {
  margin-top: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 14px;
}

.revoked-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
}

.revoked-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.revoked-table th,
.revoked-table td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  vertical-align: top;
  font-size: 14px;
}

.revoked-table th {
  background: #f9fafb;
  color: #111827;
  font-weight: 900;
}

.revoked-table td:nth-child(1),
.revoked-table td:nth-child(3),
.revoked-table td:nth-child(4) {
  white-space: nowrap;
}

.revoked-table a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 800;
}

.companies-cta {
  margin-top: 22px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 20px;
  padding: 32px 26px;
  color: #ffffff;
  text-align: center;
}

.companies-cta__inner h2 {
  margin: 0 0 12px;
}

.companies-cta__inner p {
  margin: 0 0 18px;
  color: #e0f2fe;
}

.companies-cta__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.companies-cta__form .input {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.companies-cta__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #e0f2fe;
}

@media (max-width: 768px) {
  .companies-hero {
    padding: 28px 20px;
  }

  .companies-hero__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .company-card__kv {
    grid-template-columns: 1fr;
  }
}

/* ============================================
