/* ========================================
   ANAK BIJAK SAINS - Design System
   Kid-Friendly 3D Cartoon Science Theme
   Soft, Rounded, Joyful, Premium
   ======================================== */

/* ========================================
   CSS VARIABLES - Refined Color Palette
   ======================================== */
:root {
  /* Primary Colors - Softer greens for kid-friendly feel */
  --primary-green: #4ABA7E;
  --primary-green-light: #7DD4A3;
  --primary-green-dark: #2E9B62;

  /* Secondary Colors */
  --secondary-green: #2A8F5B;
  --emerald: #5BCF8A;
  --mint: #B8F0D5;
  --mint-soft: #D4F7E6;

  /* Pastel Accents - Kid-friendly palette */
  --accent-yellow: #FFE066;
  --accent-yellow-hover: #FFD426;
  --accent-teal: #5DC9C4;
  --accent-sky: #9AD4F0;
  --accent-peach: #FFCAB0;
  --accent-lavender: #D4C5F0;

  /* Background - Softer, calmer greens */
  --bg-light: #F5FDF8;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section-alt: #EAF8EF;
  --bg-mint-gradient: linear-gradient(180deg, #E8F8EF 0%, #D4F0E2 100%);

  /* Text */
  --text-dark: #2D3748;
  --text-medium: #4A5568;
  --text-light: #718096;
  --text-white: #FFFFFF;

  /* Shadows - Softer, no harsh edges */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 6px 24px rgba(74, 186, 126, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* Border Radius - Rounded, friendly */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
}

@media (min-width: 768px) {
  p {
    font-size: 1.125rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  color: var(--secondary-green);
  margin-bottom: var(--space-sm);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--primary-green);
}

.text-yellow {
  color: var(--accent-yellow);
}

.highlight {
  color: var(--secondary-green);
  font-weight: 600;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-hover) 100%);
  color: var(--text-dark);
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-md), 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(60, 179, 113, 0.1);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-green);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-green);
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo svg {
  width: 40px;
  height: 40px;
}

.navbar-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-green);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: var(--space-xs) 0;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width var(--transition-normal);
}

.navbar-link:hover {
  color: var(--primary-green);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-section-alt);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.lang-toggle button.active {
  background: var(--primary-green);
  color: var(--text-white);
}

/* Mobile Menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-actions {
    flex-direction: column;
    width: 100%;
  }

  .navbar-actions .btn {
    width: 100%;
  }
}

/* ========================================
   HERO SECTION - MINIMALIST FULL-WIDTH
   ======================================== */
.hero-minimalist {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to right,
      transparent 0%,
      transparent 40%,
      rgba(240, 255, 240, 0.95) 50%,
      var(--bg-light) 60%);
  padding: 0 var(--space-2xl);
}

.hero-text-content {
  max-width: 500px;
  padding: var(--space-2xl) 0;
}

.hero-text-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.hero-text-content h1 span {
  color: var(--primary-green);
}

.hero-text-content .hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-text-content .hero-description {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

.hero-text-content .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.hero-text-content .hero-buttons .btn {
  min-width: 260px;
  text-align: center;
  box-sizing: border-box;
}

.hero-badge-inline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

.hero-badge-inline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--bg-white);
  padding: 1rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-green);
}

.hero-badge-inline span svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-green);
}

/* Responsive - Tablet/Mobile */
@media (max-width: 992px) {
  .hero-minimalist {
    min-height: auto;
    flex-direction: column;
    padding-top: 100px;
  }

  .hero-bg-image {
    position: relative;
    width: 100%;
    height: 350px;
  }

  .hero-overlay {
    min-height: auto;
    justify-content: center;
    background: var(--bg-light);
    padding: var(--space-xl) var(--space-md);
  }

  .hero-text-content {
    text-align: center;
    padding: 0;
  }

  .hero-text-content .hero-buttons {
    justify-content: center;
  }

  .hero-badge-inline {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-bg-image {
    height: 280px;
  }

  .hero-text-content h1 {
    font-size: 2rem;
  }

  .hero-text-content .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-content .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Old hero styles kept for backwards compatibility */
.hero {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--mint) 50%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-content h1 {
  color: var(--secondary-green);
  margin-bottom: var(--space-md);
}

.hero-content h1 span {
  color: var(--primary-green);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animation {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.hero-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  background: var(--bg-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  animation: float 3s ease-in-out infinite;
}

.hero-badge:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-badge:nth-child(2) {
  top: 40%;
  right: -15%;
  animation-delay: 0.5s;
}

.hero-badge:nth-child(3) {
  bottom: 20%;
  right: -5%;
  animation-delay: 1s;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-green);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    margin-bottom: var(--space-lg);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    display: none;
  }
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  background: var(--secondary-green);
  padding: 0.75rem 0;
}

.trust-strip-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-white);
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-white);
}

.trust-text {
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-strip-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip-container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   VIDEO STORY SECTION - Redesigned UX
   Two-Column Layout | Video-Led | Calm & Structured
   ======================================== */
.video-story {
  padding-top: 4rem;
  padding-bottom: 5rem;
  /* Level 1: Near-neutral mint background - calming resting surface */
  background: #F8FBF9;
  overflow: visible;
}

.story-shape-wrapper {
  position: relative;
  margin-top: 40px;
}

/* Title Tab - Cleaner, more subtle */
.story-tab {
  background: #EEF7F1;
  display: inline-block;
  padding: 0.875rem 2.5rem 0.875rem 2rem;
  border-radius: 16px 16px 0 0;
  position: relative;
  margin-bottom: -1px;
  z-index: 2;
}

.story-tab h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D5A47;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Main Content Box - Softer, clearer contrast */
.story-content-box {
  /* Level 2: Soft mint surface - content container */
  background: linear-gradient(180deg, #EEF7F1 0%, #E5F2E9 100%);
  border-radius: 0 32px 32px 32px;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(45, 90, 71, 0.08);
}

/* Two-Column Grid: 60% Video (Left) | 40% Text (Right) */
.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Video Column */
.story-video {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========================================
   VIDEO ARTWORK PLAYER
   The artwork IS the video player
   ======================================== */
.video-artwork-player {
  position: relative;
  width: 100%;
  max-height: 540px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-artwork-player:hover {
  transform: scale(1.02);
}

.video-artwork-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: filter 0.3s ease;
}

.video-artwork-player:hover .video-artwork-image {
  filter: brightness(1.05);
}

.video-label {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45, 90, 71, 0.9);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-artwork-player.playing .video-label,
.video-artwork-player.playing .video-artwork-image {
  display: none;
}

.video-artwork-player iframe {
  display: none;
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 70%;
  border-radius: 12px;
  z-index: 10;
}

.video-artwork-player.playing iframe {
  display: block;
}

/* Text Column - Improved typography */
.story-text {
  max-width: 440px;
  padding-top: 0.5rem;
}

.story-text h3 {
  color: #1B5E20;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

.story-text p {
  color: #4A5A52;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.85;
  /* Calmer reading rhythm */
}

/* ========================================
   VIDEO CARD - Hero Element (1.6× Larger Feel)
   ======================================== */
.video-wrapper {
  position: relative;
  padding-bottom: 60%;
  /* Slightly taller for more presence */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  /* Content-feel, not CTA */
  /* Level 3: Deep forest video surface */
  background: #1a3d2e;
  /* Refined shadow + inner depth */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper::before {
  /* Soft vignette effect */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 6;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Video Placeholder - Darker, professional media feel */
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Deep forest green - strong contrast with section */
  background: linear-gradient(145deg, #2D5A47 0%, #1a3d2e 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  border-radius: 20px;
}

.video-placeholder:hover {
  background: linear-gradient(145deg, #357A5A 0%, #2D5A47 100%);
}

/* Play Icon - Reduced 30% (65px from 90px) */
.video-placeholder .play-icon {
  width: 65px;
  height: 65px;
  background: #FFD54F;
  /* Yellow - only accent here */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 4px rgba(255, 213, 79, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-placeholder:hover .play-icon {
  transform: scale(1.1);
  background: #FFCA28;
}

/* Play Triangle - Proportionally smaller */
.video-placeholder .play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-placeholder span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* YouTube Link - Yellow accent only here */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E6A00E;
  /* Slightly deeper gold for contrast */
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 1.25rem;
  font-size: 1rem;
}

.link-arrow:hover {
  border-bottom-color: #E6A00E;
  gap: 0.75rem;
}

.link-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hide top character */
.story-character-top img {
  display: none;
}

/* ========================================
   ILLUSTRATION - Supporting Role
   ======================================== */
.story-character-bottom {
  position: relative;
  width: 100%;
  max-width: 180px;
  /* Reduced size */
  margin: 0;
  /* Remove auto-center, position in video column */
  z-index: 1;
  pointer-events: auto;
  transform: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  opacity: 0.88;
}

.story-character-bottom:hover {
  transform: scale(1.03);
  opacity: 1;
}

.story-character-bottom img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  /* Soft card backing */
  background: white;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========================================
   RESPONSIVE - Mobile First
   ======================================== */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-video {
    order: 1;
  }

  .story-text {
    order: 2;
    max-width: 100%;
    padding-top: 0;
  }

  .story-content-box {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 576px) {
  .video-story {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .story-shape-wrapper {
    margin-top: 20px;
  }

  .story-tab {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 20px 20px 0 0;
  }

  .story-tab h3 {
    font-size: 0.95rem;
  }

  .story-content-box {
    border-radius: 0 0 24px 24px;
    padding: 1.75rem 1.25rem;
  }

  .story-text h3 {
    font-size: 1.35rem;
  }

  .story-text p {
    font-size: 0.95rem;
  }

  .story-character-top {
    display: none;
  }

  /* Video artwork player adjustments for mobile */
  .video-label {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    bottom: 20%;
  }
}

/* ========================================
   PROGRAM SECTION - Figma Design Match
   Image MUST be large and dominant (50-60% width)
   ======================================== */
.programs {
  background: var(--bg-white);
  padding: 5rem 0;
}

/* Override container max-width for programs */
.programs .container {
  max-width: 1200px;
  padding: 0 2rem;
}

/* Container for all program rows */
.programs .programs-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Each program row - FORCED 50/50 layout */
.programs .program-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

/* Alternating layout: 2nd row reverses */
.programs .program-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* IMAGE SIDE - 50% width, DOMINANT PRESENCE */
.programs .program-visual {
  flex: 0 0 50% !important;
  width: 50% !important;
  min-width: 400px;
  position: relative;
}

/* IMAGE - MUST fill container, NO max-width constraint */
.programs .program-image {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
}

.programs .program-row:hover .program-image {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* TEXT SIDE - 45% width */
.programs .program-content {
  flex: 0 0 45%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Badge styling - green pill */
.programs .program-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Title styling */
.programs .program-title {
  font-size: 2rem;
  color: #1B5E20;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}

/* Subtitle styling - green text as shown in Figma */
.programs .program-subtitle {
  font-size: 1rem;
  color: #43A047;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Description styling */
.programs .program-description {
  color: #5D6D7E;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .programs .programs-container {
    gap: 4rem;
  }

  .programs .program-row,
  .programs .program-row:nth-child(even) {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .programs .program-visual,
  .programs .program-content {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: auto;
  }

  .programs .program-content {
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .programs .program-title {
    font-size: 1.75rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .programs {
    padding: 3rem 0;
  }

  .programs .programs-container {
    gap: 3rem;
  }

  .programs .program-title {
    font-size: 1.5rem;
  }

  .programs .program-description {
    font-size: 0.9rem;
  }
}

/* ========================================
   STRUKTUR KELAS SECTION
   ======================================== */
.struktur {
  background: linear-gradient(135deg, var(--bg-section-alt) 0%, var(--mint) 100%);
}

.struktur-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.struktur-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(60, 179, 113, 0.15);
}

.struktur-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.struktur-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
  border-radius: var(--radius-md);
}

.struktur-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
}

.struktur-title {
  font-size: 1.375rem;
  color: var(--secondary-green);
}

.struktur-subtitle {
  color: var(--primary-green);
  font-weight: 500;
  font-size: 0.9375rem;
}

.struktur-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.struktur-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-medium);
  font-size: 0.9375rem;
}

.struktur-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .struktur-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-us {
  background: var(--bg-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-card {
  text-align: center;
  padding: var(--space-lg);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-section-alt) 0%, var(--mint) 100%);
  border-radius: 50%;
  border: 2px solid var(--primary-green-light);
}

.why-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-green);
}

.why-title {
  font-size: 1.125rem;
  color: var(--secondary-green);
  margin-bottom: var(--space-xs);
}

.why-text {
  color: var(--text-medium);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   WHY CHOOSE US - DYNAMIC KID-FRIENDLY
   ======================================== */
.why-us-dynamic {
  background: var(--bg-white);
  padding: var(--space-3xl) 0;
}

.why-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xl);
}

.why-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--transition-normal);
}

.why-item:hover {
  transform: translateY(-8px);
}

.why-icon-img {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(60, 179, 113, 0.15));
  transition: transform var(--transition-normal);
}

.why-item:hover .why-icon-img img {
  transform: scale(1.1);
}

.why-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-item-text {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .why-grid-dynamic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid-dynamic {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-icon-img {
    width: 100px;
    height: 100px;
  }
}

/* ========================================
   FREE ASSESSMENT SECTION
   ======================================== */
.assessment {
  background: linear-gradient(135deg, var(--bg-section-alt) 0%, var(--mint) 100%);
}

.assessment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.assessment-visual {
  position: relative;
}

.assessment-image {
  max-width: 100%;
  border-radius: var(--radius-xl);
}

.assessment-content h2 {
  color: var(--secondary-green);
  margin-bottom: var(--space-md);
}

.assessment-list {
  margin-bottom: var(--space-lg);
}

.assessment-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--text-medium);
}

.assessment-list li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
  flex-shrink: 0;
}

.assessment-highlight {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-green);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-lg);
}

.assessment-highlight p {
  color: var(--secondary-green);
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 992px) {
  .assessment-container {
    grid-template-columns: 1fr;
  }

  .assessment-visual {
    order: -1;
    text-align: center;
  }
}

/* ========================================
   SIGN-UP FORM SECTION
   ======================================== */
.signup {
  background: var(--bg-white);
}

.signup-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.signup-visual {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #E8F8F0 0%, #D4F1E4 40%, #E0F5EA 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  min-height: 100%;
}

.signup-visual h3 {
  font-size: 1.5rem;
  color: var(--secondary-green);
  margin-top: var(--space-md);
  position: relative;
  z-index: 2;
}

.signup-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
  object-fit: contain;
}

.signup-image:hover {
  transform: scale(1.03);
}

.signup-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(60, 179, 113, 0.15);
}

.signup-form-title {
  font-size: 1.5rem;
  color: var(--secondary-green);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.15);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.active {
  display: block;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--emerald) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--text-white);
}

.form-success h3 {
  color: var(--secondary-green);
  margin-bottom: var(--space-sm);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: #25D366;
  color: var(--text-white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  margin-top: var(--space-md);
  transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 992px) {
  .signup-container {
    grid-template-columns: 1fr;
  }

  .signup-visual {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER - Premium Redesign
   ======================================== */
.footer {
  background: linear-gradient(170deg, #1A3D2B 0%, #143326 40%, #0F2A1F 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Science pattern overlay */
.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23FFFFFF'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3Cpath d='M40 15v10M35 20h10' stroke='%23FFFFFF' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='60' cy='60' r='4' fill='none' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3Cpath d='M15 55l5 10 5-10' stroke='%23FFFFFF' stroke-width='1.5' fill='none'/%3E%3Cpath d='M55 15a5 5 0 11-10 0 5 5 0 0110 0z' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ========================================
   PRE-FOOTER CTA STRIP
   ======================================== */
.footer-cta-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(31, 122, 77, 0.15) 0%, rgba(244, 200, 74, 0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.3;
}

.footer-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 460px;
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #F4C84A 0%, #FFB800 100%);
  color: #1A2E1F;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 16px rgba(244, 200, 74, 0.3);
  transition: all 0.3s ease;
}

.footer-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244, 200, 74, 0.45);
}

.footer-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-cta-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ========================================
   MAIN FOOTER GRID
   ======================================== */
.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 56px 0 40px;
}

/* Brand Section */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 44px;
  height: 44px;
  fill: #FFFFFF;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(31, 122, 77, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(31, 122, 77, 0.3);
}

/* Column Headings */
.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #F4C84A, transparent);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 2px 0;
}

.footer-links a svg {
  opacity: 0.4;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: #F4C84A;
  padding-left: 4px;
}

.footer-links a:hover svg {
  opacity: 1;
  stroke: #F4C84A;
}

/* Contact Items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-contact-item:hover {
  color: #FFFFFF;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(31, 122, 77, 0.5);
  box-shadow: 0 2px 8px rgba(31, 122, 77, 0.3);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

/* Trust Badge */
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  background: rgba(244, 200, 74, 0.1);
  border: 1px solid rgba(244, 200, 74, 0.2);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #F4C84A;
}

.footer-trust-badge svg {
  stroke: #F4C84A;
  flex-shrink: 0;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

.footer-made {
  margin-top: 6px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.footer-heart {
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ========================================
   RESPONSIVE: TABLET (≤992px)
   ======================================== */
@media (max-width: 992px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-text p {
    max-width: none;
  }

  .footer-cta-actions {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 32px;
  }

  .footer-brand {
    max-width: none;
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ========================================
   RESPONSIVE: MOBILE (≤576px)
   ======================================== */
@media (max-width: 576px) {
  .footer-cta-strip {
    padding: 28px 0;
  }

  .footer-cta-text h3 {
    font-size: 20px;
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-btn-primary,
  .footer-cta-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 24px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-trust-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    padding: 20px 0 24px;
  }
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--text-white);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 100px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-green);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--text-white);
}

/* ========================================
   FLOATING SCIENCE ICONS (DECORATIVE)
   ======================================== */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  opacity: 0.1;
  animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon svg {
  fill: var(--primary-green);
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   LOTTIE ANIMATION CONTAINER
   ======================================== */
.lottie-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.lottie-container lottie-player {
  width: 100%;
  height: auto;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 576px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   SCIENCE GRAPHICS STYLES
   ======================================== */

/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(60, 179, 113, 0.2));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Floating Science Icons */
.floating-science-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.float-icon {
  position: absolute;
  animation: floatIcon 5s ease-in-out infinite;
}

.float-icon.icon-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.float-icon.icon-2 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

.float-icon.icon-3 {
  width: 45px;
  height: 45px;
  top: 60%;
  right: -10%;
  animation-delay: 2s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* Program Card Images */
.program-image {
  width: 100%;
  max-width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: var(--space-md) auto 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.program-card:hover .program-image {
  transform: scale(1.05);
}

/* Assessment Image */
.assessment-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 15px 30px rgba(60, 179, 113, 0.15));
}

@media (max-width: 992px) {
  .hero-image {
    max-width: 300px;
  }

  .floating-science-icons {
    display: none;
  }

  .assessment-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 250px;
  }

  .program-image {
    max-width: 140px;
    height: 100px;
  }
}

/* ========================================
   WHY CHOOSE US - PREMIUM CARD SYSTEM
   Modern, Kid-Friendly, Parent-Trust Design
   ======================================== */
.why-us-premium {
  background: linear-gradient(180deg, #F8FDFB 0%, #F0FAF5 100%);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle science pattern background */
.why-us-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(74, 186, 126, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(93, 201, 196, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(74, 186, 126, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

/* Subtle dot pattern for science vibe */
.why-us-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(74, 186, 126, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.why-us-premium .container {
  position: relative;
  z-index: 1;
}

/* Section Header with Hierarchy */
.why-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-section-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-value-sentence {
  font-size: clamp(15px, 2.5vw, 17px);
  color: #4A5568;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Horizontal Divider */
.why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.why-divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #4ABA7E, transparent);
  border-radius: 2px;
}

.why-divider svg {
  color: #4ABA7E;
  flex-shrink: 0;
}

/* Cards Container with Light Panel */
.why-cards-container {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(74, 186, 126, 0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 48px;
}

/* Responsive Grid: 3 → 2 → 1 */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Feature Card */
.why-feature-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(74, 186, 126, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.why-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 186, 126, 0.12);
}

/* Icon Container */
.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.why-feature-card:hover .why-card-icon {
  transform: rotate(3deg) scale(1.05);
}

.why-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Card Title */
.why-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Card Benefit (1-line description) */
.why-card-benefit {
  font-size: 14px;
  font-weight: 400;
  color: #5D6D7E;
  line-height: 1.6;
  margin-bottom: 12px;
  min-height: 44px;
}

/* Proof Badge */
.why-proof-badge {
  display: inline-block;
  background: #E3F2FD;
  color: #1565C0;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Badge Variants */
.why-proof-badge--kssr {
  background: #E8F5E9;
  color: #2E7D32;
}

.why-proof-badge--kbat {
  background: #FFF3E0;
  color: #E65100;
}

.why-proof-badge--handson {
  background: #E0F7FA;
  color: #00838F;
}

/* Mini-CTA Row */
.why-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.why-cta-row .btn {
  min-width: 200px;
}

/* Button Loading State */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Reveal Animation */
.why-feature-card.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-feature-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for cards */
.why-feature-card:nth-child(1) {
  transition-delay: 0.05s;
}

.why-feature-card:nth-child(2) {
  transition-delay: 0.1s;
}

.why-feature-card:nth-child(3) {
  transition-delay: 0.15s;
}

.why-feature-card:nth-child(4) {
  transition-delay: 0.2s;
}

.why-feature-card:nth-child(5) {
  transition-delay: 0.25s;
}

.why-feature-card:nth-child(6) {
  transition-delay: 0.3s;
}

/* Responsive: Tablet (2 columns) */
@media (max-width: 992px) {
  .why-us-premium {
    padding: 64px 0 72px;
  }

  .why-section-header {
    margin-bottom: 36px;
  }

  .why-cards-container {
    padding: 32px 24px;
    margin-bottom: 40px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-feature-card {
    padding: 22px 18px;
  }
}

/* Responsive: Mobile (1 column) */
@media (max-width: 576px) {
  .why-us-premium {
    padding: 56px 0 64px;
  }

  .why-section-header h2 {
    font-size: 26px;
  }

  .why-value-sentence {
    font-size: 14px;
    padding: 0 8px;
  }

  .why-divider span {
    width: 40px;
  }

  .why-cards-container {
    padding: 24px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-feature-card {
    padding: 20px 16px;
  }

  .why-card-icon {
    width: 56px;
    height: 56px;
  }

  .why-card-icon img {
    width: 40px;
    height: 40px;
  }

  .why-card-title {
    font-size: 16px;
  }

  .why-card-benefit {
    font-size: 13px;
    min-height: auto;
  }

  .why-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .why-cta-row .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================================
   WHATSAPP BUTTON - Adaptive Positioning
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: white;
}

@media (max-width: 576px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp a {
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

/* ========================================
   WHY US - REFINEMENTS (Phase 2)
   Visual Priority, Enhanced CTA, Polished Badges
   ======================================== */

/* Section Container - Increased Padding */
.why-us-premium {
  padding: 96px 0 104px;
}

.why-cards-container {
  padding: 48px 40px;
  border-radius: 28px;
}

/* Visual Priority System */
/* Primary Cards (Top Row - Core Trust Pillars) */
.why-card-primary {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #4ABA7E;
}

.why-card-primary:hover {
  box-shadow: 0 10px 28px rgba(74, 186, 126, 0.15);
}

/* Secondary Cards (Bottom Row - Experience & Support) */
.why-card-secondary {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.why-card-secondary:hover {
  box-shadow: 0 6px 20px rgba(74, 186, 126, 0.10);
}

/* Staggered Scroll Reveal - Top Row First */
.why-card-primary:nth-child(1) {
  transition-delay: 0s;
}

.why-card-primary:nth-child(2) {
  transition-delay: 0.08s;
}

.why-card-primary:nth-child(3) {
  transition-delay: 0.16s;
}

/* Bottom Row Delayed by 120-150ms */
.why-card-secondary:nth-child(4) {
  transition-delay: 0.24s;
}

.why-card-secondary:nth-child(5) {
  transition-delay: 0.32s;
}

.why-card-secondary:nth-child(6) {
  transition-delay: 0.40s;
}

/* Standardized Icon Containers */
.why-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(74, 186, 126, 0.10);
  border-radius: 50%;
}

.why-card-icon img {
  width: 44px;
  height: 44px;
}

/* Badge Refinement - Uniform Size */
.why-proof-badge {
  height: 24px;
  line-height: 14px;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 14px;
}

/* Enhanced CTA Strip */
.why-cta-strip {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(74, 186, 126, 0.08);
}

.why-cta-message {
  font-size: 18px;
  font-weight: 500;
  color: #2D3748;
  margin-bottom: 20px;
}

.why-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.why-cta-buttons .btn {
  min-width: 180px;
  padding: 0.875rem 1.75rem;
}

/* Card Benefit - Max 2 Lines */
.why-card-benefit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

/* Responsive Refinements */
@media (max-width: 992px) {
  .why-us-premium {
    padding: 72px 0 80px;
  }

  .why-cards-container {
    padding: 36px 28px;
    border-radius: 24px;
  }

  .why-cta-strip {
    padding: 28px 24px;
  }

  .why-cta-message {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .why-us-premium {
    padding: 56px 0 64px;
  }

  .why-cards-container {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .why-card-primary {
    border-top-width: 2px;
  }

  .why-card-icon {
    width: 56px;
    height: 56px;
  }

  .why-card-icon img {
    width: 40px;
    height: 40px;
  }

  .why-cta-strip {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .why-cta-message {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .why-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .why-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================================
   PARENT TESTIMONIALS SECTION
   Trust-building, Warm, Professional
   ======================================== */
.testimonials {
  background: #FFFFFF;
  padding: 88px 0 96px;
  position: relative;
}

/* 2-Column Layout */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

/* Left Column: Text Content */
.testimonials-content {
  position: sticky;
  top: 120px;
}

.testimonials-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4ABA7E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.testimonials-heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #2D3748;
  line-height: 1.25;
  margin-bottom: 16px;
}

.testimonials-heading span {
  color: #4ABA7E;
  display: block;
}

.testimonials-description {
  font-size: 15px;
  color: #5D6D7E;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}

/* Secondary CTA Button */
.testimonials-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #4ABA7E;
  background: transparent;
  border: 2px solid #4ABA7E;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.testimonials-cta:hover {
  background: #4ABA7E;
  color: #FFFFFF;
}

.testimonials-cta svg {
  transition: transform 0.25s ease;
}

.testimonials-cta:hover svg {
  transform: translateX(4px);
}

/* Right Column: Cards */
.testimonials-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Testimonial Card */
.testimonial-card {
  background: linear-gradient(135deg, #F8FDFB 0%, #F0FAF5 100%);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(74, 186, 126, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 186, 126, 0.10);
}

/* Star Rating */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FFB800;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  font-style: italic;
  margin-bottom: 20px;
}

/* Author Row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ABA7E 0%, #3CB371 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

/* Author Info */
.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
}

.testimonial-role {
  font-size: 12px;
  color: #718096;
}

/* Stagger Animation */
.testimonial-card:nth-child(1) {
  transition-delay: 0s;
}

.testimonial-card:nth-child(2) {
  transition-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  transition-delay: 0.2s;
}

.testimonial-card.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .testimonials {
    padding: 64px 0 72px;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-content {
    position: static;
    text-align: center;
  }

  .testimonials-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-heading span {
    display: inline;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .testimonials {
    padding: 48px 0 56px;
  }

  .testimonials-heading {
    font-size: 24px;
  }

  .testimonials-description {
    font-size: 14px;
  }

  .testimonials-cards {
    gap: 16px;
    /* Mobile Carousel Styles */
    overflow-x: auto;
    flex-direction: row;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .testimonial-card:last-child {
    margin-right: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonials-cta {
    margin-top: 24px;
  }
}

/* Hide scrollbar but keep functionality */
.testimonials-cards::-webkit-scrollbar {
  display: none;
}

.testimonials-cards {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================================
   WHY CHOOSE US - ASCENT-INSPIRED LAYOUT
   Premium Editorial 40/60 Split Design
   ======================================== */
.why-ascent {
  background: #FFFFFF;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Visual Anchors - Left-Aligned for Balance */
.why-ascent::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74, 186, 126, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-30%);
}

.why-ascent::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 35%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(93, 201, 196, 0.03) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* 2-Column Layout: 40% / 60% */
.why-ascent-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
  align-items: start;
}

/* LEFT COLUMN - Editorial Content */
.why-ascent-content {
  position: sticky;
  top: 120px;
  padding-right: 32px;
}

/* Section Label */
.why-ascent-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #4ABA7E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Big Headline */
.why-ascent-headline {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  color: #1A202C;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Supporting Text */
.why-ascent-text {
  font-size: 16px;
  color: #5D6D7E;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 360px;
}

/* Trust Cues */
.why-ascent-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #F0FAF5;
  color: #2E7D32;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(74, 186, 126, 0.15);
}

/* RIGHT COLUMN - Floating Cards */
.why-ascent-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card Rows */
.why-ascent-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-ascent-row-offset {
  grid-template-columns: 1fr;
  padding-left: 60px;
  padding-right: 40px;
}

.why-ascent-row-single {
  grid-template-columns: 1fr;
  max-width: 320px;
}

/* Large Cards - Antigravity Float Effect */
.why-card-large {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 180px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74, 186, 126, 0.06);
}

.why-card-large:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.04);
}

/* Highlighted Card (Primary) */
.why-card-highlight {
  box-shadow: 0 6px 24px rgba(74, 186, 126, 0.12);
  border-top: 4px solid #4ABA7E;
}

.why-card-highlight:hover {
  box-shadow: 0 16px 40px rgba(74, 186, 126, 0.18);
}

/* Featured Card (Bigger) */
.why-card-featured {
  min-height: 200px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.why-card-featured:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

/* Icon Container - Soft Mint Glow */
.why-card-large-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74, 186, 126, 0.12) 0%, rgba(93, 201, 196, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(74, 186, 126, 0.08);
}

.why-card-large-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Card Title */
.why-card-large-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Card Text */
.why-card-large-text {
  font-size: 15px;
  color: #5D6D7E;
  line-height: 1.6;
  margin-bottom: 12px;
  flex-grow: 1;
}

/* Card Badge */
.why-card-large-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: #E3F2FD;
  color: #1565C0;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Badge Variants */
.why-badge-green {
  background: #E8F5E9;
  color: #2E7D32;
}

.why-badge-orange {
  background: #FFF3E0;
  color: #E65100;
}

.why-badge-teal {
  background: #E0F7FA;
  color: #00838F;
}

/* Stagger Animation */
.why-card-large {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-card-large.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-ascent-row:nth-child(1) .why-card-large:nth-child(1) {
  transition-delay: 0s;
}

.why-ascent-row:nth-child(1) .why-card-large:nth-child(2) {
  transition-delay: 0.1s;
}

.why-ascent-row:nth-child(2) .why-card-large {
  transition-delay: 0.2s;
}

.why-ascent-row:nth-child(3) .why-card-large:nth-child(1) {
  transition-delay: 0.3s;
}

.why-ascent-row:nth-child(3) .why-card-large:nth-child(2) {
  transition-delay: 0.4s;
}

.why-ascent-row:nth-child(4) .why-card-large {
  transition-delay: 0.5s;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .why-ascent {
    padding: 72px 0 88px;
  }

  .why-ascent-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-ascent-content {
    position: static;
    text-align: center;
    padding-right: 0;
  }

  .why-ascent-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-ascent-trust {
    justify-content: center;
  }

  .why-ascent-row-offset {
    padding-left: 0;
    padding-right: 0;
  }

  .why-ascent-row-single {
    max-width: 100%;
  }

  .why-card-large {
    min-height: auto;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .why-ascent {
    padding: 56px 0 64px;
  }

  .why-ascent-headline {
    font-size: 26px;
  }

  .why-ascent-text {
    font-size: 15px;
  }

  .why-ascent-row {
    grid-template-columns: 1fr;
  }

  .why-card-large {
    padding: 24px 20px;
    min-height: auto;
  }

  .why-card-large-icon {
    width: 48px;
    height: 48px;
  }

  .why-card-large-icon img {
    width: 32px;
    height: 32px;
  }

  .why-card-large-title {
    font-size: 16px;
  }

  .why-card-large-text {
    font-size: 14px;
  }
}

/* ========================================
   WHY CHOOSE US - ZONE LAYOUT FIX
   3 Vertical Zones with Clear Hierarchy
   ======================================== */

/* Zone Container - Controlled Asymmetry */
.why-zone {
  margin-bottom: 36px;
  position: relative;
}

.why-zone:last-child {
  margin-bottom: 0;
}

/* Subtle asymmetry offset for visual interest */
.why-zone-trust {
  padding-top: 8px;
}

.why-zone-method {
  margin-left: 8px;
}

/* Support zone aligned left to avoid empty right-side space */
.why-zone-support {
  margin-right: 0;
  margin-left: 0;
}

/* Zone Labels (Subtle Category Headers) */
.why-zone-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

/* Zone Cards Container */
.why-zone-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Pair (Side by Side) */
.why-zone-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Trust Zone Cards (Stronger Presence) */
.why-card-trust {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(74, 186, 126, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #4ABA7E;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.why-card-trust:hover {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 16px 40px rgba(74, 186, 126, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.04);
}

/* Featured Card (KBAT - Largest, Premium) */
.why-card-featured {
  min-height: 220px;
  padding: 36px 32px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 12px 36px rgba(230, 81, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.04);
  border-top: 4px solid #E65100;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: linear-gradient(145deg, #FFFBF7 0%, #FFFFFF 60%, #FEFEFE 100%);
}

.why-card-featured:hover {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.02),
    0 24px 56px rgba(230, 81, 0, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.why-card-large-icon-featured {
  width: 60px;
  height: 60px;
  background: rgba(230, 81, 0, 0.10);
}

.why-card-large-icon-featured img {
  width: 40px;
  height: 40px;
}

/* Wide Card (Laporan - Full Width Closing, Calm Anchor) */
.why-card-wide {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: linear-gradient(145deg, #F5FBF8 0%, #FAFFFE 50%, #FFFFFF 100%);
  border: 1px solid rgba(74, 186, 126, 0.08);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 8px 24px rgba(74, 186, 126, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.02);
}

.why-card-wide:hover {
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.01),
    0 16px 40px rgba(74, 186, 126, 0.10),
    0 24px 56px rgba(0, 0, 0, 0.03);
  transform: translateY(-6px);
}

.why-card-wide .why-card-large-icon {
  flex-shrink: 0;
}

.why-card-wide-content {
  flex: 1;
}

.why-card-wide .why-card-large-title {
  margin-bottom: 4px;
}

.why-card-wide .why-card-large-text {
  margin-bottom: 0;
}

.why-card-wide .why-card-large-badge {
  flex-shrink: 0;
  align-self: center;
}

/* Align Trust Zone with Headline */
.why-zone-trust {
  padding-top: 8px;
}

/* Zone-specific Label Colors */
.why-zone-trust .why-zone-label {
  color: #4ABA7E;
}

.why-zone-method .why-zone-label {
  color: #E65100;
}

.why-zone-support .why-zone-label {
  color: #1565C0;
}

/* Stagger Animation for Zones */
.why-zone-trust .why-card-large:nth-child(1) {
  transition-delay: 0s;
}

.why-zone-trust .why-card-large:nth-child(2) {
  transition-delay: 0.1s;
}

.why-zone-method .why-card-featured {
  transition-delay: 0.2s;
}

.why-zone-method .why-zone-pair .why-card-large:nth-child(1) {
  transition-delay: 0.3s;
}

.why-zone-method .why-zone-pair .why-card-large:nth-child(2) {
  transition-delay: 0.4s;
}

.why-zone-support .why-card-large {
  transition-delay: 0.5s;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .why-zone {
    margin-bottom: 28px;
  }

  .why-zone-label {
    text-align: center;
  }

  .why-card-featured {
    min-height: auto;
  }

  .why-card-wide {
    flex-direction: column;
    text-align: center;
  }

  .why-card-wide .why-card-large-badge {
    align-self: center;
    margin-top: 12px;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .why-zone {
    margin-bottom: 24px;
  }

  .why-zone-pair {
    grid-template-columns: 1fr;
  }

  .why-card-featured {
    padding: 24px 20px;
  }

  .why-card-wide {
    padding: 24px 20px;
  }

  .why-card-large-icon-featured {
    width: 52px;
    height: 52px;
  }
}

/* ========================================
   WHY CHOOSE US - PAREZY-INSPIRED LAYOUT
   Clean 2-Column Editorial + Icon Grid Design
   ======================================== */
.why-parezy {
  background: #FFFFFF;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Accent */
.why-parezy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 186, 126, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 2-Column Layout: 45% / 55% */
.why-parezy-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}

/* LEFT COLUMN - Editorial Content */
.why-parezy-content {
  padding-right: 24px;
}

/* Section Label */
.why-parezy-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #E86B5F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Big Headline */
.why-parezy-headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1A202C;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Supporting Text */
.why-parezy-text {
  font-size: 16px;
  color: #5D6D7E;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Numbered Bullet Points */
.why-parezy-bullets {
  list-style: none;
  margin: 0 0 36px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-parezy-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4ABA7E 0%, #3CB371 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(74, 186, 126, 0.25);
}

.bullet-text {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  padding-top: 5px;
}

/* CTA Button */
.why-parezy-cta {
  margin-top: 8px;
}

/* RIGHT COLUMN - Service Icon Grid */
.why-parezy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Card */
.why-service-card {
  text-align: center;
  padding: 20px 12px;
  transition: transform 0.3s ease;
}

.why-service-card:hover {
  transform: translateY(-6px);
}

/* Icon Container with Colorful Backgrounds */
.why-service-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-service-card:hover .why-service-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Icon Color Variants - Soft Pastel Backgrounds */
.why-icon-blue {
  background: linear-gradient(145deg, #EBF4FF 0%, #DBEAFE 100%);
}

.why-icon-pink {
  background: linear-gradient(145deg, #FDF2F8 0%, #FCE7F3 100%);
}

.why-icon-orange {
  background: linear-gradient(145deg, #FFF7ED 0%, #FFEDD5 100%);
}

.why-icon-teal {
  background: linear-gradient(145deg, #E6FFFA 0%, #B2F5EA 100%);
}

.why-icon-yellow {
  background: linear-gradient(145deg, #FFFBEB 0%, #FEF3C7 100%);
}

.why-icon-purple {
  background: linear-gradient(145deg, #F5F3FF 0%, #EDE9FE 100%);
}

/* Service Title */
.why-service-title {
  font-size: 15px;
  font-weight: 600;
  color: #2D3748;
  line-height: 1.4;
  margin: 0;
}

/* Stagger Animation for Cards */
.why-service-card:nth-child(1) {
  transition-delay: 0s;
}

.why-service-card:nth-child(2) {
  transition-delay: 0.08s;
}

.why-service-card:nth-child(3) {
  transition-delay: 0.16s;
}

.why-service-card:nth-child(4) {
  transition-delay: 0.24s;
}

.why-service-card:nth-child(5) {
  transition-delay: 0.32s;
}

.why-service-card:nth-child(6) {
  transition-delay: 0.40s;
}

.why-service-card.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-service-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .why-parezy {
    padding: 72px 0 88px;
  }

  .why-parezy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-parezy-content {
    text-align: center;
    padding-right: 0;
  }

  .why-parezy-bullets {
    align-items: center;
  }

  .why-parezy-bullets li {
    max-width: 360px;
  }

  .why-parezy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .why-service-icon {
    width: 88px;
    height: 88px;
  }

  .why-service-icon img {
    width: 52px;
    height: 52px;
  }

  .why-service-title {
    font-size: 14px;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .why-parezy {
    padding: 56px 0 64px;
  }

  .why-parezy-headline {
    font-size: 24px;
  }

  .why-parezy-text {
    font-size: 15px;
  }

  .why-parezy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-service-card {
    padding: 16px 8px;
  }

  .why-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .why-service-icon img {
    width: 44px;
    height: 44px;
  }

  .why-service-title {
    font-size: 13px;
  }

  .bullet-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .bullet-text {
    font-size: 14px;
    padding-top: 3px;
  }
}

/* ========================================
   WHY CHOOSE US - ANTIGRAVITY EDITORIAL LAYOUT
   Vertical Storytelling with Floating Blocks
   Premium, Calm, Organized Composition
   ======================================== */
.why-editorial {
  background: #FFFFFF;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Accents */
.why-editorial::before {
  content: '';
  position: absolute;
  top: 200px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 186, 126, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-editorial::after {
  content: '';
  position: absolute;
  bottom: 300px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(93, 201, 196, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.why-editorial-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-editorial-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4ABA7E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.why-editorial-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #1A202C;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
}

/* Vertical Storytelling Flow */
.why-editorial-flow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Connecting Line - aligned with step numbers */
.why-editorial-flow::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(74, 186, 126, 0.25) 8%,
      rgba(74, 186, 126, 0.25) 92%,
      transparent 100%);
  pointer-events: none;
}

/* Content Block */
.why-block {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.why-block:last-child {
  margin-bottom: 0;
}

/* All blocks left-aligned — no zig-zag */
.why-block-left,
.why-block-right {
  flex-direction: row;
  padding-right: 0;
  padding-left: 0;
}

/* Block Number - Visual Anchor */
.why-block-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4ABA7E 0%, #3CB371 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow:
    0 0 0 5px rgba(74, 186, 126, 0.12),
    0 4px 12px rgba(74, 186, 126, 0.3),
    0 8px 24px rgba(74, 186, 126, 0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-block-number:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 0 6px rgba(74, 186, 126, 0.18),
    0 6px 16px rgba(74, 186, 126, 0.35),
    0 10px 28px rgba(74, 186, 126, 0.2);
}

/* Floating Card - Soft Elevation */
.why-block-card {
  flex: 1;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.03),
    0 6px 16px rgba(0, 0, 0, 0.05),
    0 14px 36px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(74, 186, 126, 0.08);
  border-left: 3px solid rgba(74, 186, 126, 0.2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.why-block-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 10px 28px rgba(0, 0, 0, 0.07),
    0 24px 48px rgba(0, 0, 0, 0.04);
  border-left-color: rgba(74, 186, 126, 0.45);
}

/* Block Icon */
.why-block-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(74, 186, 126, 0.10) 0%, rgba(93, 201, 196, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-block-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Block Content */
.why-block-content {
  flex: 1;
}

.why-block-title {
  font-size: 21px;
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 10px;
  line-height: 1.4;
}

.why-block-text {
  font-size: 15.5px;
  color: #5D6D7E;
  line-height: 1.75;
  margin: 0;
}

/* Closing Statement */
.why-editorial-closing {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.why-closing-card {
  background: linear-gradient(135deg, #F0FAF5 0%, #E8F5E9 100%);
  border-radius: 20px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  box-shadow: 0 4px 16px rgba(74, 186, 126, 0.08);
  border: 1px solid rgba(74, 186, 126, 0.12);
}

.why-closing-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.why-closing-text {
  font-size: 17px;
  font-weight: 500;
  color: #2D3748;
  line-height: 1.6;
  margin: 0;
}

/* Stagger Animation */
.why-block:nth-child(1) {
  transition-delay: 0s;
}

.why-block:nth-child(2) {
  transition-delay: 0.1s;
}

.why-block:nth-child(3) {
  transition-delay: 0.2s;
}

.why-block:nth-child(4) {
  transition-delay: 0.3s;
}

.why-block:nth-child(5) {
  transition-delay: 0.4s;
}

.why-block:nth-child(6) {
  transition-delay: 0.5s;
}

.why-block.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-block.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-editorial-closing.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.6s;
}

.why-editorial-closing.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .why-editorial {
    padding: 72px 0 88px;
  }

  .why-editorial-header {
    margin-bottom: 56px;
  }

  .why-editorial-flow::before {
    display: none;
  }

  .why-block {
    flex-direction: column !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 20px;
    margin-bottom: 36px;
  }

  .why-block-number {
    align-self: flex-start;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .why-block-card {
    padding: 28px;
    gap: 20px;
  }

  .why-block-icon {
    width: 56px;
    height: 56px;
  }

  .why-block-icon img {
    width: 36px;
    height: 36px;
  }

  .why-block-title {
    font-size: 18px;
  }

  .why-closing-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 28px;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .why-editorial {
    padding: 56px 0 64px;
  }

  .why-editorial-header {
    margin-bottom: 40px;
  }

  .why-editorial-title {
    font-size: 26px;
  }

  .why-block {
    margin-bottom: 28px;
    gap: 16px;
  }

  .why-block-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .why-block-card {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .why-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .why-block-icon img {
    width: 32px;
    height: 32px;
  }

  .why-block-title {
    font-size: 17px;
  }

  .why-block-text {
    font-size: 14px;
  }

  .why-editorial-closing {
    margin-top: 40px;
  }

  .why-closing-card {
    padding: 20px 20px;
    border-radius: 16px;
  }

  .why-closing-emoji {
    font-size: 24px;
  }

  .why-closing-text {
    font-size: 15px;
  }
}

/* ========================================
   WHY CHOOSE US - COMBINED LAYOUT
   Summary Section + Vertical Storytelling
   ======================================== */
.why-combined {
  background: #F6FBF8;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle Background */
.why-combined::before {
  content: '';
  position: absolute;
  top: 100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 186, 126, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ========================================
   PART 1: SUMMARY SECTION (Parezy-Style)
   ======================================== */
.why-summary-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
}

/* LEFT COLUMN - Editorial Content */
.why-summary-content {
  padding-right: 24px;
}

.why-summary-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #E86B5F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.why-summary-headline {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1A202C;
  line-height: 1.25;
  margin-bottom: 20px;
}

.why-summary-text {
  font-size: 16px;
  color: #5D6D7E;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Numbered Bullet Points */
.why-summary-bullets {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-summary-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-bullet-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4ABA7E 0%, #3CB371 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(74, 186, 126, 0.25);
}

.summary-bullet-text {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.5;
}

.why-summary-cta {
  margin-top: 8px;
}

/* RIGHT COLUMN - Icon Service Grid */
.why-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Card */
.why-summary-card {
  text-align: center;
  padding: 20px 12px;
  transition: transform 0.3s ease;
}

.why-summary-card:hover {
  transform: translateY(-6px);
}

/* Icon Container with Colorful Backgrounds */
.why-summary-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-summary-card:hover .why-summary-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-summary-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Icon Color Variants - Soft Pastel Backgrounds */
.why-icon-blue {
  background: linear-gradient(145deg, #E3F2FD 0%, #BBDEFB 100%);
}

.why-icon-pink {
  background: linear-gradient(145deg, #FCE4EC 0%, #F8BBD9 100%);
}

.why-icon-orange {
  background: linear-gradient(145deg, #FFF3E0 0%, #FFE0B2 100%);
}

.why-icon-teal {
  background: linear-gradient(145deg, #E0F2F1 0%, #B2DFDB 100%);
}

.why-icon-yellow {
  background: linear-gradient(145deg, #FFFDE7 0%, #FFF9C4 100%);
}

.why-icon-purple {
  background: linear-gradient(145deg, #F3E5F5 0%, #E1BEE7 100%);
}

/* Service Title */
.why-summary-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
  line-height: 1.4;
  margin: 0;
}

/* Stagger Animation for Summary Cards */
.why-summary-card:nth-child(1) {
  transition-delay: 0s;
}

.why-summary-card:nth-child(2) {
  transition-delay: 0.08s;
}

.why-summary-card:nth-child(3) {
  transition-delay: 0.16s;
}

.why-summary-card:nth-child(4) {
  transition-delay: 0.24s;
}

.why-summary-card:nth-child(5) {
  transition-delay: 0.32s;
}

.why-summary-card:nth-child(6) {
  transition-delay: 0.40s;
}

/* Section Divider */
.why-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74, 186, 126, 0.15) 20%, rgba(74, 186, 126, 0.15) 80%, transparent 100%);
  margin: 72px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .why-combined {
    padding: 72px 0 88px;
  }

  .why-summary-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-summary-content {
    text-align: center;
    padding-right: 0;
  }

  .why-summary-bullets {
    align-items: center;
  }

  .why-summary-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .why-summary-icon {
    width: 76px;
    height: 76px;
  }

  .why-summary-icon img {
    width: 44px;
    height: 44px;
  }

  .why-summary-card-title {
    font-size: 13px;
  }

  .why-section-divider {
    margin: 56px 0;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .why-combined {
    padding: 56px 0 64px;
  }

  .why-summary-headline {
    font-size: 24px;
  }

  .why-summary-text {
    font-size: 15px;
  }

  .why-summary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-summary-card {
    padding: 16px 8px;
  }

  .why-summary-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .why-summary-icon img {
    width: 38px;
    height: 38px;
  }

  .why-summary-card-title {
    font-size: 12px;
  }

  .summary-bullet-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .summary-bullet-text {
    font-size: 14px;
  }

  .why-section-divider {
    margin: 40px 0;
  }
}

/* ========================================
   HALA TUJU PEMBELAJARAN (TAHUN 1-6)
   Premium Timeline Redesign
   ======================================== */
.hala-tuju {
  background: linear-gradient(180deg, #EAF7F0 0%, #F4FAF7 40%, #FFFFFF 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

/* Science pattern overlay */
.hala-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%231F7A4D'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3Cpath d='M40 15v10M35 20h10' stroke='%231F7A4D' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='60' cy='60' r='4' fill='none' stroke='%231F7A4D' stroke-width='1.5'/%3E%3Cpath d='M15 55l5 10 5-10' stroke='%231F7A4D' stroke-width='1.5' fill='none'/%3E%3Cpath d='M55 15a5 5 0 11-10 0 5 5 0 0110 0z' fill='none' stroke='%231F7A4D' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.hala-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

/* ========================================
   JOURNEY HEADER BAR
   ======================================== */
.hala-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  padding: 0;
}

.hala-header-left {
  flex: 1;
  min-width: 0;
}

.hala-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #1A2E1F;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.hala-title-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1F7A4D 0%, #2E9B62 100%);
  color: #FFFFFF;
  font-size: 0.5em;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(31, 122, 77, 0.25);
}

.hala-subtitle {
  font-size: 15px;
  color: #4A5D52;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

.hala-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA Buttons */
.hala-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1F7A4D 0%, #2E9B62 100%);
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(31, 122, 77, 0.3);
  transition: all 0.3s ease;
}

.hala-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 122, 77, 0.4);
}

.hala-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: #1F7A4D;
  border: 2px solid #1F7A4D;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hala-cta-secondary:hover {
  background: #1F7A4D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ========================================
   OUTCOMES CHIPS STRIP
   ======================================== */
.hala-outcomes {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hala-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(31, 122, 77, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #1F7A4D;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(31, 122, 77, 0.06);
}

.hala-chip:hover {
  border-color: #1F7A4D;
  background: #E8F5E9;
  transform: translateY(-1px);
}

.hala-chip svg {
  flex-shrink: 0;
}

/* ========================================
   TIMELINE JOURNEY
   ======================================== */
.hala-journey {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 0;
}

/* Connected Timeline Track */
.hala-timeline-track {
  position: absolute;
  top: 72px;
  left: 8%;
  right: 8%;
  height: 3px;
  z-index: 0;
}

.hala-timeline-line {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #1F7A4D 0%, #2E9B62 30%, #B8860B 60%, #D2691E 80%, #F4C84A 100%);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(31, 122, 77, 0.2);
}

.hala-timeline-line.animated {
  width: 100%;
}

/* ========================================
   PROGRESS COIN BADGES
   ======================================== */
.hala-coin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 20px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.hala-coin-number {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #1A2E1F;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 2px solid #FFFFFF;
}

/* Coin color variants with 3D soft shadow */
.hala-coin-green {
  background: linear-gradient(145deg, #E8F5E9 0%, #C8E6C9 100%);
  color: #1F7A4D;
  box-shadow:
    0 4px 12px rgba(31, 122, 77, 0.2),
    0 2px 4px rgba(31, 122, 77, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hala-coin-yellow {
  background: linear-gradient(145deg, #FFF8E1 0%, #FFE082 100%);
  color: #B8860B;
  box-shadow:
    0 4px 12px rgba(184, 134, 11, 0.2),
    0 2px 4px rgba(184, 134, 11, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hala-coin-orange {
  background: linear-gradient(145deg, #FFF3E0 0%, #FFCC80 100%);
  color: #D2691E;
  box-shadow:
    0 4px 12px rgba(210, 105, 30, 0.2),
    0 2px 4px rgba(210, 105, 30, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hala-coin-goal {
  background: linear-gradient(145deg, #FFF8E1 0%, #FFD54F 100%);
  color: #B8860B;
  box-shadow:
    0 4px 16px rgba(244, 200, 74, 0.35),
    0 2px 6px rgba(244, 200, 74, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    inset 0 2px 6px rgba(255, 255, 255, 0.9);
  animation: coinPulse 3s ease-in-out infinite;
}

@keyframes coinPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(244, 200, 74, 0.35), 0 2px 6px rgba(244, 200, 74, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.05), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  }

  50% {
    box-shadow: 0 4px 24px rgba(244, 200, 74, 0.5), 0 2px 10px rgba(244, 200, 74, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.05), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  }
}

/* Hover on coins */
.hala-step:hover .hala-coin {
  transform: scale(1.15) translateY(-2px);
}

/* ========================================
   STEP CARDS
   ======================================== */
.hala-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 260px;
  min-width: 200px;
}

.hala-step-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 22px 24px;
  text-align: center;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Bottom accent bar */
.hala-step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  right: 30%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  transition: all 0.35s ease;
}

.hala-step-card[data-color="green"]::after {
  background: #1F7A4D;
}

.hala-step-card[data-color="yellow"]::after {
  background: #B8860B;
}

.hala-step-card[data-color="orange"]::after {
  background: #D2691E;
}

.hala-step-card[data-color="goal"]::after {
  background: linear-gradient(90deg, #F4C84A, #FFB800);
  height: 4px;
}

/* Hover: lift + shadow + accent expand */
.hala-step-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.08);
}

.hala-step-card:hover::after {
  left: 0;
  right: 0;
}

/* Color-tinted borders on hover */
.hala-step-card[data-color="green"]:hover {
  border-color: rgba(31, 122, 77, 0.3);
}

.hala-step-card[data-color="yellow"]:hover {
  border-color: rgba(184, 134, 11, 0.3);
}

.hala-step-card[data-color="orange"]:hover {
  border-color: rgba(210, 105, 30, 0.3);
}

/* Year pill label */
.hala-year-pill {
  display: inline-block;
  padding: 4px 14px;
  background: var(--pill-bg, #F0F4F0);
  color: var(--pill-color, #1F7A4D);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Step icon */
.hala-step-icon {
  margin-bottom: 14px;
  line-height: 0;
}

/* Card title */
.hala-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A2E1F;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Card description */
.hala-card-desc {
  font-size: 14px;
  color: #4A5D52;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* "Lihat butiran" link button */
.hala-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #1F7A4D;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  transition: all 0.25s ease;
  font-family: inherit;
}

.hala-card-link:hover {
  color: #155d39;
  gap: 8px;
}

.hala-card-link svg {
  transition: transform 0.3s ease;
}

.hala-card-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Accordion details */
.hala-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding: 0;
}

.hala-card-details.open {
  max-height: 250px;
  opacity: 1;
  padding-top: 12px;
}

.hala-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid rgba(31, 122, 77, 0.1);
  padding-top: 12px;
}

.hala-card-details li {
  font-size: 13px;
  color: #4A5D52;
  line-height: 1.5;
  padding: 4px 0;
}

.hala-card-details li strong {
  color: #1A2E1F;
  font-weight: 600;
}

/* ========================================
   GOAL CARD (Capai TP6)
   ======================================== */
.hala-step-goal {
  max-width: 260px;
}

.hala-goal-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFEF5 50%, #FFF9E6 100%);
  border: 2px solid rgba(244, 200, 74, 0.35);
  padding: 28px 22px 24px;
  min-height: 280px;
  box-shadow:
    0 4px 12px rgba(244, 200, 74, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.06);
}


.hala-goal-card:hover {
  border-color: #F4C84A;
  transform: translateY(-10px);
  box-shadow:
    0 8px 20px rgba(244, 200, 74, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.08);
}

/* Goal glow effect */
.hala-goal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(244, 200, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: goalGlow 4s ease-in-out infinite;
}

@keyframes goalGlow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Puncak Ribbon */
.hala-ribbon {
  display: none !important;
}

.hala-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border-width: 4px;
  border-style: solid;
  border-color: #D4A843 #D4A843 transparent transparent;
}

/* Goal icon styling */
.hala-goal-icon {
  margin-bottom: 12px;
}

/* Year pill for goal */
.hala-year-pill-goal {
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  border: 1px solid rgba(244, 200, 74, 0.3);
}

/* Goal benefits list */
.hala-goal-benefits {
  display: none !important;
}

.hala-goal-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4A5D52;
  line-height: 1.5;
  padding: 3px 0;
}

.hala-goal-benefits svg {
  flex-shrink: 0;
}

/* ========================================
   TRUST CUES STRIP
   ======================================== */
.hala-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(31, 122, 77, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hala-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1F7A4D;
  white-space: nowrap;
}

.hala-trust-item svg {
  flex-shrink: 0;
}

/* ========================================
   SCROLL DOTS (mobile only)
   ======================================== */
.hala-scroll-dots {
  display: none;
}

/* ========================================
   STAGGER ANIMATION
   ======================================== */
.hala-step-1.fade-in {
  transition-delay: 0s;
}

.hala-step-2.fade-in {
  transition-delay: 0.12s;
}

.hala-step-3.fade-in {
  transition-delay: 0.24s;
}

.hala-step-goal.fade-in {
  transition-delay: 0.36s;
}

/* ========================================
   RESPONSIVE: TABLET (≤992px)
   ======================================== */
@media (max-width: 992px) {
  .hala-tuju {
    padding: 56px 0 48px;
  }

  .hala-header-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hala-header-left {
    text-align: center;
  }

  .hala-subtitle {
    margin: 0 auto;
  }

  .hala-header-right {
    justify-content: center;
  }

  .hala-outcomes {
    justify-content: center;
  }

  .hala-journey {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
  }

  .hala-timeline-track {
    display: none;
  }

  .hala-step {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
  }

  .hala-step-goal {
    max-width: calc(50% - 10px);
  }

  .hala-coin {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .hala-coin-number {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .hala-step-card {
    padding: 24px 18px 20px;
  }

  .hala-goal-card {
    padding: 28px 18px 24px;
  }

  .hala-trust-strip {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}

/* ========================================
   RESPONSIVE: MOBILE (≤576px)
   ======================================== */
@media (max-width: 576px) {
  .hala-tuju {
    padding: 40px 0 32px;
  }

  .hala-title {
    font-size: 24px;
  }

  .hala-title-badge {
    font-size: 11px;
    padding: 3px 10px;
    display: inline-block;
    margin-left: 4px;
    margin-top: 4px;
  }

  .hala-subtitle {
    font-size: 14px;
  }

  .hala-header-right {
    flex-direction: column;
    width: 100%;
  }

  .hala-cta-primary,
  .hala-cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hala-outcomes {
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hala-chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Horizontal scroll with snap */
  .hala-journey {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 24px 16px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .hala-journey::-webkit-scrollbar {
    display: none;
  }

  .hala-step {
    flex: 0 0 78%;
    max-width: 78%;
    min-width: 78%;
    scroll-snap-align: center;
  }

  .hala-step-goal {
    max-width: 78%;
    flex: 0 0 78%;
  }

  .hala-coin {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .hala-coin svg {
    width: 16px;
    height: 16px;
  }

  .hala-coin-number {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .hala-step-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .hala-goal-card {
    padding: 24px 16px 20px;
  }

  .hala-ribbon {
    font-size: 10px;
    padding: 4px 12px 4px 10px;
    top: 12px;
    right: -6px;
  }

  .hala-card-title {
    font-size: 16px;
  }

  .hala-card-desc {
    font-size: 13px;
  }

  /* Show scroll dots on mobile */
  .hala-scroll-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
    width: 100%;
  }

  .hala-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.2);
    transition: all 0.3s ease;
  }

  .hala-dot.active {
    background: #1F7A4D;
    width: 24px;
    border-radius: 4px;
  }

  .hala-trust-strip {
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 20px;
    border-radius: 12px;
  }

  .hala-trust-item {
    font-size: 12px;
  }

  .hala-goal-benefits li {
    font-size: 12px;
  }
}