:root {
  --primary: #8D6E63;
  --primary-dark: #3E2723;
  --primary-light: #D7CCC8;
  --bg: #FDFBF7;
  --surface: #FFFFFF;
  --surface-3: #F5EFE6;
  --text-main: #2D1B18;
  --text-muted: #6D4C41;
  --border: #EFEBE9;
  --radius: 16px;
  --success: #43A047;
  --danger: #E53935;
}

html {
  font-size: 14px;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

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

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

/* ─── Scroll Snap ──────────────────────── */
section {
  scroll-snap-align: start;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Prevent bleeding into next section */
}

#hero {
  padding-top: 0; /* Hero handles its own padding */
}

#problem {
  height: auto;
  min-height: 100vh;
}

#footer-section {
  height: auto;
  min-height: auto;
  scroll-snap-align: end; /* Snap to bottom of the page */
}

/* ─── Shared ───────────────────────────── */
.section-padding {
  padding: 3rem 5%;
}

/* Entrance Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.text-center { text-align: center; }

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
}

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

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Navigation ───────────────────────── */
nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(62, 39, 35, 0.2);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.65rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
}

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

.btn-solid {
  background: var(--primary-dark);
  color: white;
  border: 1.5px solid var(--primary-dark);
}

.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(62, 39, 35, 0.2);
}

/* ─── Hero Section ─────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: radial-gradient(circle at top right, #EFEBE9 0%, transparent 60%);
}

.hero-content {
  flex: 1.2;
  max-width: 650px;
}

h1 {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -2.5px;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
}

.hero-cta .btn {
  padding: 1rem 2.5rem;
}

.hero-cta .btn-outline {
  border-color: transparent;
}

.hero-cta .btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.hero-visual {
  position: relative;
  width: 100%;
  flex: 1.1;
  max-width: 650px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.visual-box {
  width: 100%;
  height: 85%;
  background: var(--surface);
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(62, 39, 35, 0.1);
  border: 1px solid var(--border);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mockup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  transform-origin: center center;
  z-index: 5;
  filter: drop-shadow(0 20px 50px rgba(62, 39, 35, 0.15));
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Interactive Parallax 3D Hover Animation */
.hero-visual:hover .visual-box {
  transform: translate(-50%, -50%) scale(1.02);
  box-shadow: 0 40px 80px rgba(62, 39, 35, 0.15);
}

.hero-visual:hover .hero-mockup {
  transform: translate(-50%, -50%) scale(0.88) translateY(-10px);
  filter: drop-shadow(0 30px 60px rgba(62, 39, 35, 0.25));
}

/* Override wa-outer inside hero-mockup to float it cleanly */
.hero-mockup .wa-outer {
  background: transparent !important;
  min-height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.hero-mockup .wa-outer::before {
  display: none !important;
}

.hero-mockup .wa-mockup {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.visual-ornament {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--primary-light);
  border-radius: 50%;
  filter: blur(100px);
  top: -120px;
  right: -120px;
  opacity: 0.4;
}

/* ─── Floating UI Elements ──────────────── */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  padding: 1.2rem;
  z-index: 10;
  animation: float-card 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-card {
  0%, 100% { transform: translateY(-50%) translate(0, 0); }
  50% { transform: translateY(-50%) translate(0, -15px); }
}

.glass-chart {
  left: 30px;
  top: 50%;
  width: 160px;
  height: 110px;
  animation-delay: 0s;
}

.glass-chart-grid {
  position: absolute;
  inset: 1.2rem;
  z-index: 1;
}

.grid-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.grid-line.horizontal {
  left: 0; right: 0; height: 1px;
}

.grid-line.vertical {
  top: 0; bottom: 0; width: 1px;
}

.glass-chart-line {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-chart-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 4px 6px rgba(196, 146, 106, 0.3));
}

.glass-stats {
  right: 30px;
  top: 40%;
  width: 200px;
  animation-delay: 1.5s;
}

.glass-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.glass-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: calc(50% - 0.4rem);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.glass-stat-item.full-width {
  width: 100%;
  justify-content: flex-start;
}

.glass-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196, 146, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glass-stat-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.glass-stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.glass-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 20px;
  width: 100%;
}

.glass-mini-chart .bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--primary);
  opacity: 0.8;
}

/* Bubbles */
.floating-bubbles {
  position: absolute;
  inset: -100px;
  pointer-events: none;
  z-index: 1;
}

.bubble-float {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 10px 20px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.5);
}

.b1 { width: 60px; height: 60px; top: 10%; left: 10%; animation: float-bubble 8s infinite ease-in-out; }
.b2 { width: 40px; height: 40px; top: 70%; left: -5%; animation: float-bubble 10s infinite ease-in-out 1s; }
.b3 { width: 80px; height: 80px; bottom: 5%; right: 5%; animation: float-bubble 12s infinite ease-in-out 2s; }
.b4 { width: 30px; height: 30px; top: 20%; right: 15%; animation: float-bubble 9s infinite ease-in-out 3s; }
.b5 { width: 50px; height: 50px; bottom: 30%; right: -10%; animation: float-bubble 11s infinite ease-in-out 1.5s; }

@keyframes float-bubble {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(15px); }
  66% { transform: translateY(-15px) translateX(-20px); }
}

/* ─── Problem vs Solution Redesign ──────────────── */
.badge-switch {
  background: #FDF4EB !important;
  color: #a45a2a !important;
  border: 1px solid rgba(164, 90, 42, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  font-weight: 800;
}

.section-title-custom {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -2px;
}

.section-title-custom .vs-text {
  color: #c4926a;
  font-style: italic;
  font-family: serif;
  font-weight: 500;
}

.section-title-custom .solution-text {
  color: #2e7d32;
}

.new-prob-sol-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.prob-sol-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.new-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.new-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Background Gradients for Cards */
.problem-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffcfc 100%);
  border: 1px solid #FFEBEB;
}

.solution-card {
  background: linear-gradient(135deg, #ffffff 0%, #fcfdfc 100%);
  border: 1px solid #EBFEEF;
}

/* Icon Wrappers */
.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.problem-card .card-icon-wrapper {
  background: #FFF0F0;
  color: #E53935;
  border: 1px solid rgba(229, 57, 53, 0.1);
}

.solution-card .card-icon-wrapper {
  background: #EBFEEF;
  color: #43A047;
  border: 1px solid rgba(67, 160, 71, 0.1);
}

.new-card:hover .card-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

/* Content */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.badge-problem {
  background: #FFEBEE;
  color: #C62828;
}

.badge-solution {
  background: #E8F5E9;
  color: #2E7D32;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.card-content p {
  font-size: 0.98rem;
  color: #666666;
  line-height: 1.6;
}

/* Decorative Dotted Grid in Bottom Right Corner */
.dotted-grid {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 90px;
  height: 90px;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(#000 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  border-bottom-right-radius: 24px;
}

.problem-card .dotted-grid {
  background-image: radial-gradient(#E53935 1.5px, transparent 1.5px);
}

.solution-card .dotted-grid {
  background-image: radial-gradient(#43A047 1.5px, transparent 1.5px);
}

/* Responsive */
@media (max-width: 992px) {
  .new-prob-sol-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── Agent Squad Redesign ──────────────────────── */
.squad-text {
  color: #a45a2a;
}

.agent-squad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.agent-card-mini {
  background: #FAF5F0; /* Soft warm light brown background */
  border: 1px solid #F0E4D8;
  border-radius: 28px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(141, 91, 76, 0.04);
}

.agent-card-mini:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(141, 91, 76, 0.12);
  border-color: #e0d0c0;
}

.agent-avatar-container {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: #EEDFD2; /* slightly darker warm brown accent box */
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(141, 91, 76, 0.08);
  transition: all 0.3s ease;
}

.agent-card-mini:hover .agent-avatar-container {
  transform: scale(1.03);
}

.agent-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-card-mini h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3E2723;
  margin-bottom: 0.5rem;
}

.agent-badge-role {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(141, 91, 76, 0.08);
  color: #8D5B4C;
}

.agent-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  border-top: 1px solid rgba(141, 91, 76, 0.15);
}

.agent-features-list li {
  font-size: 0.95rem;
  color: #5D4037;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(141, 91, 76, 0.08);
  text-align: center;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.agent-features-list li:hover {
  color: #3E2723;
}

.agent-features-list li:last-child {
  border-bottom: none;
}

.squad-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #5D4037;
}

.squad-footer strong {
  color: #a45a2a;
}

.shield-icon {
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .agent-squad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .agent-squad-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Fitur Unggulan Redesign ──────────────── */
.underline-title {
  position: relative;
  margin-bottom: 2rem;
}

.underline-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #a45a2a;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(141, 91, 76, 0.08);
  border-color: rgba(164, 90, 42, 0.15);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #FAF5F0; /* Soft warm beige background */
  border: 1px solid rgba(164, 90, 42, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: #a45a2a;
  box-shadow: 0 6px 15px rgba(164, 90, 42, 0.04);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.05) rotate(3deg);
  background: #EEDFD2;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  position: relative;
  letter-spacing: -0.5px;
}

.feature-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #c4926a;
  border-radius: 1px;
}

.feature-card p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.feature-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: #FAF5F0;
  color: #8D5B4C;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: auto;
  border: 1px solid rgba(164, 90, 42, 0.05);
}

.check-svg {
  color: #a45a2a;
  flex-shrink: 0;
}

/* Feature Footer Styling */
.features-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.features-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAF5F0;
  border: 1px solid rgba(164, 90, 42, 0.1);
  padding: 1.5rem 2.5rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(141, 91, 76, 0.03);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #5D4037;
}

.shield-circle {
  font-size: 1.2rem;
}

.footer-divider {
  width: 1px;
  height: 24px;
  background: rgba(164, 90, 42, 0.15);
}

.footer-right {
  font-size: 0.95rem;
  font-weight: 800;
  color: #a45a2a;
  letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-footer-content {
    flex-direction: column;
    gap: 1.2rem;
    border-radius: 28px;
    padding: 1.5rem;
    text-align: center;
  }
  
  .footer-divider {
    display: none;
  }
}

/* ─── Mockup ───────────────────────────── */
.mockup-container {
  max-width: 1000px;
  margin: 0 auto;
}

.mockup-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(62, 39, 35, 0.12);
  border: 6px solid var(--surface);
  background: var(--primary-dark);
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.video-placeholder:hover img {
  opacity: 0.8;
}

.play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.video-placeholder:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-light);
}

/* ─── Pricing Redesign ──────────────────────────── */
.pricing-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.pricing-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pricing-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 146, 106, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}

.pricing-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

.pricing-section .text-center,
.pricing-section .section-title,
.pricing-section .section-subtitle {
  position: relative;
  z-index: 1;
}

.pricing-section .section-title {
  color: #fff;
}

.pricing-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.badge-pricing {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
}

.pricing-title {
  color: #fff !important;
}

.pricing-subtitle {
  color: rgba(255,255,255,0.65) !important;
}

/* Single Card Wrapper */
.pricing-single-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-single-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* Left side */
.pricing-card-left {
  flex: 0 0 300px;
  background: linear-gradient(145deg, #3E2723 0%, #5D3A2E 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-left::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(196,146,106,0.2) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: #e8c9a8;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
}

.pricing-from {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

.pricing-price-display {
  display: flex;
  flex-direction: column;
}

.pricing-range {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.pricing-sep {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.pricing-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 0.4rem;
  display: block;
}

.pricing-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c4926a, #a45a2a);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.8rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(164, 90, 42, 0.4);
  margin-top: auto;
  letter-spacing: 0.02em;
}

.pricing-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(164, 90, 42, 0.5);
  background: linear-gradient(135deg, #d4a27a, #b46a3a);
}

/* Divider */
.pricing-card-divider {
  width: 1px;
  background: rgba(0,0,0,0.07);
  flex-shrink: 0;
}

/* Right side */
.pricing-card-right {
  flex: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.pricing-card-right-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.pricing-card-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.pricing-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.feat-row:last-child {
  border-bottom: none;
}

.feat-icon-wrap {
  width: 36px;
  height: 36px;
  background: #E8F5E9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feat-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #2D1B18;
  line-height: 1.4;
}

.feat-desc {
  font-size: 0.85rem;
  color: #6D4C41;
  line-height: 1.4;
}

.pricing-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FAF5F0;
  color: #5D4037;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(164, 90, 42, 0.1);
}

/* Scroll hint color override */
.pricing-section .scroll-down-hint {
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .pricing-single-card {
    flex-direction: column;
  }
  .pricing-card-left {
    flex: none;
    width: 100%;
    padding: 2.5rem 2rem;
  }
  .pricing-card-divider {
    width: 100%;
    height: 1px;
  }
  .pricing-card-right {
    padding: 2.5rem 2rem;
  }
}

/* ─── Steps Enhanced ────────────────────────────── */
.how-it-works-section {
  background: #FDFBF7;
  position: relative;
}

.steps-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.step-item-enhanced {
  text-align: center;
  position: relative;
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(62, 39, 35, 0.03);
}

.step-item-enhanced:hover {
  transform: translateY(-10px);
  border-color: rgba(164, 90, 42, 0.2);
  box-shadow: 0 20px 50px rgba(141, 91, 76, 0.1);
}

.step-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-circle-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FAF5F0, #EEDFD2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(164, 90, 42, 0.15);
  border: 2px solid rgba(164, 90, 42, 0.1);
}

.step-item-enhanced .step-circle-inner svg {
  color: #3E2723;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
}

.step-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.step-visual {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 1 visual: dots */
.step-visual-box {
  display: flex;
  gap: 6px;
}

.step-visual-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D7CCC8;
}

.step-visual-dot:nth-child(1) { background: #8D6E63; animation: pulse 1.5s infinite; }
.step-visual-dot:nth-child(2) { background: #8D6E63; animation: pulse 1.5s infinite 0.3s; }
.step-visual-dot:nth-child(3) { background: #8D6E63; animation: pulse 1.5s infinite 0.6s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Step 2 visual: grid */
.step-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.step-grid-item {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #D7CCC8;
}

.step-grid-item:nth-child(1) { background: #8D6E63; }
.step-grid-item:nth-child(2) { background: #A1887F; }
.step-grid-item:nth-child(3) { background: #8D6E63; }
.step-grid-item:nth-child(4) { background: #A1887F; }

/* Step 3 visual: cards (VA + QRIS) */
.step-visual-card {
  background: #fff;
  border: 1px solid #D7CCC8;
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.step-visual-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.step-card-icon {
  flex-shrink: 0;
}

.step-card-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3E2723;
}

/* Step 4 visual: WhatsApp bubbles */
.step-visual-wa {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-bubble {
  width: 18px;
  height: 12px;
  border-radius: 10px 10px 10px 0;
  background: #E3F2FD;
  position: relative;
}

.wa-bubble::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 4px;
  background: #E3F2FD;
}

.wa-bubble:nth-child(1) { width: 20px; height: 14px; }
.wa-bubble:nth-child(2) { width: 16px; height: 10px; animation: floatBubble 2s infinite ease-in-out; }
.wa-bubble:nth-child(3) { width: 22px; height: 16px; animation: floatBubble 2s infinite ease-in-out 1s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .steps-grid-enhanced {
    grid-template-columns: 1fr;
  }
  .step-item-enhanced {
    padding: 2rem 1.2rem;
  }
  .step-circle {
    width: 56px;
    height: 56px;
  }
  .step-title {
    font-size: 1.2rem;
  }
}

/* ─── Footer ───────────────────────────── */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 5rem 5% 3rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  gap: 6rem;
}

.link-group h4 {
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 1rem;
}

.link-group a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.link-group a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  h1 { font-size: 3.2rem; }
  .hero-visual {
    max-width: 380px;
    height: 460px;
  }
  .hero-visual .visual-box {
    width: 280px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(20px, -20px);
  }
  .hero-mockup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(-20px, 20px) scale(0.72);
  }
  .hero-visual:hover .visual-box {
    transform: translate(-50%, -50%) translate(30px, -30px) scale(1.02);
  }
  .hero-visual:hover .hero-mockup {
    transform: translate(-50%, -50%) translate(-30px, 30px) scale(0.75);
  }
  .prob-sol-container { flex-direction: column; gap: 2rem; }
  .agent-squad-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
  .hero { 
    flex-direction: column; 
    text-align: center; 
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 180px !important; /* Increased space for absolute navbar */
    justify-content: flex-start !important; 
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content { 
    max-width: 100%; 
    margin-bottom: 3rem; 
  }
  
  h1 { 
    font-size: 2.3rem; 
    letter-spacing: -1px; 
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .hero-desc { 
    font-size: 1.05rem; 
    margin: 0 auto 2.5rem; 
    line-height: 1.6;
  }
  
  .hero-cta { 
    justify-content: center; 
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .hero-visual {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 360px;
    margin: 0 auto 2rem;
    justify-content: center;
    align-items: center;
  }
  
  .hero-visual .visual-box {
    width: 220px;
    height: 280px;
    border-radius: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(15px, -15px);
  }
  
  .hero-mockup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(-15px, 15px) scale(0.55);
  }
  
  .hero-visual:hover .visual-box {
    transform: translate(-50%, -50%) translate(22px, -22px) scale(1.02);
  }
  
  .hero-visual:hover .hero-mockup {
    transform: translate(-50%, -50%) translate(-22px, 22px) scale(0.58);
  }

  .section-title { font-size: 2.2rem; }
  .footer-links { gap: 3rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .agent-squad-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 3rem 1.5rem; }
}
