/* ============================================
   ПРОЗРАЧНОЕ БАНКРОТСТВО — prozbank.com
   Общие стили сайта
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Цвета */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --bg-card-hover: #22222f;
  --bg-accent: #1e1e2a;

  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #666680;

  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --accent-glow: rgba(230, 57, 70, 0.25);

  --accent-secondary: #ff8c42;

  --green: #2ecc71;
  --yellow: #f1c40f;
  --red: #e74c3c;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  /* Типографика */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Размеры */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;

  /* Радиусы */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Тени */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Скрываем header/footer контейнеры до загрузки JS */
#site-header,
#site-footer {
  opacity: 0;
  transition: opacity 0.3s ease;
}
#site-header.loaded,
#site-footer.loaded {
  opacity: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(230, 57, 70, 0.05);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Badge / Tag --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  background: var(--accent-glow);
  color: var(--accent);
}

.badge--green {
  background: rgba(46, 204, 113, 0.15);
  color: var(--green);
}

.badge--yellow {
  background: rgba(241, 196, 15, 0.15);
  color: var(--yellow);
}

.badge--red {
  background: rgba(231, 76, 60, 0.15);
  color: var(--red);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* --- Hero --- */
.hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 36px;
}

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

/* --- Price Cards --- */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.price-card--featured::before {
  content: 'Популярный';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 4px 16px;
  border-radius: 50px;
}

.price-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 24px;
}

.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-card__features li:last-child {
  border-bottom: none;
}

/* --- FAQ / Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-item__question::after {
  content: '−';
  color: var(--accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 28px;
}

/* --- Red Flags (risk indicators) --- */
.flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.flag--red {
  background: rgba(231, 76, 60, 0.12);
  color: var(--red);
}

.flag--yellow {
  background: rgba(241, 196, 15, 0.12);
  color: var(--yellow);
}

.flag--green {
  background: rgba(46, 204, 113, 0.12);
  color: var(--green);
}

/* --- Stat Block --- */
.stat {
  text-align: center;
  padding: 24px;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: calc(var(--header-height) + 24px) 0 0;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumbs .current {
  color: var(--text-secondary);
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card__title a {
  color: var(--text-primary);
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Steps --- */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  counter-increment: step;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.step__content h3 {
  margin-bottom: 8px;
}

.step__content p {
  font-size: 0.95rem;
}

/* --- Table --- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table-wrap th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.table-wrap td {
  color: var(--text-secondary);
}

.table-wrap tr:hover td {
  background: var(--bg-card);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 0.85rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 48px; }

.hidden { display: none !important; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition-base);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo:hover {
  color: var(--text-primary);
}

.header__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--text-primary);
}

.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.header__cta {
  margin-left: 12px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .header__cta { display: none; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    border-left: 1px solid var(--border);
    transition: right var(--transition-base);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .header__nav .nav-cta-mobile {
    display: inline-flex;
    margin-top: 24px;
  }
}

@media (min-width: 901px) {
  .nav-cta-mobile { display: none !important; }
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__contact-item a {
  color: var(--text-muted);
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding: calc(var(--header-height) + 32px) 0 48px;
  }

  .cta-banner {
    padding: 32px 20px;
  }
}

/* --- Hero Grid (с формой) --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.hero-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-form-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-form-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Case Cards (каталог кейсов) --- */
.case-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.case-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.case-card__inner {
  padding: 32px;
}

.case-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-card__desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.case-card__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.case-card__stat {
  display: flex;
  flex-direction: column;
}

.case-card__stat strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.case-card__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.case-card__link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.case-card:hover .case-card__link {
  text-decoration: underline;
}

.case-card--coming {
  pointer-events: none;
  border-style: dashed;
}

@media (max-width: 600px) {
  .case-card__inner {
    padding: 20px;
  }

  .case-card__title {
    font-size: 1.2rem;
  }

  .case-card__stats {
    gap: 20px;
  }
}

/* --- Page Content (for inner pages) --- */
.page-content {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  min-height: 60vh;
}

.page-content h1 {
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content p + p {
  margin-top: 0;
}

.page-content ul,
.page-content ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.page-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* --- Article (blog posts) --- */
.article {
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
}

.article__header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 20px;
}

.article__header h1 {
  max-width: 700px;
  margin: 0 auto 16px;
}

.article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article__body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.article__body p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article__body ul,
.article__body ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.article__body li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Callout boxes */
.article__callout {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.article__callout strong {
  display: block;
  margin-bottom: 4px;
}

.article__callout--red {
  border-left-color: var(--red);
  background: rgba(231, 76, 60, 0.06);
}

.article__callout--yellow {
  border-left-color: var(--yellow);
  background: rgba(241, 196, 15, 0.06);
}

.article__callout--green {
  border-left-color: var(--green);
  background: rgba(46, 204, 113, 0.06);
}

/* Summary grid (normal vs suspicious) */
.article__summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.article__summary-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.article__summary-item h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.article__summary-item ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.article__summary-item li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.article__summary-item li:last-child {
  border-bottom: none;
}

.article__summary-item--green {
  border-color: rgba(46, 204, 113, 0.3);
}

.article__summary-item--green h4 {
  color: var(--green);
}

.article__summary-item--red {
  border-color: rgba(231, 76, 60, 0.3);
}

.article__summary-item--red h4 {
  color: var(--red);
}

@media (max-width: 600px) {
  .article__summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog card readmore link */
.blog-card__readmore {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition-fast);
}

.blog-card__readmore:hover {
  color: var(--accent-hover);
}
