@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --biru-tua: #1a2e4a;
  --biru-tua-dark: #0f1e30;
  --biru-tua-light: #243d5c;
  --krem-lembut: #f5f0e8;
  --krem-card: #faf8f3;
  --abu-hangat-light: #e8e4dc;
  --abu-hangat-mid: #9a9490;
  --abu-hangat-dark: #4a4540;
  --hijau-hutan: #3a5c3a;
  --hijau-hutan-hover: #2e4a2e;
  --text-primary: #2a2520;
  --text-secondary: #5a5550;
  --text-light: #f5f0e8;
  --border-line: #d8d2c8;
  --shadow-deep: 0 8px 32px rgba(26,46,74,0.18);
  --shadow-card: 0 4px 16px rgba(26,46,74,0.10);
  --radius-sm: 4px;
  --radius-md: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--krem-lembut);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.nav-brand,
.btn-kelynx,
.nav-link,
.footer-heading {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--krem-lembut);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--biru-tua);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--biru-tua);
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--hijau-hutan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--hijau-hutan-hover);
}

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

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.container-kelynx {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--biru-tua-dark);
  border-bottom: 1px solid var(--biru-tua-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--krem-lembut);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-brand span {
  color: var(--hijau-hutan);
}

.nav-brand:hover {
  opacity: 0.85;
  color: var(--krem-lembut);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,240,232,0.78);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: var(--krem-lembut);
  background-color: rgba(58,92,58,0.3);
}

.main-nav li a.active {
  border-bottom: 2px solid var(--hijau-hutan);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--krem-lembut);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  background-color: var(--biru-tua-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--biru-tua-light);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245,240,232,0.82);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--krem-lembut);
}

/* ==================== PAGE OFFSET ==================== */
.page-body {
  padding-top: 72px;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-bar {
  background-color: var(--biru-tua);
  padding: 12px 0;
}

.breadcrumb-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb-bar .breadcrumb li {
  margin: 0;
  color: rgba(245,240,232,0.6);
}

.breadcrumb-bar .breadcrumb li a {
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-bar .breadcrumb li a:hover {
  color: var(--krem-lembut);
}

.breadcrumb-bar .breadcrumb li.active {
  color: var(--hijau-hutan);
}

.breadcrumb-sep {
  color: rgba(245,240,232,0.35);
  font-size: 0.7rem;
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--biru-tua-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,48,0.88) 0%, rgba(26,46,74,0.65) 60%, rgba(15,30,48,0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--hijau-hutan);
  flex-shrink: 0;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-content .hero-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.88);
  max-width: 600px;
  margin-bottom: 40px;
  font-family: 'Lora', Georgia, serif;
}

.hero-disclaimer {
  margin-top: 40px;
  padding: 16px 24px;
  border-left: 3px solid var(--hijau-hutan);
  background-color: rgba(58,92,58,0.15);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,240,232,0.75);
  letter-spacing: 0.02em;
  max-width: 600px;
}

/* ==================== BUTTONS ==================== */
.btn-kelynx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--hijau-hutan);
  color: var(--krem-lembut);
  border-color: var(--hijau-hutan);
}

.btn-primary:hover {
  background-color: var(--hijau-hutan-hover);
  border-color: var(--hijau-hutan-hover);
  color: var(--krem-lembut);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,92,58,0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--krem-lembut);
  border-color: rgba(245,240,232,0.5);
}

.btn-outline:hover {
  background-color: rgba(245,240,232,0.1);
  border-color: var(--krem-lembut);
  color: var(--krem-lembut);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--biru-tua);
  color: var(--krem-lembut);
  border-color: var(--biru-tua);
}

.btn-dark:hover {
  background-color: var(--biru-tua-dark);
  border-color: var(--biru-tua-dark);
  color: var(--krem-lembut);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-dark {
  background-color: var(--biru-tua);
}

.section-dark h2,
.section-dark h3 {
  color: var(--krem-lembut);
}

.section-dark p,
.section-dark li {
  color: rgba(245,240,232,0.82);
}

.section-dark .section-label {
  color: var(--hijau-hutan);
}

.section-green {
  background-color: var(--hijau-hutan);
}

.section-green h2,
.section-green h3,
.section-green p {
  color: var(--krem-lembut);
}

.section-alt {
  background-color: var(--krem-card);
}

.section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--hijau-hutan);
  flex-shrink: 0;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--hijau-hutan);
  margin: 24px 0 32px;
  border-radius: 2px;
}

.section-divider-center {
  margin: 24px auto 32px;
}

/* ==================== TWO COLUMN LAYOUT ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.two-col-img:hover img {
  transform: scale(1.02);
}

.two-col-img::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--hijau-hutan);
  border-left: 3px solid var(--hijau-hutan);
  z-index: 2;
  border-radius: 2px;
}

/* ==================== CARDS ==================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.knowledge-card {
  background-color: var(--krem-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.knowledge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--biru-tua);
  transition: background-color 0.3s ease;
}

.knowledge-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  border-color: var(--abu-hangat-mid);
}

.knowledge-card:hover::before {
  background-color: var(--hijau-hutan);
}

.card-dark {
  background-color: var(--biru-tua-light);
  border-color: var(--biru-tua);
}

.card-dark h3 {
  color: var(--krem-lembut);
}

.card-dark p {
  color: rgba(245,240,232,0.8);
}

.card-dark::before {
  background-color: var(--hijau-hutan);
}

.card-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--abu-hangat-light);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--biru-tua);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hijau-hutan);
  fill: none;
  stroke-width: 1.5;
}

.card-dark .card-icon {
  background-color: rgba(58,92,58,0.3);
}

/* ==================== FULL WIDTH BANNER ==================== */
.banner-section {
  position: relative;
  width: 100%;
  padding: 96px 0;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,48,0.92) 0%, rgba(26,46,74,0.80) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
}

/* ==================== QUOTE BLOCK ==================== */
.quote-block {
  border-left: 4px solid var(--hijau-hutan);
  padding: 24px 32px;
  background-color: var(--krem-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
  position: relative;
}

.quote-block p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--biru-tua);
  line-height: 1.75;
  margin: 0;
}

.quote-block-dark {
  background-color: rgba(58,92,58,0.15);
  border-left-color: var(--hijau-hutan);
}

.quote-block-dark p {
  color: var(--krem-lembut);
}

/* ==================== INFO PANEL ==================== */
.info-panel {
  background-color: var(--biru-tua);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.info-panel::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(58,92,58,0.3);
  border-radius: 50%;
}

.info-panel h3 {
  color: var(--krem-lembut);
  margin-bottom: 16px;
}

.info-panel p, .info-panel li {
  color: rgba(245,240,232,0.82);
  font-size: 0.95rem;
}

/* ==================== CONTEXT DISCLAIMER ==================== */
.context-disclaimer {
  background-color: var(--biru-tua);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  border-top: 4px solid var(--hijau-hutan);
  position: relative;
  overflow: hidden;
}

.context-disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(58,92,58,0.15);
  border-radius: 50%;
  transform: translate(40%, -40%);
}

.context-disclaimer h3 {
  color: var(--krem-lembut);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.context-disclaimer p {
  color: rgba(245,240,232,0.78);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-header {
  background-color: var(--biru-tua-dark);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hijau-hutan) 0%, var(--biru-tua-light) 50%, var(--hijau-hutan) 100%);
}

.page-header-deco {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border: 1px solid rgba(58,92,58,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-deco::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(58,92,58,0.15);
  border-radius: 50%;
}

.page-header .eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--krem-lembut);
  margin-bottom: 16px;
}

.page-header .lead {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.78);
  max-width: 600px;
  line-height: 1.7;
}

/* ==================== MYTHS vs FACTS ==================== */
.myth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.myth-item {
  padding: 24px;
  border-radius: var(--radius-md);
}

.myth-item.myth {
  background-color: rgba(154,148,144,0.12);
  border: 1px solid var(--abu-hangat-light);
}

.myth-item.fact {
  background-color: rgba(58,92,58,0.1);
  border: 1px solid rgba(58,92,58,0.25);
}

.myth-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.myth-label.is-myth {
  color: var(--abu-hangat-mid);
}

.myth-label.is-fact {
  color: var(--hijau-hutan);
}

.myth-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-item {
  border-bottom: 1px solid var(--border-line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--biru-tua);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question:hover h3 {
  color: var(--hijau-hutan);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--biru-tua);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.open .faq-icon {
  background-color: var(--hijau-hutan);
  border-color: var(--hijau-hutan);
}

.faq-item.open .faq-icon svg {
  stroke: var(--krem-lembut);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==================== CONTACT FORM ==================== */
.contact-form-wrap {
  background-color: var(--krem-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 48px;
}

.form-disclaimer {
  background-color: var(--biru-tua);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.82);
  line-height: 1.6;
  border-left: 3px solid var(--hijau-hutan);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--biru-tua);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: #fff;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--hijau-hutan);
  box-shadow: 0 0 0 3px rgba(58,92,58,0.12);
}

textarea.form-control {
  min-height: 160px;
  line-height: 1.7;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: var(--biru-tua);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--krem-lembut);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

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

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--krem-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--biru-tua);
  letter-spacing: 0.02em;
}

.link-card:hover {
  background-color: var(--biru-tua);
  border-color: var(--biru-tua);
  color: var(--krem-lembut);
  transform: translateX(4px);
}

.link-card svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.link-card:hover svg {
  transform: translateX(3px);
}

/* ==================== TABLE ==================== */
.kelynx-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
}

.kelynx-table th {
  background-color: var(--biru-tua);
  color: var(--krem-lembut);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 20px;
  text-align: left;
}

.kelynx-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-line);
  color: var(--text-primary);
  font-family: 'Lora', Georgia, serif;
}

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

.kelynx-table tr:nth-child(even) td {
  background-color: var(--krem-card);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: var(--biru-tua-dark);
  color: var(--krem-lembut);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--krem-lembut);
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

.footer-brand span {
  color: var(--hijau-hutan);
}

.footer-tagline {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-educational-note {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  padding: 10px 16px;
  border: 1px solid rgba(58,92,58,0.4);
  border-radius: var(--radius-sm);
  display: inline-block;
  line-height: 1.5;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--krem-lembut);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.footer-links li a:hover {
  color: var(--krem-lembut);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--hijau-hutan);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.55;
}

.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-hours-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  margin-bottom: 8px;
}

.footer-hours p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-bottom-links li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: rgba(245,240,232,0.75);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--biru-tua-dark);
  border-top: 2px solid var(--hijau-hutan);
  padding: 20px 32px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.82);
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}

.cookie-banner-text strong {
  color: var(--krem-lembut);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background-color: var(--hijau-hutan);
  color: var(--krem-lembut);
  border-color: var(--hijau-hutan);
}

.cookie-btn-accept:hover {
  background-color: var(--hijau-hutan-hover);
  color: var(--krem-lembut);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(245,240,232,0.65);
  border-color: rgba(245,240,232,0.25);
}

.cookie-btn-reject:hover {
  color: var(--krem-lembut);
  border-color: rgba(245,240,232,0.5);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--hijau-hutan);
  border-color: rgba(58,92,58,0.4);
  text-decoration: none;
}

.cookie-btn-learn:hover {
  border-color: var(--hijau-hutan);
  color: var(--hijau-hutan);
}

/* ==================== POLICY PAGES ==================== */
.policy-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--abu-hangat-light);
}

.policy-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.policy-content p {
  margin-bottom: 1.25rem;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--abu-hangat-mid);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-line);
}

/* ==================== POLICY ALERT ==================== */
.policy-alert {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: rgba(26,46,74,0.06);
  border-left: 4px solid var(--biru-laut);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.policy-alert svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--biru-laut);
  margin-top: 2px;
}

.policy-alert strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-gelap);
  font-size: 0.95rem;
}

.policy-alert p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.policy-alert-urgent {
  border-left-color: #b91c1c;
  background-color: rgba(185,28,28,0.05);
}

.policy-alert-urgent svg {
  stroke: #b91c1c;
}

.policy-contact-box {
  background-color: var(--abu-hangat-bg);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 24px;
}

.policy-contact-box p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.policy-contact-box a {
  color: var(--hijau-hutan);
  text-decoration: none;
  font-weight: 500;
}

.policy-contact-box a:hover {
  text-decoration: underline;
}

/* ==================== THANK YOU ==================== */
.thankyou-section {
  padding: 80px 0 100px;
}

.thankyou-card {
  background-color: var(--putih-bersih);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 64px 56px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  width: 88px;
  height: 88px;
  background-color: rgba(58,92,58,0.1);
  border: 2px solid var(--hijau-hutan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--hijau-hutan);
  fill: none;
  stroke-width: 1.5;
}

.thankyou-eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hijau-hutan);
  margin-bottom: 12px;
}

.thankyou-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-gelap);
  margin-bottom: 12px;
  line-height: 1.15;
}

.thankyou-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.thankyou-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}

.thankyou-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.thankyou-info-item {
  background-color: var(--abu-hangat-bg);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 20px;
}

.thankyou-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(26,46,74,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.thankyou-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--biru-laut);
  fill: none;
}

.thankyou-info-item h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-gelap);
  margin-bottom: 6px;
}

.thankyou-info-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.thankyou-disclaimer {
  background-color: rgba(26,46,74,0.04);
  border: 1px solid var(--border-line);
  border-left: 4px solid var(--biru-laut);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 40px;
}

.thankyou-disclaimer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.thankyou-disclaimer strong {
  color: var(--navy-gelap);
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--biru-laut);
  color: var(--putih-bersih);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--navy-gelap);
  color: var(--putih-bersih);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--biru-laut);
  border: 1.5px solid var(--biru-laut);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--biru-laut);
  color: var(--putih-bersih);
}

.thankyou-explore {
  border-top: 1px solid var(--border-line);
  padding-top: 32px;
}

.thankyou-explore-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.thankyou-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.thankyou-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background-color: var(--abu-hangat-bg);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy-gelap);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-align: left;
}

.thankyou-link-card:hover {
  border-color: var(--biru-laut);
  background-color: rgba(26,46,74,0.04);
  color: var(--biru-laut);
}

.thankyou-link-card svg {
  width: 18px;
  height: 18px;
  stroke: var(--hijau-hutan);
  flex-shrink: 0;
}

/* ==================== DIVIDERS & DECORATIONS ==================== */
.line-deco {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-line) 30%, var(--border-line) 70%, transparent);
  margin: 0;
}

.corner-deco {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid var(--hijau-hutan);
  border-right: 2px solid var(--hijau-hutan);
  opacity: 0.5;
}

.text-accent {
  color: var(--hijau-hutan);
}

.text-muted {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.bg-stripe {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(26,46,74,0.04) 8px,
    rgba(26,46,74,0.04) 16px
  );
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 0 20px;
    height: 64px;
  }

  .page-body {
    padding-top: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 64px 20px 56px;
  }

  .hero-section {
    min-height: 70vh;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .two-col-img img {
    height: 300px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .myth-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .context-disclaimer {
    padding: 28px 24px;
  }

  .thankyou-card {
    padding: 40px 24px;
  }

  .thankyou-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thankyou-links {
    grid-template-columns: 1fr;
  }

  .thankyou-title {
    font-size: 2rem;
  }

  .policy-alert {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
  }

  .page-header {
    padding: 64px 0 48px;
  }

  .page-header-deco {
    display: none;
  }

  .footer-bottom-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container-kelynx {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .btn-kelynx {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
