/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #4d94ff;
  --secondary-color: #00d4aa;
  --dark-color: #0f1629;
  --dark-light: #1a2744;
  --text-color: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --success-color: #25d366;
  --error-color: #dc3545;
  --warning-color: #ffc107;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --font-family: "Poppins", sans-serif;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-success {
  background: var(--success-color);
  color: var(--white);
}

.btn-success:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}

.pulse-animation {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 102, 255, 0.5);
  }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 22, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: rgba(15, 22, 41, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1001;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text .highlight {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-close {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--dark-light) 50%,
    #1e3a5f 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 102, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 212, 170, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 102, 255, 0.05) 0%,
      transparent 30%
    );
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title .highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-subtitle strong {
  color: var(--white);
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--secondary-color), #00b894);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--white);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

/* Hero Trust - DIPERBAIKI */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  transition: all var(--transition-normal);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.trust-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== HERO IMAGE - DIPERBAIKI ===== */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s backwards;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: imageGlow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes imageGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.ps4-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(0, 102, 255, 0.2);
  z-index: 1;
  transition: transform var(--transition-normal);
}

.hero-image-wrapper:hover .ps4-image {
  transform: scale(1.02);
}

/* Image Badges */
.image-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-color);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: badgeFloat 3s ease-in-out infinite;
}

.image-badge span:first-child {
  font-size: 1.1rem;
}

.image-badge.top-left {
  top: -10px;
  left: -10px;
  animation-delay: 0s;
}

.image-badge.bottom-right {
  bottom: -10px;
  right: -10px;
  animation-delay: 1.5s;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: floatItem 6s ease-in-out infinite;
}

.floating-item.item-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.floating-item.item-2 {
  top: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-item.item-3 {
  bottom: 20%;
  left: -20px;
  animation-delay: 3s;
}

.floating-item.item-4 {
  bottom: 0;
  right: 20%;
  animation-delay: 4.5s;
}

@keyframes floatItem {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.9;
  }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== KEUNGGULAN SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scale(1.1) rotate(5deg);
}

.feature-emoji {
  font-size: 2.2rem;
  transition: all var(--transition-normal);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== FIRMWARE SECTION ===== */
.firmware {
  background: var(--gray-100);
}

.firmware-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.firmware-main {
  position: sticky;
  top: 100px;
}

.firmware-highlight {
  background: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.firmware-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.3) 0%,
    transparent 70%
  );
  animation: rotateBg 10s linear infinite;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.firmware-badge {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.firmware-version {
  position: relative;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.firmware-note {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.firmware-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.5);
  border-radius: 50px;
  color: #4cd964;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4cd964;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.firmware-list {
  background: var(--white);
  padding: 36px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
}

.firmware-list-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.firmware-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.firmware-tag {
  padding: 8px 16px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  border: 1px solid var(--gray-300);
  transition: all var(--transition-fast);
  cursor: default;
}

.firmware-tag:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.firmware-tag.highlight {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.firmware-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 102, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.firmware-info .info-icon {
  font-size: 1.2rem;
  line-height: 1.5;
}

.firmware-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== TESTIMONI SECTION ===== */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimoni-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimoni-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimoni-rating {
  font-size: 1rem;
  letter-spacing: 1px;
}

.verified-badge {
  font-size: 0.75rem;
  color: var(--success-color);
  font-weight: 600;
  background: rgba(37, 211, 102, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.testimoni-text {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.author-name {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.95rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: #0066ff;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-item.active .faq-question {
  background: #0066ff;
  color: #ffffff;
}

/* FAQ Icon */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
  stroke: #ffffff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== KONTAK SECTION ===== */
.kontak-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.kontak-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 24px;
}

.kontak-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.kontak-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
}

.kontak-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.kontak-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 170, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontak-detail h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.kontak-detail p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Quick Contact Card */
.quick-contact {
  background: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.quick-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.quick-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

/* Form Styles */
.kontak-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-label .required {
  color: var(--error-color);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-input.error {
  border-color: var(--error-color);
}

.form-input.success {
  border-color: var(--success-color);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-hint {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.footer-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-list.contact-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-wrapper {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-svg {
  width: 100%;
  height: 100%;
}

.whatsapp-text {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50px;
  z-index: -1;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-normal);
  z-index: 1;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.modal-text {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-features {
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .firmware-container {
    grid-template-columns: 1fr;
  }

  .firmware-main {
    position: static;
  }

  .testimoni-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kontak-container {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-color);
    padding: 100px 30px 30px;
    transition: right var(--transition-normal);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .trust-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimoni-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .firmware-version {
    font-size: 2rem;
  }

  .firmware-list {
    padding: 24px;
  }

  .kontak-form {
    padding: 24px;
  }

  .image-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .floating-item {
    font-size: 1.5rem;
  }
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* Warna putih */
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor; /* Mengikuti warna parent */
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon svg {
  transform: rotate(-10deg) scale(1.1);
}
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-color);
    padding: 70px 24px 30px; /* ← Padding top dikurangi */
    transition: right var(--transition-normal);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.05rem;
    width: 100%;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
/* ===== TESTIMONI SECTION ===== */
.testimoni {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Grid Layout */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.testimoni-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.1);
}

/* Header */
.testimoni-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimoni-rating {
  font-size: 14px;
  letter-spacing: 2px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
}

/* Text */
.testimoni-text {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

/* Author */
.testimoni-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* Avatar Image */
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Author Info */
.author-info {
  flex: 1;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px 0;
}

.author-location {
  font-size: 12px;
  color: #888;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .testimoni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimoni {
    padding: 60px 0;
  }

  .testimoni-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimoni-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .testimoni-card {
    padding: 20px;
  }

  .testimoni-text {
    font-size: 13px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
  }
}
/* ===== ARTIKEL PREVIEW (index.html) ===== */
.artikel-preview {
  background: #fff;
  padding: 80px 0;
}

.artikel-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.artikel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.artikel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
}

.artikel-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artikel-card:hover .artikel-image img {
  transform: scale(1.1);
}

.artikel-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: #0066ff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.artikel-content {
  padding: 22px;
}

.artikel-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.artikel-link:hover {
  gap: 4px;
}

.artikel-cta {
  text-align: center;
}

/* ===== ARTIKEL PAGE (artikel.html) ===== */
.page-hero {
  background: linear-gradient(135deg, #0f1629 0%, #1a2744 100%);
  padding: 120px 0 60px;
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: #fff;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Artikel Page Content */
.artikel-page {
  padding: 60px 0;
  background: #f8f9fa;
}

.artikel-full {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.artikel-full-image {
  height: 300px;
  overflow: hidden;
}

.artikel-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artikel-full-content {
  padding: 32px;
}

.artikel-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}

.artikel-full-content h2 {
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.artikel-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #888;
}

.artikel-body {
  color: #444;
  line-height: 1.8;
}

.artikel-body h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin: 28px 0 16px;
}

.artikel-body p {
  margin-bottom: 16px;
}

.artikel-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.artikel-body li {
  margin-bottom: 10px;
}

/* Price Table Simple */
.price-table-simple {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.highlight {
  background: rgba(0, 102, 255, 0.05);
  margin: 0 -20px;
  padding: 12px 20px;
  border-radius: 8px;
}

.price-item {
  font-weight: 500;
  color: #333;
}

.price-value {
  font-weight: 600;
  color: #0066ff;
}

/* Artikel Tip */
.artikel-tip {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 212, 170, 0.1);
  border-left: 4px solid #00d4aa;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.tip-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.artikel-tip p {
  margin: 0;
  font-size: 14px;
}

/* Artikel Warning */
.artikel-warning {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.warning-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.artikel-warning p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* Artikel CTA Box */
.artikel-cta-box {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
  text-align: center;
}

.artikel-cta-box.highlight {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  color: #fff;
}

.artikel-cta-box.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.artikel-cta-box h4 {
  margin-bottom: 8px;
}

.artikel-cta-box p {
  margin-bottom: 16px;
  font-size: 15px;
}

.artikel-cta-box .btn {
  margin: 0 6px;
}

/* Service Options */
.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.service-option {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.option-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.service-option h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.service-option p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Recommend Features */
.recommend-features {
  margin: 20px 0;
}

.recommend-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.recommend-item:last-child {
  border-bottom: none;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.recommend-item strong {
  display: block;
  font-size: 15px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.recommend-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Game Tags */
.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.game-tag {
  padding: 8px 16px;
  background: #f0f0f0;
  border-radius: 50px;
  font-size: 13px;
  color: #555;
}

/* Back Home CTA */
.back-home-cta {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  padding: 60px 0;
}

.back-home-box {
  text-align: center;
  color: #fff;
}

.back-home-box h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.back-home-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.back-home-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #0066ff;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-primary {
  background: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
}

.btn-outline-primary:hover {
  background: #0066ff;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .artikel-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .artikel-preview {
    padding: 60px 0;
  }

  .artikel-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .artikel-card {
    display: flex;
  }

  .artikel-image {
    width: 120px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
  }

  .artikel-category {
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-size: 10px;
  }

  .artikel-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .artikel-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .artikel-excerpt {
    display: none;
  }

  /* Artikel Page */
  .page-hero {
    padding: 100px 0 40px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .artikel-page {
    padding: 40px 0;
  }

  .artikel-full-image {
    height: 200px;
  }

  .artikel-full-content {
    padding: 24px;
  }

  .artikel-full-content h2 {
    font-size: 1.3rem;
  }

  .artikel-meta {
    flex-direction: column;
    gap: 8px;
  }

  .artikel-cta-box .btn {
    display: block;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .artikel-image {
    width: 100px;
    min-height: 120px;
  }

  .artikel-full-content {
    padding: 20px;
  }

  .back-home-buttons {
    flex-direction: column;
  }

  .back-home-buttons .btn {
    width: 100%;
  }
}
/* ===== PRICE CARDS FOR ARTIKEL ===== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.price-card {
  background: #ffffff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #0066ff;
}

/* Popular Card Special Style */
.price-card.popular {
  border-color: #0066ff;
  background: linear-gradient(to bottom, rgba(0, 102, 255, 0.03), #ffffff);
  transform: scale(1.02);
}

.price-card.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Price Icon */
.price-icon {
  font-size: 48px;
  margin-bottom: 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Price Title */
.price-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* Price Amount */
.price-amount {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f0f0f0;
}

.price-from {
  font-size: 28px;
  font-weight: 700;
  color: #0066ff;
  line-height: 1;
}

.price-to {
  font-size: 14px;
  color: #999;
}

/* Price Features */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* Price Button */
.btn-price {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #0066ff;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-price:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.btn-price-popular {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-price-popular:hover {
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* Price Info Box */
.price-info-box {
  background: #f8f9fa;
  border-left: 4px solid #0066ff;
  border-radius: 0 12px 12px 0;
  padding: 20px;
  margin: 30px 0;
}

.price-info-box h4 {
  font-size: 16px;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-weight: 600;
}

.price-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-info-box li {
  padding: 6px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Updated Artikel Tip */
.artikel-tip {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(
    to right,
    rgba(0, 212, 170, 0.08),
    rgba(0, 212, 170, 0.05)
  );
  border-left: 4px solid #00d4aa;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

.artikel-tip .tip-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.artikel-tip p {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.artikel-tip p strong {
  color: #00a88e;
  font-size: 15px;
}

/* Updated Artikel CTA Box */
.artikel-cta-box {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
  text-align: center;
  border: 1px solid #e0e6ed;
}

.artikel-cta-box h4 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 600;
}

.artikel-cta-box p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.artikel-cta-box .btn {
  margin: 0 auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price-card.popular {
    transform: scale(1);
  }

  .price-card.popular:hover {
    transform: translateY(-5px);
  }

  .popular-badge {
    font-size: 11px;
    padding: 5px 16px;
  }

  .price-icon {
    font-size: 40px;
    height: 50px;
  }

  .price-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .price-from {
    font-size: 24px;
  }

  .price-features li {
    font-size: 13px;
    padding: 8px 0;
  }

  .btn-price {
    padding: 12px 18px;
    font-size: 14px;
  }

  .artikel-tip {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .artikel-cta-box {
    padding: 24px 20px;
  }

  .artikel-cta-box h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .price-cards {
    margin: 24px -8px;
  }

  .price-card {
    margin: 0 8px;
    padding: 20px 16px;
  }

  .price-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .price-title {
    font-size: 15px;
  }

  .price-amount {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .price-from {
    font-size: 22px;
  }

  .price-to {
    font-size: 13px;
  }

  .price-features {
    margin-bottom: 20px;
  }

  .price-info-box {
    padding: 16px;
    margin: 24px 0;
  }

  .price-info-box h4 {
    font-size: 15px;
  }

  .price-info-box li {
    font-size: 13px;
  }
}
