/* Base */
:root{
  --bg:#0e1116;
  --bg-alt:#121722;
  --text:#e9edf3;
  --muted:#9aa6b2;
  --brand:#2f63d8;
  --brand-2:#3b82f6;
  --ok:#12b886;
  --err:#ef4444;
  --card:#161b26;
  --border:rgba(255,255,255,0.08);
  --shadow: 0 8px 30px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg); color: var(--text); line-height:1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

.container{ width: min(1120px, 92vw); margin: 0 auto; }

h1,h2,h3{ line-height:1.2; margin:0 0 .6rem; }
h1{ font-size: clamp(28px, 5vw, 44px); font-weight: 600; letter-spacing:.2px; }
h2{ font-size: clamp(22px, 3vw, 30px); font-weight: 600; }
h3{ font-size: 18px; font-weight: 600; }

p{ margin: 0 0 1rem; color: var(--text); opacity:.95; }
a{ color: var(--brand-2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.btn{
  display:inline-block; border-radius:10px; padding:.9rem 1.2rem;
  font-weight:600; text-decoration:none; border:1px solid transparent;
  box-shadow: var(--shadow); transition:.2s ease; cursor:pointer;
}
.btn--primary{ background: linear-gradient(135deg,var(--brand),var(--brand-2)); color:#fff; }
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{ background: transparent; border-color: var(--border); color: var(--text); }
.btn--disabled{ opacity:.6; pointer-events:none; }

.notice{
  position: sticky; top:0; width:100%; text-align:center; padding:.6rem 1rem;
  background:#10151f; border-bottom:1px solid var(--border); z-index:1000;
}
.notice--ok{ background: rgba(18,184,134,.12); color:#9be7ce; border-bottom:1px solid rgba(18,184,134,.35); }
.notice--err{ background: rgba(239,68,68,.12); color:#fecaca; border-bottom:1px solid rgba(239,68,68,.35); }

/* HERO */
.hero{
  position:relative; min-height: 78vh; display:flex; align-items:center;
  background: url('assets/hero.jpg') center/cover no-repeat fixed, #0c0f14;
}
.hero__overlay{
  position:absolute; inset:0; background: radial-gradient(1200px 600px at 30% 20%, rgba(47,99,216,.25), transparent 60%), rgba(0,0,0,.45);
  mix-blend-mode: multiply;
}
.hero__content{ position:relative; z-index:1; padding: 7vh 0; }
.hero__title{ max-width: 900px; }
.hero__subtitle{ color: var(--muted); font-size: clamp(16px, 2.3vw, 18px); margin: .6rem 0 1.2rem; }

/* SECTIONS */
.section{ padding: 64px 0; }
.section--about{ background: var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.about{ display:grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.about__facts{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.kpi{ background: var(--card); padding: 18px; border:1px solid var(--border); border-radius: 14px; text-align:center; box-shadow: var(--shadow); }
.kpi__num{ font-size: 26px; font-weight:700; }
.kpi__label{ color: var(--muted); }

.badges{ list-style:none; padding:0; margin: 12px 0 0; display:flex; gap:10px; flex-wrap:wrap; }
.badges li{ background: #0f1420; border:1px solid var(--border); padding:8px 12px; border-radius: 999px; font-size: 14px; color:#cbd5e1; }

.section--services .cards{
  margin-top: 18px;
  display:grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.card{ background: var(--card); border:1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.card p{ color:#c9d3df; }

/* Reports */
.section--reports{ background: var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.reports{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; }

/* Contact */
.section--contact .contact{ display:grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items:start; }
.contact__direct{ list-style:none; padding:0; margin: 14px 0 0; display:flex; gap:18px; flex-wrap:wrap; }
.contact__direct a{ color:#d9e2ef; }

.form{ background: var(--card); border:1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.form__row{ margin: 0 0 14px; display:flex; flex-direction: column; gap: 6px; }
label{ color:#cbd5e1; font-size: 14px; }
input, textarea{
  width:100%; padding:12px 14px; border-radius: 12px; border:1px solid var(--border);
  background:#0f1420; color:#e5ecf5; font-size:16px; outline:none;
}
input:focus, textarea:focus{ border-color:#3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.form__note{ color:#91a1b3; font-size: 13px; margin-left:12px; }

.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Footer */
.footer{ padding: 28px 0; }
.footer__grid{ display:flex; justify-content:space-between; gap:12px; color:#90a1b4; border-top:1px solid var(--border); padding-top:12px; }

/* Responsive */
@media (max-width: 920px){
  .about{ grid-template-columns: 1fr; }
  .section--services .cards{ grid-template-columns: 1fr; }
  .section--contact .contact{ grid-template-columns: 1fr; }
}
