:root {
  /* Core Colors */
  --primary: #0f172a; /* Deep rich navy/black for text and strong elements */
  --accent: #ff4a22; /* Vibrant modern orange */
  --accent-hover: #e03b15;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --bg: #f4f7f9; /* Clean cool light gray */
  --text: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  
  /* Radii */
  --radius: 24px;
  --radius-sm: 12px;
  --radius-full: 999px;
  
  /* Typography */
  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows - Layered for a premium "glass/soft" effect */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-accent: 0 8px 24px rgba(255, 74, 34, 0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease, transform 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ======== HEADER ======== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 40px; width: auto; max-width: 180px; display: block; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); transition: color 0.2s ease; }
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--accent); font-weight: 700; }

.btn-nav { 
  background: var(--accent); 
  color: #fff !important; 
  padding: 10px 24px; 
  border-radius: var(--radius-full); 
  font-size: 0.95rem; 
  font-weight: 700; 
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-nav:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.mobile-toggle { display: none; background: none; font-size: 1.5rem; color: var(--accent); }

/* ======== HERO ======== */
.hero { 
  padding: 80px 0 64px; 
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(244,247,249,0.95) 100%), url('../img/bali-road-scenery.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
/* Decorative Blob */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,74,34,0.06) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { 
  font-size: 3.5rem; 
  font-weight: 800; 
  line-height: 1.1; 
  letter-spacing: -1.5px; 
  margin-bottom: 20px; 
  color: var(--primary);
}
.hero-content h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero-content h1 em::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 0;
  width: 100%; height: 8px;
  background: rgba(255, 74, 34, 0.2);
  z-index: -1;
  border-radius: 4px;
}
.hero-content > p { 
  font-size: 1.1rem; 
  color: var(--text-secondary); 
  max-width: 500px; 
  margin-bottom: 32px; 
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { 
  display: inline-flex; align-items: center; gap: 8px; 
  background: var(--accent); color: #fff !important; 
  padding: 16px 32px; 
  border-radius: var(--radius-full); 
  font-weight: 700; font-size: 1rem; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { 
  background: var(--accent-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 12px 28px rgba(255, 74, 34, 0.35);
}
.btn-secondary { 
  display: inline-flex; align-items: center; gap: 8px; 
  padding: 16px 32px; 
  border-radius: var(--radius-full); 
  font-weight: 700; font-size: 1rem; 
  background: #ffffff;
  color: var(--primary) !important;
  border: 1px solid var(--border); 
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { 
  border-color: var(--primary); 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-img { position: relative; }
/* Image container styling to look like a premium showcase */
.hero-img::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 10%; right: 10%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 80%);
  z-index: -1;
}
.hero-img img { 
  width: 100%; 
  object-fit: contain; 
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-badge { 
  position: absolute; bottom: 24px; left: 0; 
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px 24px; 
  border-radius: var(--radius-sm); 
  box-shadow: var(--shadow-lg); 
  border: 1px solid rgba(255,255,255,0.5);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge strong { font-size: 1.4rem; display: block; letter-spacing: -0.5px; color: var(--primary); font-weight: 800; }
.hero-badge span { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* ======== TRUST BAR ======== */
.trust-bar { 
  display: grid; grid-template-columns: repeat(4, 1fr); 
  background: #ffffff;
  border-radius: var(--radius); 
  box-shadow: var(--shadow-md);
  margin-top: -30px; 
  position: relative;
  z-index: 10;
}
.trust-item { padding: 32px 24px; text-align: center; position: relative; }
.trust-item::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border);
}
.trust-item:last-child::after { display: none; }
.trust-item strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.trust-item span { font-size: 0.9rem; color: var(--text-secondary); margin-top: 6px; display: block; font-weight: 500; }

/* ======== SECTIONS ======== */
.section { padding: 100px 0; }
.section-intro { max-width: 600px; margin-bottom: 48px; }
.section-intro h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; color: var(--primary); }
.section-intro p { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; color: var(--primary); }
.section-header a { font-size: 1rem; color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; transition: transform 0.2s; }
.section-header a:hover { transform: translateX(4px); }

/* ======== PRODUCT GRID ======== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; justify-content: center; }
.filter-btn { padding: 10px 24px; border: 1px solid var(--border); background: #fff; border-radius: 100px; font-weight: 700; font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-sm); }

.product-card { 
  background: #fff; 
  border-radius: var(--radius); 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--border);
  position: relative;
  display: flex; flex-direction: column;
  height: 100%;
}
.product-card:hover { 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-8px); 
  border-color: var(--accent);
}
.product-card-img { 
  background: radial-gradient(circle at center, #ffffff 0%, var(--surface-alt) 100%);
  aspect-ratio: 4/3; 
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.product-card-img img { 
  width: 90%; height: auto; object-fit: contain; 
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-body h3 { 
  font-size: 1.15rem; font-weight: 800; color: var(--primary); 
  margin-bottom: 12px; letter-spacing: -0.5px; 
  line-height: 1.4;
  min-height: 3.2rem; /* Ensures consistent height for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price { 
  font-size: 1.5rem; font-weight: 800; color: var(--accent); 
  display: flex; align-items: baseline; gap: 4px; 
  margin-top: auto; /* Pushes price and meta to the bottom */
  padding-top: 12px;
}
.product-price small { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.product-meta { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; 
  margin-top: 16px; padding-top: 16px; 
  border-top: 1px dashed var(--border); 
}
.product-meta span { font-size: 0.75rem; color: var(--text-secondary); font-weight: 600; display: block; }
.product-card-link { 
  display: block; padding: 18px; 
  text-align: center; font-weight: 800; font-size: 0.9rem; 
  color: var(--primary); 
  background: var(--surface-alt);
  transition: all 0.2s; 
  border-top: 1px solid var(--border);
}
.product-card:hover .product-card-link { background: var(--accent); color: #fff; }

/* ======== USP GRID ======== */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-item { 
  padding: 40px 32px; 
  border-radius: var(--radius); 
  background: #ffffff; 
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease; 
  border: 1px solid transparent;
}
.usp-item:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 74, 34, 0.1);
}
.usp-icon { 
  width: 56px; height: 56px; 
  background: rgba(255, 74, 34, 0.08); 
  border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; 
  margin-bottom: 20px; 
  transition: transform 0.3s ease;
}
.usp-item:hover .usp-icon { transform: scale(1.1) rotate(5deg); background: var(--accent); }
.usp-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; transition: stroke 0.3s ease; }
.usp-item:hover .usp-icon svg { stroke: #fff; }
.usp-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.usp-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* ======== HOW IT WORKS / STEPS ======== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-item { 
  padding: 32px 24px; 
  border-radius: var(--radius); 
  background: #ffffff; 
  position: relative; 
  counter-increment: step; 
  box-shadow: var(--shadow-sm);
}
.step-item::before { 
  content: '0' counter(step); 
  font-size: 3rem; font-weight: 800; 
  color: var(--bg); 
  position: absolute; top: 16px; right: 24px; line-height: 1; 
  z-index: 0;
  transition: color 0.3s ease;
}
.step-item:hover::before { color: rgba(255, 74, 34, 0.05); }
.step-item h3 { position: relative; z-index: 1; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.step-item p { position: relative; z-index: 1; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* ======== PRICE TABLE ======== */
.price-section-table { 
  width: 100%; border-collapse: separate; border-spacing: 0; 
  background: #ffffff; border-radius: var(--radius); 
  overflow: hidden; box-shadow: var(--shadow-md); 
}
.price-section-table th, .price-section-table td { 
  padding: 20px 24px; text-align: left; font-size: 1rem; 
  border-bottom: 1px solid var(--border); 
}
.price-section-table th { 
  background: var(--primary); 
  font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; 
}
.price-section-table tr:last-child td { border-bottom: none; }
.price-section-table tr { transition: background 0.2s ease; }
.price-section-table tr:hover td { background: var(--surface-alt); }
.price-section-table td:first-child { font-weight: 700; color: var(--primary); }
.price-section-table td:nth-child(2) { color: var(--accent); font-weight: 800; }
.table-note { font-size: 0.9rem; color: var(--text-secondary); margin-top: 16px; font-weight: 500; }

/* ======== AREA LAYANAN ======== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.area-card { 
  padding: 40px; border-radius: var(--radius); 
  background: #ffffff; box-shadow: var(--shadow-sm); 
  border-top: 4px solid var(--primary);
}
.area-card:first-child { border-top-color: var(--accent); }
.area-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: var(--primary); }
.area-card ul { padding: 0; }
.area-card li { 
  padding: 10px 0; font-size: 1rem; color: var(--text-secondary); 
  display: flex; align-items: center; gap: 12px; font-weight: 500; 
}
.area-card li::before { 
  content: ''; width: 20px; height: 20px; 
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 6L9 17L4 12" stroke="%23ff4a22" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  flex-shrink: 0; 
}

/* ======== SYARAT SEWA ======== */
.syarat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.syarat-card { 
  padding: 40px; border-radius: var(--radius); 
  background: #ffffff; box-shadow: var(--shadow-sm); 
}
.syarat-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: var(--primary); }
.syarat-card li { 
  padding: 10px 0; font-size: 1rem; color: var(--text-secondary); 
  display: flex; align-items: center; gap: 12px; font-weight: 500; 
}
.syarat-card li::before { 
  content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; 
}

/* ======== TESTIMONI ======== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card { 
  padding: 40px 32px; border-radius: var(--radius); 
  background: #ffffff; box-shadow: var(--shadow-sm); 
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 20px; right: 32px;
  font-size: 6rem; color: rgba(0,0,0,0.03); font-family: serif; line-height: 1; font-weight: bold;
}
.testi-card .stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }
.testi-card blockquote { font-size: 1.05rem; color: var(--primary); line-height: 1.7; margin-bottom: 24px; font-style: italic; font-weight: 500; }
.testi-card cite { font-size: 0.95rem; color: var(--text-secondary); font-style: normal; display: block; font-weight: 700; }

/* ======== FAQ ======== */
.faq-list { max-width: 800px; margin: 0 auto; background: #ffffff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 16px 40px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.faq-item p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ======== CTA ======== */
.cta-block { 
  background: var(--primary); color: #fff; 
  border-radius: var(--radius); padding: 64px 56px; 
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; 
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-block::before {
  content: ''; position: absolute; right: -10%; top: -50%;
  width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-block h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.cta-block p { opacity: 0.8; font-size: 1.1rem; max-width: 500px; line-height: 1.6; }
.cta-block .phone { font-size: 1rem; opacity: 0.7; margin-top: 12px; font-weight: 600; }
.btn-wa { 
  display: inline-flex; align-items: center; gap: 12px; 
  background: #25d366; color: #fff !important; 
  padding: 20px 40px; border-radius: var(--radius-full); 
  font-weight: 800; font-size: 1.1rem; white-space: nowrap; 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-4px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }

/* ======== FOOTER ======== */
.footer { background: #ffffff; padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-grid h4 { font-size: 1rem; font-weight: 800; margin-bottom: 20px; color: var(--primary); }
.footer-grid p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.footer-grid a { font-size: 0.95rem; color: var(--text-secondary); display: block; line-height: 2; font-weight: 500; transition: color 0.2s; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.9rem; color: var(--text-secondary); }

/* ======== ADVANCED UI COMPONENTS ======== */
/* Floating WA Button */
.fab-wa { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4); z-index: 1000; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.fab-wa:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); }
.fab-wa svg { width: 34px; height: 34px; fill: white; }

/* FAQ Accordion (Overrides previous .faq-item) */
details.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; transition: all 0.3s ease; }
details.faq-item summary { font-size: 1.15rem; font-weight: 700; color: var(--primary); list-style: none; position: relative; padding-right: 30px; outline: none; cursor: pointer; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.8rem; font-weight: 400; color: var(--accent); transition: transform 0.3s ease; line-height: 1; }
details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-content { padding-top: 16px; font-size: 1rem; color: var(--text-secondary); line-height: 1.7; animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ======== TESTIMONIALS ======== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e03b15);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.testi-author span { font-size: 0.8rem; color: var(--text-secondary); }
.testi-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.testi-note span { color: #f59e0b; font-weight: 700; font-size: 1rem; }

/* Badges */
.badge-terlaris { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, #ff4a22 0%, #e03b15 100%); color: white; padding: 6px 14px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 100px; z-index: 10; box-shadow: 0 4px 12px rgba(255, 74, 34, 0.3); }
.badge-promo { position: absolute; top: 16px; left: 16px; background: linear-gradient(135deg, #059669 0%, #047857 100%); color: white; padding: 6px 14px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 100px; z-index: 10; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3); }

/* Scroll Animations */
.observe-anim { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.observe-anim.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Breadcrumb */
.breadcrumb { margin-bottom: 32px; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--primary); font-weight: 700; }

/* Product Detail Specifics */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.detail-img-container { background: #fff; border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.detail-img-container img { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); }
.detail-header { margin-bottom: 32px; }
.detail-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; margin-bottom: 12px; }
.detail-header .badge { display: inline-block; padding: 6px 16px; background: rgba(255,74,34,0.1); color: var(--accent); border-radius: 100px; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 16px; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.price-card { background: #fff; border: 1px solid var(--border); padding: 20px 16px; border-radius: var(--radius-sm); text-align: center; transition: all 0.3s ease; }
.price-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--accent); background: rgba(255,74,34,0.02); }
.price-card .label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 8px; }
.price-card .value { font-size: 1.25rem; font-weight: 800; color: var(--primary); display: block; }
.price-card .save { font-size: 0.75rem; color: #059669; font-weight: 700; margin-top: 4px; display: block; }

.detail-features { margin-bottom: 40px; }
.detail-features h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
.feature-item svg { width: 18px; height: 18px; stroke: #059669; fill: none; stroke-width: 3; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #fff; padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.spec-item { border-bottom: 1px solid var(--surface-alt); padding-bottom: 10px; }
.spec-item:last-child, .spec-item:nth-last-child(2) { border-bottom: none; }
.spec-label { display: block; font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 4px; }
.spec-value { display: block; font-size: 1rem; color: var(--primary); font-weight: 700; }

@media (max-width: 992px) {
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-img-container { position: static; padding: 30px; }
  .detail-header h1 { font-size: 2rem; }
  .price-cards { grid-template-columns: 1fr; }
}

/* Content Block */
.content-block { max-width: 800px; }
.content-block h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; letter-spacing: -0.5px; }
.content-block p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.content-block ul { margin-bottom: 24px; }
.content-block li { margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--text-secondary); }
.content-block li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .product-grid, .usp-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content > p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; animation: slideUpMobile 0.8s forwards; }
  @keyframes slideUpMobile { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }
  .trust-bar { margin-top: 40px; }
}
@media (max-width: 768px) {
  .nav { 
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; height: calc(100vh - 72px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 99;
    padding: 32px 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  .nav.nav-open { display: flex; animation: navFadeIn 0.3s ease forwards; }
  @keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav a { 
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .nav a:hover, .nav a.active { color: var(--primary); }
  .btn-nav { width: 100%; text-align: center; }
  .mobile-toggle { display: block; }
  
  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .hero-actions a { width: 100%; justify-content: center; }
  
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .usp-grid, .steps, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: 0; box-shadow: none; border-top: 1px solid var(--border); }
  .trust-item::after { display: none; }
  .trust-item { border-bottom: 1px solid var(--border); }
  
  .section-header h2 { font-size: 1.75rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  .cta-block { grid-template-columns: 1fr; text-align: center; padding: 32px 20px; }
  .cta-block h2 { font-size: 1.5rem; }
  .cta-block .btn-wa { justify-content: center; }
  
  .price-section-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  
  .area-grid, .syarat-grid, .kontak-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-img-container { position: static; }
  .price-cards { grid-template-columns: 1fr; }
  
  .fab-wa { width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2rem; }
  .trust-bar { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.4rem; }
  .cta-block { padding: 24px 16px; }
  .cta-block h2 { font-size: 1.25rem; }
  .faq-list { padding: 8px 20px; }
  .testi-card { padding: 16px; }
  .product-card-body { padding: 16px; }
  .btn-wa { padding: 14px 24px; font-size: 0.9rem; }
}

/* ======== BADGE TYPE (Tabel Harga) ======== */
.badge-type {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.badge-type.matic { background: rgba(30,41,59,0.08); color: var(--primary); }
.badge-type.premium { background: rgba(255,74,34,0.1); color: var(--accent); }
.badge-type.retro { background: rgba(16,185,129,0.1); color: #059669; }

