/* =============== 
   EAZYWEB2 DESIGN SYSTEM
   Premium Corporate Theme
   =============== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;700;900&display=swap');

:root {
  /* Colors */
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --accent-primary: #10b981; /* Premium Emerald */
  --accent-hover: #059669;
  --accent-blue: #3b82f6;
  --accent-dark: #0f172a;
  --danger-red: #ef4444;
  --gold: #f59e0b;

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --nav-height: 80px;

  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Shadow */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.highlight-green { color: var(--accent-primary); font-weight: bold; }

/* ==================
   NAVIGATION 
   ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.nav-links a:hover { color: var(--accent-primary); }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-main); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: white !important;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: white !important;
}

.cta-pulse {
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==================
   HERO SECTION 
   ================== */
.hero {
  padding-top: calc(var(--nav-height) + 6rem);
  padding-bottom: 6rem;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('hero-bg.webp') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.features-banner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--text-main);
}
.feature-pill i { color: var(--accent-primary); font-size: 1.2rem; }

/* ==================
   SECTION GENERAL
   ================== */
.section { padding: 6rem 0; }
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-body); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

/* ==================
   KONDISI MATERI
   ================== */
.kondisi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.kondisi-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal);
}
.kondisi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kondisi-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent-dark); }
.kondisi-list { margin-top: 1.5rem; }
.kondisi-list li { margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-muted); }
.kondisi-list li i { color: var(--accent-primary); margin-top: 0.3rem; }

/* ==================
   PRICING
   ================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.pricing-card.popular {
  border: 2px solid var(--accent-primary);
  transform: scale(1.05);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-name { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-main); margin-bottom: 1rem; }
.pkg-price-normal { text-decoration: line-through; color: var(--text-light); font-size: 1.1rem; }
.pkg-price { font-size: 2.5rem; font-weight: 900; color: var(--accent-dark); line-height: 1; margin-bottom: 0.5rem; }
.pkg-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-light); padding-bottom: 2rem; }

.pkg-features { flex: 1; margin-bottom: 2rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; color: var(--text-main); font-size: 0.95rem; }
.pkg-features li i { color: var(--accent-primary); margin-top: 0.2rem; }
.pkg-features li.cross i { color: var(--danger-red); }
.pkg-features li.cross { color: var(--text-light); }

/* ==================
   KEUNTUNGAN GRID
   ================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--bg-body);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}
.benefit-icon {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: 12px;
  color: var(--accent-primary);
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.benefit-item h4 { margin-bottom: 0.5rem; font-family: var(--font-heading); font-size: 1.2rem; }
.benefit-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ==================
   FAQ ACCORDION
   ================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: var(--bg-white);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-dark);
  transition: var(--transition-fast);
}
.faq-question:hover { background: var(--bg-body); }
.faq-question i { color: var(--accent-primary); transition: transform 0.3s ease; }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-white);
  color: var(--text-muted);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; max-height: 500px; }

/* ==================
   CONTACT / CTA
   ================== */
.cta-box {
  background: var(--accent-dark);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin: 4rem 0;
  background-image: radial-gradient(circle at top right, #1e293b, #0f172a);
}

.cta-box h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1rem; }
.cta-box p { color: #cbd5e1; font-size: 1.2rem; margin-bottom: 2.5rem; }

/* Form Container */
.form-container {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 1.5rem; }
.form-control {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-main);
  width: 100%;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    clip-path: circle(0% at top right);
    transition: 0.5s ease-in-out;
  }
  .nav-links.active { clip-path: circle(150% at top right); }
  .mobile-toggle { display: block; }
  
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  
  .hero h1 { font-size: 2.2rem; }
  .features-banner { flex-direction: column; align-items: center; gap: 1rem; }
  
  .kondisi-card, .form-container, .benefit-item { padding: 1.5rem; }
  .pricing-card { padding: 2rem 1.2rem; }
  
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-5px); }
}
