/* experience.css - Versi Terbaik DeepSeek */

/* ===== 1. HERO SECTION ===== */
.exp-hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--nav-height));
  overflow: hidden;
}

.exp-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/experience.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 1;
  animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.exp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.exp-hero-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-start; /* Ubah dari 'center' menjadi 'flex-start' */
  padding-top: 120px;
}

.exp-hero-content {
  color: #ffffff;
  max-width: 750px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.exp-hero-title {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.text-accent {
  color: var(--accent-light);
  font-weight: 500;
}

.exp-hero-subheadline {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 650px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.exp-hero-scroll {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: scrollLine 2s infinite;
}

/* Wave Divider - Lebih Panjang dan Organik */
.hero-wave {
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 15;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 -10px 15px rgba(0, 0, 0, 0.1));
}

/* ===== 2. INTRO SECTION ===== */
.exp-intro {
  background-color: var(--bg-primary);
  padding: 6rem 0 8rem;
  position: relative;
  z-index: 5;
}

.exp-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(127, 133, 101, 0.3);
}

.exp-intro-text {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.exp-intro-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.signature-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.signature-text {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== 3. EXPERIENCE CATEGORIES ===== */
.exp-categories {
  background-color: var(--bg-secondary);
  padding: 5rem 0 3rem;
  position: relative;
}

.category-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 10rem;
}

.category-item:last-child {
  margin-bottom: 0;
}

.category-reverse {
  direction: rtl;
}

.category-reverse .category-content {
  direction: ltr;
}

.category-image-wrapper {
  position: relative;
  overflow: visible;
  height: 500px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.category-image-wrapper:hover {
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

.category-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  border-radius: inherit;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  border-radius: inherit;
  pointer-events: none;
}

.category-image-wrapper:hover .category-image {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-image-1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("images/moment1.jpg");
}

.category-image-2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("images/moment2.jpg");
}

.category-image-3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("images/moment3.jpg");
}

.category-content {
  padding: 2rem;
}

.category-number {
  font-family: "Crimson Pro", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(127, 133, 101, 0.1);
  margin-bottom: 0.5rem;
}

.category-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.category-title {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.category-description {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.category-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.highlight {
  padding: 0.5rem 1.2rem;
  background: white;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(127, 133, 101, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight i {
  font-size: 0.8rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.category-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.category-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.category-link:hover i {
  transform: translateX(8px);
}

/* ===== 4. PHILOSOPHY SECTION - VERSI TERBAIK ===== */
.exp-philosophy {
  background-color: var(--bg-secondary);
  position: relative;
  padding: 0;
  overflow: hidden;
}

.philosophy-wave-top {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-2px);
}

.philosophy-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
  fill: var(--bg-primary);
}

.philosophy-wave-bottom {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(2px);
}

.philosophy-wave-bottom svg {
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--bg-primary);
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background-color: var(--bg-primary);
  position: relative;
  border-radius: 50px;  /* TAMBAHKAN INI - sesuaikan nilainya */
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 5rem;
}

.philosophy-left {
  padding-right: 2rem;
}

.philosophy-badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(127, 133, 101, 0.1);
  border-radius: 30px;
}

.philosophy-title {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.philosophy-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 2rem;
}

.philosophy-text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.philosophy-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: "Crimson Pro", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.philosophy-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.philosophy-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(127, 133, 101, 0.1);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -20px rgba(127, 133, 101, 0.3);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-family: "Crimson Pro", serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.philosophy-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.philosophy-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(127, 133, 101, 0.05),
    rgba(127, 133, 101, 0.1)
  );
  border-radius: 50px;
  position: relative;
}

.quote-mark {
  font-family: "Crimson Pro", serif;
  font-size: 5rem;
  color: var(--accent-light);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 50px;
}

.quote-text {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
}

/* ===== 5. CTA SECTION ===== */
.exp-cta {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  padding: 6rem 0;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: "Crimson Pro", serif;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.cta-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.8rem !important;
  font-size: 1rem !important;
  border-radius: 10px;
}

.cta-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(8px) scale(1.1);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.cta-note i {
  color: var(--accent);
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ===== ANIMATION CLASSES ===== */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-left.revealed,
.animate-right.revealed,
.animate-up.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Delay animations */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media only screen and (max-width: 768px) {
  
  /* HERO SECTION - MOBILE */
  .exp-hero {
    min-height: 600px; /* Kurangi tinggi hero di mobile */
    height: 100vh; /* Gunakan 90% viewport height */
  }
  
  .exp-hero-background {
    background-position: center 20%; /* Geser background sedikit ke atas */
  }
  
  .exp-hero-container {
    align-items: flex-start; /* Tetap di kiri */
    padding-top: 100px; /* Sesuaikan padding top */
  }
  
  .exp-hero-content {
    max-width: 100%; /* Gunakan full width */
    padding: 0 15px; /* Beri padding kiri-kanan */
  }
  
  .hero-badge {
    font-size: 0.6rem; /* Perkecil badge */
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  
  .exp-hero-title {
    font-size: 2.2rem; /* Perkecil judul */
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .exp-hero-subheadline {
    font-size: 1rem; /* Perkecil subheadline */
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%; /* Full width */
  }
  
  .exp-hero-scroll {
    gap: 1rem; /* Kurangi gap */
  }
  
  .scroll-text {
    font-size: 0.7rem; /* Perkecil text scroll */
    letter-spacing: 2px;
  }
  
  .scroll-line {
    width: 60px; /* Perkecil panjang line */
    height: 1.5px;
  }
  
  /* Wave divider untuk mobile */
  .hero-wave {
    bottom: -50px; /* Sesuaikan posisi wave */
  }
  
  .hero-wave svg {
    height: 150px; /* Perkecil tinggi wave di mobile */
  }
}

/* ===== MOBILE RESPONSIVE - INTRO SECTION ===== */
@media only screen and (max-width: 768px) {
  
  /* INTRO SECTION - MOBILE */
  .exp-intro {
    padding: 4rem 0 5rem; /* Kurangi padding top-bottom */
  }
  
  .exp-intro-content {
    max-width: 100%; /* Full width */
    padding: 0 20px; /* Beri ruang di sisi kiri-kanan */
  }
  
  .intro-icon {
    width: 50px; /* Perkecil icon */
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .exp-intro-text {
    font-size: 1.3rem; /* Perkecil dari 1.8rem */
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .exp-intro-signature {
    gap: 1rem; /* Kurangi gap */
  }
  
  .signature-line {
    width: 40px; /* Perkecil garis */
  }
  
  .signature-text {
    font-size: 0.8rem; /* Perkecil dari 0.9rem */
    letter-spacing: 2px;
  }
}

/* ===== MOBILE RESPONSIVE - CATEGORIES ===== */
@media only screen and (max-width: 768px) {
  
  /* Categories section */
  .exp-categories {
    padding: 5rem 0 4rem;
  }

    .exp-categories .container {
    padding-left: 25px;  /* Tambah padding kiri */
    padding-right: 25px; /* Bisa juga atur padding kanan */
  }
  
  /* Ubah category-item menjadi flex column */
  .category-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
  }
  
  /* Reset direction */
  .category-item,
  .category-reverse {
    direction: ltr;
  }
  
  /* Atur urutan dengan order */
  .category-image-wrapper {
    order: 3; /* Foto jadi urutan ke-3 */
    height: 350px;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .category-content {
    order: 2; /* Content (angka, tag, judul) jadi urutan ke-2 */
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  /* Dalam category-content, atur urutan */
  .category-number {
    order: 1;
    font-size: 3rem;
    margin-bottom: 0.2rem;
  }
  
  .category-tag {
    order: 2;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .category-title {
    order: 3;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .category-description {
    order: 4; /* Deskripsi di dalam category-content */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem; /* Jarak setelah foto */
  }
  
  /* Matikan animasi */
  .animate-left,
  .animate-right {
    opacity: 1;
    transform: none;
  }
}

/* ===== MOBILE RESPONSIVE - PHILOSOPHY SECTION (CENTER ALL) ===== */
@media only screen and (max-width: 768px) {
  
  /* Philosophy section */
  .exp-philosophy {
    overflow: hidden;
  }
  
  /* Container */
  .philosophy-container {
    padding: 3rem 1.5rem;
    border-radius: 30px;
    text-align: center; /* SEMUA TEKS RATA TENGAH */
  }
  
  /* Grid - Ubah ke 1 kolom */
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  /* Left side - semua center */
  .philosophy-left {
    padding-right: 0;
    text-align: center; /* RATA TENGAH */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center semua konten */
  }
  
  .philosophy-badge {
    font-size: 0.65rem;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block; /* Biar badge tidak melebar */
  }
  
  .philosophy-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .philosophy-divider {
    width: 60px;
    height: 2px;
    margin: 0 auto 1.5rem auto; /* AUTO MARGIN untuk center */
    background: linear-gradient(90deg, var(--accent), transparent);
  }
  
  .philosophy-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center; /* RATA TENGAH */
    max-width: 90%; /* Biar tidak terlalu lebar */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Stats - Center */
  .philosophy-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center; /* CENTER */
    align-items: center;
    width: 100%;
  }
  
  .stat-item {
    flex: 0 0 auto;
    min-width: 80px;
    text-align: center; /* TEKS DALAM STAT RATA TENGAH */
  }
  
  .stat-number {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    text-align: center;
  }
  
  .stat-label {
    font-size: 0.8rem;
    text-align: center;
  }
  
  /* Right side - Cards center */
  .philosophy-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center; /* Center cards secara horizontal */
  }
  
  .philosophy-card {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center; /* TEKS DALAM CARD RATA TENGAH */
    width: 100%; /* Full width */
    max-width: 350px; /* Maksimal lebar card */
    margin: 0 auto; /* Center jika ada lebar tetap */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center konten dalam card */
  }
  
  .philosophy-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin: 0 auto 1rem auto; /* AUTO MARGIN untuk center */
    border-radius: 12px;
  }
  
  .philosophy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  
  .philosophy-card p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center; /* RATA TENGAH */
  }
  
  /* Quote section - Center */
  .philosophy-quote {
    padding: 2rem 1.5rem;
    border-radius: 30px;
    margin: 2rem auto 0 auto;
    text-align: center; /* RATA TENGAH */
    position: relative;
    max-width: 90%;
  }
  
  .quote-mark {
    font-size: 4rem;
    top: -5px;
    left: 20px;
    position: absolute;
  }
  
  .quote-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: center; /* RATA TENGAH */
    position: relative;
    z-index: 2;
  }
  
  .quote-author {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-align: center; /* RATA TENGAH */
    display: block;
  }
  
  /* Waves */
  .philosophy-wave-top svg,
  .philosophy-wave-bottom svg {
    height: 60px;
  }
  
  .philosophy-wave-top {
    transform: translateY(-1px);
  }
  
  .philosophy-wave-bottom {
    transform: translateY(1px);
  }
  
  /* Matikan animasi */
  .animate-left,
  .animate-right,
  .animate-up {
    opacity: 1;
    transform: none;
  }
}

/* ===== MOBILE RESPONSIVE - CTA SECTION ===== */
@media only screen and (max-width: 768px) {
  
  /* CTA Section */
  .exp-cta {
    padding: 4rem 0; /* Kurangi padding dari 6rem jadi 4rem */
  }
  
  .cta-content {
    max-width: 100%; /* Full width */
    padding: 0 20px; /* Beri padding kiri-kanan */
  }
  
  .cta-title {
    font-size: 2rem; /* Perkecil dari 2.5rem */
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem; /* Perkecil dari 1rem */
    margin-bottom: 2.5rem; /* Kurangi margin */
    padding: 0 15px; /* Sedikit padding untuk teks */
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column; /* Ubah jadi kolom di mobile */
    gap: 1rem; /* Kurangi gap */
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  
  .cta-btn {
    min-width: 220px; /* Lebar minimum untuk tombol */
    width: 100%; /* Full width */
    max-width: 200px; /* Maksimal lebar */
    padding: 0.9rem 1rem !important; /* Kurangi padding */
    font-size: 0.95rem !important; /* Perkecil font */
    gap: 0.8rem; /* Kurangi gap antara teks dan icon */
    border-radius: 8px; /* Kurangi border radius */
  }
  
  .cta-btn i {
    font-size: 1rem; /* Perkecil icon */
  }
  
  .cta-btn:hover i {
    transform: translateX(5px) scale(1.05); /* Kurangi efek hover */
  }
  
  /* Opsional: jika ada cta-note */
  .cta-note {
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }
  
  .cta-note i {
    font-size: 0.9rem;
  }
}

/* ============================================
   EXPERIENCE PAGE - TABLET OPTIMIZED STYLES
   Screen width: 769px to 1024px
   Premium, balanced, beautifully proportioned
   ============================================ */

/* TABLET LANDSCAPE & PORTRAIT (769px - 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* ===== 1. HERO SECTION - TABLET ===== */
  .exp-hero {
    min-height: 70vh;
    height: auto;
    margin-top: calc(-1 * var(--nav-height, 80px));
  }
  
  .exp-hero-background {
    background-position: center 25%;
    animation: kenBurns 25s ease infinite alternate;
  }
  
  .exp-hero-container {
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .exp-hero-content {
    max-width: 85%;
    text-align: left;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.2rem;
  }
  
  .exp-hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  
  .exp-hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 80%;
  }
  
  .exp-hero-scroll {
    gap: 1.2rem;
  }
  
  .scroll-text {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
  }
  
  .scroll-line {
    width: 70px;
    height: 2px;
  }
  
  /* Wave divider - tablet */
  .hero-wave {
    bottom: -70px;
  }
  
  .hero-wave svg {
    height: auto;
    min-height: 80px;
  }
  
  /* ===== 2. INTRO SECTION - TABLET ===== */
  .exp-intro {
    padding: 5rem 0 6rem;
  }
  
  .exp-intro-content {
    max-width: 85%;
    margin: 0 auto;
  }
  
  .intro-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }
  
  .exp-intro-text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .exp-intro-signature {
    gap: 1.2rem;
  }
  
  .signature-line {
    width: 50px;
  }
  
  .signature-text {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
  }
  
  /* ===== 3. CATEGORIES SECTION - TABLET ===== */
  .exp-categories {
    padding: 5rem 0 4rem;
  }
  
  .exp-categories .container {
    padding: 0 2rem;
  }
  
  .category-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
  }
  
  .category-item:last-child {
    margin-bottom: 0;
  }
  
  /* Image wrapper tablet */
  .category-image-wrapper {
    height: 400px;
    border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
  }
  
  .category-image-wrapper:hover {
    border-radius: 45% 55% 55% 45% / 45% 45% 55% 55%;
  }
  
  .category-image {
    background-position: center;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .category-number {
    font-size: 4rem;
    margin-bottom: 0.3rem;
  }
  
  .category-tag {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    margin-bottom: 0.8rem;
  }
  
  .category-title {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
  }
  
  .category-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .category-highlights {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  
  .highlight {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  
  .category-link {
    font-size: 0.95rem;
  }
  
  /* ===== 4. PHILOSOPHY SECTION - TABLET ===== */
  .philosophy-container {
    max-width: 95%;
    padding: 5rem 2rem;
    border-radius: 40px;
    margin: 0 auto;
  }
  
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  /* Left side */
  .philosophy-left {
    padding-right: 1rem;
  }
  
  .philosophy-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .philosophy-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  
  .philosophy-divider {
    width: 70px;
    height: 2px;
    margin-bottom: 1.5rem;
  }
  
  .philosophy-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  /* Stats */
  .philosophy-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Right side - Cards */
  .philosophy-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .philosophy-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  
  .philosophy-card:hover {
    transform: translateY(-6px);
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .philosophy-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  
  /* Quote section */
  .philosophy-quote {
    max-width: 85%;
    padding: 2.5rem;
    border-radius: 40px;
  }
  
  .quote-mark {
    font-size: 4.5rem;
    top: -5px;
    left: 40px;
  }
  
  .quote-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .quote-author {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }
  
  /* Waves tablet */
  .philosophy-wave-top svg,
  .philosophy-wave-bottom svg {
    height: 80px;
  }
  
  /* ===== 5. CTA SECTION - TABLET ===== */
  .exp-cta {
    padding: 5rem 0;
  }
  
  .cta-content {
    max-width: 85%;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .cta-btn {
    min-width: 220px;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
    gap: 0.8rem;
  }
  
  .cta-btn i {
    font-size: 1rem;
  }
  
  .cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   TABLET PORTRAIT SPECIFIC (769px - 900px)
   More compact adjustments
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 900px) {
  
  /* Hero - smaller text */
  .exp-hero-title {
    font-size: 2.8rem;
  }
  
  .exp-hero-subheadline {
    font-size: 1rem;
    max-width: 90%;
  }
  
  /* Categories - adjust spacing */
  .category-item {
    gap: 2rem;
    margin-bottom: 5rem;
  }
  
  .category-image-wrapper {
    height: 350px;
  }
  
  .category-title {
    font-size: 1.9rem;
  }
  
  .category-description {
    font-size: 0.95rem;
  }
  
  /* Philosophy */
  .philosophy-title {
    font-size: 2.2rem;
  }
  
  .philosophy-text {
    font-size: 0.95rem;
  }
  
  .philosophy-card {
    padding: 1.2rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.1rem;
  }
  
  .quote-text {
    font-size: 1.25rem;
  }
  
  /* CTA */
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    gap: 1rem;
  }
  
  .cta-btn {
    min-width: 200px;
  }
}

/* ============================================
   TABLET LANDSCAPE (901px - 1024px)
   iPad Pro 11" & 12.9" landscape
   ============================================ */
@media only screen and (min-width: 901px) and (max-width: 1024px) {
  
  .exp-hero-title {
    font-size: 3.5rem;
  }
  
  .category-image-wrapper {
    height: 420px;
  }
  
  .category-title {
    font-size: 2.3rem;
  }
  
  .philosophy-container {
    max-width: 90%;
  }
  
  .philosophy-card {
    padding: 1.8rem;
  }
  
  .cta-btn {
    min-width: 240px;
  }
}

/* ============================================
   TABLET EXTRA TOUCH - REFINEMENTS
   Better hover states, smooth transitions
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* Smooth hover effects */
  .category-card,
  .philosophy-card,
  .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Better touch targets */
  .category-link,
  .cta-btn,
  .product-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Ensure proper spacing for container */
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  /* Image optimization */
  .category-image,
  .exp-hero-background {
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  /* Keep animations smooth but not overwhelming */
  .category-image-wrapper:hover {
    transform: scale(1.02);
  }
  
  .category-image-wrapper:hover .category-image {
    transform: scale(1.03);
  }
  
  /* Card hover effects */
  .philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(127, 133, 101, 0.25);
  }
  
  /* Better wave visibility */
  .hero-wave svg,
  .philosophy-wave-top svg,
  .philosophy-wave-bottom svg {
    width: 100%;
    display: block;
  }
  
  /* Ensure text readability */
  .exp-hero-subheadline,
  .category-description,
  .philosophy-text {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Button hover states */
  .cta-btn:hover {
    transform: translateY(-3px);
  }
  
  .cta-btn:active {
    transform: translateY(0);
  }
  
  /* Stats section spacing */
  .philosophy-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

/* ============================================
   FIX FOR VARIABLE HEIGHT & OVERFLOW
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
  }
  
  /* Ensure waves don't cause overflow */
  .hero-wave,
  .philosophy-wave-top,
  .philosophy-wave-bottom {
    overflow: hidden;
  }
  
  /* Fix potential navbar overlap */
  .exp-hero {
    scroll-margin-top: 80px;
  }
  
  /* Ensure images are crisp */
  .category-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  /* Better spacing for category numbers */
  .category-number {
    opacity: 0.15;
  }
  
  /* Quote mark positioning fix */
  .quote-mark {
    line-height: 1;
  }
}

/* ============================================
   ENHANCED TYPOGRAPHY FOR TABLET
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  .exp-hero-title,
  .category-title,
  .philosophy-title,
  .cta-title {
    letter-spacing: -0.01em;
  }
  
  .exp-intro-text {
    font-weight: 350;
  }
  
  .quote-text {
    font-weight: 400;
  }
  
  .category-tag,
  .hero-badge,
  .philosophy-badge {
    font-weight: 500;
  }
}

/* ============================================
   FALLBACK FOR ORIENTATION CHANGES
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  
  .exp-hero {
    min-height: 85vh;
  }
  
  .exp-hero-container {
    padding-top: 80px;
  }
  
  .category-image-wrapper {
    height: 380px;
  }
  
  .philosophy-container {
    padding: 4rem 2rem;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  
  .exp-hero {
    min-height: 60vh;
  }
  
  .exp-hero-title {
    font-size: 2.8rem;
  }
  
  .category-image-wrapper {
    height: 360px;
  }
  
  .philosophy-grid {
    gap: 2.5rem;
  }
}

/* ============================================
   PHILOSOPHY SECTION - TABLET OPTIMIZED (FIXED)
   Lebih rapi, seimbang, dan proporsional
   ============================================ */

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* ===== PHILOSOPHY CONTAINER ===== */
  .philosophy-container {
    max-width: 95%;
    padding: 4rem 2rem;
    border-radius: 40px;
    margin: 0 auto;
  }
  
  /* ===== GRID 2 KOLOM YANG SEIMBANG ===== */
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  /* ===== LEFT SIDE - TEKS DAN STATS ===== */
  .philosophy-left {
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .philosophy-badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.2rem;
    background: rgba(127, 133, 101, 0.1);
    border-radius: 30px;
  }
  
  .philosophy-title {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
  }
  
  .philosophy-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 1.5rem;
  }
  
  .philosophy-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
  }
  
  /* ===== STATS - RAPI DAN SEIMBANG ===== */
  .philosophy-stats {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
  }
  
  .stat-item {
    text-align: left;
  }
  
  .stat-number {
    display: block;
    font-family: "Crimson Pro", serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  
  .stat-label {
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.3;
  }
  
  /* ===== RIGHT SIDE - CARDS GRID 2x2? TIDAK, 2 KOLOM VERTIKAL ===== */
  /* Karena ada 3 cards, lebih baik 1 kolom dengan 3 cards */
  .philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  /* ===== CARDS - UKURAN SAMA DAN RAPI ===== */
  .philosophy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 133, 101, 0.1);
    display: flex;
    flex-direction: column;
  }
  
  .philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(127, 133, 101, 0.2);
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .philosophy-card h3 {
    font-family: "Crimson Pro", serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
  }
  
  .philosophy-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
  }
  
  /* ===== QUOTE SECTION - TETAP RAPI ===== */
  .philosophy-quote {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(127, 133, 101, 0.05), rgba(127, 133, 101, 0.1));
    border-radius: 40px;
    position: relative;
  }
  
  .quote-mark {
    font-family: "Crimson Pro", serif;
    font-size: 4rem;
    color: var(--accent-light);
    opacity: 0.2;
    position: absolute;
    top: 0px;
    left: 35px;
    line-height: 1;
  }
  
  .quote-text {
    font-family: "Crimson Pro", serif;
    font-weight: 400;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
  }
  
  .quote-author {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 1.5px;
  }
  
  /* ===== WAVES ===== */
  .philosophy-wave-top svg,
  .philosophy-wave-bottom svg {
    height: 70px;
    display: block;
    width: 100%;
  }
}

/* ============================================
   TABLET PORTRAIT (769px - 900px)
   Lebih kompak untuk iPad mini & smaller tablets
   ============================================ */
@media only screen and (min-width: 769px) and (max-width: 900px) {
  
  .philosophy-container {
    padding: 3rem 1.5rem;
  }
  
  .philosophy-grid {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .philosophy-left {
    padding-right: 1rem;
  }
  
  .philosophy-title {
    font-size: 2rem;
  }
  
  .philosophy-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  
  .philosophy-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .philosophy-card {
    padding: 1.2rem;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.1rem;
  }
  
  .philosophy-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .philosophy-quote {
    max-width: 90%;
    padding: 1.8rem 2rem;
  }
  
  .quote-mark {
    font-size: 3.5rem;
    left: 25px;
  }
  
  .quote-text {
    font-size: 1.2rem;
  }
}

/* ============================================
   TABLET LANDSCAPE (901px - 1024px)
   iPad Pro landscape mode
   ============================================ */
@media only screen and (min-width: 901px) and (max-width: 1024px) {
  
  .philosophy-container {
    max-width: 90%;
    padding: 5rem 2.5rem;
  }
  
  .philosophy-grid {
    gap: 3rem;
  }
  
  .philosophy-title {
    font-size: 2.5rem;
  }
  
  .philosophy-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .philosophy-card {
    padding: 1.6rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.25rem;
  }
  
  .philosophy-card p {
    font-size: 0.9rem;
  }
  
  .quote-text {
    font-size: 1.4rem;
  }
}

/* ============================================
   ALTERNATIF: JIKA INGIN CARDS 2 KOLOM
   (Hanya jika benar-benar ingin 3 cards dalam 2 kolom)
   ============================================ */
/* 
   Untuk membuat 3 cards menjadi 2 kolom (1 card besar, 2 card kecil),
   gunakan CSS alternatif ini:

.philosophy-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.philosophy-card:first-child {
  grid-column: span 2;
}

   Tapi berdasarkan desain asli, 3 cards vertical lebih rapi.
*/