/* Layout Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #fcfbfa;
  color: #333333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION HERO */
.hero-section {
  padding-top: 30px;
  padding-bottom: 60px;
}

/* Kotak Foto Hero */
.hero-banner-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background-color: #f7ede2;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay Teks dan Tombol di Atas Foto */
.hero-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px 60px;
  /* Efek bayangan halus agar tulisan putih tetap terbaca */
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
}

.hero-title {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title span {
  color: #ff6a00;
}

.btn-trial {
  background-color: #ff6a00;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

.btn-trial:hover {
  background-color: #e55e00;
}

/* 4 KARTU MELAYANG */
.floating-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -65px; /* Kunci melayang: ditarik ke atas menimpa foto */
  position: relative;
  z-index: 10;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
}

/* Kartu Oranye (Card 2) */
.feature-card.card-orange {
  background: #ff6a00;
  color: #ffffff;
}

.feature-card.card-orange h3 {
  color: #ffffff;
}

.feature-card.card-orange p {
  color: rgba(255, 255, 255, 0.9);
}

/* Ikon Styling */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.icon-red { background: #ffeaea; color: #ff3b30; }
.icon-light { background: #68d391; color: #ffffff; }
.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-orange-outline { background: #fff3ea; color: #ff6a00; }