:root {
  --primary: #f39c12; /* Orange */
  --primary-hover: #e67e22;
  --bg-dark: #0f1115;
  --bg-card: #1a1d24;
  --text-main: #ffffff;
  --text-muted: #a0a5b1;
  --accent: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.highlight {
  color: var(--primary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--bg-dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  max-width: 100%;
  white-space: normal;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.btn-wa {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-wa:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-full {
  width: 100%;
}

.btn-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(243, 156, 18, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.95)), url('../images/hero.png') center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #fff;
}

/* Details Section */
.details {
  padding: 80px 0;
  background-color: var(--bg-card);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.detail-card {
  background-color: var(--bg-dark);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.detail-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.detail-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.price-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.price-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(243, 156, 18, 0.2);
  transform: scale(1.05);
}

.price-card.active::before {
  content: 'BEST DEAL';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--bg-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount span {
  font-size: 1.2rem;
  color: #e74c3c;
  text-decoration: line-through;
  margin-right: 0;
  margin-bottom: -5px;
}

.price-note {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Countdown */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cd-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
}

.cd-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  line-height: 1;
}

.cd-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background-color: var(--bg-card);
}

/* Animations */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.blink-anim {
  animation: blink 1.5s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}
/* Modern FAQ Styling */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: linear-gradient(145deg, var(--bg-card), #111318);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 156, 18, 0.5);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
}

.faq-question {
  padding: 22px 25px;
  font-weight: bold;
  font-size: 1.15rem;
  color: #fff;
  cursor: pointer;
  list-style: none; /* Hide default marker */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: transparent;
  transition: background-color 0.3s;
}

/* Hide default markers cross-browser */
.faq-question::marker,
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(243, 156, 18, 0.1);
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  margin-left: 15px;
}

details[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #111318;
}

details[open] .faq-item {
  border-color: var(--primary);
}

details[open] .faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 25px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  background-color: rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 2rem; }
  .price-card.active { transform: scale(1); }
  .cd-box { min-width: 60px; padding: 10px; }
  .cd-number { font-size: 1.5rem; }
}
