/* ============================================
   OjekKita — style.css
   File: assets/css/style.css
   Semua font diload lokal via @font-face atau
   dari Google Fonts (hanya @import ini, tidak ada
   CDN lain). Tidak ada Tailwind sama sekali.
   ============================================ */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #1a2438;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- CSS Variables ---- */
:root {
  --navy:       #0D2B57;
  --navy-mid:   #123D7A;
  --navy-deep:  #07182E;
  --orange:     #F97316;
  --orange-2:   #EA6A10;
  --orange-lt:  #FFF0E6;
  --blue-lt:    #EBF1FF;
  --gray-1:     #F8FAFC;
  --gray-2:     #F1F5F9;
  --gray-5:     #64748B;
  --gray-7:     #334155;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.14);
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-pill:9999px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo img { height: 44px; width: auto; }
.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar__links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--orange); }
.navbar__cta {
  background: var(--orange);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.navbar__cta:hover { background: var(--orange-2); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: url('../img/hero.png') center center / contain no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9; /* Sesuaikan dengan aspek rasio gambar asli Anda */
}
/* Overlay dihilangkan agar background tampil bersih */
/* .hero::before { ... } */
.hero__deco { z-index: 2; }
.hero__inner { position: relative; z-index: 2; }

/* dekoratif lingkaran blur */
.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__deco--1 { width: 520px; height: 520px; background: #f97316; top: -120px; left: -100px; }
.hero__deco--2 { width: 400px; height: 400px; background: #3b82f6; bottom: -80px; right: -60px; }
.hero__deco--3 { width: 220px; height: 220px; background: #f97316; top: 40%; right: 18%; }

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
}

/* Logo banner tengah */
.hero__banner {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero__banner img {
  max-width: 500px;
  width: 100%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

/* dua kolom */
.hero__cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

/* Kolom kiri */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}

.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__sub {
  margin-top: 0.9rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

.hero__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.45);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.2s;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(6px);
}
.stat__val {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat__lbl {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Kolom kanan: phone mockup */
.phone {
  display: flex;
  justify-content: center;
}
.phone__shell {
  width: 280px;
  background: transparent;
  border-radius: 2.8rem;
  padding: 0;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 3px rgba(255,255,255,0.15);
  overflow: hidden;
}
.phone__screen {
  border-radius: 0;
  min-height: 520px;
  display: block;
  padding: 0;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.phone__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  overflow: hidden;
}
.phone__icon img { width: 70%; height: 70%; object-fit: contain; }
.phone__name {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 1.2rem;
}
.phone__name em { font-style: normal; color: var(--orange); }
.phone__tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.6rem;
  line-height: 1.5;
}
.phone__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
  width: 100%;
}
.phone__cell {
  background: rgba(255,255,255,0.08);
  border-radius: 0.8rem;
  padding: 0.75rem 0.3rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
}
.phone__cell-icon { font-size: 1.25rem; margin-bottom: 0.3rem; }

/* ============================================
   TENTANG / ABOUT
   ============================================ */
.about {
  background: var(--gray-1);
  padding: 6rem 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.tag--orange { background: var(--orange-lt); color: var(--orange-2); }
.tag--blue   { background: var(--blue-lt);   color: var(--navy-mid); }
.tag--white  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.18); }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.section-title--white { color: var(--white); }
.section-title em { font-style: normal; color: var(--orange); }
.section-desc {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: var(--gray-5);
  line-height: 1.8;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.about__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.about__icon--blue   { background: var(--blue-lt); }
.about__icon--orange { background: var(--orange-lt); }
.about__card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.about__card p { margin-top: 0.6rem; font-size: 0.93rem; color: var(--gray-5); line-height: 1.7; }

/* ============================================
   FITUR / FEATURES
   ============================================ */
.features { padding: 6rem 0; background: var(--white); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.feat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.feat-card:hover {
  background: var(--navy-mid);
  box-shadow: 0 20px 48px rgba(18,61,122,0.25);
  transform: translateY(-3px);
}
.feat-card:hover .feat-card__title { color: var(--white); }
.feat-card:hover .feat-card__desc  { color: rgba(255,255,255,0.65); }
.feat-card:hover .feat-card__icon  { background: rgba(255,255,255,0.12); }
.feat-card:hover .feat-card__img   { opacity: 0.9; }

/* Kotak ikon — pakai gambar */
.feat-card__icon {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s;
  padding: 0.6rem;
}
.feat-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Konten kanan */
.feat-card__body {
  flex: 1;
  min-width: 0;
}
.feat-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.3s;
}
.feat-card__desc {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-5);
  line-height: 1.7;
  transition: color 0.3s;
}

/* Gambar besar di bawah subtitle */
.feat-card__img-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}
.feat-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}
.feat-card:hover .feat-card__img-wrap {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}
.feat-card:hover .feat-card__img {
  transform: scale(1.03);
}


/* ============================================
   ALUR / FLOW
   ============================================ */
.flow {
  padding: 6rem 0 5rem;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.flow::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(249,115,22,0.06);
  top: -200px; right: -150px;
  pointer-events: none;
}

/* Judul: "Cara Kerja Ojek<em>Kita</em>" — em berwarna orange */
.flow .section-title--white em {
  font-style: normal;
  color: var(--orange);
}

/* Grid wrapper: step disejajarkan horizontal */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* Wrap tiap step */
.flow__step-wrap {
  display: contents;
}

/* Panah antar step — dihapus */
.flow__arrow { display: none; }

/* Card step */
.flow__step {
  min-width: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.flow__step:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

/* Bagian atas: nomor + judul + deskripsi */
.flow__step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 9rem;
}

.flow__num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 0.9rem;
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
  flex-shrink: 0;
}

.flow__step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.flow__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* Mockup image — lebar penuh card, tinggi proporsional, tampil utuh */
.flow__mockup {
  margin-top: 1.25rem;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s;
}
.flow__step:hover .flow__mockup {
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 2px rgba(249,115,22,0.4);
}
.flow__mockup img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.flow__step:hover .flow__mockup img {
  transform: scale(1.04);
}



/* ============================================
   KEUNTUNGAN / BENEFITS
   ============================================ */
.benefits { padding: 6rem 0; background: var(--gray-1); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 0;
  align-items: start;
}
.benefit-group__tag {
  display: inline-flex;
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.benefit-group__tag--blue   { background: var(--blue-lt);   color: var(--navy-mid); }
.benefit-group__tag--orange { background: var(--orange-lt); color: var(--orange-2); }
.benefit-group__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.benefit-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.benefit-item__check {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 0.1rem;
}
.benefit-item__check--orange { background: var(--orange-lt); color: var(--orange-2); }
.benefit-item__check--blue   { background: var(--blue-lt);   color: var(--navy-mid); }
.benefit-item p { font-size: 0.95rem; color: var(--gray-7); line-height: 1.7; }

/* ============================================
   VISION / CTA
   ============================================ */
.vision {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--orange) 0%, #c2530a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vision::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -150px; left: -100px;
  pointer-events: none;
}
.vision::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -120px; right: -80px;
  pointer-events: none;
}
.vision__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.vision__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.vision__desc {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.vision__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.btn--white {
  background: var(--white);
  color: var(--orange-2);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--white); color: var(--navy); padding: 3rem 0 2rem; border-top: 3px solid var(--orange); }
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-2);
}
.footer__brand img { height: 46px; width: auto; }
.footer__brand p { margin-top: 0.5rem; font-size: 0.82rem; color: var(--gray-5); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.footer__nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-5);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--orange); }
.footer__copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--gray-5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__cols { grid-template-columns: 1fr; }
  .hero__desc { max-width: 100%; }
  .hero__btns { justify-content: flex-start; }
  .phone { display: none; }
  .about__cards { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  /* Flow: 3 kolom → card lebih lebar → mockup otomatis lebih besar */
  .flow__steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .flow__step-top { min-height: auto; }
  .benefits__grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .hero__banner img { max-width: 300px; }
  .hero__inner { padding: 3.5rem 1.25rem 3rem; }
  .hero__title { font-size: 2.4rem; }
  .about__cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .features__grid { grid-template-columns: 1fr; }
  /* Flow: 2 kolom → card makin lebar → mockup makin besar */
  .flow__steps { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about, .features, .flow, .benefits, .vision { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(3,1fr); }
  .hero__banner img { max-width: 240px; }
  .features__grid { grid-template-columns: 1fr; gap: 1rem; }
  .feat-card { flex-direction: column; }
  .feat-card__icon { width: 3.5rem; height: 3.5rem; }
  /* Flow: 1 kolom → card full width → mockup paling besar */
  .flow__steps { grid-template-columns: 1fr; gap: 0.75rem; }
  .flow__step { padding: 1.25rem 1rem; }
  .flow__num { width: 2.8rem; height: 2.8rem; font-size: 1rem; margin-bottom: 0.7rem; }
  .flow__step h3 { font-size: 0.85rem; }
  .flow__desc { font-size: 0.78rem; }
}
