/* ============================================================
   KASVO — Landing Page Stylesheet
   Grow Smart, Grow Fast!
   ============================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --blue-dark:  #1A2D6B;
  --blue-mid:   #2251CC;
  --blue-light: #4A90E2;
  --orange:     #F5A623;
  --orange-dark:#D4851A;
  --gold:       #E8B84B;
  --white:      #FFFFFF;
  --off-white:  #F4F7FF;
  --text-dark:  #0D1B4B;
  --text-muted: #6B7A99;
  --card-bg:    #FFFFFF;
  --shadow-lg:  0 20px 60px rgba(34,81,204,0.15);
  --shadow-md:  0 8px 30px rgba(34,81,204,0.10);
  --radius-xl:  20px;
  --radius-lg:  14px;
  --radius-md:  10px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(74,144,226,.12); color: var(--blue-mid);
}
.tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); display: inline-block;
}
.section-label { text-align: center; margin-bottom: 12px; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.15; color: var(--text-dark); text-align: center;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  font-size: 16px; margin-top: 10px; line-height: 1.6;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 24px rgba(245,166,35,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,166,35,.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--blue-dark); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(26,45,107,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-diamond {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  transform: rotate(45deg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-diamond span { transform: rotate(-45deg); font-size: 14px; font-weight: 900; color: white; }
.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: .04em;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none; font-weight: 600; font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active {
  background: rgba(255,255,255,.15);
  padding: 6px 16px; border-radius: 99px;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-login {
  color: var(--white); font-weight: 700; font-size: 14px;
  text-decoration: none; padding: 8px 20px; border-radius: 99px;
  border: 2px solid rgba(255,255,255,.35);
  transition: all .2s;
}
.nav-login:hover { background: rgba(255,255,255,.1); }

/* ── HERO ─────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #3A6FD8 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shapes .shape-circle {
  position: absolute; border-radius: 50%; opacity: .08; background: white;
}
.hero-bg-shapes .shape-circle:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -80px; }
.hero-bg-shapes .shape-circle:nth-child(2) { width: 300px; height: 300px; bottom: -60px; left: -60px; }
.hero-bg-shapes .shape-circle:nth-child(3) { width: 180px; height: 180px; top: 40%; right: 30%; opacity: .05; }
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,226,.35) 0%, transparent 70%);
  top: 50%; right: 5%; transform: translateY(-50%); pointer-events: none;
}
.hero-dots {
  position: absolute; right: 10%; bottom: 15%;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; opacity: .25;
}
.hero-dots span { width: 5px; height: 5px; border-radius: 50%; background: white; display: block; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%; min-height: calc(100vh - 80px); padding: 60px 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 99px; margin-bottom: 28px;
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp .6s ease both;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; }
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5vw, 66px); font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
  animation: fadeSlideUp .6s .1s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
  animation: fadeSlideUp .6s .2s ease both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeSlideUp .6s .3s ease both;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeSlideUp .6s .4s ease both;
}
.stat-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); }
.stat-num span { color: var(--orange); }
.stat-label { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 2px; }

/* ── HERO VISUAL — Gambar Perempuan ──────────────────────── */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: flex-end;
  animation: fadeSlideUp .8s .2s ease both;
}

/* Wrapper gambar — posisi relatif untuk float cards */
.hero-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  /* Batasi tinggi agar gambar pas dengan hero */
  max-height: calc(100vh - 120px);
}

/* Gambar utama */
.hero-person-img {
  display: block;
  /* Tinggi maksimal mengikuti viewport, lebar proporsional */
  height: clamp(380px, 65vh, 640px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* Sedikit drop shadow supaya menyatu dengan background */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
  animation: fadeSlideUp .9s .25s ease both;
}

/* Floating Cards */
.float-card {
  position: absolute; background: white; border-radius: var(--radius-lg);
  padding: 12px 16px; box-shadow: 0 10px 40px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  z-index: 10;
}

/* Kanan atas — Pembayaran Berhasil */
.float-card-1 {
  top: 30px;
  right: -50px;
  animation: float1 3s ease-in-out infinite;
}

/* Kiri tengah bawah — Order Baru */
.float-card-2 {
  bottom: 30px;
  left: -30px;
  animation: float2 3.5s ease-in-out infinite;
}

/* Kanan bawah — Pendapatan */
.float-card-3 {
  bottom: 30px;
  right: -20px;
  animation: float1 4s 1s ease-in-out infinite;
}

.fc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.fc-icon.green { background: #DCFCE7; }
.fc-icon.blue  { background: #DBEAFE; }
.fc-text .fc-label { font-size: 10px; color: #9CA3AF; font-weight: 500; }
.fc-text .fc-val   { font-size: 13px; color: #111827; font-weight: 700; }

/* ── TRUSTED BY ──────────────────────────────────────────── */
#trusted {
  padding: 32px 0;
  border-top: 1px solid rgba(26,45,107,.07);
  border-bottom: 1px solid rgba(26,45,107,.07);
  background: var(--off-white);
}
.trusted-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trusted-label {
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
}
.trusted-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.t-logo {
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; color: #9CA3AF;
  letter-spacing: .05em; opacity: .7; transition: opacity .2s;
}
.t-logo:hover { opacity: 1; }

/* ── FEATURES ────────────────────────────────────────────── */
#features { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.feat-card {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  transition: transform .3s, box-shadow .3s; cursor: default;
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feat-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.feat-img-placeholder { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.feat-body { padding: 24px; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }
.feat-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.feat-name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.feat-desc { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.65; }

/* Feature Highlight */
.feat-highlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 80px;
  padding: 60px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-dark), #1e3a8a);
  position: relative; overflow: hidden;
}
.feat-highlight::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.feat-highlight-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: white; margin-bottom: 16px; line-height: 1.2;
}
.feat-highlight-text p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.feat-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.feat-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
}
.feat-list li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-highlight-visual { display: flex; justify-content: center; align-items: center; }

/* POS Mockup */
.pos-mockup {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); padding: 24px; width: 260px; backdrop-filter: blur(12px);
}
.pos-screen { background: #0F172A; border-radius: 12px; padding: 16px; margin-bottom: 14px; }
.pos-row {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.6); font-size: 11px;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.pos-row:last-child { border: none; }
.pos-row span:last-child { color: white; font-weight: 600; }
.pos-total {
  display: flex; justify-content: space-between; padding: 10px; border-radius: 8px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: white; font-weight: 700; font-size: 15px;
}
.pos-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.pos-btn { padding: 10px; border-radius: 8px; border: none; font-size: 12px; font-weight: 700; cursor: pointer; }
.pos-btn.cash { background: var(--orange); color: white; }
.pos-btn.qr   { background: rgba(255,255,255,.1); color: white; }

/* ── MERCHANT ────────────────────────────────────────────── */
#merchant {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--blue-dark) 0%, #1e3a8a 100%);
  position: relative; overflow: hidden;
}
#merchant::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
#merchant .section-title { color: white; }
#merchant .section-sub   { color: rgba(255,255,255,.65); }
.merchant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.merchant-card {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  transition: transform .3s, background .3s; cursor: default;
}
.merchant-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.merchant-img-placeholder {
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative;
}
.merchant-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5));
}
.mc-body { padding: 20px; }
.mc-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.mc-badge {
  display: inline-block; padding: 3px 10px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 99px; font-size: 10px; font-weight: 700;
  color: white; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.mc-desc { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how { padding: 100px 0; background: var(--off-white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange)); z-index: 0;
}
.step-card {
  background: white; border-radius: var(--radius-xl);
  padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-md); position: relative; z-index: 1; transition: transform .3s;
}
.step-card:hover { transform: translateY(-6px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800;
  color: white; margin: 0 auto 18px;
  border: 3px solid white; box-shadow: 0 4px 16px rgba(34,81,204,.3);
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────── */
#price { padding: 100px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: start; }
.price-card {
  border-radius: var(--radius-xl); border: 2px solid rgba(34,81,204,.1);
  padding: 36px 28px; position: relative;
  transition: transform .3s, box-shadow .3s; background: white;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(34,81,204,.08), var(--shadow-lg);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-dark));
  color: white; font-size: 11px; font-weight: 700;
  padding: 5px 18px; border-radius: 99px;
  white-space: nowrap; letter-spacing: .06em; text-transform: uppercase;
}
.price-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 6px; }
.price-name { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.price-name.popular-name { color: var(--blue-mid); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-rp { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.price-num { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--text-dark); }
.price-card.popular .price-num { color: var(--blue-mid); }
.price-period { color: var(--text-muted); font-size: 13px; }
.price-outlet { color: var(--text-muted); font-size: 12px; margin-bottom: 28px; }
.price-divider { height: 1px; background: rgba(34,81,204,.08); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dark); }
.price-features li .check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: white; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.price-features li .check.orange { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.btn-plan {
  width: 100%; padding: 14px; border-radius: 99px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: all .25s;
}
.btn-plan-outline { background: transparent; color: var(--blue-mid); border: 2px solid var(--blue-mid); }
.btn-plan-outline:hover { background: var(--blue-mid); color: white; }
.btn-plan-fill {
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-dark));
  color: white; box-shadow: 0 6px 20px rgba(34,81,204,.3);
}
.btn-plan-fill:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,81,204,.4); }

/* ── CTA BANNER ──────────────────────────────────────────── */
#cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,.12), transparent 60%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 800;
  color: white; margin-bottom: 10px; line-height: 1.15;
}
.cta-text p { color: rgba(255,255,255,.7); font-size: 16px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #060D2B; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-text { font-size: 24px; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: 14px; margin: 14px 0 20px; line-height: 1.6; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 16px; text-decoration: none; transition: all .2s;
}
.social-btn:hover { background: var(--blue-mid); color: white; border-color: var(--blue-mid); }
.footer-col h4 { font-family: 'Sora', sans-serif; color: white; font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: white; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes float1 {
  0%,100% { transform: translateY(0px) rotate(1deg); }
  50%     { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%     { transform: translateY(-8px) rotate(1deg); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 0 0; }
  .hero-desc  { margin: 0 auto 32px; }
  .hero-buttons, .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 20px; }

  /* Gambar lebih kecil di mobile */
  .hero-person-img { height: clamp(260px, 45vh, 400px); }

  /* Float cards agak ke dalam di mobile */
  .float-card-1 { right: 0; top: 20px; }
  .float-card-2 { left: 0; bottom: 80px; }
  .float-card-3 { right: 0; bottom: 10px; }

  .features-grid, .merchant-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feat-highlight { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  .cta-inner { justify-content: center; text-align: center; }
}