:root {
  --primary: #000000;
  --primary-green: #10b981;
  /* Emerald bright green */
  --primary-green-hover: #059669;
  --bg-color: #f8f9fa;
  --text-main: #2d3748;
  --text-muted: #718096;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --radius: 12px;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header, section, footer {
  /* Removed scroll-snap-align */
}

/* UNIFIED ALIGNMENT CONTAINER */
.align-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mt-4 {
  margin-top: 32px;
}

.relative-z {
  position: relative;
  z-index: 10;
}

/* THIN TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  font-weight: 300;
  /* Thin / Light font weight requested */
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* BUTTONS */
.btn-primary-green {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.btn-icon svg {
  margin-right: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(2, 40, 28, 0.98);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 992px) {
  .nav-center {
    display: none;
  }
}

.nav-center a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-center a:hover {
  opacity: 0.8;
}

.logo img {
  height: 44px;
  display: block;
  filter: brightness(0) invert(1);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background-image: url('images/hero-bg-bright.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}



.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Immersive Aurora Green Effect */
  background-color: #023827; /* Brightened green base to remove gloominess */
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(4, 120, 87, 0.45), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(52, 211, 153, 0.2), transparent 50%);
  background-size: 200% 200%;
  animation: immersiveAurora 12s ease-in-out infinite alternate;
}
@keyframes immersiveAurora {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%; }
  50% { background-position: 50% 100%, 0% 50%, 100% 0%; }
  100% { background-position: 100% 50%, 0% 100%, 0% 0%; }
}

/* BACKGROUND ANIMATION */
.hero-bg-anim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.hero-bg-anim svg {
  width: 100%;
  height: 100%;
}
.pulse {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.pulse-orange { stroke: #f97316; }
.pulse-gold { stroke: #fbbf24; }

.p1 { stroke-dasharray: 150 4000; animation: dash 6s linear infinite; }
.p2 { stroke-dasharray: 200 4500; animation: dash 8s linear infinite 2s; }
.p3 { stroke-dasharray: 100 3500; animation: dash 5s linear infinite 1s; }
.p4 { stroke-dasharray: 250 5000; animation: dash 9s linear infinite 4s; }
.p5 { stroke-dasharray: 120 4000; animation: dash 7s linear infinite 3s; }

@keyframes dash {
  0% { stroke-dashoffset: 250; }
  100% { stroke-dashoffset: -4000; }
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 800px;
}



[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-scroll-reveal].sr-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  color: var(--white);
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 300;
}

/* Cormorant Garamond accent words in headline */
.headline-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.22em;
  letter-spacing: -0.01em;
  color: #6ee7b7;
  font-synthesis: none;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

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

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-trust {
  margin-top: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* TRUSTED BY STRIP MARQUEE */
.trusted-by {
  padding: 60px 0;
  text-align: center;
  background: #f6fcf8;
  overflow: hidden;
  position: relative;
}
.trusted-by::before,
.trusted-by::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.trusted-by::before {
  left: 0;
  background: linear-gradient(to right, #f6fcf8 0%, rgba(246,252,248,0) 100%);
}
.trusted-by::after {
  right: 0;
  background: linear-gradient(to left, #f6fcf8 0%, rgba(246,252,248,0) 100%);
}
.trusted-by p {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.marquee-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 80px;
  animation: scrollMarquee 40s linear infinite;
  align-items: center;
  padding-right: 80px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading), sans-serif;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.brand-logo:hover {
  opacity: 1;
  color: var(--primary-green);
}
.brand-logo svg {
  width: 28px;
  height: 28px;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION COMMON */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 60px;
}
.section-title span {
  color: var(--primary-green);
}

/* PROBLEM SECTION */
.problem-section {
  background-color: #f6fcf8;
  padding: 100px 0;
}
.problem-header {
  max-width: 800px;
  margin-bottom: 60px;
}
.label-masalah {
  display: inline-block;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.problem-header h2 {
  font-size: 42px;
  font-weight: 300; /* Thin font to match the aesthetic */
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}
.problem-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background-color: #065f46; /* Pleasant mid-dark emerald green */
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(1, 36, 28, 0.15);
}
.problem-icon {
  margin-bottom: 24px;
}
.problem-icon svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}
.problem-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

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

/* FEATURES / BENTO GRID */
.features-section {
  padding: 100px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 24px;
}

.bento-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.large-card {
  grid-column: span 2;
  grid-row: span 2;
}

.medium-card {
  grid-column: span 1;
  grid-row: span 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.b2b-card {
  background-image: url('images/business-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 80%);
}

.card-content {
  position: relative;
  z-index: 10;
}

.b2b-card h3 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 300;
}

.b2b-card p {
  font-size: 16px;
  opacity: 0.9;
}

.primary-bg {
  background: var(--primary-green);
  color: var(--white);
}

.dark-bg {
  background: #064e3b;
  color: var(--white);
}

.light-bg {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.medium-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
}

.medium-card p {
  opacity: 0.8;
  font-size: 14px;
}

.medium-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

/* HOW IT WORKS (SPLIT) */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.feature-item {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.feature-number {
  width: 48px;
  height: 48px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--primary-green);
  border: 1px solid var(--border-color);
}

.feature-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
}

.feature-item p {
  color: var(--text-muted);
}

.visual-card {
  background: var(--bg-color);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.visual-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 300;
}

.visual-card p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.stats-mini {
  display: flex;
  justify-content: space-around;
}

.stats-mini strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--primary-green);
  font-weight: 300;
}

.stats-mini span {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* PRICING */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.pricing-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border-color);
  position: relative;
}

.main-pricing {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--primary-green);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #047857);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-name {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.pricing-price {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 300;
}

.pricing-price .currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 4px;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-top: 32px;
}

.pricing-features li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  color: var(--text-muted);
}

.pricing-features li span {
  color: var(--primary-green);
  font-weight: bold;
}

/* CTA FOOTER */
.cta-footer {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-image: url('images/hero-bg-bright.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #011812;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(4, 120, 87, 0.45), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(52, 211, 153, 0.2), transparent 50%);
  background-size: 200% 200%;
  animation: immersiveAurora 12s ease-in-out infinite alternate;
}

/* FOOTER */
.main-footer {
  background: var(--white);
  padding: 60px 0 40px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 250px;
  margin-top: 16px;
}

.footer-logo {
  height: 28px;
}

.footer-links strong {
  display: block;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-copyright {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 40px;
  }
  .btn-lg {
    padding: 14px 20px;
    font-size: 15px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 400px;
  }

  .medium-card {
    grid-column: span 1;
    min-height: 250px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-flex {
    flex-direction: column;
    gap: 40px;
  }

  .nav-center {
    display: none;
  }
}

/* ZIG-ZAG SECTION */
.zigzag-section {
  padding: 80px 0 100px;
  background-color: #f6fcf8;
  position: relative;
  overflow: hidden;
}

/* Gradient fade at top of zigzag to smooth transition from dark problem section */
.zigzag-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(2, 56, 39, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.label-simple {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title.dark-text {
  color: #0f172a;
}

.zigzag-section .section-title.dark-text {
  color: #0f172a;
}

.section-subtitle.dark-text {
  color: #475569;
}

.zigzag-section .section-subtitle.dark-text {
  color: #475569;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-text {
  flex: 1;
}

.zigzag-image {
  flex: 1;
}

.perspective-mockup {
  perspective: 1200px;
  transform-style: preserve-3d;
  width: 100%;
  padding: 10px;
}

.perspective-mockup img,
.perspective-mockup .mockup-inner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: -12px 15px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0,0,0,0.03);
  transform: rotateY(-14deg) rotateX(10deg) rotateZ(1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.perspective-mockup:hover img,
.perspective-mockup:hover .mockup-inner {
  transform: rotateY(-4deg) rotateX(4deg) rotateZ(0deg) scale(1.02);
  box-shadow: -6px 8px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0,0,0,0.03);
}

.perspective-mockup.reverse img,
.perspective-mockup.reverse .mockup-inner {
  transform: rotateY(14deg) rotateX(10deg) rotateZ(-1deg);
  box-shadow: 12px 15px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0,0,0,0.03);
}

.perspective-mockup.reverse:hover img,
.perspective-mockup.reverse:hover .mockup-inner {
  transform: rotateY(4deg) rotateX(4deg) rotateZ(0deg) scale(1.02);
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0,0,0,0.03);
}

.perspective-mockup .mockup-inner {
  box-shadow: none !important;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perspective-mockup .mockup-inner img,
.perspective-mockup.reverse .mockup-inner img {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.05);
  border-radius: 12px;
}


.feature-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon-simple {
  background: linear-gradient(135deg, #10b981, #047857);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  flex-shrink: 0;
}
.feature-icon-simple svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.zigzag-text h3 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 0;
  font-family: 'Cabinet Grotesk', 'Montserrat', sans-serif;
  line-height: 1.2;
}

.zigzag-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #10b981;
  font-weight: bold;
  background: rgba(16, 185, 129, 0.15);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.image-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .zigzag-row, .zigzag-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
  
  .zigzag-text, .zigzag-image {
    width: 100%;
  }
}

/* SHADCN STYLES (Masalah & Solusi) */
.shadcn-section {
  padding: 80px 0;
  background-color: #023827;
  position: relative;
  overflow: hidden;
}

/* ── Aurora animated background — matches hero palette ─── */
.problem-aurora {
  position: absolute;
  inset: 0;
  background-color: #023827;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.35), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(4, 120, 87, 0.45), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(52, 211, 153, 0.2), transparent 50%);
  background-size: 200% 200%;
  animation: immersiveAurora 12s ease-in-out infinite alternate;
  z-index: 0;
}



/* ── SVG particle paths ──────────────────────────────────── */
.problem-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.problem-particles svg {
  width: 100%;
  height: 100%;
}

.prob-pulse {
  fill: none;
  stroke: #10b981;
  stroke-width: 2;
  stroke-linecap: round;
}
.pp1 { stroke: #f97316; stroke-dasharray: 150 4000; animation: probDash 6s linear infinite; }
.pp2 { stroke: #fbbf24; stroke-dasharray: 200 4500; animation: probDash 8s linear infinite 2s; }
.pp3 { stroke: #f97316; stroke-dasharray: 100 3500; animation: probDash 5s linear infinite 1s; }
.pp4 { stroke: #fbbf24; stroke-dasharray: 250 5000; animation: probDash 9s linear infinite 4s; }

@keyframes probDash {
  0%   { stroke-dashoffset: 250; }
  100% { stroke-dashoffset: -4000; }
}

/* ── Trusted-by: gradient bottom fade into dark section ──── */
.trusted-by {
  position: relative;
}
.trusted-by::after-bottom {
  display: none; /* override default — handled below */
}

.solution-section {
  background-color: transparent;
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.solution-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}

.solution-visual {
  flex: 0 0 auto;
  max-width: 300px;
}

.solution-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.solution-text {
  flex: 1;
}

.solution-headline {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.solution-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.solution-headline-mobile {
  display: none;
}


/* Only masalah section gets white text overrides, NOT solution */
.problem-section .section-title,
.problem-section .section-subtitle,
.problem-section .section-title.dark-text,
.problem-section .section-subtitle.dark-text {
  color: #ffffff !important;
}

.problem-section .section-subtitle,
.problem-section .section-subtitle.dark-text {
  color: rgba(255, 255, 255, 0.75) !important;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.shadcn-card {
  padding: 28px 28px 28px;
  background-color: #ffffff;
  background-image: none;
  animation: none;
  
  border: 1px solid var(--border-color);
  border-radius: 14px;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shadcn-card:hover {
  background-color: #ffffff;
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon + Title in one row */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981, #047857);
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.shadcn-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.shadcn-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}



/* Responsive: tablet — 2 cols; mobile — 1 col */
@media (max-width: 1024px) {
  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .problem-cards {
    grid-template-columns: 1fr;
  }

  .solution-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .solution-layout {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .solution-visual {
    max-width: 360px;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .solution-img {
    max-height: 400px;
  }

  .solution-headline-mobile {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-align: center;
  }

  .solution-text {
    display: block;
    width: 100%;
    text-align: left;
  }

  .solution-headline {
    display: none;
  }
}

/* Mobile nav: icon only (scoped to navbar only) */
@media (max-width: 768px) {
  .navbar { padding: 24px 0 !important; }
  .navbar.scrolled { padding: 20px 0 !important; }
  .nav-btn-text { display: none; }
  .navbar .btn-primary-green.btn-icon {
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .navbar .btn-primary-green.btn-icon svg {
    margin-right: 0;
    width: 18px;
    height: 18px;
  }
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
  position: relative;
  padding: 120px 0;
  background-color: #011812;
  overflow: hidden;
}

.testimonial-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonial-slider-container::-webkit-scrollbar {
  display: none;
}

.testimonial-marquee-track {
  display: flex;
}

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 10px 0 40px;
}

.floating-orbs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s ease-in-out infinite alternate;
}

.orb-1 { width: 400px; height: 400px; background: #10b981; top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #059669; bottom: -150px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: #34d399; top: 40%; left: 40%; animation-delay: -10s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.2); }
  100% { transform: translate(-50px, 100px) scale(0.8); }
}

.glass-card {
  width: 100%;
  max-width: none;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 24px 24px;
  color: #1e293b;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.quote {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}

.author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.author-info span {
  font-size: 14px;
  color: #64748b;
}

@media (max-width: 992px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
    padding: 10px 24px 40px;
  }
}

/* ── PRICING SECTION ── */
.pricing-section {
  background-color: #f6fcf8;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pricing-card-wrapper {
  max-width: 500px;
  margin: 0 auto;
  perspective: 1000px;
}
.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 48px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
}
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  white-space: nowrap;
}
.pricing-header h3 {
  font-size: 28px;
  color: #0f172a;
  margin: 0 0 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
.price-strike {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
}
.price-strike span {
  text-decoration: line-through;
  opacity: 0.7;
}
.price-main {
  font-size: 48px;
  font-weight: 800;
  color: #10b981;
  letter-spacing: -1px;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-period {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0;
}
.price-subtle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #334155;
  line-height: 1.5;
}
.pricing-features svg {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-action .btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #047857);
}
.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 16px;
}
.secure-checkout svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-header h3 {
    font-size: 24px;
  }
  .price-main {
    font-size: 28px;
    flex-wrap: wrap;
  }
  .price-period {
    font-size: 13px;
  }
}

/* ── INLINE LOGO (Mewarisi warna teks) ── */
.inline-logo {
  display: inline-block;
  vertical-align: middle;
}

/* 1. Hero Subtitle */
.hero-subtitle .inline-logo {
  height: 0.95em;
  transform: translateY(-3px);
  filter: brightness(0) invert(1);
}

/* 2. Testimonial Title (h2) */
.social-proof-section .section-title .inline-logo {
  height: 0.9em;
  transform: translateY(-4px);
  filter: brightness(0) invert(1);
}

/* 3. Testimonial Subtitle (p) */
.social-proof-section .section-subtitle .inline-logo {
  height: 1em;
  transform: translateY(-3px);
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* 4. Pricing Subtitle (p) */
.pricing-section .section-subtitle .inline-logo {
  height: 1.05em;
  transform: translateY(-4px);
  filter: brightness(0) opacity(0.85);
}

/* 5. Pricing Title (h3) */
.pricing-header h3 .inline-logo {
  height: 1.1em;
  transform: translateY(-3px);
  filter: none;
}

/* 6. FAQ Subtitle (p) */
.faq-section .section-subtitle .inline-logo {
  height: 1.05em;
  transform: translateY(-4px);
  filter: brightness(0) opacity(0.85);
}

/* ── FAQ SECTION ── */
.faq-section {
  background-color: #f6fcf8;
  padding: 100px 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--primary-green);
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--white);
}
.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.main-footer {
  background-color: #023827;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.4), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(5, 150, 105, 0.4), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(4, 120, 87, 0.3), transparent 50%);
  color: #ffffff;
  padding: 80px 0 40px;
  border-top: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  color: #ffffff !important;
}
.footer-links h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 16px;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 0.7;
  color: #ffffff;
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

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

/* ── UTILITIES ── */
.emoji-tilt {
  display: inline-block;
  transform: rotate(15deg);
  transform-origin: center;
}
