:root{
  --bgTop:#b9e4ff;
  --bgMid:#78c6ff;
  --bgDeep:#0a4476;

  --panel:rgba(255,255,255,.82);
  --panel2:rgba(255,255,255,.68);
  --text:#05233a;
  --muted:#2b5b7a;
  --line:rgba(5,35,58,.12);

  --accent:#0ea5e9;
  --accent2:#2563eb;
  --good:#16a34a;
  --warn:#f59e0b;

  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);

  background:
    linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,.55)),
    url("../assets/images/sea-ship.svg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}

.brand{display:flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.2px}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 28px rgba(14,165,233,.22);
}

.menu{display:flex; gap:12px; align-items:center}
.menu a{
  font-size:14px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{color:var(--text); background: rgba(14,165,233,.10)}
.menu .cta{
  color:#ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight:800;
}
.menu .cta:hover{filter:brightness(1.02)}

.menu-toggle{
  display:none;
  border:1px solid var(--line);
  padding:10px 12px; border-radius:12px;
  color:var(--text);
  background: rgba(255,255,255,.6);
  cursor:pointer;
}
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile-menu a{
  display:block;
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
}
.mobile-menu a:hover{color:var(--text); background: rgba(14,165,233,.10)}
.mobile-menu .cta{
  color:#fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight:900;
}

.hero{padding:56px 0 26px}
.hero-grid{display:grid; gap:18px; grid-template-columns: 1.25fr .75fr}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .menu{display:none}
  .menu-toggle{display:block}
}

.h-title{font-size:46px; line-height:1.05; margin:0 0 10px}
.h-sub{margin:0; color:var(--muted); font-size:16px; line-height:1.6}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.badge{
  border:1px solid var(--line);
  padding:8px 10px; border-radius:999px;
  font-size:12px; color:var(--muted);
  background: rgba(255,255,255,.65);
}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 20px 55px rgba(3,35,60,.10);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.kpi{display:grid; gap:12px}
.kpi .row{
  display:flex; justify-content:space-between; align-items:flex-start;
  border-top:1px solid var(--line);
  padding-top:12px; margin-top:12px;
}
.kpi .row:first-child{border-top:0; padding-top:0; margin-top:0}
.kpi b{display:block; font-size:16px}
.kpi span{color:var(--muted); font-size:12px}

.section{padding:26px 0}
.grid3{display:grid; gap:14px; grid-template-columns:repeat(3, 1fr)}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.grid2{display:grid; gap:14px; grid-template-columns:repeat(2, 1fr)}
@media (max-width:900px){.grid2{grid-template-columns:1fr}}

.btns{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.btn:hover{background: rgba(14,165,233,.10)}
.btn.primary{
  border:0;
  color:#ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.btn.primary:hover{filter:brightness(1.02)}
.btn.good{
  border:0;
  color:#ffffff;
  background: linear-gradient(135deg, var(--good), #22c55e);
}

.form{display:grid; gap:12px}
label{font-size:12px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(14,165,233,.45)}

.help{font-size:12px; color:var(--muted); line-height:1.6}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.table th{color:var(--muted); text-align:left; font-weight:800}
.table tr:last-child td{border-bottom:0}

.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  font-size:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  color:var(--muted);
}
.pill.good{border-color: rgba(22,163,74,.25); color:#166534}
.pill.warn{border-color: rgba(245,158,11,.25); color:#92400e}

.footer{
  margin-top:30px;
  padding:22px 0 32px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  background: rgba(255,255,255,.35);
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footer-grid{display:grid; gap:12px; grid-template-columns:1.3fr .7fr}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr}}

.small{font-size:12px; color:var(--muted); line-height:1.6}

.notice{
  border:1px dashed rgba(5,35,58,.22);
  background: rgba(255,255,255,.62);
  border-radius: var(--radius);
  padding:14px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
