/* ==========================================================================
   SSA Crane — Professional Corporate Theme (Light + Orange)
   ========================================================================== */

:root {
  /* Base */
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --bg-soft: #fafbfc;
  --surface: #ffffff;
  --line: #e5e7eb;
  --line-2: #eef0f3;

  /* Text */
  --text: #0f172a;          /* near-black slate */
  --text-2: #1f2937;
  --text-dim: #4b5563;
  --text-muted: #6b7280;

  /* Brand — match SSA logo (deep industrial red) */
  --brand: #C8252D;         /* primary brand red — from logo */
  --brand-2: #A41E25;       /* hover/darker */
  --brand-soft: #FCEAEB;    /* tint background */
  --orange: #C8252D;        /* alias for backwards compat */
  --orange-2: #A41E25;
  --orange-soft: #FCEAEB;
  --navy: #0E2A47;          /* deep professional navy (accents/footer) */
  --navy-2: #0a1f36;
  --navy-soft: #f0f4f9;

  /* Status */
  --success: #16a34a;

  /* Layout */
  --container: 1240px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 1px rgba(15, 23, 42, .03);
  --shadow-md: 0 6px 18px -6px rgba(15, 23, 42, .08), 0 2px 6px -2px rgba(15, 23, 42, .06);
  --shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, .12), 0 8px 16px -8px rgba(15, 23, 42, .08);
  --shadow-orange: 0 10px 24px -8px rgba(200, 37, 45, .32);
  --shadow-brand:  0 10px 24px -8px rgba(200, 37, 45, .32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Helpers ---------- */
.hl { color: var(--orange); }
.bar {
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  display: flex; align-items: center;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap; gap: 8px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--orange); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .6); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  display: inline-flex; align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.footer__brand .logo img {
  height: 56px;
  filter: brightness(0) invert(1);   /* white version on dark footer */
  opacity: .95;
}

.nav {
  display: flex; gap: 4px;
  margin: 0 auto;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--text-2);
  letter-spacing: .01em;
}
.nav a:hover { color: var(--orange); }
.nav a.is-active { color: var(--orange); }
.nav a.is-active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--orange);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(200, 37, 45, .45);
}
.btn--ghost {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.header__cta { padding: 10px 18px; font-size: 13px; }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  padding: 90px 0 110px;
  overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(200, 37, 45, .10), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(14, 42, 71, .05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  z-index: 0;
}
.hero__stripes {
  position: absolute;
  top: -20px; right: -120px;
  width: 460px; height: 110%;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0,
    var(--orange) 22px,
    transparent 22px,
    transparent 54px
  );
  opacity: .07;
  z-index: 0;
  transform: rotate(2deg);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { max-width: 660px; }
.hero__visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero__visual:hover img { transform: scale(1.04); }
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(14, 42, 71, .35) 100%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero__badge svg { color: var(--brand); flex-shrink: 0; }
.hero__badge strong { display: block; color: var(--navy); font-size: 14px; line-height: 1.2; }
.hero__badge span { font-size: 12px; color: var(--text-muted); }
.hero__sticker {
  position: absolute;
  top: -22px; right: -22px;
  width: 110px; height: 110px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
  transform: rotate(-8deg);
  z-index: 3;
}
.hero__sticker strong { font-size: 30px; line-height: 1; }
.hero__sticker span { font-size: 11px; margin-top: 4px; opacity: .9; }
.hero__eyebrow {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex; align-items: center;
}
.hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(46px, 7.6vw, 104px);
  line-height: .98;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 26px;
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 38px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--orange);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex; justify-content: center;
  z-index: 2;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--orange);
  margin-top: 6px;
  border-radius: 2px;
  animation: scroll 1.6s infinite;
}
@keyframes scroll {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-2);
  border-bottom: 1px solid var(--navy-2);
}
.marquee__track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .04em;
}
.marquee__track span { color: rgba(255,255,255,.92); }
.marquee__track span::before { color: var(--orange); margin-right: 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.section {
  padding: 110px 0;
  position: relative;
  background: var(--bg);
}
.section--dark {        /* now: subtle alt section */
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--clients { background: var(--bg-alt); }

.section__head {
  max-width: 800px;
  margin-bottom: 60px;
}
.section__head--row {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
}
.section__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.section__lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service:hover {
  border-color: rgba(200, 37, 45, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 56px; height: 56px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 19px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 18px;
}
.service__link {
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
}
.service__link:hover { color: var(--orange-2); }
.service--accent {
  background: linear-gradient(160deg, var(--orange-soft) 0%, #fff 70%);
  border-color: rgba(200, 37, 45, .25);
}

/* ---------- Filter chips ---------- */
.filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition);
}
.chip:hover { color: var(--orange); border-color: var(--orange); }
.chip.is-active {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
}

/* ---------- Fleet ---------- */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.unit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  min-height: 220px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.unit::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: repeating-linear-gradient(45deg,
    var(--orange) 0, var(--orange) 6px,
    transparent 6px, transparent 14px);
  opacity: .05;
  border-radius: 50%;
  transition: opacity var(--transition);
}
.unit:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.unit:hover::after { opacity: .14; }
.unit__img {
  position: relative;
  margin: -30px -26px 18px;
  height: 200px;
  background: var(--bg-alt);
  overflow: hidden;
}
.unit__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.unit:hover .unit__img img { transform: scale(1.06); }
.unit__cap {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .03em;
  line-height: 1;
  padding: 8px 14px 6px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.unit h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.unit p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 20px;
  flex: 1;
}
.unit__cta {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
}
.unit__cta:hover { color: var(--orange-2); }
.unit--feature { border-color: rgba(200, 37, 45, .3); }
.unit--hero {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: var(--brand);
}
.unit--hero .unit__cap {
  background: #fff;
  color: var(--brand);
}
.unit--hero h3 { color: #fff; }
.unit--hero p { color: rgba(255,255,255,.88); }
.unit--hero .unit__cta { color: #fff; border-bottom: 2px solid #fff; padding-bottom: 2px; }
.unit--hero::after { display: none; }

.unit.is-hidden { display: none; }

/* ---------- Why ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__item {
  background: #fff;
  padding: 36px 30px;
  transition: background var(--transition);
}
.why__item:hover { background: var(--bg-soft); }
.why__num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 16px;
}
.why__item h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why__item p {
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ---------- Story (Tentang) ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.story__col p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 16.5px;
}
.story__img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}
.story__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.story__img:hover img { transform: scale(1.05); }
.story__img-secondary {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 180px; height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.story__img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Vision/Mission ---------- */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.vm__card--accent {
  background: linear-gradient(160deg, var(--orange-soft) 0%, #fff 70%);
  border-color: rgba(200, 37, 45, .25);
}
.vm__tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.vm__card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.vm__card p { color: var(--text-dim); font-size: 16px; }
.vm__card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 15.5px;
}
.vm__card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 2px;
  background: var(--orange);
}

/* ---------- Clients ---------- */
.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client {
  background: #fff;
  padding: 32px 22px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transition: all var(--transition);
  min-height: 130px;
}
.client img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: all var(--transition);
}
.client:hover { background: var(--bg-soft); }
.client:hover img { filter: grayscale(0); opacity: 1; }
.client--more {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
}
.client--more a { color: var(--brand); }
.clients--lg .client { padding: 52px 22px; min-height: 180px; }
.clients--lg .client img { max-height: 90px; }

/* ---------- Projects (Portofolio) ---------- */
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.project__img {
  height: 220px;
  overflow: hidden;
  background: var(--bg-alt);
}
.project__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project:hover .project__img img { transform: scale(1.06); }
.project__body { padding: 32px; }
.project::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.project:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 37, 45, .25);
  box-shadow: var(--shadow-md);
}
.project:hover::before { transform: scaleY(1); }
.project__tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.project h3 {
  font-size: 21px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.project p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 18px;
}
.project__client {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Quote section (homepage form) ---------- */
.quote {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 37, 45, .07), transparent 55%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quote__copy h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  color: var(--navy);
  line-height: 1.02;
  margin-bottom: 20px;
}
.quote__copy > p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 480px;
}
.quote__benefits {
  display: flex; flex-direction: column; gap: 14px;
}
.quote__benefits li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.quote__benefits svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--brand);
  margin-top: 1px;
}
.quote__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote__form::before {
  content: '';
  position: absolute;
  top: -8px; left: 32px; right: 32px;
  height: 8px;
  background: var(--brand);
  border-radius: 4px 4px 0 0;
}
.quote__form h3 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 8px;
}
.quote__form > p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 22px;
}

/* ---------- CTA Banner ---------- */
.cta {
  background:
    radial-gradient(ellipse at top right, rgba(200, 37, 45, .15), transparent 60%),
    var(--navy);
  padding: 90px 0;
  color: #fff;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}
.cta .hl { color: var(--orange); }
.cta p { color: rgba(255,255,255,.78); font-size: 17px; }
.cta__actions {
  display: flex; gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cta .btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.3);
}
.cta .btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(200, 37, 45, .08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__stripes {
  position: absolute;
  top: -10px; left: -120px;
  width: 320px; height: 110%;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0,
    var(--orange) 18px,
    transparent 18px,
    transparent 44px
  );
  opacity: .05;
  transform: rotate(-3deg);
}
.page-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 1000px;
  position: relative;
}
.page-hero__sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 720px;
  position: relative;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.contact__info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact__item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact__label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact__item p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
}
.contact__item a:hover { color: var(--orange); }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-2);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200, 37, 45, .12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field__note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Map ---------- */
.map {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Posts (Berita) ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.post:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 37, 45, .25);
  box-shadow: var(--shadow-md);
}
.post--feature { grid-column: span 3; display: grid; grid-template-columns: 1.3fr 1fr; }
.post__img {
  background-color: var(--bg-alt);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.post:hover .post__img img { transform: scale(1.05); }
.post--feature .post__img { min-height: 360px; }

.post__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post__cat {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.post__body h2,
.post__body h3 {
  font-size: 21px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.post--feature .post__body h2 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.05;
}
.post__body a:hover { color: var(--orange); }
.post__body p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 18px;
  flex: 1;
}
.post__meta {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.empty-note {
  margin-top: 56px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__brand .logo { margin-bottom: 18px; }
.footer__brand .logo__text { color: #fff; }
.footer__brand p {
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  max-width: 360px;
}
.footer__col h4 {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer__col a,
.footer__col p {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__bottom a.credit {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.footer__bottom a.credit:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* ---------- Floating WA ---------- */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .45);
  z-index: 50;
  transition: all var(--transition);
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, .6);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .services,
  .fleet,
  .why,
  .posts { grid-template-columns: repeat(2, 1fr); }
  .post--feature { grid-column: span 2; }
  .clients { grid-template-columns: repeat(3, 1fr); }
  .section__head--row { grid-template-columns: 1fr; align-items: start; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .vm { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__img { aspect-ratio: 16/10; max-height: 480px; }
  .contact { grid-template-columns: 1fr; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { aspect-ratio: 16/10; max-width: 640px; margin: 0 auto; }
  .hero__sticker { width: 92px; height: 92px; top: -16px; right: -16px; }
  .hero__sticker strong { font-size: 24px; }

  .quote__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .topbar { font-size: 11.5px; }
  .topbar__inner { justify-content: center; text-align: center; }

  .logo img { height: 38px; }
  .footer__brand .logo img { height: 48px; }

  .hero__visual { aspect-ratio: 4/3; }
  .hero__sticker { width: 78px; height: 78px; }
  .hero__sticker strong { font-size: 20px; }
  .hero__sticker span { font-size: 9.5px; }
  .hero__badge { padding: 10px 14px; left: 14px; bottom: 14px; }
  .hero__badge strong { font-size: 12.5px; }
  .hero__badge span { font-size: 11px; }

  .unit__img { height: 170px; }
  .project__img { height: 180px; }
  .project__body { padding: 26px 22px; }
  .story__img-secondary { display: none; }
  .quote { padding: 70px 0; }
  .quote__form { padding: 30px 24px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; }

  .header__cta { display: none; }
  .hamburger { display: block; }
  .nav {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--transition);
    gap: 0;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line-2); }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { background: var(--orange-soft); padding-left: 16px; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1; min-width: 140px; }

  .section { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }

  .services,
  .fleet,
  .why,
  .projects,
  .posts { grid-template-columns: 1fr; }
  .post--feature { grid-column: span 1; grid-template-columns: 1fr; }
  .clients { grid-template-columns: repeat(2, 1fr); }

  .cta__inner { grid-template-columns: 1fr; gap: 24px; }
  .cta__actions { justify-content: flex-start; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { justify-content: center; text-align: center; }

  .fab { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}

@media (max-width: 420px) {
  .topbar__item:last-child { display: none; }
  .clients { grid-template-columns: 1fr; }
  .vm__card, .contact__form { padding: 28px 22px; }
}
