/* THEMATIC COLOR DEFINITIONS - COLORFUL THEME (Warm Sunrise & Clean Jungle) */
:root {
  --sinar-sendi-fajar: #E36414;
  --sinar-sendi-rimba: #0F4C5C;
  --sinar-sendi-daun: #FB8B24;
  --sinar-sendi-lembut: #FDF6EC;
  --sinar-sendi-kapas: #FFFFFF;
  --sinar-sendi-hijau: #5E8C61;
  
  --sinar-sendi-gradasi: linear-gradient(135deg, #0F4C5C 0%, #E36414 100%);
  --sinar-sendi-gradasi-soft: linear-gradient(135deg, #FFF6EE 0%, #E6EEF0 100%);
  
  --sinar-sendi-radius: 16px;
  --sinar-sendi-bayangan: 0 10px 30px -5px rgba(15, 76, 92, 0.15), 0 8px 15px -6px rgba(15, 76, 92, 0.1);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Scroll Progress Bar CSS */
@keyframes progress-grow { to { width: 100%; } }
.scroll-progress {
  height: 4px;
  width: 0;
  background: var(--sinar-sendi-daun);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* Scroll Reveal Animations */
@keyframes slide-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
.reveal { 
  animation: slide-up 1s linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}

/* HEADER COMPONENT (Variant 2: Nav left, logo right) */
.sendi-nav-top-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
.sendi-header-restrictor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sendi-portal-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sendi-portal-links a {
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.sendi-portal-links a:hover {
  color: var(--sinar-sendi-daun) !important;
}
.sendi-brand-identity img {
  max-height: 40px;
}

/* Mobile Hamburger CSS */
.sendi-hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}
.sendi-hamburger-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--sinar-sendi-rimba);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .sendi-hamburger-icon {
    display: flex;
  }
  .sendi-nav-left-deck {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--sinar-sendi-kapas);
    box-shadow: var(--sinar-sendi-bayangan);
    padding: 6rem 2rem 2rem;
    transition: left 0.4s ease;
    z-index: 1000;
  }
  .sendi-portal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .sendi-toggle-trigger:checked ~ .sendi-nav-left-deck {
    left: 0;
  }
  .sendi-toggle-trigger:checked ~ .sendi-hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .sendi-toggle-trigger:checked ~ .sendi-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .sendi-toggle-trigger:checked ~ .sendi-hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* HERO ZONE */
.joint-motion-hero-zone {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.joint-hero-svg-deco {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 50vw;
  max-width: 600px;
  z-index: 1;
  pointer-events: none;
}
.joint-motion-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}
.joint-motion-hero-inner h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 900;
}
.joint-solid-tap-trigger {
  padding: 1rem 2.25rem;
  border-radius: var(--sinar-sendi-radius);
  font-weight: 700;
  transition: transform 0.3s, background-color 0.3s;
}
.joint-solid-tap-trigger:hover {
  transform: translateY(-3px);
  background-color: var(--sinar-sendi-fajar) !important;
}

/* CONTENT SECTION 1 (Image left with margin-left offset, text right) */
.joint-flow-restrictor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-offset-image-frame {
  flex: 1;
  margin-left: -2.5rem;
}
.joint-offset-img {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}
.joint-flow-text-side {
  flex: 1.2;
}
.joint-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .joint-flow-restrictor {
    flex-direction: column;
    gap: 3rem;
  }
  .joint-offset-image-frame {
    margin-left: 0;
  }
}

/* FEATURES SECTION (Horizontal rows, large icon left, heading + desc right, thin separators) */
.joint-rows-restrictor {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-row-deck {
  display: flex;
  flex-direction: column;
}
.joint-row-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
  transition: transform 0.3s;
}
.joint-row-item:last-child {
  border-bottom: none;
}
.joint-row-item:hover {
  transform: translateX(10px);
}
.joint-row-icon-cap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.joint-row-content {
  flex: 1;
}

/* CTA BANNER */
.joint-urge-restrictor {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-solid-tap-trigger-accent {
  padding: 1rem 2.25rem;
  border-radius: var(--sinar-sendi-radius);
  font-weight: 700;
  transition: transform 0.3s, background-color 0.3s;
}
.joint-solid-tap-trigger-accent:hover {
  transform: translateY(-3px);
  background-color: var(--sinar-sendi-lembut) !important;
}

/* DIVIDER STRIP */
.joint-divider-strip {
  padding: 2rem 0;
}
.joint-divider-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
.joint-divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(15, 76, 92, 0.15);
}
.joint-divider-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* CONTENT SECTION 2 (Full surface-color strip, text left, image right with round/hex clip-path) */
.joint-nutrient-restrictor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-nutrient-text-side {
  flex: 1.2;
}
.joint-hex-image-frame {
  flex: 1;
  display: flex;
  justify-content: center;
}
.joint-hex-clip-container {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}
.joint-hex-clip-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s;
}
.joint-hex-clip-container img:hover {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .joint-nutrient-restrictor {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}

/* TESTIMONIALS MASONRY */
.joint-echoes-restrictor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-masonry-deck {
  column-count: 3;
  column-gap: 2rem;
}
.joint-masonry-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  padding: 2rem;
  display: inline-block;
  width: 100%;
  transition: transform 0.3s;
}
.joint-masonry-card:hover {
  transform: translateY(-5px);
}
.joint-quote-body {
  font-style: italic;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .joint-masonry-deck {
    column-count: 2;
  }
}
@media (max-width: 639px) {
  .joint-masonry-deck {
    column-count: 1;
  }
}

/* FORM SECTION */
.joint-portal-restrictor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.joint-trust-side {
  display: flex;
  flex-direction: column;
}
.joint-form-side input:focus, .joint-form-side textarea:focus {
  border-color: var(--sinar-sendi-daun);
}
.joint-submit-btn-flush:hover {
  transform: translateY(-3px);
  background-color: var(--sinar-sendi-fajar) !important;
}

@media (max-width: 991px) {
  .joint-portal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FAQ SECTION (Open static questions, dynamic borders) */
.joint-faq-restrictor {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.joint-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.joint-faq-card {
  padding: 2rem;
}
.joint-faq-heading-deck {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.joint-faq-sign {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.joint-faq-heading-deck h3 {
  font-size: 1.15rem;
}
.joint-faq-reply {
  padding-left: 2rem;
}

/* FOOTER */
.sendi-footer-restrictor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sendi-footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sendi-footer-links a:hover {
  opacity: 1 !important;
  color: var(--sinar-sendi-daun) !important;
}

@media (max-width: 767px) {
  .sendi-footer-restrictor {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .sendi-footer-links {
    flex-direction: column;
    gap: 1.2rem;
  }
}