/* ==========================================================================
   CetakBrow CSS - Dark Theme & Premium Aesthetics
   ========================================================================== */

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

:root {
  /* Colors */
  --bg-base: #090d16;
  --bg-card: #131b2e;
  --bg-card-hover: #1e293b;
  --border-color: #1e293b;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-maroon: #800020;
  --accent-maroon-hover: #9c102a;
  --accent-maroon-glow: rgba(128, 0, 32, 0.4);
  
  --accent-wa: #25d366;
  --accent-wa-hover: #20ba5a;
  --accent-wa-glow: rgba(37, 211, 102, 0.4);
  
  --accent-red-light: #ef4444;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color: var(--text-primary);
}

body {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-maroon);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  padding: 6px 16px;
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid var(--accent-maroon);
  color: var(--text-primary);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: transparent;
  background: linear-gradient(135deg, #ff4d6d, var(--accent-maroon-hover));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 8px 0;
  background: rgba(9, 13, 22, 0.95);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-maroon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-maroon);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-btn-container {
  display: flex;
  align-items: center;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-wa);
  color: #050505;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px var(--accent-wa-glow);
}

.nav-btn:hover {
  background: var(--accent-wa-hover);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-btn-container {
    display: none;
  }
}

/* ==================== BUTTON SYSTEM ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.btn-wa {
  background: var(--accent-wa);
  color: #050505;
  box-shadow: 0 10px 25px var(--accent-wa-glow);
}

.btn-wa:hover {
  background: var(--accent-wa-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--accent-wa-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(circle at 10% 20%, rgba(128, 0, 32, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(37, 211, 102, 0.05) 0%, transparent 40%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-tag-accent {
  width: 8px;
  height: 8px;
  background: var(--accent-wa);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-wa);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: transparent;
  background: linear-gradient(135deg, #ff4d6d 10%, var(--accent-maroon-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
}

@media (max-width: 992px) {
  .hero-desc {
    margin: 0 auto 36px;
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.poster-frame {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 
              0 0 40px rgba(128, 0, 32, 0.15);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.poster-frame:hover {
  transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
}

.poster-img {
  width: 100%;
  border-radius: var(--border-radius-md);
  display: block;
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(128, 0, 32, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid var(--accent-maroon);
  color: #ff4d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-content .btn-wa {
  border: 1px solid var(--accent-wa);
  color: var(--accent-wa);
  background: transparent;
  box-shadow: none;
}

.service-content .btn-wa:hover {
  background: var(--accent-wa);
  color: #000;
  box-shadow: 0 6px 16px var(--accent-wa-glow);
}

.video-showcase {
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/16;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 
              0 0 20px rgba(128,0,32,0.15);
  border: 4px solid var(--bg-card);
  background: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== SIZE ILLUSTRATION SECTION ==================== */
.size-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .size-comparison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.size-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.size-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  color: var(--text-secondary);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.size-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.size-btn.active {
  background: linear-gradient(135deg, var(--bg-card), rgba(128, 0, 32, 0.2));
  border-color: var(--accent-maroon);
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--accent-maroon-glow);
}

.size-btn-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.size-btn-dims {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.size-btn.active .size-btn-dims {
  color: #ff4d6d;
}

.size-visualizer-frame {
  width: 100%;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.size-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease-in-out;
}

.size-mockup-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
}

.size-mockup-badge {
  background: var(--accent-maroon);
  color: white;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--accent-maroon-glow);
}

/* ==================== INSTAGRAM GRID (Hasil Cetak) ==================== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}

.instagram-post {
  position: relative;
  aspect-ratio: 1/1;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.instagram-post-img-wrapper {
  width: 100%;
  height: 100%;
}

.instagram-post-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.instagram-post:hover .instagram-post-img-wrapper img {
  transform: scale(1.04);
}

.instagram-post-overlay {
  display: none;
}

/* ==================== GALLERY WITH TABS ==================== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--accent-maroon);
  color: white;
  border-color: var(--accent-maroon);
  box-shadow: 0 4px 12px var(--accent-maroon-glow);
}

.tab-btn-see-all {
  background: transparent;
  color: #ff4d6d;
  border: 1px solid rgba(255, 77, 109, 0.3);
}

.tab-btn-see-all:hover {
  background: rgba(255, 77, 109, 0.1);
  color: #ff4d6d;
  border-color: #ff4d6d;
}

@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.gallery-skeleton {
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #131b2e 25%, #1e293b 50%, #131b2e 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  background: #111;
  overflow: hidden;
  display: none;
  cursor: pointer;
}

.gallery-item.show {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-item-img-wrapper {
  position: absolute;
  inset: 0;
  background: #111;
  overflow: hidden;
}

.gallery-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-item-img-wrapper img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.gallery-item-btn {
  background: var(--accent-wa);
  color: #050505;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px var(--accent-wa-glow);
}

.gallery-item-btn:hover {
  background: var(--accent-wa-hover);
  transform: scale(1.05);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-maroon);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid var(--accent-maroon);
  color: #ff4d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ==================== BUNDLING PRICE TABLE ==================== */
.bundling-wrapper {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.bundling-header {
  text-align: center;
  margin-bottom: 36px;
}

.bundling-main-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .bundling-main-title {
    font-size: 1.3rem;
  }
}

.bundling-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.bundling-promo-text {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: transparent;
  background: linear-gradient(90deg, var(--accent-wa) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .bundling-promo-text {
    font-size: 1.1rem;
  }
}

.bundling-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bundling-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.bundling-table thead tr {
  background: linear-gradient(135deg, #0e1525, #131b2e);
}

.bundling-table th {
  padding: 18px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.bundling-table th:first-child {
  text-align: left;
  padding-left: 24px;
}

.bundling-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(30, 41, 59, 0.4);
  vertical-align: middle;
}

.bundling-table td:first-child {
  text-align: left;
  padding-left: 24px;
}

.bundling-table tbody tr {
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.bundling-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.bundling-table tbody tr:last-child td {
  border-bottom: none;
}

.bundling-th-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  margin-top: 2px;
}

.bundling-pkg-name {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.bundling-pkg-dim {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.bundling-price-web {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-wa);
}

.bundling-price-web::before {
  content: 'Rp ';
  font-size: 0.85rem;
  font-weight: 600;
}

.bundling-price-market {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
}

.bundling-price-market::before {
  content: 'Rp ';
  font-size: 0.8rem;
}

.bundling-price-market::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: #ef4444;
  transform: translateY(-50%);
}

.bundling-saving {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-wa);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 4px;
  white-space: nowrap;
  display: inline-block;
}

.bundling-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 2px solid var(--accent-wa);
  color: var(--accent-wa);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.bundling-btn-buy:hover {
  background: var(--accent-wa);
  color: #050505;
  box-shadow: 0 6px 20px var(--accent-wa-glow);
  transform: translateY(-2px);
}

.bundling-note {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 14px;
  padding-left: 4px;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .bundling-table th,
  .bundling-table td {
    padding: 14px 12px;
  }
  .bundling-table td:first-child,
  .bundling-table th:first-child {
    padding-left: 14px;
  }
  .bundling-price-web {
    font-size: 1rem;
  }
  .bundling-btn-buy {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* ==================== TESTIMONIAL CAROUSEL ==================== */
.testi-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: var(--bg-card);
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.testi-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
}

.testi-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testi-dot.active {
  background: var(--accent-wa);
  transform: scale(1.3);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(9, 13, 22, 0.75);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  cursor: pointer;
}

.testi-arrow:hover {
  background: var(--bg-card-hover);
  color: var(--accent-wa);
}

.testi-prev {
  left: 16px;
}

.testi-next {
  right: 16px;
}

@media (max-width: 1024px) {
  #testimoni {
    display: none;
  }
}

/* ==================== FINAL CALL TO ACTION ==================== */
.final-cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.final-cta-img-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.final-cta-img {
  width: 100%;
  display: block;
  filter: brightness(0.9);
}

.final-cta-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-cta-badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff4d6d;
}

.final-cta-badge-txt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.2;
}

.final-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta-desc {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #06090f;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* ==================== STICKY FLOATING WHATSAPP ==================== */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-wa);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px var(--accent-wa-glow);
  z-index: 999;
  animation: pulse 2s infinite;
}

.sticky-wa:hover {
  background: var(--accent-wa-hover);
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .sticky-wa {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ==================== FOTO LIGHTBOX ==================== */
.foto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 16, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.foto-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.foto-lightbox-img-wrap {
  position: relative;
  max-width: min(90vw, 720px);
  max-height: 70vh;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
              0 0 40px rgba(255, 77, 109, 0.15);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.foto-lightbox.active .foto-lightbox-img-wrap {
  transform: scale(1);
}

.foto-lightbox-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #0b0f1a;
}

.foto-lightbox-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--accent-wa);
  color: #050505;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px var(--accent-wa-glow);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s, background 0.2s ease, box-shadow 0.2s ease;
}

.foto-lightbox.active .foto-lightbox-btn {
  transform: translateY(0);
  opacity: 1;
}

.foto-lightbox-btn:hover {
  background: var(--accent-wa-hover);
  box-shadow: 0 12px 36px var(--accent-wa-glow);
  transform: translateY(-2px);
}

.foto-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.foto-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.1) rotate(90deg);
}

@media (max-width: 576px) {
  .foto-lightbox-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .foto-lightbox-img-wrap {
    max-width: 95vw;
  }
}
