/* =============================================
   NATAGARA — Landing Page CSS
   Design: Warm Earthy Elegance
   ============================================= */

:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE4;
  --amber:        #C8832A;
  --amber-light:  #E8A84A;
  --amber-dim:    #F4D49A;
  --forest:       #2D4A22;
  --forest-light: #3D6630;
  --rust:         #B84C2D;
  --rust-light:   #E85D3E;
  --charcoal:     #1C1C1E;
  --charcoal-mid: #3A3A3C;
  --text-main:    #1C1C1E;
  --text-muted:   #6E6E73;
  --text-light:   #AEAEB2;
  --border:       rgba(0,0,0,0.08);
  --border-warm:  rgba(200,131,42,0.2);
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --font-sans:    'Plus Jakarta Sans', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn .material-icons-round { font-size: 18px; }

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,131,42,0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,131,42,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  font-size: 0.85rem;
}
.btn-outline:hover { background: var(--amber); color: #fff; }
.btn-outline .material-icons-round { font-size: 16px; }

.btn-hero-primary {
  background: var(--amber);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(200,131,42,0.4);
}
.btn-hero-primary:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,131,42,0.5);
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.btn-cta {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}
.btn-cta:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--amber);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.navbar:not(.scrolled) .logo-text { color: #fff; }
.navbar:not(.scrolled) .logo-mark { background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.4); }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.navbar:not(.scrolled) .btn-ghost { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--charcoal); padding: 6px;
}
.navbar:not(.scrolled) .hamburger { color: #fff; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1C1E 0%, #2D2B26 40%, #1A2A14 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,131,42,0.45), transparent 70%);
  top: -150px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,74,34,0.6), transparent 70%);
  bottom: -100px; left: -80px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,76,45,0.3), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: floatOrb 12s ease-in-out infinite 2s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,131,42,0.18);
  border: 1px solid rgba(200,131,42,0.35);
  color: var(--amber-dim);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease both;
}
.hero-badge .material-icons-round { font-size: 15px; color: var(--amber-light); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
  font-family: var(--font-serif);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll-indicator .material-icons-round { font-size: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* =============================================
   ECOSYSTEM / PILLARS
   ============================================= */
.ecosystem {
  padding: 100px 0;
  background: var(--cream);
}

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

.pillar-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  overflow: hidden;
  display: block;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar-card:hover::before { opacity: 1; }

.pillar-news::before   { background: linear-gradient(135deg, rgba(200,131,42,0.06), rgba(200,131,42,0.02)); }
.pillar-shop::before   { background: linear-gradient(135deg, rgba(45,74,34,0.07), rgba(45,74,34,0.02)); }
.pillar-lms::before    { background: linear-gradient(135deg, rgba(184,76,45,0.06), rgba(184,76,45,0.02)); }

.pillar-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.pillar-news .pillar-icon-wrap  { background: rgba(200,131,42,0.12); }
.pillar-shop .pillar-icon-wrap  { background: rgba(45,74,34,0.10); }
.pillar-lms .pillar-icon-wrap   { background: rgba(184,76,45,0.10); }

.pillar-icon {
  font-size: 28px !important;
}
.pillar-news .pillar-icon  { color: var(--amber); }
.pillar-shop .pillar-icon  { color: var(--forest); }
.pillar-lms .pillar-icon   { color: var(--rust); }

.pillar-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pillar-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}
.pillar-news .pillar-tags span  { background: rgba(200,131,42,0.1); color: var(--amber); }
.pillar-shop .pillar-tags span  { background: rgba(45,74,34,0.08); color: var(--forest-light); }
.pillar-lms .pillar-tags span   { background: rgba(184,76,45,0.08); color: var(--rust); }

.pillar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  transition: color var(--transition);
}
.pillar-link .material-icons-round { font-size: 16px; transition: transform var(--transition); }
.pillar-card:hover .pillar-link { color: var(--amber); }
.pillar-card:hover .pillar-link .material-icons-round { transform: translateX(4px); }

/* =============================================
   BERITA TERKINI
   ============================================= */
.news-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Skeleton */
.news-skeleton {
  background: linear-gradient(90deg, #e8e0d5 25%, #f0e8df 50%, #e8e0d5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
  min-height: 280px;
}
.news-skeleton-sm { min-height: 180px; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.news-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-dark), #E5DDD1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
}
.news-card-img-placeholder .material-icons-round { font-size: 36px; }
.news-card-img-placeholder span:last-child { font-size: 0.75rem; }

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 14px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}
.news-card-meta-left { display: flex; align-items: center; gap: 6px; }
.news-card-meta .material-icons-round { font-size: 13px; }

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
}
.news-read-more .material-icons-round { font-size: 14px; transition: transform var(--transition); }
.news-card:hover .news-read-more .material-icons-round { transform: translateX(3px); }

/* =============================================
   MARKETPLACE
   ============================================= */
.market-section {
  padding: 100px 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-skeleton {
  background: linear-gradient(90deg, #e8e0d5 25%, #f0e8df 50%, #e8e0d5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
  min-height: 300px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-img {
  width: 100%;
  height: 180px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.07); }

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #EDE5D8, #E0D5C5);
  color: var(--text-light);
}
.product-img-placeholder .material-icons-round { font-size: 40px; }
.product-img-placeholder small { font-size: 0.7rem; }

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--rust);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-store {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-store .material-icons-round { font-size: 11px; }

.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  flex: 1;
}

.product-price-wrap {
  margin-bottom: 10px;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--forest);
}
.product-price-original {
  font-size: 0.77rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-top: 1px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.product-rating .material-icons-round { font-size: 14px; color: #F59E0B; }
.product-rating strong { color: var(--charcoal); font-weight: 700; }
.product-sales { margin-left: auto; color: var(--text-light); }

/* =============================================
   LMS / COURSES
   ============================================= */
.lms-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

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

.course-skeleton {
  background: linear-gradient(90deg, #e8e0d5 25%, #f0e8df 50%, #e8e0d5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
  min-height: 260px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.course-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.course-card:hover::after { transform: scaleX(1); }

.course-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.course-level-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
}
.level-beginner     { background: rgba(45,74,34,0.1);  color: var(--forest-light); }
.level-intermediate { background: rgba(200,131,42,0.12); color: var(--amber); }
.level-advanced     { background: rgba(184,76,45,0.1);  color: var(--rust); }

.course-price-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--forest);
}
.course-price-badge.free {
  background: rgba(45,74,34,0.08);
  color: var(--forest-light);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
}

.course-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1;
}

.course-instructor {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.instructor-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-dim), var(--amber-light));
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
}
.instructor-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.course-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.course-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.course-stat .material-icons-round { font-size: 14px; color: var(--amber); }

/* =============================================
   WHY NATAGARA
   ============================================= */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--border-warm);
}

.why-icon {
  width: 52px; height: 52px;
  background: rgba(200,131,42,0.12);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-icon .material-icons-round { font-size: 24px; color: var(--amber); }

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.cta-inner {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  overflow: hidden;
  text-align: center;
}

.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb-1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,131,42,0.25), transparent 70%);
  top: -100px; right: -80px;
}
.cta-orb-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,74,34,0.3), transparent 70%);
  bottom: -80px; left: -60px;
}

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

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

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

.footer-brand .logo-mark { background: rgba(200,131,42,0.3); border-color: rgba(200,131,42,0.4); }
.footer-brand .logo-text { color: #fff; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.footer-socials .material-icons-round { font-size: 18px; }

.footer-links-group h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom p:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .courses-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===== MOBILE NAV OPEN ===== */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-links.open a { font-size: 1.4rem; color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
