:root{
  --bg: #1b3060;
  --accent: #f5bc00;
  --text: #ffffff;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.75);
  --card: rgba(0,0,0,.18);
  --border: rgba(255,255,255,.18);
  --shadow: 0 18px 70px rgba(0,0,0,.32);

  --footer-bg: #f0f2f5;
  --footer-accent: #1b3060;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header{
  padding: 26px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.komdigi-badge{
  width: 130px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 10px 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.komdigi-logo{
  width: 78px;
  height: auto;
}

.komdigi-text{
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 13px;
  color: #111;
}

.isp-badge{
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  max-width: 960px;
  width: 100%;
  justify-content: center;
}

.isp-logo{
  width: 120px;
  height: auto;
}

.isp-text{ text-align: left; }
.isp-name{
  font-weight: 900;
  letter-spacing: .3px;
}
.isp-sub{
  margin-top: 4px;
  font-size: 12px;
  opacity: .85;
}

/* CONTENT */
.content{
  padding: 18px 16px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title{
  margin: 18px 0 14px;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
}

.law-block{
  max-width: 980px;
}

.law-id{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.law-en{
  margin: 6px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.divider{
  height: 16px;
}

.notice{
  margin-top: 22px;
  max-width: 980px;
}

.notice-id{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.35;
}

.notice-en{
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.info-grid{
  margin-top: 22px;
  max-width: 980px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: var(--shadow);
  text-align: left;
}

.info-label{
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 6px;
}

.info-value{
  font-size: 14px;
  font-weight: 800;
  word-break: break-word;
}

.actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 980px;
}

.btn{
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  background: rgba(0,0,0,.12);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .2px;
  min-width: 240px;
  transition: transform .12s ease, background .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.28);
}

.btn:focus-visible{
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-outline{
  background: transparent;
}

.btn-ghost{
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
}

.hint{
  margin-top: 14px;
  max-width: 980px;
  color: var(--muted);
  font-size: 13px;
}

/* FOOTER */
.footer{
  background: var(--footer-bg);
  color: #111;
  padding: 22px 16px 26px;
  margin-top: auto;
}

.footer-inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.footer-title{
  color: var(--footer-accent);
  font-weight: 900;
  font-size: 16px;
}

.footer-sub{
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-style: italic;
  opacity: .85;
}

.footer-contacts{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.contact-box{
  padding: 10px 10px;
}

.contact-title{
  font-weight: 900;
  color: var(--footer-accent);
}

.contact-sub{
  margin-top: 4px;
  font-size: 12px;
  font-style: italic;
  color: #333;
}

.contact-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: var(--footer-accent);
  text-decoration: none;
}
.contact-link:hover{ text-decoration: underline; }

.footer-note{
  margin-top: 20px;
  font-size: 12px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 860px){
  .info-grid{ grid-template-columns: 1fr; }
  .footer-contacts{ grid-template-columns: 1fr; }
  .btn{ min-width: 100%; }
  .isp-badge{
    flex-direction: column;
    text-align: center;
  }
  .isp-text{ text-align: center; }
}
