:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --text: #222222;
  --muted: #6b7280;
  --primary: #2d3748;
  --accent: #8b6b3f;
  --border: #d9dde3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.brand strong {
  font-size: 18px;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--primary);
}

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

.hero {
  padding: 96px 0 84px;
  background:
    linear-gradient(135deg, rgba(45,55,72,0.92), rgba(45,55,72,0.82)),
    #2d3748;
  color: white;
}

.hero-inner {
  max-width: 850px;
}

.eyebrow {
  color: #d7c29e;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 24px;
}

.lead {
  font-size: 21px;
  color: rgba(255,255,255,0.88);
  max-width: 780px;
}

.principle {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  font-size: 18px;
  color: #f4e9d6;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 22px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: #eceff3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid.two {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 42px;
  align-items: start;
}

h2 {
  font-size: 30px;
  margin: 0 0 18px;
  color: var(--primary);
}

h3 {
  margin: 0 0 12px;
  color: var(--primary);
}

p {
  margin: 0 0 16px;
}

.notice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
}

.notice-card span {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.timeline-summary {
  background: var(--surface);
  border: 1px solid var(--border);
}

.timeline-summary div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.timeline-summary div:last-child {
  border-bottom: 0;
}

.timeline-summary strong {
  color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.card span {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.card p {
  color: var(--muted);
}

.site-footer {
  background: #1f2937;
  color: rgba(255,255,255,0.78);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding: 72px 0;
  }

  .grid.two,
  .cards {
    grid-template-columns: 1fr;
  }

  .timeline-summary div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.page-hero {
  padding: 72px 0 54px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin: 0 0 16px;
  color: var(--primary);
}

.page-lead {
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
}

.eyebrow.dark {
  color: var(--accent);
}

.timeline-page {
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-date {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 26px;
  border-radius: 4px;
}

.timeline-content h2 {
  font-size: 24px;
  margin-top: 10px;
}

.source {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef1f5;
  color: var(--primary);
}

.tag.email,
.tag.contract,
.tag.order {
  background: #eef1f5;
}

.tag.payment,
.tag.invoice {
  background: #f3eadc;
  color: #7a5526;
}

.tag.whatsapp,
.tag.delay {
  background: #fff3d8;
  color: #8a5a00;
}

.tag.dispute,
.tag.legal {
  background: #f5dddd;
  color: #7a1d1d;
}

.tag.status {
  background: #e3eadf;
  color: #2f5f35;
}

.timeline-item.warning .timeline-content {
  border-left-color: #c58b2b;
}

.timeline-item.critical .timeline-content {
  border-left-color: #9b2c2c;
}

.timeline-item.current .timeline-content {
  border-left-color: #3f7d45;
}

@media (max-width: 820px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

.status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 22px;
  border-radius: 4px;
}

.status-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.status-card strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.25;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.content-panel h2 {
  margin-bottom: 18px;
}

.content-panel h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.settlement {
  border-left: 4px solid #3f7d45;
}

.related {
  border-left: 4px solid var(--accent);
}

.submission-policy {
  margin-top: 26px;
  padding: 24px;
  background: #f5f6f8;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.submission-policy p {
  margin-bottom: 0;
}

.last-update {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

@media (max-width: 920px) {
  .status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .content-panel {
    padding: 26px;
  }
}


.case-table{

width:100%;

border-collapse:collapse;

margin-top:20px;

}

.case-table th{

background:#2d3748;

color:white;

padding:14px;

text-align:left;

}

.case-table td{

padding:14px;

border:1px solid var(--border);

}

.case-list{

padding-left:22px;

margin:0;

}

.case-list li{

margin-bottom:12px;

}

.party-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.party-card {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 26px;
  border-radius: 4px;
}

.party-card.highlighted {
  border-left-color: #9b2c2c;
}

.party-type {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.party-card h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.party-card p {
  color: var(--text);
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .party-grid {
    grid-template-columns: 1fr;
  }
}
.archive-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
margin-bottom:40px;
}

.archive-card{
background:#fff;
border:1px solid var(--border);
border-left:4px solid var(--accent);
padding:28px;
border-radius:4px;
transition:.2s;
}

.archive-card:hover{
transform:translateY(-3px);
box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.archive-icon{
font-size:34px;
margin-bottom:14px;
}

.archive-card h2{
font-size:24px;
margin-bottom:14px;
}

.archive-meta{
margin-top:24px;
padding-top:18px;
border-top:1px solid var(--border);
}

.archive-meta span{
display:block;
font-size:12px;
text-transform:uppercase;
color:var(--muted);
letter-spacing:.08em;
}

.archive-meta strong{
font-size:18px;
color:var(--primary);
}

@media(max-width:900px){

.archive-grid{

grid-template-columns:1fr;

}

}