@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Brand Palette - Modern Nature (Indonesia suitable) */
  --brand-main: #2E7D32; /* Forest Green */
  --brand-highlight: #F57C00; /* Vibrant Orange */
  --ui-base-light: #F4F9F4; /* Light Mint */
  --ui-base-dark: #1B5E20; /* Deep Green Text/BGs */
  --ui-neutral-gray: #4B5563; /* Gray for decline button / neutral text */
  --ui-surface: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(27, 94, 32, 0.95) 100%);
  --gradient-accent: linear-gradient(135deg, #F57C00 0%, #E65100 100%);

  /* Typography */
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ui-base-dark);
  background-color: var(--ui-base-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
}

/* Custom DOM Classes for Layout (Avoiding generic names) */
.global-wrapper-zone {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-navigation-bar {
  background-color: var(--ui-surface);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-flex-spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand-identity-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.menu-links-cluster {
  display: flex;
  gap: 2rem;
}

.menu-item-link {
  color: var(--ui-base-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-item-link:hover {
  color: var(--brand-highlight);
}

.mobile-trigger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-trigger-icon {
  width: 24px;
  height: 2px;
  background-color: var(--ui-base-dark);
  position: relative;
  display: block;
}

.mobile-trigger-icon::before,
.mobile-trigger-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--ui-base-dark);
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.mobile-trigger-icon::before { top: -8px; }
.mobile-trigger-icon::after { bottom: -8px; }

/* Sections */
.opening-visual-space {
  padding: 6rem 0;
  color: var(--ui-surface);
  background-size: cover;
  background-position: center;
  position: relative;
}

.insight-sharing-area {
  padding: 5rem 0;
  background-color: var(--ui-surface);
}

.benefits-matrix-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.benefit-node-box {
  background: var(--ui-base-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--brand-highlight);
  transition: transform 0.3s ease;
}

.benefit-node-box:hover {
  transform: translateY(-5px);
}

.action-demand-zone {
  padding: 5rem 0;
  text-align: center;
  color: var(--ui-surface);
}

.primary-action-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  color: var(--ui-surface);
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.primary-action-btn:hover {
  opacity: 0.9;
}

.bottom-info-hub {
  background-color: var(--ui-base-dark);
  color: var(--ui-surface);
  padding: 3rem 0 1.5rem 0;
}

/* Form Styles */
.registration-surface {
  background: var(--ui-surface);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.input-field-custom {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.input-field-custom:focus {
  outline: none;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

/* Numbered Lists Styling */
.numeric-step-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.numeric-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.numeric-step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--brand-highlight);
  color: var(--ui-surface);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-base-dark);
  color: var(--ui-surface);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
}

.cookie-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.cookie-text-blurb {
  font-size: 0.9rem;
  text-align: center;
}

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

.cookie-btn-accept {
  background-color: var(--brand-highlight);
  color: var(--ui-surface);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-decline {
  background-color: var(--ui-neutral-gray);
  color: var(--ui-surface);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-links-cluster {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ui-surface);
    padding: 1rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }
  
  .menu-links-cluster.active {
    display: flex;
    align-items: center;
  }
  
  .mobile-trigger-btn {
    display: block;
  }

  .cookie-content-wrap {
    flex-direction: column;
  }
}