body {
    background: #141E30;  
    background: -webkit-linear-gradient(left, #243B55, #141E30);
    background: linear-gradient(to right, #243B55, #141E30);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 5px;
}
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}
.pricing-card {
    background: whitesmoke;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto; 
    margin-bottom: 0;
    overflow-y: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex; 
    flex-direction: column; 
    padding: 5px; 
    border: 5px solid black; 
}
.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.pricing-header {
    background: #659999;  
    background: -webkit-linear-gradient(to right, #f4791f, #659999);  
    background: linear-gradient(to right, #f4791f, #659999); 
    color: white;
    padding: 1em;
    text-align: center;
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}
.pricingdua {
    background: #e52d27;  
    background: -webkit-linear-gradient(to right, #b31217, #e52d27);  
    background: linear-gradient(to right, #b31217, #e52d27); 
    color: white;
    padding: 1em;
    text-align: center;
    margin-bottom: 10px;
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}
.pricingtiga {
    background: #00b09b;  
    background: -webkit-linear-gradient(to right, #96c93d, #00b09b);  
    background: linear-gradient(to right, #96c93d, #00b09b); 
    color: white;
    padding: 1em;
    text-align: center;
    margin-bottom: 10px;
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}
.pricingempat {
    background: #00c6ff;  
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);  
    background: linear-gradient(to right, #0072ff, #00c6ff); 
    color: white;
    padding: 1em;
    text-align: center;
    margin-bottom: 10px;
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}
.pricing-title {
  margin: 0;
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}
.pricing-title2 {
  margin: 0;
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
}
.harga-card {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, rgba(244, 121, 31, 0.8), rgba(101, 153, 153, 0.8)), url('botoo.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 25px; 
    color: white; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); 
    font-family: 'Montserrat', sans-serif; 
    max-width: 100%; 
    width: 100%; 
    box-sizing: border-box; 
    margin: 0 auto; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative; 
    transform-style: preserve-3d; 
    transition: all 0.4s ease-out; 
}
.harga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 15px;
}
.harga-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}
.harga-strike {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    margin-bottom: 0; 
    padding-bottom: 0;
}
.old-price {
    font-size: 1.3em;
    font-weight: 600;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.623); 
    letter-spacing: 0.5px;
}
.harga-current {
    display: flex;
    align-items: baseline;
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%);
}
.harga-current h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}
.harga-current h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.call-to-action {
    background-color: #ffcc00; 
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute; 
    top: 1px; 
    left: 1px; 
    transform: none; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    animation: pulse 1.5s infinite; 
}
.call-to-action:hover {
    background-color: #e6b800; 
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05); 
        box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.4); 
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}
.basic {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, rgba(179, 18, 23, 0.85), rgba(229, 45, 39, 0.85)), url('botoo.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 25px; 
    color: white; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); 
    font-family: 'Montserrat', sans-serif; 
    max-width: 100%; 
    width: 100%; 
    box-sizing: border-box; 
    margin: 0 auto; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative; 
    transform-style: preserve-3d; 
    transition: all 0.4s ease-out; 
}
.basic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 15px;
}
.basic:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}
.intermediate {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, rgba(150, 201, 61, 0.85), rgba(0, 176, 155, 0.85)), url('kayu.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 25px; 
    color: white; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); 
    font-family: 'Montserrat', sans-serif; 
    max-width: 100%; 
    width: 100%; 
    box-sizing: border-box; 
    margin: 0 auto; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative; 
    transform-style: preserve-3d; 
    transition: all 0.4s ease-out; 
}
.intermediate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 15px;
}
.intermediate:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}
.harga-inter {
    display: flex;
    align-items: baseline;
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%);
}
.harga-inter h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}
.harga-inter h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.private {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, rgba(0, 114, 255, 0.85), rgba(0, 198, 255, 0.85)), url('kayu.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 25px; 
    color: white; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); 
    font-family: 'Montserrat', sans-serif; 
    max-width: 100%; 
    width: 100%; 
    box-sizing: border-box; 
    margin: 0 auto; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative; 
    transform-style: preserve-3d; 
    transition: all 0.4s ease-out; 
}
.private::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0.8;
    border-radius: 15px;
}
.private:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}
.harga-private {
    display: flex;
    align-items: baseline;
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%);
}
.harga-private h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}
.harga-private h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.9);
}
.features-container {
  max-width: 1200px;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9ff;
    overflow-y: auto;
    align-items: center;
}
.pricing-features li:not(.kosongan) {
    position: relative; 
    background-color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    display: flex; 
    align-items: center;
    padding-left: 70px; 
    border: 2px solid black; 
    font-family: 'Poppins', sans-serif;
}
.pricing-features img {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    position: absolute;
    left: 10px; 
    top: 50%;
    transform: translateY(-50%);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-button {
    display: block;
    width: calc(100% - 50px);
    margin: 25px auto;
    padding: 12px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}
.pricing-button:hover {
    background: linear-gradient(135deg, #5d7df4, #9666d8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-100%);
  background-color: rgba(0,0,0,0.5);
  transition: transform .30s ease, opacity .30s ease;
  display: flex;
  align-items: center;
}
.overlay.active {
  opacity: 1;
  transform: translateX(0);
}
.overlay-content {
  overflow-y: auto;
}
:root {
  --primary: #4361ee;
  --accent: #f72585;
  --text-light: #ffffff;
}
.close-btn {
  z-index: 9999;
  position: absolute;
  
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-light);
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.close-btn:hover {
  background: var(--primary);
  transform: scale(1.15);
}
.close-btn::after {
  content: "";
  position: absolute;
  inset: -0.3rem;
  border-radius: 0.7rem;
  border: 0.1rem solid var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.close-btn:hover::after {
  opacity: 1;
}
@media (max-width: 576px) {
  .close-btn {
    font-size: 1.4rem;
    width: 1.8rem;
    height: 1.8rem;
    top: 0.7rem;
    right: 0.7rem;
  }
}
.tombol {
  display: flex;
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.website {
  width: calc(33.3% - 30px);
  box-sizing: border-box;
  position: relative; 
}
@media screen and (max-width: 980px) {
  .website {
    flex: none; 
    width: 100%; 
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .website {
    flex: none;
    width: 100%;
    display: block;
  }
}
.glow-on-hover {
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    font-size: 15px;
    border: 1px solid white;
    color: #fff;
    background: #4b7bec;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    text-shadow: 1px 1px 0 black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}
.glow-on-hover:active {
    color: #4b7bec;
}
.glow-on-hover:active:after {
    background: transparent;
}
.glow-on-hover:hover:before {
    opacity: 0;
}
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4b7bec;
    left: 0;
    top: 0;
    border-radius: 10px;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.skeleton-loading {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.skeleton-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.skeleton-header,
.skeleton-input,
.skeleton-button {
  width: 90%;
  border-radius: 8px;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  animation: shimmer 1.5s infinite;
}

.skeleton-header {
  height: 30px;
  margin-bottom: 20px;
}

.skeleton-input {
  height: 45px;
  margin-bottom: 15px;
}

.skeleton-button {
  height: 50px;
  border-radius: 10px;
  margin-top: 20px;
  background: linear-gradient(90deg, #ddd, #ccc, #ddd);
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}