 :root {
     --primary: #2563eb;
     --primary-light: #60a5fa;
     --primary-dark: #1e3a8a;
     --secondary: #0ea5e9;
     --bg-dark: #0f172a;
     --bg-light: #f8fafc;
     --text-dark: #0f172a;
     --text-muted: #64748b;
     --border-color: #e2e8f0;
     --font-heading: 'Poppins', sans-serif;
     --font-body: 'Inter', sans-serif
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     text-decoration: none;
     outline: none;
     border: none
 }

 html {
     scroll-behavior: smooth
 }

 body {
     font-family: var(--font-body);
     background-color: var(--bg-light);
     color: var(--text-dark);
     overflow-x: hidden
 }

 .container {
     max-width: 1200px;
     width: 100%;
     margin: 0 auto;
     padding: 0 1.5rem
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: var(--font-heading);
     font-weight: 700
 }

 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 80px;
     display: flex;
     align-items: center;
     z-index: 1000;
     background-color: rgba(15, 23, 42, .95);
     backdrop-filter: blur(15px);
     box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
 }

 .navbar .nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%
 }

 .navbar .logo img {
     height: 45px;
     width: auto;
     object-fit: contain;
     transition: .3s;
     display: block
 }

 .navbar .logo:hover img {
     transform: scale(1.05)
 }

 .navbar-nav {
     display: flex;
     align-items: center;
     gap: 2.5rem
 }

 .navbar-nav a {
     color: #f8fafc;
     font-weight: 600;
     font-size: .95rem;
     transition: .3s
 }

 .navbar-nav a:hover {
     color: #60a5fa
 }

 .btn-nav-special {
     background: var(--primary);
     padding: 10px 20px !important;
     border-radius: 8px;
     color: #fff !important
 }

 .btn-nav-special:hover {
     background: #3b82f6
 }

 #toogle-nav {
     display: none;
     color: #fff;
     font-size: 1.8rem;
     cursor: pointer;
     z-index: 1002
 }

 .mobile-nav-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, .6);
     backdrop-filter: blur(8px);
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: .3s
 }

 .mobile-nav-overlay.active {
     opacity: 1;
     visibility: visible
 }

 .mobile-nav-menu {
     display: flex;
     position: fixed;
     top: 0;
     right: 0;
     transform: translateX(100%);
     width: 280px;
     height: 100vh;
     background: #1e293b;
     box-shadow: -10px 0 30px rgba(0, 0, 0, .5);
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     transition: .4s ease;
     z-index: 1001
 }

 .mobile-nav-menu.active {
     transform: translateX(0)
 }

 .mobile-nav-menu a {
     color: #fff;
     font-size: 1.2rem;
     font-weight: 700
 }

 .close-btn {
     position: absolute;
     top: 1.5rem;
     right: 1.5rem;
     font-size: 2.5rem;
     color: #fff;
     cursor: pointer
 }

 .split-header {
     background-color: var(--bg-dark);
     padding: 150px 0 140px;
     text-align: center;
     position: relative;
     background-image: radial-gradient(circle at top, rgba(37, 99, 235, .15), transparent 60%)
 }

 .split-header .container {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: .5rem
 }

 .split-header .badge {
     display: inline-block;
     background: rgba(59, 130, 246, .15);
     color: var(--primary-light);
     padding: 6px 16px;
     border-radius: 50px;
     font-size: .75rem;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: .5rem;
     border: 1px solid rgba(59, 130, 246, .3);
     text-transform: uppercase
 }

 .split-header h1 {
     font-size: 2.8rem;
     color: #fff;
     margin-bottom: .5rem;
     line-height: 1.2
 }

 .split-header p {
     color: #94a3b8;
     font-size: 1rem;
     max-width: 600px;
     margin: 0 auto
 }

 .supreme-note {
     margin-top: 1.5rem;
     font-size: .85rem;
     color: #cbd5e1;
     background: rgba(255, 255, 255, .05);
     padding: 12px 18px;
     border-radius: 8px;
     display: inline-block;
     border: 1px solid rgba(255, 255, 255, .1);
     max-width: 650px;
     line-height: 1.5;
     text-align: left
 }

 .supreme-note i {
     color: #60a5fa;
     margin-right: 6px
 }

 .supreme-note strong {
     color: #fff
 }

 .form-section {
     background: linear-gradient(to bottom, #fff 0, #eff6ff 40%, #bfdbfe 100%);
     padding-bottom: 6rem
 }

 .form-card {
     max-width: 850px;
     margin: -80px auto 0;
     background: #fff;
     border-radius: 12px;
     padding: 2.5rem;
     box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
     border: 1px solid var(--border-color);
     position: relative;
     z-index: 10
 }

 .alert-box {
     display: flex;
     align-items: flex-start;
     gap: 1.2rem;
     background: #eff6ff;
     border: 1px solid #bfdbfe;
     padding: 1.5rem;
     border-radius: 12px;
     margin-bottom: 2rem;
     box-shadow: 0 4px 15px rgba(37, 99, 235, .05)
 }

 .alert-box .icon {
     background: var(--primary);
     color: #fff;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     flex-shrink: 0;
     box-shadow: 0 4px 10px rgba(37, 99, 235, .3)
 }

 .alert-box .content {
     width: 100%
 }

 .alert-box .content h4 {
     font-size: 1.1rem;
     margin-bottom: .3rem;
     color: var(--primary-dark);
     font-family: var(--font-heading);
     line-height: 1.3
 }

 .alert-box .content p {
     font-size: .9rem;
     color: var(--text-primary-dark);
     margin: 0;
     line-height: 1.6
 }

 .alert-box .content strong {
     color: var(--primary-dark)
 }

 .alert-box .content ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: .6rem
 }

 .alert-box .content ul li {
     font-size: .85rem;
     color: var(--primary-dark);
     font-weight: 600;
     display: flex;
     align-items: flex-start;
     gap: 8px
 }

 .alert-box .content ul li i {
     color: #22c55e;
     margin-top: 3px;
     font-size: .9rem
 }

 .alert-box .content .upgrade-note {
     font-size: .85rem;
     color: #ef4444;
     font-weight: 600;
     margin-top: 1.2rem;
     display: block;
     border-top: 1px dashed #bfdbfe;
     padding-top: .8rem
 }

 .free-bonus-note {
     font-size: .95rem;
     color: var(--text-dark);
     background: #f0fdf4;
     border: 1px solid #bbf7d0;
     padding: 14px 20px;
     border-radius: 8px;
     margin-bottom: 2.5rem;
     font-weight: 600;
     text-align: center;
     box-shadow: 0 4px 6px rgba(22, 163, 74, .05)
 }

 .free-bonus-note i {
     color: #16a34a;
     margin-right: 8px;
     font-size: 1.1rem
 }

 .free-bonus-note strong {
     color: var(--primary-dark)
 }

 .form-group {
     margin-bottom: 1.8rem;
     text-align: left
 }

 .form-label {
     display: block;
     font-weight: 800;
     font-size: .9rem;
     color: var(--text-dark);
     margin-bottom: .5rem;
     font-family: var(--font-body)
 }

 .form-label span {
     color: #ef4444
 }

 .form-input {
     width: 100%;
     padding: 14px 16px;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     font-size: .95rem;
     font-family: var(--font-body);
     color: var(--text-dark);
     outline: none;
     transition: .3s;
     background-color: var(--bg-light)
 }

 .form-input:focus {
     border-color: var(--primary-light);
     box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
     background-color: #fff
 }

 .form-input::placeholder {
     color: #94a3b8
 }

 .error-msg {
     display: block;
     color: #ef4444;
     font-size: .75rem;
     margin-top: .5rem;
     font-weight: 500
 }

 .hint-msg {
     display: block;
     color: #64748b;
     font-size: .75rem;
     margin-top: .3rem;
     line-height: 1.4
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem
 }

 .promo-banner {
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     color: #fff;
     padding: 12px 16px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 1.5rem;
     box-shadow: 0 4px 15px rgba(37, 99, 235, .2)
 }

 .promo-banner i {
     font-size: 1.5rem;
     color: #fbbf24
 }

 .promo-banner h4 {
     margin: 0 0 2px;
     font-size: .9rem;
     letter-spacing: .5px;
     text-transform: uppercase
 }

 .promo-banner p {
     margin: 0;
     font-size: .75rem;
     opacity: .9
 }

 .domain-input-wrapper {
     display: flex;
     gap: 10px;
     margin-bottom: .5rem
 }

 .btn-cek {
     background-color: var(--primary-dark);
     color: #fff;
     border: none;
     padding: 0 20px;
     border-radius: 8px;
     font-weight: 700;
     cursor: pointer;
     transition: .3s;
     font-family: var(--font-heading);
     font-size: .9rem;
     display: flex;
     align-items: center;
     gap: 8px
 }

 .btn-cek:hover {
     background-color: var(--primary)
 }

 .btn-cek:disabled {
     background-color: #94a3b8;
     cursor: not-allowed
 }

 .loader {
     border: 2px solid #f3f3f3;
     border-top: 2px solid #fff;
     border-radius: 50%;
     width: 14px;
     height: 14px;
     animation: spin 1s linear infinite;
     display: none
 }

 @keyframes spin {
     0% {
         transform: rotate(0)
     }

     100% {
         transform: rotate(360deg)
     }
 }

 .alert-domain {
     margin-top: 10px;
     display: none;
     padding: 12px;
     border-radius: 8px;
     font-size: .85rem;
     font-weight: 600
 }

 .alert-not-available {
     background: #fee2e2;
     color: #ef4444;
     border: 1px solid #fca5a5
 }

 .alert-available {
     background: #dcfce7;
     color: #16a34a;
     border: 1px solid #86efac
 }

 .alert-min-input {
     background: #fef9c3;
     color: #2563eb;
     border: 1px solid #fde047
 }

 .package-accordion {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-bottom: 2rem
 }

 .pkg-label {
     display: block;
     cursor: pointer;
     margin-bottom: 0
 }

 .pkg-label input[type=radio] {
     display: none
 }

 .pkg-card {
     border: 1.5px solid var(--border-color);
     border-radius: 12px;
     background: #fff;
     transition: all .3s ease;
     position: relative;
     overflow: visible
 }

 .pkg-header {
     padding: 1.2rem 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background .3s ease;
     background-color: #fff;
     border-radius: 12px
 }

 .pkg-header:hover {
     background: #f8fafc
 }

 .pkg-h-left {
     display: flex;
     align-items: center;
     gap: 1rem
 }

 .pkg-icon {
     width: 45px;
     height: 45px;
     background: #f1f5f9;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #94a3b8;
     font-size: 1.2rem;
     transition: .3s
 }

 .pkg-h-text {
     display: flex;
     flex-direction: column;
     align-items: flex-start
 }

 .pkg-badge {
     font-size: .65rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: .5px;
     display: flex;
     align-items: center;
     gap: 4px;
     margin-bottom: 4px;
     padding: 3px 8px;
     border-radius: 4px
 }

 .badge-green {
     background: #dcfce7;
     color: #16a34a
 }

 .badge-orange {
     background: #ffedd5;
     color: #ea580c
 }

 .badge-gray {
     background: #f1f5f9;
     color: #475569;
     transition: .3s
 }

 .pkg-title {
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--text-dark);
     margin: 0;
     font-family: var(--font-heading);
     transition: .3s
 }

 .pkg-h-right {
     text-align: right;
     display: flex;
     flex-direction: column;
     align-items: flex-end
 }

 .pkg-discount-row {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 8px;
     margin-bottom: 2px
 }

 .discount-badge {
     background: #ef4444;
     color: #fff;
     padding: 2px 6px;
     border-radius: 4px;
     font-size: .65rem;
     font-weight: 800
 }

 .strike {
     color: #94a3b8;
     text-decoration: line-through;
     font-size: .8rem;
     font-weight: 600
 }

 .price-row {
     font-size: 1.2rem;
     font-weight: 800;
     color: var(--text-dark);
     font-family: var(--font-heading);
     transition: .3s;
     line-height: 1.2
 }

 .price-row small {
     font-size: .8rem;
     color: #94a3b8;
     font-weight: 500
 }

 .sub-price {
     color: #94a3b8;
     font-size: .8rem;
     font-weight: 500;
     display: block;
     margin-top: 2px
 }

 .sub-price-alert {
     color: #16a34a;
     font-weight: 700;
     font-size: .8rem;
     display: block;
     margin-bottom: 2px
 }

 .check-icon {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     border: 2px solid var(--border-color);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 15px;
     transition: .3s
 }

 .check-icon i {
     color: #fff;
     font-size: .7rem;
     opacity: 0;
     transition: .3s
 }

 .pkg-body {
     display: none;
     padding: 0 1.5rem 1.5rem;
     border-top: 1px dashed var(--border-color);
     margin-top: 0;
     padding-top: 1.5rem;
     background-color: #f8fafc;
     border-radius: 0 0 12px 12px
 }

 .pkg-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: .8rem
 }

 .pkg-list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: .85rem;
     color: #334155;
     font-weight: 500;
     line-height: 1.4
 }

 .pkg-list li i.check {
     color: var(--primary-light);
     font-size: .85rem;
     margin-top: 2px
 }

 .domain-tag {
     background: #eff6ff;
     color: var(--primary);
     padding: 2px 6px;
     border-radius: 4px;
     font-size: .7rem;
     font-weight: 700;
     border: 1px solid #bfdbfe
 }

 .domain-tag-list {
     display: flex;
     flex-wrap: wrap;
     gap: 5px;
     margin-top: 4px
 }

 .feat-desc {
     font-size: .75rem;
     color: #64748b;
     margin-top: 4px;
     font-weight: 400
 }

 .tooltip-container {
     position: relative;
     display: inline-flex;
     align-items: flex-start;
     gap: 5px;
     cursor: help;
     flex-wrap: wrap
 }

 .tooltip-container span.text {
     border-bottom: 1px dashed #94a3b8;
     color: var(--text-dark);
     transition: .3s
 }

 .tooltip-container:hover span.text {
     color: var(--primary);
     border-color: var(--primary)
 }

 .tooltip-container i.info {
     color: #94a3b8;
     font-size: .75rem;
     transition: .3s;
     margin-top: 2px
 }

 .tooltip-container:hover i.info {
     color: var(--primary)
 }

 .tooltip-text {
     visibility: hidden;
     width: max-content;
     max-width: 250px;
     background-color: #1e293b;
     color: #fff;
     text-align: left;
     border-radius: 6px;
     padding: 10px 12px;
     position: absolute;
     z-index: 99999;
     bottom: 125%;
     left: 50%;
     transform: translateX(-50%) translateY(10px);
     opacity: 0;
     transition: all .3s ease;
     font-size: .75rem;
     font-weight: 400;
     line-height: 1.4;
     box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
     pointer-events: none
 }

 .tooltip-container:hover .tooltip-text {
     visibility: visible;
     opacity: 1;
     transform: translateX(-50%) translateY(0)
 }

 .tooltip-text::after {
     content: "";
     position: absolute;
     top: 100%;
     left: 50%;
     margin-left: -5px;
     border-width: 5px;
     border-style: solid;
     border-color: #1e293b transparent transparent transparent
 }

 .link-modal {
     color: inherit;
     text-decoration: none;
     transition: .3s;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     border-bottom: 1px dashed #94a3b8
 }

 .link-modal:hover {
     color: var(--primary);
     border-color: var(--primary)
 }

 .link-modal i {
     font-size: .7rem;
     color: var(--primary);
     margin-top: 0 !important
 }

 .badge-link {
     color: inherit;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 4px;
     transition: .3s
 }

 .badge-link:hover {
     opacity: .8
 }

 .pkg-footer {
     display: none;
     background: var(--primary);
     color: #fff;
     padding: 12px;
     text-align: center;
     font-size: .85rem;
     font-weight: 700;
     border-radius: 0 0 12px 12px
 }

 .pkg-footer i {
     margin-right: 6px;
     color: #fbbf24
 }

 @keyframes popBounce {
     0% {
         transform: scale(1)
     }

     40% {
         transform: scale(1.02);
         box-shadow: 0 15px 30px rgba(37, 99, 235, .2)
     }

     60% {
         transform: scale(.99)
     }

     80% {
         transform: scale(1.01)
     }

     100% {
         transform: scale(1)
     }
 }

 .pkg-label input:checked+.pkg-card {
     border: 2px solid var(--primary);
     box-shadow: 0 8px 20px rgba(37, 99, 235, .15);
     animation: popBounce .4s cubic-bezier(.25, 1, .5, 1)
 }

 .pkg-label input:checked+.pkg-card .pkg-header {
     background: #eff6ff;
     border-radius: 10px 10px 0 0
 }

 .pkg-label input:checked+.pkg-card .pkg-icon {
     background: #fff;
     color: var(--primary);
     box-shadow: 0 2px 8px rgba(37, 99, 235, .1)
 }

 .pkg-label input:checked+.pkg-card .price-row {
     color: var(--primary-dark)
 }

 .pkg-label input:checked+.pkg-card .check-icon {
     background: var(--primary);
     border-color: var(--primary)
 }

 .pkg-label input:checked+.pkg-card .check-icon i {
     opacity: 1
 }

 .pkg-label input:checked+.pkg-card .pkg-body {
     display: block;
     border-top: 1px solid #bfdbfe
 }

 .pkg-label input:checked+.pkg-card .pkg-footer {
     display: block
 }

 .pkg-label input:checked+.pkg-card .badge-gray {
     background: var(--primary);
     color: #fff
 }

 .login-note {
     background: #fffbeb;
     border: 1px solid #fde68a;
     padding: 15px;
     border-radius: 8px;
     display: flex;
     gap: 12px;
     align-items: flex-start;
     margin-bottom: 1.8rem
 }

 .login-note i {
     color: #2563eb;
     font-size: 1.3rem;
     margin-top: 2px
 }

 .login-note p {
     margin: 0;
     font-size: .85rem;
     color: #b45309;
     line-height: 1.5
 }

 .btn-submit {
     width: 100%;
     padding: 16px;
     font-size: 1.1rem;
     border-radius: 8px;
     margin-top: 1rem;
     background: linear-gradient(90deg, var(--primary-dark), var(--primary));
     color: #fff;
     border: none;
     box-shadow: 0 10px 20px rgba(37, 99, 235, .3);
     transition: .3s;
     cursor: pointer;
     font-weight: 800;
     font-family: var(--font-heading);
     text-transform: uppercase
 }

 .btn-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 25px rgba(37, 99, 235, .4)
 }

 .btn-submit:disabled {
     background: #94a3b8;
     box-shadow: none;
     cursor: not-allowed;
     transform: none
 }

 .guarantee {
     text-align: center;
     margin-top: 1.2rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px
 }

 .guarantee-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: #059669;
     font-size: .8rem;
     font-weight: 700
 }

 .guarantee-text {
     font-size: .75rem;
     color: #94a3b8;
     margin: 0
 }

 .guarantee-text a {
     color: var(--text-dark);
     text-decoration: underline
 }

 .modal-payment-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, .6);
     backdrop-filter: blur(5px);
     z-index: 9999;
     display: none;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity .3s ease;
     padding: 1rem
 }

 .modal-payment-overlay.show {
     display: flex;
     opacity: 1
 }

 .modal-payment-content {
     background: #fff;
     width: 100%;
     max-width: 450px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
     transform: scale(.95) translateY(20px);
     transition: all .3s ease;
     max-height: 90vh;
     display: flex;
     flex-direction: column
 }

 .modal-payment-overlay.show .modal-payment-content {
     transform: scale(1) translateY(0)
 }

 .modal-pay-header {
     padding: 1.5rem;
     border-bottom: 1px solid var(--border-color);
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #fff
 }

 .modal-pay-header h3 {
     margin: 0;
     font-size: 1.2rem;
     color: var(--text-dark);
     font-family: var(--font-heading)
 }

 .close-pay-modal {
     font-size: 1.5rem;
     color: var(--text-secondary-light);
     cursor: pointer;
     transition: .3s;
     line-height: 1
 }

 .close-pay-modal:hover {
     color: #ef4444
 }

 .modal-pay-body {
     padding: 1.5rem;
     overflow-y: auto;
     background: #f8fafc;
     flex: 1
 }

 .pay-method-group {
     margin-bottom: 1rem;
     background: #fff;
     border: 1px solid var(--border-color);
     border-radius: 12px;
     overflow: hidden;
     transition: .3s
 }

 .pay-method-header {
     padding: 1rem 1.2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     font-weight: 600;
     font-size: .95rem;
     color: var(--text-dark);
     transition: background .3s
 }

 .pay-method-header:hover {
     background: #f8fafc
 }

 .pay-method-header .pm-left {
     display: flex;
     align-items: center;
     gap: 12px
 }

 .pay-method-header .pm-left i {
     font-size: 1.2rem;
     width: 24px;
     text-align: center;
     color: var(--text-muted)
 }

 .pay-method-header .chevron {
     color: var(--text-secondary-light);
     transition: .3s
 }

 .pay-method-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height .3s ease;
     background: #fff
 }

 .pay-method-group.active {
     border-color: var(--primary-light);
     box-shadow: 0 4px 10px rgba(37, 99, 235, .05)
 }

 .pay-method-group.active .pay-method-header {
     border-bottom: 1px solid var(--border-color)
 }

 .pay-method-group.active .chevron {
     transform: rotate(180deg);
     color: var(--primary)
 }

 .pay-method-group.active .pay-method-body {
     max-height: 500px
 }

 .sub-method-list {
     padding: 1rem;
     display: flex;
     flex-direction: column;
     gap: .8rem
 }

 .sub-method-item {
     border: 1px solid var(--border-color);
     padding: 12px 15px;
     border-radius: 8px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     transition: .3s;
     font-size: .9rem;
     font-weight: 600;
     color: var(--text-dark)
 }

 .sub-method-item .sm-left {
     display: flex;
     align-items: center;
     gap: 12px
 }

 .sub-method-item .sm-check {
     display: none;
     color: #2563eb;
     font-size: 1.1rem
 }

 .sub-method-item:hover {
     border-color: #2563eb
 }

 .sub-method-item.selected {
     border-color: #2563eb;
     color: #2563eb;
     background: transparent
 }

 .sub-method-item.selected .sm-check {
     display: block
 }

 .sub-method-item.selected .sm-left i {
     color: #2563eb !important
 }

 .modal-pay-summary {
     padding: 1.5rem;
     background: #fff;
     border-top: 1px solid var(--border-color)
 }

 .summary-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: .6rem;
     font-size: .9rem;
     color: var(--text-muted)
 }

 .summary-row.total {
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px dashed var(--border-color);
     font-size: 1.1rem;
     font-weight: 800;
     color: var(--text-dark)
 }

 .val-total {
     color: #2563eb;
     font-family: var(--font-heading);
     font-size: 1.2rem
 }

 .btn-confirm-pay {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     background: #2563eb;
     color: #fff;
     border: none;
     font-weight: 800;
     font-family: var(--font-heading);
     font-size: 1.05rem;
     cursor: pointer;
     transition: .3s;
     box-shadow: 0 4px 15px rgba(20, 6, 217, 0.2);
     text-transform: uppercase
 }

 .btn-confirm-pay:hover {
     background: #2563eb;;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(6, 45, 217, 0.39)
 }

 .site-footer {
     padding: 4rem 0 0;
     background-color: var(--surface-light);
     color: var(--text-dark);
     border-top: 1px solid var(--border-color)
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 4rem;
     padding-bottom: 3rem
 }

 .footer-about .logo-footer {
     font-family: var(--font-heading);
     font-size: 2rem;
     font-weight: 900;
     color: var(--text-primary-dark);
     letter-spacing: 3px;
     text-transform: uppercase;
     text-decoration: none;
     display: inline-block;
     margin-bottom: 1.5rem
 }

 .footer-about p {
     margin-bottom: 1.5rem;
     max-width: 350px;
     color: var(--text-muted);
     font-size: .95rem
 }

 .footer-about p a {
     color: var(--primary)
 }

 .footer-socials {
     display: flex;
     gap: 1rem
 }

 .footer-socials a {
     color: var(--text-muted);
     font-size: 1.2rem;
     transition: color .3s ease, transform .3s ease
 }

 .footer-socials a:hover {
     color: var(--primary);
     transform: translateY(-3px)
 }

 .footer-links h4 {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     color: var(--text-dark)
 }

 .footer-links ul {
     list-style: none
 }

 .footer-links li {
     margin-bottom: 1rem
 }

 .footer-links a {
     color: var(--text-muted);
     transition: color .3s ease;
     font-size: .95rem
 }

 .footer-links a:hover {
     color: var(--primary)
 }

 .footer-bottom {
     border-top: 1px solid var(--border-color);
     padding: 1.5rem 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     font-size: .9rem;
     color: var(--text-muted)
 }

 .footer-bottom-links a {
     color: var(--text-muted);
     margin-left: 1.5rem;
     transition: color .3s ease
 }

 .footer-bottom-links a:hover {
     color: var(--primary)
 }

 @media (max-width:992px) {
     .navbar-nav {
         display: none
     }

     #toogle-nav {
         display: block
     }
 }

 @media (max-width:768px) {
     .split-header h1 {
         font-size: 2rem
     }

     .form-card {
         padding: 1.5rem;
         margin-top: -60px
     }

     .pkg-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 1rem;
         position: relative
     }

     .pkg-h-right {
         text-align: left;
         width: 100%;
         display: flex;
         flex-direction: column;
         align-items: flex-start
     }

     .pkg-discount-row {
         justify-content: flex-start
     }

     .check-icon {
         position: absolute;
         top: 1.5rem;
         right: 1.5rem;
         margin: 0
     }

     .tooltip-text {
         width: 220px;
         left: 0;
         transform: translateX(0) translateY(10px)
     }

     .tooltip-container:hover .tooltip-text {
         transform: translateX(0) translateY(0)
     }

     .tooltip-text::after {
         left: 20px
     }

     .domain-input-wrapper {
         flex-direction: column
     }

     #domain_tld {
         width: 100%
     }

     .btn-cek {
         width: 100%;
         padding: 14px;
         justify-content: center
     }

     .form-row {
         grid-template-columns: 1fr;
         gap: 0
     }

     .footer-grid {
         grid-template-columns: 1fr;
         text-align: left;
         gap: 2.5rem;
         padding: 0 1rem
     }

     .footer-about p {
         margin-left: 0;
         margin-right: 0;
         font-size: .9rem
     }

     .footer-socials {
         justify-content: flex-start;
         margin-top: 1rem
     }

     .footer-links h4 {
         margin-bottom: 1rem;
         font-size: 1.1rem
     }

     .footer-links ul li {
         margin-bottom: .8rem
     }

     .footer-bottom {
         flex-direction: column;
         gap: 1.5rem;
         text-align: left;
         padding: 1.5rem 1rem
     }

     .footer-bottom-links {
         display: flex;
         flex-direction: row;
         gap: 1rem;
         margin-top: 0;
         justify-content: flex-start
     }

     .footer-bottom-links a {
         margin-left: 0
     }
 }

 @media (max-width:576px) {
     .navbar .logo img {
         height: 35px
     }

     .split-header {
         padding-top: 120px;
         padding-bottom: 80px
     }

     .split-header h1 {
         font-size: 1.8rem
     }

     .login-note {
         flex-direction: column;
         align-items: center;
         text-align: center
     }
 }