:root{
  --bg:#f4f7fb;
  --bg-soft:#edf3f8;
  --white:#ffffff;
  --text:#142b4c;
  --muted:#657994;
  --line:#d9e4ef;
  --navy:#102d5f;
  --navy-2:#183f7d;
  --gold:#ca9a36;
  --gold-2:#b98824;
  --shadow:0 18px 42px rgba(16,45,95,.10);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{text-decoration:none;color:inherit}
ul{margin:0;padding-left:18px}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.utility-bar{
  background:#0c2144;
  color:#fff;
  font-size:13px;
}
.utility-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:10px 0;
  flex-wrap:wrap;
}
.lang-switch,.utility-links{display:flex;gap:14px;flex-wrap:wrap}
.lang-switch a,.utility-links a{opacity:.82}
.lang-switch a.active{font-weight:900;opacity:1}

.site-header{
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
  flex-wrap:wrap;
}
.brand-wrap{display:flex;align-items:center;gap:14px}
.brand-logo{
  width:60px;height:60px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--gold),#e6c975);
  color:#142949;font-size:28px;font-weight:900;
}
.brand-title{font-size:18px;font-weight:900;letter-spacing:.04em}
.brand-sub{font-size:13px;opacity:.82}
.main-nav{display:flex;gap:18px;flex-wrap:wrap}
.main-nav a{font-weight:700;font-size:14px;color:rgba(255,255,255,.92)}

.hero-section{
  padding:72px 0;
  background:
    radial-gradient(circle at top right, rgba(202,154,54,.20), transparent 24%),
    linear-gradient(180deg,#102b58,#173f7c);
  color:#fff;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
}
.demo-tag{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  margin-bottom:16px;
  font-size:13px;
}
.hero-section h1{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.08;
}
.hero-section p{
  margin:0 0 22px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.65;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:18px;
  font-weight:900;
  border:none;
  cursor:pointer;
}
.btn-primary{background:#fff;color:var(--navy)}
.btn-secondary{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.22)}
.btn-gold{background:var(--gold);color:#fff}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:24px;
}
.hero-stat{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:16px;
}
.hero-stat strong{
  display:block;
  font-size:26px;
  margin-bottom:6px;
}
.hero-stat span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,.82);
}

.hero-panel{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
}
.hero-panel-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:16px;
}
.hero-panel-head h3{margin:0;font-size:24px}
.hero-panel-head span{color:rgba(255,255,255,.75);font-size:13px}
.hero-feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.hero-feature{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.mini-icon{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#efd796);
  display:block;
}

.section{padding:64px 0}
.section-soft{background:var(--bg-soft)}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size:34px;
  color:var(--navy);
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:760px;
  line-height:1.6;
}

.search-panel{
  display:grid;
  grid-template-columns:1.2fr .9fr .4fr;
  gap:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
  box-shadow:var(--shadow);
}
.field{display:flex;flex-direction:column;gap:8px}
.field label{font-weight:900;color:var(--navy);font-size:14px}
.field input,.field select{
  height:54px;
  border:1px solid #d0dbe8;
  border-radius:16px;
  padding:0 14px;
  font-size:15px;
  background:#fff;
}
.action-field{justify-content:end}

.lawyer-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:18px;
}
.lawyer-card,.featured-news-card,.side-news-item,.service-card,.panel,.doc-card,.info-card,.cta-banner{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.lawyer-card{padding:20px}
.lawyer-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.lawyer-top strong{font-size:20px;color:var(--navy)}
.lawyer-meta{display:grid;gap:8px;color:var(--muted)}
.lawyer-phone{margin-top:14px;font-weight:900;color:var(--navy)}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.service-card{
  padding:22px;
  display:grid;
  gap:12px;
}
.service-icon{
  width:48px;height:48px;border-radius:16px;
  background:linear-gradient(135deg,#edf2ff,#dfe9ff);
}
.service-card strong{
  display:block;
  color:var(--navy);
  font-size:18px;
}
.service-card span{
  color:var(--muted);
  line-height:1.5;
}

.featured-news-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:18px;
}
.featured-news-card{
  padding:26px;
}
.featured-news-date{
  color:var(--gold-2);
  font-weight:900;
  font-size:13px;
  margin-bottom:10px;
}
.featured-news-card h3{
  margin:0 0 12px;
  font-size:28px;
  color:var(--navy);
}
.featured-news-card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
}
.side-news-list{display:grid;gap:14px}
.side-news-item{
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.side-news-item strong{
  display:block;
  margin-bottom:6px;
  color:var(--navy);
}
.side-news-item span{
  display:block;
  color:var(--muted);
  font-size:14px;
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.panel{padding:22px}
.panel-title-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.panel-title-row h2{
  margin:0;
  color:var(--navy);
  font-size:28px;
}
.panel-title-row a{
  font-weight:800;
  color:var(--navy);
}
.stack-list{display:grid;gap:12px}
.stack-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  flex-wrap:wrap;
}
.stack-item:last-child{border-bottom:none}
.stack-item strong{display:block;color:var(--text)}
.stack-item span{display:block;color:var(--muted);font-size:14px}

.docs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.doc-card{padding:20px}
.doc-card strong{
  display:block;
  font-size:18px;
  color:var(--navy);
  margin-bottom:8px;
}
.doc-card span{
  display:block;
  color:var(--muted);
  line-height:1.5;
  margin-bottom:10px;
}

.info-band{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.info-card{padding:24px}
.info-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:24px;
}
.info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.cta-banner{
  padding:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.cta-banner h2{
  margin:0 0 10px;
  color:var(--navy);
  font-size:30px;
}
.cta-banner p{
  margin:0;
  color:var(--muted);
  max-width:780px;
  line-height:1.6;
}

.site-footer{
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
  padding:44px 0;
  margin-top:20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.site-footer h4{margin:0 0 12px;font-size:18px}
.site-footer li{
  color:rgba(255,255,255,.86);
  margin-bottom:8px;
  line-height:1.5;
}

.status-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
.status-badge.small{min-height:28px;font-size:11px}
.status-active{background:#eaf8ef;color:#187746;border:1px solid #c2e5cb}
.status-review{background:#fff4e6;color:#9b6700;border:1px solid #ecd7ad}
.status-archived{background:#eef2f6;color:#5e6d7c;border:1px solid #d9e0e8}

@media (max-width:1100px){
  .hero-grid,.featured-news-grid,.service-grid,.docs-grid,.info-band,.search-panel,.split-grid,.lawyer-grid,.footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-stats{grid-template-columns:1fr 1fr 1fr}
}
@media (max-width:760px){
  .hero-section h1{font-size:34px}
  .hero-grid,.featured-news-grid,.service-grid,.docs-grid,.info-band,.search-panel,.split-grid,.lawyer-grid,.footer-grid,.hero-stats,.hero-feature-list{
    grid-template-columns:1fr;
  }
  .header-inner,.section-head,.panel-title-row,.lawyer-top,.stack-item,.cta-banner{
    align-items:flex-start;
  }
}
