/* ==========================================================================
   Nevgo Institute — Design System & Stylesheet (Botanical Aesthetic)
   ========================================================================== */

/* Variables & Base tokens */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Color Palette - Organic Botanical Theme (Light & Warm) */
  --bg-base: #fbf9f5;
  --bg-surface: #f4f0e6;
  --bg-panel: rgba(255, 254, 252, 0.85);
  --border-color: rgba(58, 89, 75, 0.12);
  --border-focus: #c0725c;
  
  /* Accent Colors (Sage Green & Terracotta Clay Theme) */
  --accent-primary: #3a594b; /* Deep Sage Green */
  --accent-secondary: #c0725c; /* Terracotta Warm Clay */
  --accent-wash: rgba(58, 89, 75, 0.05); /* Light Sage background wash */
  
  /* Text colors */
  --text-primary: #2b3631; /* Deep charcoal-forest */
  --text-secondary: #58655f; /* Muted olive-charcoal */
  --text-muted: #7d8b84; /* Soft grey-green */
  --text-light: #2b3631; /* No dark-mode light text here, we keep it organic and high contrast */
  --text-highlight: #a0543e; /* Editorial red-terracotta */
  
  /* Spacing */
  --container-max-width: 1100px;
  --container-max-md: 800px;
  --container-max-sm: 600px;
}

/* Reset & Document flow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.85; /* Editorial loose line height */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Lock scroll for mobile overlays (like hamburger menu) */
html.scroll-locked,
body.scroll-locked {
  overflow: hidden !important;
  height: 100% !important;
  position: relative !important;
}

/* SVG Paper Grain Overlay Styling */
.grain-svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 500; /* Serif titles look best in lighter/medium weights */
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.headline-h1 {
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-style: italic;
}

.headline-h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sub-headline-h2 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-family: var(--font-sans);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.body-p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.body-p.text-large {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-serif);
  line-height: 1.6;
}

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

.font-serif { font-family: var(--font-serif); }
.font-italic { font-style: italic; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-xl { font-size: 1.45rem; }
.text-lg { font-size: 1.2rem; }
.text-sm { font-size: 0.9rem; }
.text-center { text-align: center; }
.max-w-lg { max-width: 850px; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-sm { max-width: 550px; margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }

/* Colors & Accents Helpers */
.accent-text {
  color: var(--accent-primary);
  border-bottom: 1px italic var(--accent-secondary);
}

.highlight-text {
  color: var(--text-highlight);
}

.underline-accent {
  background: linear-gradient(180deg, transparent 70%, rgba(192, 114, 92, 0.25) 70%);
  padding: 0 4px;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 5rem 0;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.hero-mobile-cta {
  display: none;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    padding: 3rem 0;
  }
  
  .nav-cta {
    display: none !important;
  }
  
  .logo-brand {
    font-size: 1.25rem !important;
  }
  
  .logo-sub {
    font-size: 1.05rem !important;
  }

  .hero-mobile-cta {
    display: inline-flex !important;
    margin-bottom: 1.5rem !important;
  }

  .section-hero {
    padding: 1.5rem 0 2.5rem !important;
    min-height: auto !important;
  }

  .section-hero .container {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .headline-h1 {
    font-size: 2.15rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.25 !important;
  }

  .sub-headline-h2 {
    font-size: 1.05rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
  }

  .botanical-illustration {
    margin: 2rem auto 0 !important;
  }

  .offer-card {
    padding: 2.5rem 1.5rem !important;
  }
}

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

.gap-lg { gap: 4rem; }
.gap-xl { gap: 5.5rem; }
.gap-sm { gap: 1.5rem; }

/* Badge style */
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  background: var(--bg-surface);
  border: 1px solid rgba(58, 89, 75, 0.15);
  border-radius: 4px;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.badge-warning {
  background: rgba(192, 114, 92, 0.05);
  border: 1px solid rgba(192, 114, 92, 0.2);
  color: var(--accent-secondary);
}

/* Elegant leaf SVG visual */
.leaf-svg {
  color: var(--accent-primary);
  opacity: 0.6;
  margin-top: 1.5rem;
}

/* Button UI Components (Editorial/Sophisticated) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px; /* Less rounded for architectural feel */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.03em;
}

.btn:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--bg-base);
  box-shadow: 0 4px 15px rgba(58, 89, 75, 0.12);
}

.btn-primary:hover {
  background-color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 89, 75, 0.2);
}

.btn-secondary-outline, .btn-primary-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-primary);
}

.btn-secondary-outline:hover, .btn-primary-outline:hover {
  background-color: var(--accent-primary);
  color: var(--bg-base);
  transform: translateY(-1px);
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--accent-primary);
  color: var(--bg-base);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Header Navigation Bar */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251, 249, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 89, 75, 0.08);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.35rem;
}

.logo-sub {
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.main-nav ul {
  display: none;
  list-style: none;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .main-nav ul {
    display: flex;
  }
}

.main-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-primary);
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 200;
}
.hamburger-btn:hover {
  border-color: var(--accent-secondary);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Hamburger open state */
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg-base);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.35rem;
  font-family: var(--font-serif);
  font-weight: 500;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: var(--accent-secondary);
}

.mobile-nav-cta {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 280px;
}

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

/* Skeleton loading shimmer */
@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-panel) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s infinite ease-in-out;
  border-radius: 4px;
  color: transparent !important;
  user-select: none;
  pointer-events: none;
}

/* Card - Glassmorphism Template with warm linen values */
.card-glass-large {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .card-glass-large {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */

/* Section 1 — Hero */
.section-hero {
  padding: 6.5rem 0 5rem;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-container {
  max-width: 900px;
}

.hero-cta {
  margin-top: 1.5rem;
}

.botanical-divider-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: rgba(58, 89, 75, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.botanical-svg {
  width: 250px;
  height: 40px;
}

/* Section 2 — Edukasi / Reframe */
.section-edu {
  background-color: var(--bg-surface);
  border-top: 1px solid rgba(58, 89, 75, 0.05);
  border-bottom: 1px solid rgba(58, 89, 75, 0.05);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-secondary);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.quote-text {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-primary);
}

.highlight-box {
  margin: 1.75rem 0;
  padding: 1.5rem;
  border-left: 2px solid var(--accent-secondary);
  background: rgba(192, 114, 92, 0.03);
  border-radius: 0 8px 8px 0;
}

/* Section 3 — Pain (The Reality Check) — Premium Dark */
.section-pain {
  background: #2b3631;
  padding: 6.5rem 0 5.5rem;
  position: relative;
}

.section-pain .badge-warning {
  background: rgba(192, 114, 92, 0.15);
  border-color: rgba(192, 114, 92, 0.3);
  color: #e8a08a;
}

.pain-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(251, 249, 245, 0.4);
  margin-top: 0.5rem;
  font-weight: 400;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.pain-text-col {
  color: #fbf9f5;
}

.rc-headline {
  font-size: 1.75rem;
  line-height: 1.3;
  color: #fbf9f5;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.pain-text-col .body-p {
  color: rgba(251, 249, 245, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pain-text-col .body-p + .body-p {
  margin-top: 0.75rem;
}

.pain-question {
  color: #e8a08a;
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.pain-text-col .accent-text {
  color: #d4a853;
  font-weight: 600;
}

.pain-text-col .underline-accent {
  text-decoration: underline;
  text-decoration-color: #d4a853;
  text-underline-offset: 3px;
  font-weight: 600;
}

.rc-compare {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 0;
}

.rc-compare-item {
  flex: 1;
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rc-compare-item.rc-compare-bad {
  background: rgba(192, 114, 92, 0.1);
  border: 1px solid rgba(192, 114, 92, 0.18);
}

.rc-compare-item.rc-compare-good {
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.18);
}

.rc-compare-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.rc-compare-bad .rc-compare-icon-wrap {
  background: rgba(192, 114, 92, 0.15);
}

.rc-compare-good .rc-compare-icon-wrap {
  background: rgba(212, 168, 83, 0.15);
}

.rc-compare-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rc-compare-bad .rc-compare-label {
  color: #e8a08a;
}

.rc-compare-good .rc-compare-label {
  color: #d4a853;
}

.rc-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rc-compare-list li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(251, 249, 245, 0.65);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.rc-compare-bad .rc-compare-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: rgba(192, 114, 92, 0.5);
}

.rc-compare-good .rc-compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(212, 168, 83, 0.5);
}

.rc-compare-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.5;
}

.pain-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.pain-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(251, 249, 245, 0.08);
  pointer-events: none;
}

.pain-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.bridge-box {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(251, 249, 245, 0) 100%);
  padding: 1.35rem 1.5rem;
  border-radius: 8px;
  border-left: 2px solid rgba(212, 168, 83, 0.35);
  margin-top: 1.5rem;
}

.bridge-text {
  color: rgba(251, 249, 245, 0.82);
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pain-visual-col {
    order: -1;
  }
  .pain-visual-img {
    max-height: 320px;
    object-fit: cover;
    object-position: center;
  }
  .rc-compare {
    flex-direction: column;
  }
  .rc-compare-arrow {
    transform: rotate(90deg);
    justify-content: center;
    margin: 1.25rem 0;
  }
}

/* Section 4 — Credibility with Botanical Arch portrait */
.section-credibility {
  background-color: var(--bg-surface);
}

.portrait-arch-frame {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.arch-container {
  width: 100%;
  border-radius: 200px 200px 0 0; /* Classical Arch Shape */
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.08);
  border: 1px solid rgba(58, 89, 75, 0.15);
  position: relative;
  z-index: 2;
  background-color: var(--bg-base);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(10%) contrast(95%); /* Warm filter */
}

.arch-line-art {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  border: 1px solid var(--accent-secondary);
  border-radius: 200px 200px 0 0;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 480px) {
  .arch-line-art {
    left: -10px !important;
    top: 10px !important;
    right: 10px !important;
    bottom: -10px !important;
  }
}

/* Section 5 — Framework Steps in Arched Layout */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 120px 120px 8px 8px; /* Arch-topped cards */
  padding: 3.5rem 1.75rem 2.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(58, 89, 75, 0.03);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-secondary);
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.08);
}

.step-header {
  margin-bottom: 1.25rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent-secondary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  font-family: var(--font-sans);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-arch-motif {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  border-top: 1px solid rgba(58, 89, 75, 0.2);
}

/* Section 6 — Offer Cards */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.offer-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.03);
}

.cohort-card {
  border-top: 4px solid var(--accent-primary);
  box-shadow: 0 20px 45px rgba(58, 89, 75, 0.06);
}

.consult-card {
  border-top: 4px solid var(--accent-secondary);
}

.card-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background-color: var(--accent-secondary);
  color: var(--bg-base);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 2px;
}

.offer-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.offer-title {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
}

.offer-desc {
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  min-height: 80px;
  font-size: 0.98rem;
}

.benefit-list {
  list-style: none;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.benefit-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-list .icon {
  color: var(--accent-secondary);
}

.target-user {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.92rem;
  border: 1px solid rgba(58, 89, 75, 0.08);
}

.price-box {
  margin-top: auto;
  margin-bottom: 2.5rem;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.price-val {
  font-size: 2.35rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--accent-primary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Section 7 — Qualifications */
.qualify-box {
  padding: 2rem;
  border-radius: 8px;
  background: rgba(244, 240, 230, 0.4);
  border: 1px solid rgba(58, 89, 75, 0.05);
}

.qualify-title {
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--accent-primary);
}

.bullet-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
}

.bullet-indicator.pass {
  background: rgba(58, 89, 75, 0.08);
  color: var(--accent-primary);
  border: 1px solid rgba(58, 89, 75, 0.2);
}

.bullet-indicator.fail {
  background: rgba(192, 114, 92, 0.08);
  color: var(--accent-secondary);
  border: 1px solid rgba(192, 114, 92, 0.2);
}

.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qualify-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.qualify-positive .qualify-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

.qualify-negative .qualify-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

/* Section 8 — Testimonials with Arched Avatars */
.section-testimonials {
  background-color: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(58, 89, 75, 0.02);
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testi-rating {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
}

.testi-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  border-top: 1px solid rgba(58, 89, 75, 0.08);
  padding-top: 1.5rem;
}

.avatar-arch-container {
  width: 46px;
  height: 56px;
  border-radius: 25px 25px 0 0; /* Arched avatar profile */
  overflow: hidden;
  border: 1px solid rgba(58, 89, 75, 0.25);
  box-shadow: 0 4px 10px rgba(58, 89, 75, 0.05);
}

.testi-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent-wash);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testi-info {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section 9 — FAQ (Editorial Accordions) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent-primary);
}

.faq-question {
  padding: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-secondary);
  transition: transform 0.2s ease;
  font-weight: 300;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(58, 89, 75, 0.05);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-secondary);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Section 10 — CTA Final (Grounding backdrop) */
.section-cta-final {
  background: radial-gradient(circle at center, rgba(192, 114, 92, 0.04) 0%, rgba(251, 249, 245, 0) 70%), var(--bg-surface);
  border-top: 1px solid rgba(58, 89, 75, 0.06);
}

.cta-buttons {
  margin-top: 2.5rem;
}

/* Section 11 — Footer (Grounding Sand color) */
.main-footer {
  border-top: 1px solid rgba(58, 89, 75, 0.1);
  background-color: #ede9dc;
  font-size: 0.9rem;
}

.main-footer .container {
  padding: 5rem 0 2.5rem;
}

.footer-top {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(58, 89, 75, 0.08);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
}

.main-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
}

.main-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.main-footer a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.main-footer a:hover {
  color: var(--accent-secondary);
}

.contact-wa {
  color: var(--accent-primary) !important;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 2.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   Interactive Modals (Dialog) Design — Warm Botanical Styling
   ========================================================================== */

.dialog-glass {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: var(--bg-base);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 20px 50px rgba(58, 89, 75, 0.15);
  border-radius: 12px;
  width: 90%;
  max-width: var(--container-max-sm);
  padding: 0;
  color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.dialog-glass[open] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.dialog-glass::backdrop {
  background: rgba(43, 54, 49, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
}

.dialog-content {
  padding: 3rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .dialog-content {
    padding: 2rem 1.25rem;
  }
}

.dialog-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.dialog-close-btn:hover {
  color: var(--text-primary);
}

.dialog-header {
  margin-bottom: 2.25rem;
  padding-right: 2rem;
}

.dialog-header h3 {
  font-size: 1.85rem;
  margin: 0.5rem 0 0.25rem;
  font-weight: 500;
  color: var(--accent-primary);
}

.dialog-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Forms design */
.checkout-form, .application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.no-margin {
  margin-bottom: 0;
}

.form-field-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label, .form-field-item label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input, .form-group textarea,
.form-field-item input {
  font-family: var(--font-sans);
  background: var(--bg-surface);
  border: 1px solid rgba(58, 89, 75, 0.15);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus,
.form-field-item input:focus {
  outline: none;
  border-color: var(--accent-secondary);
  box-shadow: 0 0 8px rgba(192, 114, 92, 0.15);
  background: #ffffff;
}

.form-group input:user-valid:not(:placeholder-shown), .form-group textarea:user-valid:not(:placeholder-shown),
.form-field-item input:user-valid:not(:placeholder-shown) {
  border-color: rgba(58, 89, 75, 0.4) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233a594b' width='16' height='16'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-group input:user-invalid, .form-group textarea:user-invalid,
.form-field-item input:user-invalid {
  border-color: rgba(192, 114, 92, 0.4) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c0725c' width='16' height='16'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Checkout simulated structures */
.alert-box {
  padding: 1.15rem;
  border-radius: 4px;
  font-size: 0.92rem;
  line-height: 1.6;
  border-left: 2px solid;
}

.alert-info {
  background: var(--accent-wash);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.checkout-summary {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 1.25rem;
  border: 1px solid rgba(58, 89, 75, 0.1);
  margin-top: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

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

.total-row {
  border-top: 1px solid rgba(58, 89, 75, 0.15);
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-primary);
}

/* Success views */

/* Success views */
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(58, 89, 75, 0.08);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.icon-gold {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  background: rgba(192, 114, 92, 0.08);
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Compositor-driven Scroll Animations
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .scroll-reveal {
      animation: fade-up auto linear backwards;
      animation-timeline: view();
      animation-range: entry 12% cover 35%;
    }
    
    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(35px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
  }
}

/* Fallback/JS class if needed */
.js-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

.blog-hero {
  padding: 6.5rem 0 3.5rem;
}

.blog-list-section {
  padding-bottom: 6rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Featured Carousel Styles */
.section-featured-slider {
  background: var(--bg-base);
  padding: 2rem 0;
}

.featured-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.04);
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-panel);
}

@media (min-width: 768px) {
  .carousel-slide {
    grid-template-columns: 42% 58%;
  }
}

.slide-image-wrapper {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .slide-image-wrapper {
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
  }
}

.slide-placeholder-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 10px rgba(58, 89, 75, 0.12));
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.slide-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slide-meta .badge {
  margin-bottom: 0;
  font-size: 0.7rem;
}

.slide-meta .read-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.slide-title {
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--accent-primary);
  font-weight: 550;
}

.slide-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Slide Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(58, 89, 75, 0.08);
}

@media (min-width: 1024px) {
  .carousel-btn {
    display: flex;
  }
}

.carousel-btn:hover {
  background: var(--accent-primary);
  color: var(--bg-base);
  border-color: var(--accent-primary);
}

.carousel-btn.btn-prev {
  left: 15px;
}

.carousel-btn.btn-next {
  right: 15px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(58, 89, 75, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-primary);
  width: 16px;
  border-radius: 3px;
}

/* Gradients for placeholders */
.placeholder-gradient-1 {
  background: linear-gradient(135deg, rgba(192, 114, 92, 0.15) 0%, rgba(58, 89, 75, 0.08) 100%);
}

.placeholder-gradient-2 {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(58, 89, 75, 0.08) 100%);
}

.placeholder-gradient-3 {
  background: linear-gradient(135deg, rgba(58, 89, 75, 0.15) 0%, rgba(192, 114, 92, 0.08) 100%);
}

.placeholder-gradient-4 {
  background: linear-gradient(135deg, rgba(192, 114, 92, 0.12) 0%, rgba(212, 168, 83, 0.12) 100%);
}

.placeholder-gradient-5 {
  background: linear-gradient(135deg, rgba(58, 89, 75, 0.18) 0%, rgba(212, 168, 83, 0.1) 100%);
}

/* Regular Card Styling */
.blog-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(58, 89, 75, 0.02);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-secondary);
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.06);
}

.blog-card-thumbnail {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  background-color: var(--bg-surface);
}

.blog-card-thumbnail img,
.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-content-wrap {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-secondary);
  letter-spacing: 0.05em;
}

.blog-card-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.blog-read-more-btn:hover {
  color: var(--accent-secondary);
  transform: translateX(4px);
}

/* Active navigation state */
.main-nav a.active {
  color: var(--accent-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-secondary);
  padding-bottom: 4px;
}

/* Article Reader Modal Overrides */
.reader-dialog {
  max-width: 750px;
}

.reader-header {
  border-bottom: 1px solid rgba(58, 89, 75, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.reader-time-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.75rem;
}

.reader-title {
  font-size: 2.25rem;
  color: var(--accent-primary);
  margin-top: 0.75rem;
  font-weight: 500;
}

.reader-body-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
}

.reader-body-content p {
  margin-bottom: 1.5rem;
}

.reader-body-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-highlight);
  border-left: 2px solid var(--accent-secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.reader-body-content h3 {
  font-size: 1.45rem;
  color: var(--accent-primary);
  margin: 2rem 0 1rem;
}

.reader-footer {
  margin-top: 3rem;
}

.reader-divider {
  height: 1px;
  background: rgba(58, 89, 75, 0.08);
  margin-bottom: 2rem;
}

.reader-footer-note {
  font-size: 1.25rem;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.reader-cta-buttons {
  display: flex;
  gap: 1rem;
}

/* ==========================================================================
   AI Mindset Diagnostics Section & Quiz Styles
   ========================================================================== */

.border-terracotta {
  border-color: rgba(192, 114, 92, 0.4) !important;
  box-shadow: 0 15px 45px rgba(192, 114, 92, 0.05) !important;
}

/* Somatic scanning GFX */
.somatic-scanning-gfx {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.brain-radar-pulse {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-center {
  font-size: 3.5rem;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(192, 114, 92, 0.2));
}

.radar-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent-secondary);
  animation: radar-wave 2.5s infinite linear;
  opacity: 0;
  z-index: 1;
}

.radar-ripple::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  border-radius: 50%;
  border: 1.5px solid var(--accent-primary);
  animation: radar-wave 2.5s infinite linear 0.8s;
  opacity: 0;
}

@keyframes radar-wave {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.scanning-lines-box {
  width: 100%;
  max-width: 320px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

.scanning-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
  animation: scanning-bar 3s infinite linear;
  opacity: 0.6;
}

@keyframes scanning-bar {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.scanning-logs {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scanning-logs li {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Quiz dialog specific sizes */
.quiz-dialog {
  max-width: 650px;
}

.quiz-progress-container {
  margin-bottom: 2.25rem;
}

.quiz-progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quiz-progress-bg {
  height: 6px;
  background: var(--bg-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(58, 89, 75, 0.08);
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 10px;
}

/* Quiz Steps layout */
.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: slide-in-step 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-in-step {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.quiz-question-title {
  font-size: 1.65rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.35;
  font-weight: 500;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-option-card {
  display: flex;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 4px 10px rgba(58, 89, 75, 0.01);
}

.quiz-option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(58, 89, 75, 0.3);
  background: #ffffff;
}

.quiz-option-card input[type="radio"] {
  accent-color: var(--accent-secondary);
  margin-right: 1.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Custom styling for checked option using :has */
.quiz-option-card:has(input[type="radio"]:checked) {
  background-color: var(--accent-wash);
  border-color: var(--accent-secondary);
  box-shadow: 0 4px 15px rgba(192, 114, 92, 0.1);
}

.option-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.quiz-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 1px solid rgba(58, 89, 75, 0.08);
  padding-top: 1.5rem;
}

.quiz-navigation .btn-prev-step {
  margin-right: auto;
}

/* Neural Scanning animation loader */
.neural-scanning-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 3rem auto 1.5rem;
}

.neural-spinner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--accent-wash);
  border-top-color: var(--accent-secondary);
  border-bottom-color: var(--accent-primary);
  animation: spin-loader 2s infinite linear;
}

@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.neural-indicator-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: breathe-scale 2s infinite ease-in-out;
}

@keyframes breathe-scale {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
}

.loading-logs-container {
  min-height: 50px;
  background: rgba(43, 54, 49, 0.03);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(58, 89, 75, 0.08);
  max-width: 400px;
  margin: 1.5rem auto 0;
}

#neural-loading-log {
  font-family: monospace;
  color: var(--text-secondary);
}

/* Report View layouts */
.report-header {
  border-bottom: 2px dashed rgba(58, 89, 75, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.report-title {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-top: 0.5rem;
}

.report-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.report-box {
  background: rgba(244, 240, 230, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--accent-secondary);
}

.report-box-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.report-box p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==========================================================================
   Cohort Syllabus Page Styles
   ========================================================================== */

.cohort-hero {
  padding: 6.5rem 0 3.5rem;
}

.section-syllabus {
  padding-bottom: 6rem;
}

.syllabus-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .syllabus-layout {
    grid-template-columns: 320px 1fr;
  }
}

.syllabus-navigation {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: start;
  position: sticky;
  top: 100px;
  z-index: 10;
}

@media (max-width: 991px) {
  .syllabus-navigation {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
  }
  .syllabus-nav-item {
    flex-shrink: 0;
    min-width: 220px;
  }
}

.syllabus-nav-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(58, 89, 75, 0.01);
  text-align: left;
}

.syllabus-nav-item:hover {
  transform: translateY(-1px);
  border-color: rgba(58, 89, 75, 0.3);
  background: #ffffff;
}

.syllabus-nav-item.active {
  background-color: var(--accent-wash);
  border-color: var(--accent-secondary);
  box-shadow: 0 5px 15px rgba(192, 114, 92, 0.08);
}

.nav-item-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-style: italic;
  color: var(--accent-secondary);
  line-height: 1;
}

.nav-item-meta {
  display: flex;
  flex-direction: column;
}

.nav-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.nav-item-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Dynamic details panel (Right) */
.syllabus-details-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(58, 89, 75, 0.03);
  backdrop-filter: blur(8px);
  min-height: 400px;
}

@media (max-width: 640px) {
  .syllabus-details-panel {
    padding: 2rem 1.5rem;
  }
}

.syllabus-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Syllabus content components */
.syllabus-details-header {
  border-bottom: 1px solid rgba(58, 89, 75, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  animation: fade-in-panel 0.4s ease;
}

@keyframes fade-in-panel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.syllabus-session-title {
  font-size: 2.25rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.syllabus-tujuan-box {
  background: rgba(244, 240, 230, 0.4);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-secondary);
  border-radius: 4px;
  padding: 1.5rem;
}

.tujuan-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: block;
}

.tujuan-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Detailed block sections */
.syllabus-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  animation: fade-in-panel 0.4s ease 0.1s backwards;
}

.syllabus-block-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(58, 89, 75, 0.08);
  padding-bottom: 0.5rem;
}

.syllabus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.syllabus-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.syllabus-list .bullet-num {
  position: absolute;
  left: 0;
  font-family: var(--font-serif);
  font-weight: bold;
  font-style: italic;
  color: var(--accent-secondary);
  font-size: 1.15rem;
}

.syllabus-list .bullet-dot {
  position: absolute;
  left: 0.5rem;
  color: var(--accent-primary);
  font-weight: bold;
}

/* Jurnal groups */
.syllabus-jurnal-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jurnal-sub-block {
  background: rgba(255, 255, 255, 0.3);
  border: 1px dashed rgba(58, 89, 75, 0.12);
  border-radius: 6px;
  padding: 1.5rem;
}

.jurnal-sub-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Facilitator notes layout */
.section-facilitator-notes {
  background-color: var(--bg-surface);
  border-top: 1px solid rgba(58, 89, 75, 0.05);
  border-bottom: 1px solid rgba(58, 89, 75, 0.05);
}

.facilitator-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.facilitator-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.facilitator-list li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.assets-box {
  border-top: 1px solid rgba(58, 89, 75, 0.08);
  padding-top: 2rem;
}

.grid-4-col-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .grid-4-col-mini {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .grid-4-col-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}

.asset-mini-card {
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.asset-icon {
  font-size: 1.75rem;
}



