﻿.static-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.static-modal {
  width: min(520px, 100%);
  background: #fff;
  color: #0f172a;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}
.static-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.static-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0;
}
.static-field label {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}
.static-field input,
.static-field textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  outline: 0;
}
.static-field input:focus,
.static-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}
.static-submit {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.static-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
}
.static-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: #2563eb;
}
.static-consent a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#pricing [data-slot="card-content"] {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#pricing [data-slot="card-content"] > button[data-slot="dialog-trigger"] {
  margin-top: auto;
}
.static-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}
.static-success {
  padding: 28px 10px;
  text-align: center;
  color: #166534;
  font-weight: 800;
}
.static-mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  padding: 16px;
}
.static-mobile-menu.is-open {
  display: block;
}
.static-mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #334155;
  font-weight: 700;
}
.static-mobile-menu a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}
.static-hidden {
  display: none !important;
}
.static-faq-answer {
  color: #475569;
  line-height: 1.65;
  padding: 0 0 18px;
}
.static-invalid {
  border-color: #f87171 !important;
}
.static-pagination button.static-active,
.static-category.static-active {
  background: #2563eb !important;
  color: white !important;
  border-color: #2563eb !important;
}
@media (max-width: 640px) {
  .static-modal {
    border-radius: 18px;
    padding: 22px;
  }
  .static-modal-backdrop {
    align-items: flex-start;
    padding-top: 76px;
  }
}
.static-slider-item {
  position: relative;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.static-slider-item.static-slide-active {
  background: #2563eb !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.32);
  transform: scale(1.02);
}
.static-slider-item.static-slide-active svg {
  color: #fff !important;
}
.static-slider-item.static-slide-active p {
  color: #fff !important;
}
.static-slider-item.static-slide-active p:last-child {
  color: #dbeafe !important;
}
.static-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.static-reveal-visible {
  opacity: 1;
  transform: none;
}
.static-modal {
  animation: staticZoomIn 0.18s ease-out;
}
.static-modal-backdrop {
  animation: staticFadeIn 0.18s ease-out;
}
@keyframes staticFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes staticZoomIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .static-reveal,
  .static-slider-item,
  .static-modal,
  .static-modal-backdrop {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.static-slider-item:not(.static-slide-active) {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #cbd5e1 !important;
  box-shadow: none !important;
  transform: none !important;
}
.static-slider-item:not(.static-slide-active) svg {
  color: #60a5fa !important;
}
.static-slider-item:not(.static-slide-active) p:first-child {
  color: #e2e8f0 !important;
}
.static-slider-item:not(.static-slide-active) p:last-child {
  color: #64748b !important;
}
.article-shell {
  background: linear-gradient(180deg, #f8fafc 0, #fff 220px, #fff 100%);
}
.article-content {
  text-align: left;
}
.article-content h2 {
  margin-top: 48px !important;
  margin-bottom: 18px !important;
  line-height: 1.2 !important;
}
.article-content h2:first-child {
  margin-top: 0 !important;
}
.article-content h3 {
  margin-top: 34px !important;
  margin-bottom: 12px !important;
  line-height: 1.25 !important;
}
.article-content p {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  line-height: 1.75 !important;
}
.article-content ul,
.article-content ol {
  margin-top: 10px !important;
  margin-bottom: 26px !important;
}
.article-content li {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.article-content blockquote {
  margin-top: 28px !important;
  margin-bottom: 34px !important;
}
.article-hero-image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  background: #0f172a;
}
.article-hero-image img {
  display: block;
  width: 100%;
  height: clamp(220px, 36vw, 420px);
  object-fit: cover;
}
.article-author {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #eff6ff;
  margin: 24px 0 28px;
}
.article-author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}
.article-toc {
  margin: 28px 0 36px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  text-align: left;
}
.article-toc-title {
  margin: 0 0 14px !important;
  font-size: 18px !important;
  color: #0f172a !important;
}
.article-toc ol {
  margin: 0 !important;
  padding-left: 20px !important;
  display: grid;
  gap: 8px;
  text-align: left;
  justify-items: start;
}
.article-toc a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 700;
}
.article-toc a:hover {
  text-decoration: underline;
}
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.article-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.article-card strong {
  display: block;
  color: #0f172a;
  margin-bottom: 6px;
}
.article-checklist {
  columns: 2;
  column-gap: 34px;
}
.article-checklist li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.article-faq details {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  margin: 12px 0;
}
.article-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #0f172a;
}
.article-faq p {
  margin: 12px 0 0;
}
.article-note {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  border-radius: 12px;
  padding: 16px 18px;
  color: #334155;
}
@media (max-width: 720px) {
  .article-card-grid {
    grid-template-columns: 1fr;
  }
  .article-checklist {
    columns: 1;
  }
  .article-author {
    flex-direction: column;
  }
  .article-hero-image {
    border-radius: 14px;
  }
}
