/* ==========================================================
   PLANET NETWORK NUSANTARA
   FORM PENDAFTARAN INTERNET
   ========================================================== */

/* ==========================
   RESET & ROOT
========================== */

* {
  box-sizing: border-box;
}

:root {
  --blue: #087fc2;
  --blue-dark: #045d94;
  --blue-soft: #eaf8ff;
  --cyan: #30c7ef;

  --white: #ffffff;
  --text: #08253b;
  --muted: #557083;

  --border: rgba(8, 127, 194, 0.34);
  --border-strong: rgba(8, 127, 194, 0.55);

  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.90);

  --shadow: 0 24px 70px rgba(0, 74, 126, 0.22);
  --shadow-soft: 0 14px 35px rgba(0, 91, 145, 0.15);

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

/* ==========================
   BASE
========================== */

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}


/* ==========================
   GLASS CARD
========================== */

.glass {
  background:
    linear-gradient(
      135deg,
      rgba(232, 248, 255, 0.92),
      rgba(210, 241, 255, 0.86)
    );

  border: 1px solid rgba(8, 127, 194, 0.18);

  border-radius: 28px;

  box-shadow:
    0 18px 50px rgba(0, 89, 138, 0.18);

  backdrop-filter: blur(16px);
}

/* ==========================
   FOOTER
========================== */

.footer-note {

  margin-top: 18px;

  text-align: center;

  color: #5f7f91;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.5;

}
/* ==========================================================
   STYLE.CSS - PART 4/4
   RESPONSIVE • ANIMATION • FINAL
========================================================== */

/* ==========================
   ANIMATION
========================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

/* ==========================
   DESKTOP LARGE
========================== */

@media (min-width:1400px){

  .page-shell{
    width:min(1320px,92%);
  }

}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

  .registration-shell{

    grid-template-columns:1fr;

    gap:22px;

    padding:20px;

  }

  .info-panel{

    order:1;

  }

  .form-panel{

    order:2;

  }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

  .page-shell{

    width:95%;

    padding:16px 0;

  }

  .registration-shell{

    grid-template-columns:1fr;

    gap:16px;

    padding:14px;

    border-radius:22px;

  }

  .info-panel,
  .form-panel{

    padding:16px;

    border-radius:18px;

  }

  .brand-header{

    margin-bottom:12px;

  }

  .logo{

    width:min(220px,72vw);

  }

  .banner-card{

    margin-bottom:14px;

    border-radius:18px;

  }

  .banner-img{

    min-height:120px;

  }

  .status-pill{
  display:flex;
  width:fit-content;
  margin:0 auto 16px auto;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(239,64,70,.12);
  color:#b60d17;
  font-weight:800;
  font-size:13px;
  letter-spacing:.7px;
}

  .intro-content h1{

    font-size:24px;

    line-height:1.3;

    margin-bottom:10px;

  }

  .brand-text{

    font-size:13px;

    line-height:1.6;

    margin-bottom:10px;

  }

  .intro-text{

    font-size:13px;

    line-height:1.55;

    margin-bottom:18px;

  }

  .benefit-list{

    gap:8px;

    margin-bottom:18px;

  }

  .benefit-item{

    gap:10px;

  }

  .benefit-item span{

    width:22px;
    height:22px;

    font-size:11px;

  }

  .benefit-item p{

    font-size:13px;

  }

  .steps-list{

    gap:8px;

  }

  .step-item{

    padding:10px;

    gap:10px;

    border-radius:14px;

  }

  .step-number{

    width:30px;
    height:30px;

    font-size:13px;

  }

  .step-item p{

    font-size:12px;

    line-height:1.4;

  }

  .form-heading{

    margin-bottom:18px;

  }

  .form-heading h2{

    font-size:22px;

  }

  .form-heading p{

    font-size:12px;

  }

  .registration-form{

    grid-template-columns:1fr;

    gap:14px;

  }

  .upload-grid{

    grid-template-columns:1fr;

    gap:12px;

  }

  .location-row{

    grid-template-columns:1fr;

    gap:8px;

  }
.location-btn{
    min-height:42px;
    padding:0 18px;
    border-radius:13px;
    font-size:13px;
}
  .registration-form input,
  .registration-form textarea,
  .registration-form select{

    font-size:13px;

    padding:12px 12px 12px 40px;

  }

  .field-icon{

    left:12px;

    font-size:15px;

  }

  .upload-box{

    padding:12px;

  }

  .upload-title{

    font-size:13px;

  }

  .upload-desc{

    font-size:11px;

  }

  .file-name{

    font-size:11px;

  }

  .package-detail{

    padding:12px;

  }

  .package-detail strong{

    font-size:13px;

  }

  .package-detail p{

    font-size:12px;

  }

  .agreement-note{

    padding:12px;

    font-size:11px;

    line-height:1.45;

  }

  .submit-btn{

    min-height:48px;

    font-size:13px;

  }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

  .page-shell{

    width:96%;

  }

  .logo{

    width:190px;

  }

  .intro-content h1{

    font-size:21px;

  }

  .registration-shell{

    padding:10px;

  }

  .info-panel,
  .form-panel{

    padding:14px;

  }

  .step-item{

    align-items:flex-start;

  }

}
.status-pill{
  display:flex;
  width:fit-content;
  margin:0 auto 16px auto;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(239,64,70,.12);
  color:#b60d17;
  font-weight:800;
  font-size:13px;
  letter-spacing:.7px;
}
/* ==========================================================
   ISOLIR.PNN.WEB.ID - CONTENT FINAL
========================================================== */

.page-shell{
  position:relative;
  width:min(1180px,94%);
  margin:0 auto;
  padding:32px 0;
}

.hero-card{
  border:1px solid rgba(255,255,255,.85);
  border-radius:34px;
  padding:28px;
  background:rgba(255,255,255,.38);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
  animation:fadeUp .8s ease both;
}

.content-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}

/* BRAND / LOGO / BANNER */
.brand-area{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}

.brand-area .logo{
  width:300px;
  height:auto;
  transform:translateX(130px);
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

.isolir-label{
  width:510px;
  height:auto;
  border-radius:12px;
  transform: translateX(-15px);
  box-shadow:0 14px 30px rgba(239,64,70,.18);
  animation:pulseSoft 2.4s ease-in-out infinite;
}

/* CARD */
.notice-card{
  padding:32px;
}

.side-card{
  padding:20px;
  overflow:hidden;
}

/* STATUS */
.status-pill{
  display:flex;
  width:fit-content;
  margin:0 auto 16px auto;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:9px 15px;
  border-radius:999px;
  background:rgba(239,64,70,.12);
  color:#b60d17;
  font-weight:800;
  font-size:13px;
  letter-spacing:.7px;
}

/* TEXT */
.notice-card h2{
  margin:0 0 18px;
  font-size:24px;
  line-height:1.2;
  color:#063958;
}

.notice-card p{
  font-size:15px;
  line-height:1.7;
  margin:0 0 16px;
  color:#4e6b7d;
}

/* FORM BAYAR */
.billing-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  margin-top:20px;
}

.billing-form input{
  width:100%;
  height:54px;
  min-width:0;
  border:2px solid rgba(8,127,194,.40);
  outline:none;
  border-radius:16px;
  padding:16px 18px;
  font-size:16px;
  color:var(--text);
  background:#fff;
  transition:.25s;
}

.billing-form input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(8,127,194,.14);
}

.billing-form button{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  border:0;
  border-radius:16px;
  padding:0 30px;
  font-size:16px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,#ef4046,#ff6b6f);
  box-shadow:0 12px 28px rgba(239,64,70,.28);
}

.billing-form button{
  transition:.25s;
}

.billing-form button:hover{
  background:linear-gradient(
    135deg,
    #e6373d,
    #ff595f
  );

  transform:translateY(-2px);

  box-shadow:
    0 0 18px rgba(239,64,70,.65),
    0 0 40px rgba(239,64,70,.35);
}

.billing-form button:active{
  transform:translateY(0);
}

/* PANDUAN */
.notice-card h4{
  margin:20px 0 10px;
  color:#063958;
  font-size:16px;
}

.notice-card ul{
  margin:0;
  padding-left:18px;
}

.notice-card li{
  margin-bottom:12px;
  color:#4e6b7d;
  font-size:14px;
  line-height:1.7;
}

.notice-card li:last-child{
  margin-bottom:0;
}

.notice-card b{
  color:#063958;
}

/* SIDE */
.info-image{
  width:100%;
  display:block;
  border-radius:22px;
  margin-bottom:18px;
  box-shadow:0 18px 40px rgba(0,90,140,.18);
}

.contact-box h2{
  margin:0 0 14px;
  font-size:22px;
  color:#063958;
}

.payment-note{
  margin:8px 0 10px;
  font-size:14px;
  line-height:1.5;
  color:#4e6b7d;
}

.payment-list{
  margin:0 0 18px 18px;
  padding:0;
  color:#4e6b7d;
}

.payment-list li{
  margin-bottom:6px;
  font-size:14px;
  line-height:1.5;
}

/* WHATSAPP */
.confirm-button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  margin-top:16px;
  padding:16px 20px;
  background:#25D366;
  color:#fff;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  box-shadow:
    0 0 12px rgba(37,211,102,.55),
    0 0 30px rgba(37,211,102,.35);
  transition:.25s;
}

.confirm-button img{
  width:32px;
  height:32px;
}

.confirm-button:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
  box-shadow:
    0 0 18px rgba(37,211,102,.75),
    0 0 40px rgba(37,211,102,.55);
}

/* ANIMASI */
@keyframes pulseSoft{
  0%,100%{
    transform:translateX(-15px) scale(1);
  }

  50%{
    transform:translateX(-15px) scale(1.025);
  }
}

/* TABLET & HP */
@media(max-width:900px){

  .page-shell{
    width:96%;
    padding:14px 0;
  }

  .hero-card{
    padding:18px;
    border-radius:26px;
  }

  .brand-area{
    flex-direction:column;
    text-align:center;
    gap:12px;
    margin-bottom:18px;
  }

  .brand-area .logo{
    display:none;
  }

  .isolir-label{
    width:98%;
    max-width:780px;
    transform:none;
    animation:pulseSoftMobile 2.4s ease-in-out infinite;
  }

  .content-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .notice-card{
    padding:24px;
  }
}

/* HP KECIL */
@media(max-width:560px){

  .page-shell{
    width:96%;
    padding:10px 0;
  }

  .hero-card{
    padding:12px;
    border-radius:22px;
  }

  .brand-area{
    gap:10px;
    margin-bottom:14px;
  }

  .brand-area .logo{
    display:none;
  }

  .isolir-label{
    width:98%;
    max-width:380px;
  }

  .notice-card{
    padding:18px;
    border-radius:22px;
  }

  .status-pill{
    font-size:10px;
    padding:7px 12px;
    letter-spacing:.4px;
    margin-bottom:14px;
  }

  .notice-card h2{
    font-size:19px;
    line-height:1.18;
    margin-bottom:14px;
  }

  .notice-card p{
    font-size:14px;
    line-height:1.55;
    margin-bottom:12px;
  }

  .billing-form{
    grid-template-columns:1fr;
    gap:8px;
  }

  .billing-form input,
  .billing-form button{
    width:100%;
    min-height:46px;
    height:auto;
    border-radius:13px;
    font-size:13px;
  }

  .billing-form input{
    padding:13px 12px;
  }

  .billing-form button{
    padding:0 18px;
  }

  .side-card{
    padding:14px;
    border-radius:22px;
  }

  .info-image{
    border-radius:18px;
  }

  .contact-box h2{
    font-size:19px;
  }

  .footer-note{
    margin-top:16px;
    font-size:12px;
  }
}

@keyframes pulseSoftMobile{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.025);
  }
}
/* ==========================================================
   PNN PREMIUM NAVBAR FINAL
========================================================== */

.pnn-navbar{
  width:100%;
  position:relative;
  z-index:999;
  background:linear-gradient(135deg,rgba(4,93,148,.96),rgba(8,127,194,.96),rgba(48,199,239,.88));
  box-shadow:0 12px 32px rgba(0,60,120,.22);
}

.pnn-navbar-inner{
  max-width:1240px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.pnn-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.4px;
  white-space:nowrap;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}

.pnn-brand img{
  height:42px;
  width:auto;
  max-width:none;
}

.pnn-nav-menu{
  display:flex;
  align-items:center;
  gap:7px;
  flex-wrap:nowrap;
}

.pnn-nav-menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:40px;
  padding:10px 13px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  line-height:1;
  white-space:nowrap;
  transition:.25s;
}

.pnn-nav-menu a i{
  width:14px;
  min-width:14px;
  text-align:center;
  font-size:12.5px;
  flex-shrink:0;
}

.pnn-nav-menu a:hover{
  color:#045d94;
  background:linear-gradient(135deg,#fff,#e8f8ff);
  box-shadow:0 8px 18px rgba(8,127,194,.25);
  transform:translateY(-1px);
}

.pnn-nav-menu a.nav-login{
  margin-left:8px;
  min-height:40px;
  padding:10px 16px;
  color:#fff;
  background:linear-gradient(135deg,#0ea5e9,#087fc2);
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 10px 24px rgba(0,80,150,.28);
}

.pnn-nav-menu a.nav-login:hover{
  color:#fff;
  background:linear-gradient(135deg,#087fc2,#034f92);
  transform:translateY(-1px);
}

.pnn-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  padding:0;
  margin:0;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.22);
  cursor:pointer;
  box-shadow:0 8px 18px rgba(8,127,194,.25);
}

.pnn-menu-toggle span{
  display:block;
  width:21px;
  height:2px;
  margin:4.5px auto;
  background:#fff;
  border-radius:99px;
  transition:.25s;
}

.pnn-menu-toggle:hover{
  transform:none;
  box-shadow:0 8px 18px rgba(8,127,194,.25);
}

@media(max-width:768px){

  .pnn-navbar{
    position:sticky;
    top:0;
    z-index:9999;
  }

  .pnn-navbar-inner{
    padding:11px 14px;
  }

  .pnn-brand img{
    height:38px;
  }

  .pnn-brand span{
  font-size:12px;
  max-width:190px;
  line-height:1.25;
}

  .pnn-menu-toggle{
    display:block;
    flex-shrink:0;
  }

  .pnn-nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:14px;
    right:14px;
    flex-direction:column;
    gap:8px;
    padding:12px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 35px rgba(0,40,90,.16);
  }

  .pnn-nav-menu.active{
    display:flex;
  }

  .pnn-nav-menu a{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    min-height:46px;
    padding:13px 16px;
    border-radius:14px;
    color:#063b73;
    background:linear-gradient(135deg,#fff,#eaf8ff);
    border:1px solid rgba(8,127,194,.18);
    font-size:13px;
    font-weight:900;
    line-height:1.2;
    white-space:nowrap;
    box-shadow:0 6px 14px rgba(0,70,130,.08);
  }

  .pnn-nav-menu a:hover,
  .pnn-nav-menu a:focus,
  .pnn-nav-menu a:active{
    color:#fff;
    background:linear-gradient(135deg,#087fc2,#034f92);
    box-shadow:0 10px 24px rgba(0,80,150,.25);
  }

  .pnn-nav-menu a.nav-login{
    width:100%;
    margin-left:0;
    margin-top:0;
    color:#fff;
    background:linear-gradient(135deg,#087fc2,#034f92);
    box-shadow:0 6px 14px rgba(0,70,130,.08);
  }

  .pnn-nav-menu a.nav-login:hover,
  .pnn-nav-menu a.nav-login:focus,
  .pnn-nav-menu a.nav-login:active{
    color:#fff;
    background:linear-gradient(135deg,#034f92,#087fc2);
    box-shadow:0 10px 24px rgba(0,80,150,.28);
    transform:translateY(-1px);
  }

  .pnn-menu-toggle.active span:nth-child(1){
    transform:translateY(6.5px) rotate(45deg);
  }

  .pnn-menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .pnn-menu-toggle.active span:nth-child(3){
    transform:translateY(-6.5px) rotate(-45deg);
  }

  .logo{
    display:none;
  }
}
/* ==========================================================
   HP KECIL
========================================================== */

@media(max-width:420px){

  .pnn-brand span{
    font-size:11px;
    max-width:155px;
  }


  .pnn-brand img{
    height:34px;
  }


  .pnn-menu-toggle{
    width:40px;
    height:40px;
  }

}
/* ==========================================================
   FIX BENEFIT & STEP MOBILE ALIGN
========================================================== */

@media (max-width: 768px){

  .benefit-item{
    align-items: flex-start;
  }

  .benefit-item span{
    margin-top: 1px;
    flex-shrink: 0;
  }

  .benefit-item p{
    margin: 0;
    padding-top: 1px;
  }

  .step-item{
    align-items: center;
  }

  .step-number{
    flex-shrink: 0;
  }

  .step-item p{
    margin: 0;
  }

}

@media (max-width: 480px){

  .step-item{
    align-items: center;
  }

}

/* ==========================================================
   FINAL FIX MOBILE NAVBAR - MATCH LUPA BILLING
========================================================== */

@media (max-width: 768px){

  .pnn-navbar-inner{
    padding: 12px 14px;
    min-height: 64px;
  }

  .pnn-brand{
    gap: 10px;
  }

  .pnn-brand img{
    height: 38px;
  }

  .pnn-brand span{
    font-size: 12px;
    max-width: 190px;
    line-height: 1.25;
    letter-spacing: .25px;
  }

  .pnn-menu-toggle{
    width: 43px;
    height: 43px;
  }

  .pnn-menu-toggle span{
    width: 21px;
    height: 2px;
    margin: 5px auto;
  }

  .pnn-nav-menu{
    left: 14px;
    right: 14px;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .pnn-nav-menu a{
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .pnn-nav-menu a.nav-login{
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 14px;
  }

}
/* ==========================================================
   FINAL FIX DESKTOP NAVBAR - MATCH LUPA BILLING
========================================================== */

@media (min-width: 769px){

  .pnn-navbar-inner{
    max-width: 1280px;
    padding: 12px 18px;
    gap: 14px;
  }

  .pnn-brand{
    gap: 10px;
    font-size: 14px;
    letter-spacing: .4px;
  }

  .pnn-brand img{
    height: 42px;
  }

  .pnn-nav-menu{
    gap: 6px;
  }

  .pnn-nav-menu a{
    gap: 7px;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
  }

  .pnn-nav-menu a.nav-login{
    margin-left: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
  }
}



/* HP */
@media(max-width:480px){

  .confirm-box{
    padding:28px 20px;
    border-radius:24px;
  }


  .confirm-icon{
    width:56px;
    height:56px;
    font-size:32px;
  }


  .confirm-box h3{
    font-size:20px;
  }


  .confirm-box p{
    font-size:14px;
  }


  .confirm-action button{
    min-height:46px;
    font-size:13px;
  }

}


@keyframes pulseSoftMobile{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.025);
  }
}
/* ==========================================================
   DAFTAR.PNN.WEB.ID - LOADING OVERLAY SUBMIT
========================================================== */

.loading-overlay{
  position:fixed;
  inset:0;
  z-index:9999999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(232,248,255,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.loading-overlay.show{
  display:flex;
}

.loading-box{
  width:min(380px,92%);
  padding:28px 24px;
  border-radius:24px;
  text-align:center;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 24px 70px rgba(0,74,126,.24);
}

.loading-spinner{
  width:54px;
  height:54px;
  margin:0 auto 18px;
  border-radius:50%;
  border:5px solid rgba(8,127,194,.18);
  border-top-color:#087fc2;
  animation:daftarSpin .75s linear infinite;
}

.loading-box h3{
  margin:0 0 8px;
  color:#063958;
  font-size:20px;
  font-weight:900;
}

.loading-box p{
  margin:0;
  color:#4e6b7d;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
}

@keyframes daftarSpin{
  to{
    transform:rotate(360deg);
  }
}
/* ==========================================================
   CEK.PNN.WEB.ID - PREMIUM CHECK LIST PANDUAN
   STYLE SAMA DENGAN DAFTAR
========================================================== */

.info-note ul{
  list-style:none;
  padding-left:0;
  margin:0;
}


.info-note li{
  position:relative;
  padding-left:34px;
  margin-bottom:18px;

  font-size:13px;
  line-height:1.65;
  color:#365f76;
}


/* ICON CENTANG */
.info-note li::before{
  content:"✓";

  position:absolute;
  left:0;
  top:2px;

  width:22px;
  height:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #30c7ef,
    #087fc2
  );

  color:#ffffff;

  font-size:14px;
  font-weight:900;

  box-shadow:
    0 5px 12px rgba(8,127,194,.28);
}


.info-note li b{
  color:#063958;
  font-weight:900;
}


.info-note li:last-child{
  margin-bottom:0;
}
/* ==========================================================
   CEK.PNN.WEB.ID - PREMIUM CHECK LIST PANDUAN   
========================================================== */

.info-note ul{
  list-style:none;
  padding-left:0;
  margin:0;
}


.info-note li{
  position:relative;
  padding-left:34px;
  margin-bottom:18px;

  font-size:13px;
  line-height:1.65;
  color:#365f76;
}


/* ICON CENTANG */
.info-note li::before{
  content:"✓";

  position:absolute;
  left:0;
  top:2px;

  width:22px;
  height:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    #30c7ef,
    #087fc2
  );

  color:#ffffff;

  font-size:14px;
  font-weight:900;

  box-shadow:
    0 5px 12px rgba(8,127,194,.28);
}


.info-note li b{
  color:#063958;
  font-weight:900;
}


.info-note li:last-child{
  margin-bottom:0;
}

/* ==========================================
   BACKGROUND ANIMATED ORBS
========================================== */

.bg-orb{
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(3px);
}

/* ===========================
   ORB KIRI ATAS
=========================== */

.orb-1{
    width: 380px;
    height: 380px;

    top: -140px;
    left: -140px;

    background: radial-gradient(
        circle,
        rgba(69,203,255,.70) 0%,
        rgba(69,203,255,.45) 45%,
        rgba(69,203,255,.15) 70%,
        rgba(69,203,255,0) 100%
    );

    animation: floatOrb1 18s ease-in-out infinite;
}

/* ===========================
   ORB KANAN BAWAH
=========================== */

.orb-2{
    width: 450px;
    height: 450px;

    bottom: -180px;
    right: -180px;

    background: radial-gradient(
        circle,
        rgba(0,145,255,.60) 0%,
        rgba(0,145,255,.35) 50%,
        rgba(0,145,255,.12) 75%,
        rgba(0,145,255,0) 100%
    );

    animation: floatOrb2 22s ease-in-out infinite;
}

/* ===========================
   ORB TENGAH KANAN
=========================== */

.orb-3{
    width: 240px;
    height: 240px;

    top: 40%;
    right: -70px;

    background: radial-gradient(
        circle,
        rgba(98,218,255,.55) 0%,
        rgba(98,218,255,.28) 55%,
        rgba(98,218,255,0) 100%
    );

    animation: floatOrb3 15s ease-in-out infinite;
}

/* ==========================================
   ANIMASI
========================================== */

@keyframes floatOrb1{
    0%{
        transform: translate(0px,0px);
    }

    25%{
        transform: translate(20px,15px);
    }

    50%{
        transform: translate(40px,35px);
    }

    75%{
        transform: translate(20px,15px);
    }

    100%{
        transform: translate(0px,0px);
    }
}

@keyframes floatOrb2{
    0%{
        transform: translate(0px,0px);
    }

    25%{
        transform: translate(-25px,-15px);
    }

    50%{
        transform: translate(-50px,-35px);
    }

    75%{
        transform: translate(-25px,-15px);
    }

    100%{
        transform: translate(0px,0px);
    }
}

@keyframes floatOrb3{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-25px);
    }

    100%{
        transform: translateY(0px);
    }
}
/* ==========================
   END OF FILE
========================== */
