:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --brand:#0ea5e9;
  --brand2:#16a34a;
  --card:#f8fafc;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 16px}

/* Header */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px; padding:10px 0;
}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brand img{height:46px;width:auto;display:block}
.brand .title{display:flex;flex-direction:column}
.brand .title strong{font-size:14px;letter-spacing:.2px}
.brand .title span{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--text);
  font-weight:600;
  font-size:13px;
}
.nav a:hover{background:var(--card);border-color:var(--line)}
.nav a.active{background:rgba(14,165,233,.10);border-color:rgba(14,165,233,.25)}

/* Hero */
.hero{
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, rgba(14,165,233,.08), rgba(22,163,74,.05));
}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:stretch;padding:22px 0}
.hero-media{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(2,6,23,.08);
  background:#000;
}
.hero-media img{width:100%;height:100%;object-fit:cover;display:block;max-height:360px}
.hero-copy{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow:0 8px 20px rgba(2,6,23,.06);
}
.hero-copy h1{margin:0 0 8px;font-size:26px;line-height:1.2}
.hero-copy p{margin:0 0 12px;color:var(--muted)}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 14px}
.badge{font-size:12px;font-weight:700;padding:6px 10px;border-radius:999px;border:1px solid var(--line);background:var(--card)}
.badge.green{border-color:rgba(22,163,74,.3);background:rgba(22,163,74,.08)}
.badge.blue{border-color:rgba(14,165,233,.3);background:rgba(14,165,233,.08)}

.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid var(--line);
  background:var(--card);
}
.btn.primary{background:var(--brand);border-color:rgba(14,165,233,.35);color:#fff}
.btn.primary:hover{filter:brightness(.97)}
.btn.secondary:hover{background:#fff}

/* Content */
.main{padding:22px 0 26px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:18px;
  padding:16px;
}
.card h2{margin:0 0 10px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.list{margin:10px 0 0;padding-left:18px}
.list li{margin:8px 0}

.notice{
  border:1px dashed rgba(14,165,233,.45);
  background:rgba(14,165,233,.06);
  padding:12px 14px;
  border-radius:16px;
  color:#0b4b6b;
}

/* Page title */
.page-title{margin:0 0 12px;font-size:22px}
.small{color:var(--muted);font-size:13px}

/* Iframe wrapper */
.iframe-wrap{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.iframe-wrap iframe{display:block;width:100%;min-height:870px;height:100%;border:0}

/* Footer */
.footer{border-top:1px solid var(--line);padding:16px 0;background:#fff}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.footer small{color:var(--muted)}
.payu{display:flex;align-items:center;gap:10px}
.payu img{height:28px;width:auto;display:block}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .brand{min-width:unset}
}

.footer-link{color:var(--muted);text-decoration:underline}
.footer-link:hover{text-decoration:none}
.footer-sep{margin:0 6px;color:var(--muted)}

.table-wrap{width:100%;overflow:auto}
.reg-table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--line);border-radius:14px;background:#fff}
.reg-table th,.reg-table td{padding:12px 14px;border-bottom:1px solid var(--line);vertical-align:top}
.reg-table thead th{background:#f7f9fc;color:#0f172a;font-weight:700}
.reg-table tbody tr:last-child td{border-bottom:none}
.reg-table td.lp{font-weight:700;white-space:nowrap}
