/* ============================================================
         SALES LANDING PAGE — INDEPENDENT STYLES
         Variabel didefinisikan di sini sebagai fallback,
         akan di-override oleh css/style.css jika tersedia.
         ============================================================ */

    /* ── CSS Variables (fallback jika style.css belum load) ── */
    :root {
      --navy: #03265A;
      /* Deep Navy */
      --orange: #FF770F;
      /* Primary Orange */
      --orange-dark: #D95B00;
      /* Orange Dark hover */
      --white: #ffffff;
      --light-gray: #F3EBDD;
      /* Light Cream */
      --line: #E6EBF1;
      /* Cool Border Neutral */
      --muted: #768692;
      /* Muted Blue-Gray */
      --text: #03265A;
      /* Deep Navy */
      --radius: 8px;
      --shadow: 0 18px 50px rgba(3, 38, 90, 0.10);
      --shadow-soft: 0 10px 28px rgba(3, 38, 90, 0.06);
      --container: 1200px;
      --blue: #03265A;
      --warm-ivory: #F9F7F3;
      --light-cream: #F3EBDD;
      --bg: var(--warm-ivory);
    }

    /* Fix Safari overflow-x bug:
         Saat hanya body yang punya overflow-x:hidden, Safari menjadikan body
         sebagai scroll container — elemen position:fixed/sticky ikut posisi body,
         bukan viewport, sehingga terpotong. Fix yang benar: set overflow-x:hidden
         pada KEDUA html DAN body. Browser akan mengangkat scroll container ke html
         (sesuai viewport), sehingga fixed/sticky kembali benar. */
    html {
      overflow-x: hidden;
    }

    /* body { overflow-x: hidden } sudah ada di style.css — tidak perlu override */

    /* rv.left / rv.right (translate ±30px) sudah di-contain oleh
         html { overflow-x: hidden } di atas — tidak perlu override di section. */

    /* ── Reset tambahan ── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /* ── Landing header (stripped — tanpa nav) ── */
    .lp-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .lp-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      height: 76px;
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
    }

    .lp-contact-strip {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 14px;
      color: var(--navy);
    }

    .lp-contact-strip a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--navy);
      transition: color 160ms ease;
    }

    .lp-contact-strip a:hover {
      color: var(--orange);
    }

    .lp-contact-strip svg {
      width: 15px;
      height: 15px;
      color: var(--orange);
      flex: 0 0 auto;
    }

    /* ── Hero ── */
    .lp-hero {
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(105deg,
          rgba(249, 247, 243, 0.94) 0%,
          rgba(249, 247, 243, 0.86) 50%,
          rgba(243, 235, 221, 0.52) 100%),
        url("https://altonex.alton.id/storage/images/sliders/1772771197041593.jpg") center / cover no-repeat;
      color: var(--navy);
    }

    .lp-hero-inner {
      position: relative;
      z-index: 2;
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
      padding: 80px 0 100px;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: center;
    }

    .lp-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 6px 14px 6px 10px;
      background: rgba(245, 130, 32, 0.12);
      border: 1px solid rgba(245, 130, 32, 0.28);
      border-radius: 999px;
      color: var(--orange);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 22px;
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .lp-hero-tag svg {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .lp-hero h1 {
      margin: 0;
      font-size: 54px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.08;
      letter-spacing: -0.5px;
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
    }

    .lp-hero h1 em {
      font-style: normal;
      color: var(--orange);
    }

    .lp-hero-sub {
      margin: 22px 0 0;
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 560px;
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
    }

    .lp-hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 32px;
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) 240ms both;
    }

    .btn-wa-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      min-height: 54px;
      background: #25d366;
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      box-shadow: 0 16px 32px rgba(37, 211, 102, 0.34);
      transition:
        transform 180ms ease,
        background 180ms ease;
      white-space: nowrap;
    }

    .btn-wa-hero:hover {
      background: #1ebe58;
      transform: translateY(-2px);
      color: var(--white);
    }

    .btn-wa-hero svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 24px;
      min-height: 54px;
      background: rgba(255, 255, 255, 0.65);
      color: var(--navy);
      border: 1px solid rgba(3, 38, 90, 0.28);
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 15px;
      font-weight: 600;
      transition:
        background 180ms ease,
        transform 180ms ease;
      white-space: nowrap;
    }

    .btn-cta-outline:hover {
      background: var(--navy);
      transform: translateY(-2px);
      border-color: var(--navy);
      color: var(--white);
    }

    .btn-cta-outline svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    /* Hero stats row */
    .lp-hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 44px;
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
    }

    .lp-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .lp-stat strong {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }

    .lp-stat span {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.3;
    }

    .lp-stat-divider {
      width: 1px;
      background: rgba(3, 38, 90, 0.15);
      align-self: stretch;
      margin: 0;
    }

    /* Hero form card */
    .lp-form-card {
      background: var(--white);
      border-radius: 12px;
      padding: 34px 30px;
      box-shadow: 0 32px 72px rgba(6, 27, 58, 0.32);
      animation: heroLift 700ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
    }

    .lp-form-card .fc-header {
      margin-bottom: 24px;
    }

    .lp-form-card .fc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: #fff4e9;
      color: var(--orange);
      border-radius: 999px;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .lp-form-card .fc-badge svg {
      width: 13px;
      height: 13px;
    }

    .lp-form-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.25;
      margin: 0;
    }

    .lp-form-card p {
      margin: 8px 0 0;
      color: var(--navy);
      font-size: 14px;
      line-height: 1.5;
    }

    .fc-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }

    .fc-field label {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
    }

    .fc-field input,
    .fc-field select,
    .fc-field textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      font: inherit;
      font-size: 14px;
      color: var(--text);
      background: #F9F7F3;
      outline: 0;
      transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
      resize: none;
    }

    .fc-field input:focus,
    .fc-field select:focus,
    .fc-field textarea:focus {
      border-color: var(--blue);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(21, 84, 140, 0.1);
    }

    /* Custom Radio Buttons for estimate form */
    .fc-radio-group {
      display: flex;
      gap: 20px;
      margin-top: 6px;
      flex-wrap: wrap;
    }

    .fc-radio-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text);
      font-weight: 500;
      cursor: pointer;
      position: relative;
      user-select: none;
    }

    .fc-radio-label input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .fc-radio-custom {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid var(--line);
      background: var(--light-gray);
      display: inline-block;
      position: relative;
      transition: border-color 200ms, background-color 200ms;
      flex-shrink: 0;
    }

    .fc-radio-label input:checked~.fc-radio-custom {
      border-color: var(--orange);
      background-color: var(--white);
    }

    .fc-radio-custom::after {
      content: "";
      position: absolute;
      display: none;
      top: 4px;
      left: 4px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
    }

    .fc-radio-label input:checked~.fc-radio-custom::after {
      display: block;
    }

    .fc-submit {
      width: 100%;
      padding: 14px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
      box-shadow: 0 12px 28px rgba(245, 130, 32, 0.3);
      transition:
        background 180ms ease,
        transform 180ms ease;
      cursor: pointer;
    }

    .fc-submit:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .fc-submit svg {
      width: 18px;
      height: 18px;
    }

    .fc-note {
      margin-top: 12px;
      text-align: center;
      font-size: 12px;
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .fc-note svg {
      width: 13px;
      height: 13px;
      color: #10b981;
    }

    /* ── Trust strip ── */
    .lp-trust {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      padding: 0;
    }

    .lp-trust-inner {
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lp-trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 24px;
      border-right: 1px solid var(--line);
      transition: background 160ms ease;
    }

    .lp-trust-item:last-child {
      border-right: 0;
    }

    .lp-trust-item:hover {
      background: #fffaf5;
    }

    .lp-trust-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: #fff4e9;
      color: var(--orange);
      flex: 0 0 auto;
    }

    .lp-trust-icon svg {
      width: 21px;
      height: 21px;
    }

    .lp-trust-text strong {
      display: block;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
    }

    .lp-trust-text span {
      display: block;
      margin-top: 2px;
      font-size: 13px;
      color: var(--navy);
      line-height: 1.35;
    }

    /* ── Section wrapper ── */
    .lp-section {
      padding: 88px 0;
    }

    .lp-section-inner {
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
    }

    .lp-section-light {
      background: var(--light-gray);
    }

    /* Section label */
    .lp-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .lp-label::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--orange);
      flex: 0 0 auto;
    }

    .lp-h2 {
      font-family: "Poppins", Arial, sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin: 0 0 16px;
    }

    .lp-lead {
      font-size: 17px;
      color: var(--navy);
      line-height: 1.7;
      margin: 0;
      max-width: 680px;
    }

    /* ── About ── */
    .lp-about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 60px;
      align-items: center;
    }

    /* Image stack (pakai class dari style.css) */
    .lp-about-copy p {
      color: var(--navy);
      line-height: 1.75;
      margin: 0 0 16px;
    }

    .lp-about-copy p:last-of-type {
      margin-bottom: 0;
    }

    /* ── Strengths ── */
    .lp-strengths {
      color: var(--navy);
      background: var(--light-cream);
    }

    .lp-strengths .lp-h2 {
      color: var(--navy);
    }

    .lp-strengths .lp-lead {
      color: var(--muted);
    }

    .lp-strengths-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 44px;
    }

    .lp-str-card {
      padding: 28px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
      display: grid;
      gap: 14px;
    }

    .lp-str-card:hover {
      background: rgba(245, 130, 32, 0.12);
      border-color: rgba(245, 130, 32, 0.38);
      transform: translateY(-4px);
    }

    .lp-str-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      margin: 0;
    }

    .lp-str-card p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── Warehouse ── */
    .lp-wh-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 32px;
      align-items: stretch;
      margin-top: 44px;
    }

    .lp-hub-cards {
      display: grid;
      gap: 16px;
    }

    .lp-hub-card {
      padding: 26px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 16px;
      transition:
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
    }

    .lp-hub-card:hover {
      border-color: rgba(245, 130, 32, 0.38);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .lp-hub-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .lp-hub-flag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: var(--orange);
      color: var(--white);
      border-radius: 999px;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 12px;
      font-weight: 600;
      flex: 0 0 auto;
    }

    .lp-hub-flag svg {
      width: 12px;
      height: 12px;
    }

    .lp-hub-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      margin: 0;
      line-height: 1.3;
    }

    .lp-hub-meta {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--navy);
      font-size: 14px;
      line-height: 1.5;
    }

    .lp-hub-meta li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .lp-hub-meta svg {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      flex: 0 0 auto;
    }

    /* ── Final CTA ── */
    .lp-cta {
      position: relative;
      color: var(--navy);
      background: linear-gradient(145deg, #F9F7F3 0%, #F3EBDD 100%);
      padding: 88px 0 100px;
      text-align: center;
      overflow: hidden;
      border-top: 1px solid rgba(6, 27, 58, 0.05);
    }

    .lp-cta::before {
      content: "";
      position: absolute;
      top: -30%;
      left: 50%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(3, 38, 90, 0.03) 0%, transparent 60%);
      transform: translateX(-50%);
      pointer-events: none;
    }

    .lp-cta .lp-h2 {
      color: var(--navy);
      font-size: 42px;
      max-width: 700px;
      margin: 0 auto 16px;
    }

    .lp-cta .lp-lead {
      color: rgba(6, 27, 58, 0.7);
      margin: 0 auto 36px;
      max-width: 600px;
    }

    .lp-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-wa-large {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 32px;
      min-height: 58px;
      background: #25d366;
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 18px 36px rgba(37, 211, 102, 0.36);
      transition:
        background 180ms ease,
        transform 180ms ease;
      white-space: nowrap;
    }

    .btn-wa-large:hover {
      background: #1ebe58;
      transform: translateY(-2px);
      color: var(--white);
    }

    .btn-wa-large svg {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
    }

    .btn-email {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 28px;
      min-height: 58px;
      background: var(--orange);
      color: var(--white);
      border: 1px solid var(--orange);
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 15px;
      font-weight: 600;
      transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(6, 27, 58, 0.04);
    }

    .btn-email:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      color: var(--white);
      border-color: var(--orange);
    }

    .btn-email svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .lp-cta-note {
      margin-top: 18px;
      font-size: 13px;
      color: rgba(6, 27, 58, 0.45);
    }

    /* ── Footer lengkap ── */
    .lp-footer {


      padding: 64px 0 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .lp-footer-wrap {
      width: calc(100% - 40px);
      max-width: var(--container);
      margin: 0 auto;
    }

    .lp-footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
      gap: 48px 36px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(3, 38, 90, 0.1);
    }

    .lp-footer-heading {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .lp-footer-col p:not(.lp-footer-heading),
    .lp-footer-col address {
      font-style: normal;
      color: var(--navy);
      margin: 0;
    }

    /* social icons row */
    .lp-footer-social {
      display: flex;
      gap: 12px;
      margin-top: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .lp-footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(3, 38, 90, 0.08);
      /* light navy for contrast */
      color: var(--navy);
      transition:
        background 180ms ease,
        color 180ms ease;
      flex-shrink: 0;
    }

    .lp-footer-social a:hover {
      background: var(--orange);
      color: var(--white);
    }

    .lp-footer-social svg {
      display: block;
    }

    .lp-footer-wa-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      background: #25d366;
      color: var(--white) !important;
      font-weight: 600;
      font-size: 13px;
      padding: 8px 14px;
      border-radius: 24px;
      transition: filter 160ms ease;
    }

    .lp-footer-wa-link:hover {
      filter: brightness(1.1);
    }

    /* service & blog links */
    .lp-footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .lp-footer-col ul li a {
      color: var(--navy);
      transition: color 160ms ease;
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
    }

    .lp-footer-col ul li a:hover {
      color: var(--orange);
    }

    /* external badge */
    .lp-ext-badge {
      display: inline-block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--orange);
      border: 1px solid var(--orange);
      border-radius: 4px;
      padding: 1px 4px;
      vertical-align: middle;
      line-height: 1.4;
      flex-shrink: 0;
    }

    /* bottom bar */
    .lp-footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--navy);
    }

    .lp-footer-bottom a {
      color: rgba(255, 255, 255, 0.45);
      transition: color 160ms ease;
    }

    .lp-footer-bottom a:hover {
      color: var(--orange);
    }

    /* ── Floating WhatsApp ── */
    .lp-wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 200;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 18px;
      min-height: 50px;
      background: #25d366;
      color: var(--white);
      border-radius: var(--radius);
      font-family: "Poppins", Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 16px 32px rgba(37, 211, 102, 0.38);
      transition:
        transform 180ms ease,
        background 180ms ease;
    }

    .lp-wa-float:hover {
      background: #1ebe58;
      transform: translateY(-3px);
      color: var(--white);
    }

    .lp-wa-float svg {
      width: 19px;
      height: 19px;
      flex: 0 0 auto;
    }

    /* ── Scroll reveal ── */
    .rv {
      opacity: 0;
      transform: translate3d(0, 26px, 0);
      transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--d, 0ms);
    }

    .rv.up {
      transform: translate3d(0, 26px, 0);
    }

    .rv.left {
      transform: translate3d(-30px, 0, 0);
    }

    .rv.right {
      transform: translate3d(30px, 0, 0);
    }

    .rv.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      /* ── Fix: Hero center di tablet/iPad mini/iPad Pro ── */
      .lp-hero-copy {
        text-align: center;
      }

      .lp-hero h1,
      .lp-hero-sub,
      .lp-hero-tag {
        text-align: center;
      }

      /* Fix: center h1 block itself (max-width dari style.css tanpa margin auto) */
      .lp-hero h1 {
        margin-left: auto;
        margin-right: auto;
      }

      .lp-hero-tag {
        margin-left: auto;
        margin-right: auto;
      }

      .lp-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
      }

      .lp-hero-actions {
        justify-content: center;
      }

      .lp-hero-stats {
        justify-content: center;
      }

      .lp-form-card {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
      }

      .lp-trust-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lp-trust-item:nth-child(2) {
        border-right: 0;
      }

      .lp-trust-item:nth-child(3),
      .lp-trust-item:nth-child(4) {
        border-top: 1px solid var(--line);
      }

      .lp-wh-grid {
        grid-template-columns: 1fr;
      }

      .route-panel {
        min-height: 360px;
      }
    }

    @media (max-width: 900px) {
      .lp-hero {
        min-height: auto;
      }

      .lp-hero h1 {
        font-size: 40px;
      }

      .lp-hero-sub {
        font-size: 16px;
      }

      .lp-about-grid {
        grid-template-columns: 1fr;
        /* gap menjamin jarak antara image-stack dan copy
             terlepas dari bagaimana browser mengukur min-height */
        gap: 80px;
      }

      /* image-stack harus lebih tinggi dari gambar terbawah:
           gambar-2 berakhir di top(235) + height(310) = 545px */
      .image-stack {
        min-height: 570px;
      }

      .lp-strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lp-h2 {
        font-size: 30px;
      }

      .lp-cta .lp-h2 {
        color: var(--navy);
        font-size: 42px;
        max-width: 700px;
        margin: 0 auto 16px;
      }

      .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
      }
    }

    @media (max-width: 640px) {
      .lp-header-inner {
        width: calc(100% - 28px);
        height: 64px;
      }

      .lp-contact-strip {
        display: none;
      }

      .lp-hero-inner {
        width: calc(100% - 28px);
        padding: 60px 0 80px;
      }

      .lp-hero h1 {
        font-size: 32px;
      }

      .lp-hero-stats {
        flex-wrap: wrap;
        gap: 18px;
      }

      .lp-stat-divider {
        display: none;
      }

      .lp-hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-wa-hero,
      .btn-cta-outline {
        justify-content: center;
      }

      .lp-section-inner {
        width: calc(100% - 28px);
      }

      .lp-trust-inner {
        grid-template-columns: 1fr;
      }

      .lp-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .lp-trust-item:last-child {
        border-bottom: 0;
      }

      .lp-section {
        padding: 64px 0;
      }

      .lp-strengths-grid {
        grid-template-columns: 1fr;
      }

      .lp-cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-wa-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 18px 28px;
        min-height: 58px;
        background: #25d366;
        color: var(--white);
        border: 1px solid #25d366;
        border-radius: var(--radius);
        font-family: "Poppins", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
        transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(6, 27, 58, 0.04);
      }

      .btn-email {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 18px 28px;
        min-height: 58px;
        background: var(--orange);
        color: var(--white);
        border: 1px solid rgba(6, 27, 58, 0.15);
        border-radius: var(--radius);
        font-family: "Poppins", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
        transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(6, 27, 58, 0.04);
      }

      .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
      }

      .lp-wa-float {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 28px);
        max-width: 400px;
        justify-content: center;
        bottom: 16px;
      }

      .lp-wa-float:hover {
        transform: translateX(-50%) translateY(-3px);
      }

      .lp-form-card {
        padding: 24px 18px;
      }

      .image-stack {
        min-height: 390px;
      }

      .image-stack img {
        width: 80%;
        height: 230px;
      }

      .image-stack img:nth-of-type(2) {
        top: 168px;
        left: 20%;
        width: 76%;
        height: 210px;
      }

      .experience-badge {
        left: 12px;
        bottom: 14px;
        width: 132px;
        min-height: 108px;
      }
    }

    /* ── Fix 3: Footer 1 kolom di HP kecil (iPhone SE, Galaxy S8+) ── */
    @media (max-width: 480px) {
      .lp-footer {
        padding: 48px 0 0;
      }

      .lp-footer-wrap {
        width: calc(100% - 28px);
      }

      .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .lp-footer-heading {
        margin-bottom: 12px;
      }

      .lp-footer-col ul {
        gap: 12px;
      }

      .lp-footer-col ul li a {
        font-size: 14px;
        line-height: 1.4;
      }

      .lp-footer-social {
        gap: 10px;
      }

      .lp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 18px 0;
      }
    }

    /* ── Section: Gudang / Warehouse ── */
    .warehouse-map-showcase-area {
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 28px auto 0;
      padding: 0 15px;
    }

    /* Premium Glassmorphic Frame */
    .warehouse-map-wrapper {
      position: relative;
      z-index: 1;
      width: 100%;
      background: linear-gradient(145deg, #F9F7F3, #F3EBDD);
      border-radius: 28px;
      padding: 12px;
      box-shadow:
        0 24px 54px rgba(3, 38, 90, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(6, 27, 58, 0.06);
      backdrop-filter: blur(10px);
    }

    /* Inner map container */
    .warehouse-map-container {
      position: relative;
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(3, 38, 90, 0.02);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 4px 20px rgba(3, 38, 90, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Subtle Decorative Accents (Tech Corners) */
    .warehouse-map-container::before,
    .warehouse-map-container::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 48px;
      border: 2px solid var(--orange);
      z-index: 2;
      opacity: 0.3;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .warehouse-map-container::before {
      top: 24px;
      left: 24px;
      border-right: none;
      border-bottom: none;
      border-top-left-radius: 12px;
    }

    .warehouse-map-container::after {
      bottom: 24px;
      right: 24px;
      border-left: none;
      border-top: none;
      border-bottom-right-radius: 12px;
    }

    /* Hover effects for accents */
    .warehouse-map-wrapper:hover .warehouse-map-container::before {
      top: 16px;
      left: 16px;
      opacity: 0.8;
    }

    .warehouse-map-wrapper:hover .warehouse-map-container::after {
      bottom: 16px;
      right: 16px;
      opacity: 0.8;
    }

    .warehouse-map-bg {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 1;
    }

    .warehouse-map-wrapper:hover .warehouse-map-bg {
      transform: scale(1.02);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .warehouse-map-showcase-area {
        margin-top: 20px;
        padding: 0 10px;
      }

      .warehouse-map-wrapper {
        padding: 12px;
        border-radius: 24px;
      }

      .warehouse-map-container {
        border-radius: 16px;
      }

      .warehouse-map-container::before,
      .warehouse-map-container::after {
        display: none;
      }
    }