/* ═══════════════════════════════════════════════════════════
   Trihita — Landing Page Design System
   Diselaraskan dari static/landing/trihita.css (warna & font asli)
   ═══════════════════════════════════════════════════════════ */
:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #0a0a0a;
  --g50: #fafafa;
  --g100: #f4f4f5;
  --g200: #e4e4e7;
  --g300: #d4d4d8;
  --g400: #a1a1aa;
  --g500: #71717a;
  --g600: #52525b;
  --g700: #3f3f46;
  --g800: #27272a;
  --g900: #18181b;
  --r: #CC0000;
  --r50: #fef2f2;
  --r100: #fee2e2;
  --r200: #fecaca;
  --r400: #f87171;
  --r500: #ef4444;
  --r600: #dc2626;
  --r700: #b91c1c;
  --r800: #991b1b;
  --blue: #2563eb;
  --green: #16a34a;
  --orange: #ea580c;
  --purple: #9333ea;
  --gold: #eab308;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
  --shadow-red: 0 12px 32px rgba(204,0,0,.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--g900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--r);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--r700); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(204,0,0,.32); }
.btn-outline {
  background: var(--white);
  color: var(--g900);
  border: 2px solid var(--g200);
}
.btn-outline:hover { border-color: var(--r); color: var(--r); }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; letter-spacing: -.02em; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--r), var(--r700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; font-weight: 900;
  box-shadow: var(--shadow-red);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-weight: 600; font-size: 14.5px; color: var(--g700); transition: color .2s; }
.nav-link:hover { color: var(--r); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, var(--r50), var(--white) 60%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--r50); color: var(--r700);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  color: var(--g900);
}
.hero h1 .accent { color: var(--r); position: relative; }
.hero p.lead {
  font-size: 19px;
  color: var(--g600);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item .icon-badge {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--g100); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-trust-item .label { font-size: 13px; font-weight: 600; color: var(--g600); line-height: 1.3; }
.hero-trust-item .label strong { display: block; color: var(--g900); font-size: 14.5px; }

.hero-visual { position: relative; }
.hero-phone {
  position: relative;
  margin: 0 auto;
  width: min(320px, 80vw);
  aspect-ratio: 9/18.5;
  border-radius: 44px;
  background: linear-gradient(160deg, var(--g900), var(--black));
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--g800);
}
.hero-phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: linear-gradient(165deg, var(--r), var(--r800));
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 20px;
  color: var(--white);
}
.hero-phone-greeting { font-size: 13px; opacity: .85; margin-bottom: 4px; }
.hero-phone-name { font-size: 22px; font-weight: 800; margin-bottom: 22px; }
.hero-phone-card {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
}
.hero-phone-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.hero-phone-service {
  background: rgba(255,255,255,.95);
  color: var(--r700);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  font-weight: 800;
  font-size: 12.5px;
}
.hero-phone-service .emoji { font-size: 26px; display: block; margin-bottom: 8px; }
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13.5px;
  animation: float 5s ease-in-out infinite;
}
.hero-float-badge.b1 { top: -5%; left: -8%; animation-delay: 0s; }
.hero-float-badge.b2 { bottom: 12%; right: -8%; animation-delay: 1.2s; }
.hero-float-badge .ico { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.hero-float-badge.b1 .ico { background: var(--r50); color: var(--r); }
.hero-float-badge.b2 .ico { background: #ecfdf5; color: var(--green); }

@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

/* ── Section shared ──────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--g50); }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
  display: inline-block; color: var(--r); font-weight: 800; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; color: var(--g900);
}
.section-head p { font-size: 17px; color: var(--g600); }

/* ── Services ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.bike { background: linear-gradient(150deg, var(--r), var(--r800)); color: var(--white); }
.service-card.car { background: var(--g900); color: var(--white); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.service-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; }
.service-card p { opacity: .85; font-size: 15px; margin-bottom: 24px; max-width: 340px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag { background: rgba(255,255,255,.15); padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }

/* ── Features ────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--g100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s var(--ease);
}
.feature-card:hover { border-color: var(--r200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-icon.red { background: var(--r50); }
.feature-icon.green { background: #ecfdf5; }
.feature-icon.blue { background: #eff6ff; }
.feature-icon.gold { background: #fefce8; }
.feature-icon.purple { background: #faf5ff; }
.feature-icon.orange { background: #fff7ed; }
.feature-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; }
.feature-card p { font-size: 14.5px; color: var(--g600); }

/* ── Impact / Bali strip ─────────────────────────────── */
.impact {
  background: linear-gradient(150deg, var(--g900), var(--black));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  margin: 0 24px;
  max-width: 1152px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.impact h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 18px; }
.impact p { color: var(--g300); font-size: 15.5px; line-height: 1.7; }
.impact-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.18); color: var(--r400);
  padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  margin-bottom: 20px;
}
.impact-list { display: flex; flex-direction: column; gap: 18px; }
.impact-list-item { display: flex; gap: 14px; align-items: flex-start; }
.impact-list-item .check {
  width: 26px; height: 26px; border-radius: 8px; background: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; margin-top: 2px;
}
.impact-list-item .text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.impact-list-item .text span { font-size: 13.5px; color: var(--g400); }

/* ── Download CTA ────────────────────────────────────── */
.cta-section { padding: 110px 0; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 18px; }
.cta-section p { font-size: 17px; color: var(--g600); max-width: 500px; margin: 0 auto 40px; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--g900); color: var(--white);
  padding: 12px 22px; border-radius: 14px;
  transition: all .25s var(--ease);
}
.store-badge:hover { background: var(--black); transform: translateY(-2px); }
.store-badge .ic { font-size: 24px; }
.store-badge .txt { text-align: left; line-height: 1.2; }
.store-badge .txt .small { font-size: 10.5px; opacity: .7; display: block; }
.store-badge .txt .big { font-size: 15.5px; font-weight: 700; }

/* ── Footer ──────────────────────────────────────────── */
.footer { background: var(--g900); color: var(--g400); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; margin-bottom: 12px; color: var(--g400); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--g800); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}

/* ── Reveal-on-scroll ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero p.lead { max-width: 100%; }
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .impact { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
