/* how-we-work.css */

:root {
  --indigo: #1f1548;
  --indigo-deep: #1b1043;
  --gold: #e4ce8e;
  --white: #fefefe;
  --soft: #efefef;
  --line: #d6d6d6;
  --muted: #6e6a7f;
  --footer-text: #4d4d4d;
  --text: #2e2b39;
}

* {
  box-sizing: border-box;
}

/* Base style overrides */
body {
  overflow-x: hidden;
  background: var(--white);
  color: var(--indigo);
}

/* Container Inner (Menyamakan dengan index.css/common.css untuk scaling)
*/
.inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Jarak dibuat lebih dekat dengan menubar */
  padding-top: 60px; 
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,21,72,0.9) 0%, rgba(31,21,72,0.6) 50%, rgba(31,21,72,0.1) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top:0;
  padding-bottom: 140px;
}

.hero-approach {
  /* max-width dipertahankan sesuai referensi */
  max-width: 820px; 
  margin-bottom: 80px;
}

.hero-approach h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 38px; 
  font-weight: 700;
  line-height: 1.1;
}

.hero-approach p {
  margin: 0;
  color: #ffffff;
  font-size: 24px; 
  font-weight: 400;
  line-height: 1.6;
}

.hero-title-block {
  
  max-width: 900px;
}

.hero-title-block h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 38px; 
  font-weight: 700;
  line-height: 1.12;
}

.hero-title-block p {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: 24px; 
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================
   2. ENGAGEMENT METHOD SECTION
   ========================================= */
.engagement {
  padding: 120px 0;
  background: #ffffff;
}

.engagement h2 {
  margin: 0 0 80px;
  text-align: center;
  color: var(--indigo);
  font-size: 38px; 
  font-weight: 700;
  line-height: 1.15;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%; 
}

.method-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 38px 28px;
  text-align: left;
  color: var(--indigo);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.4s ease, background-color 0.3s ease;  
  display: flex;
  flex-direction: column;
}

.method-card:hover,
.method-card.is-active {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  outline: none;
}

.method-card.is-active .card-accent {
  width: 64px;
  background: var(--gold);
}

.method-card.is-active .card-icon {
  transform: scale(1.05);
}

.method-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  outline: none;
}

.card-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--indigo);
  margin-bottom: 24px;
  transition: width 0.4s ease, background-color 0.3s ease;
}

.method-card:hover .card-accent {
  width: 64px;
  background: var(--gold);
}

.card-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--indigo);
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.method-card:hover .card-icon {
  transform: scale(1.05);
}

.card-title {
  display: block;
  color: var(--indigo);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.card-copy {
  display: block;
  color: #3f3f3f;
  font-size: 18px; 
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================
   3. QUOTE STRIP SECTION
   ========================================= */
.quote-strip {
  padding: 60px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  background: #ffffff;
}

.quote-strip p {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  color: #555555;
  font-size: 26px; 
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================
   4. CTA BLOCK SECTION
   ========================================= */
.cta-block {
  padding: 120px 0;
  background: #fafafa;
  text-align: center;
}

.cta-block h3 {
  margin: 0 auto 40px;
  /* max-width dipertahankan sesuai referensi */
  max-width: 1000px;
  color: var(--indigo);
  font-size: 38px; /* Permintaan ukuran 38px */
  font-weight: 700;
  line-height: 1.34;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: none;
  border-radius: 999px;
  background: var(--indigo);
  color: #ffffff;
  padding: 22px 46px;
  font-size: 24px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.pill-btn .arrow {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 21, 72, 0.16);
}

.pill-btn:hover .arrow {
  transform: translateX(4px);
}

/* =========================================
   5. NEXT STEP SECTION
   ========================================= */
.next-step {
  background: #E4CE8E; 
  padding: 60px 0;
}

.next-step h3 {
  margin: 0 0 12px;
  color: var(--indigo);
  font-size: 38px; 
  font-weight: 700;
}

.next-step p {
  margin: 0 0 24px;
  font-size: 20px; /* Permintaan ukuran 24px */
  color: #3f3f3f;
  max-width: 780px;
  line-height: 1.6;
  font-weight: 400;
}

.subscribe {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.subscribe input {
  width: 560px;
  height: 60px;
  border: none;
  outline: none;
  padding: 0 18px;
  background: #fff;
  font-size: 22px;
  color: #1a1a1a;
}

.subscribe button {
  height: 60px;
  padding: 0 28px;
  border: none;
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 22px;
  transition: background-color 0.3s ease;
}

.subscribe button:hover {
  background: #2a1f5c;
}