@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Nunito:wght@400;500;600;700;800;900&display=swap");

:root {
  --paper: #fffdf8;
  --ink: #12191f;
  --yellow: #ffd31a;
  --coral: #ff6f61;
  --teal: #45aaa1;
  --teal-soft: #dff4f0;
  --lav: #ddd2fb;
  --mint: #e8f7f3;
  --line: #e8e8e3;
  --shadow: 0 12px 35px rgba(31, 44, 47, .10);
  --radius: 28px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", system-ui, sans-serif;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .18;
  background-image: radial-gradient(rgba(0, 0, 0, .12) .65px, transparent .75px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1170px, calc(100% - 44px));
  margin: auto
}

/* ---------- NAV ---------- */
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font: 700 38px/1 "Kalam", cursive;
  letter-spacing: -1.5px;
}

.brand .star {
  color: #ffc900;
  font-family: Nunito;
  font-size: 34px;
  margin-left: 4px
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 800
}

.navlinks a {
  position: relative
}

.navlinks a:not(.btn):after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 99px;
  transform: translateX(-50%) rotate(-2deg);
  transition: .18s ease;
}

.navlinks a:not(.btn):hover:after {
  width: 100%
}

.nav .btn {
  padding: 13px 23px;
  border: 1.5px solid #cfd3d0;
  border-radius: 14px;
  background: #fff;
}

.nav .btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, .12)
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 32px;
  min-height: 540px;
  padding: 24px 0 64px;
}

.badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(-2deg);
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;
  font: 700 clamp(55px, 6.1vw, 84px)/1.1 "Kalam", cursive;
  letter-spacing: -2.8px;
}

.hero h1 .red {
  display: block;
  color: var(--coral)
}

.hero h1 .green {
  display: block;
  color: var(--teal)
}

.hero .scribble {
  width: 280px;
  border-top: 5px solid var(--teal);
  border-radius: 50%;
  height: 11px;
  transform: rotate(-2deg);
  margin: 7px 0 26px;
}

.hero p {
  margin: 0 0 29px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px
}

.hero-primary {
  display: inline-flex;
  padding: 15px 23px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 13px;
  font-weight: 900;
  box-shadow: 3px 4px 0 var(--ink);
  transition: .15s;
}

.hero-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 2px 0 var(--ink);
}

.hero-demo {
  font: 900 20px "Kalam", cursive;
  border-bottom: 3px solid var(--ink);
  transform: rotate(-2deg);
}


/* hero collage */
.hero-visual {
  position: relative;
  min-height: 410px
}

.hero-visual .asset {
  position: absolute;
  right: -10px;
  top: 6px;
  width: min(680px, 108%);
  filter: drop-shadow(0 11px 22px rgba(0, 0, 0, .08));
}

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.features-heading {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font: 700 38px/1.1 "Kalam", cursive;
}

.feature {
  padding: 38px 25px 35px;
  min-height: 210px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.feature:last-child {
  border-right: 0
}

.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 50% 45% 53% 46%;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  font-size: 29px;
  transform: rotate(-4deg);
  border: 2px solid rgba(0, 0, 0, .06)
}

.feature:nth-child(1) .feature-icon {
  background: #79c8c0
}

.feature:nth-child(2) .feature-icon {
  background: #ff806f
}

.feature:nth-child(3) .feature-icon {
  background: #82b9e8
}

.feature:nth-child(4) .feature-icon {
  background: #ffd31a
}

.feature:nth-child(5) .feature-icon {
  background: #fff6e9
}

.feature h3 {
  font: 700 18px/1.1 "Kalam", cursive;
  margin: 0 0 10px
}

.feature p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  font-weight: 600
}

/* ---------- PRODUCT ---------- */
.product {
  margin-top: 44px;
  padding: 92px 0 76px;
  background: var(--teal-soft);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.product:before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: -13px;
  height: 45px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 48%, 95% 68%, 90% 55%, 83% 76%, 76% 45%, 68% 70%, 60% 52%, 51% 74%, 43% 45%, 34% 67%, 25% 50%, 17% 72%, 8% 52%, 0 69%);
}

.product-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 55px
}

.product-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 44px;
}

.bus-side {
  min-width: 0;
  justify-self: center;
  width: 100%;
  max-width: 390px;
}

.hand-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal);
  font: 700 clamp(29px, 3vw, 39px)/.94 "Kalam", cursive;
  transform: rotate(-1deg);
}

.hand-title b {
  font-weight: 700;
  display: inline-block;
  transition: transform .3s ease;
}

.hand-title .hand-coral {
  color: var(--coral);
}

.hand-title:hover b {
  animation: pulseText .8s ease-in-out infinite;
}

@keyframes pulseText {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.bus-icon {
  font-family: system-ui;
  font-size: 39px;
  line-height: 1;
}

.bus-card {
  position: relative;
  padding: 27px 29px 25px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(30, 43, 44, .07);
  border-radius: 10px 12px 9px 11px;
  box-shadow: 0 15px 32px rgba(27, 39, 42, .15);
  transition: transform .35s ease, box-shadow .35s ease;
}

.bus-card:hover {
  transform: translateY(-7px) rotate(-.35deg);
  box-shadow: 0 24px 43px rgba(27, 39, 42, .20);
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 900;
}

.card-bus-icon {
  font-family: system-ui;
  font-size: 15px;
}

.score-wrap {
  text-align: center;
  margin-top: 13px;
}

.score-wrap strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.score-wrap span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.divider {
  height: 1px;
  background: #e7ebe9;
  margin: 19px 0 12px;
}

.status-row {
  width: 100%;
  display: grid;
  grid-template-columns: 11px 1fr 15px;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 7px 5px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  font-family: inherit;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, padding .2s ease;
}

.status-row:hover {
  background: #f5f8f6;
  transform: translateX(5px);
  padding-left: 9px;
}

.status-row>i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.status-row.safe>i {
  background: #61c8b1
}

.status-row.warning>i {
  background: #efb72a
}

.status-row.danger>i {
  background: #e65c58
}

.status-row span {
  display: grid;
  gap: 2px;
}

.status-row b {
  font-size: 12px;
}

.status-row small {
  font-size: 8px;
  color: #89918f;
}

.status-row em {
  font-style: normal;
  font-size: 18px;
  color: #929997;
}

.paper-note {
  position: relative;
  width: min(330px, 100%);
  margin: -2px auto 0;
  transform: rotate(-2deg);
}

.paper-body {
  position: relative;
  min-height: 105px;
  padding: 23px 30px 18px 35px;
  background: #fffaf0;
  clip-path: polygon(0 7%, 8% 3%, 16% 6%, 24% 1%, 32% 5%, 40% 2%, 49% 5%, 57% 1%, 65% 4%, 73% 2%, 82% 6%, 90% 3%, 100% 7%, 98% 95%, 90% 92%, 81% 97%, 72% 93%, 63% 98%, 54% 94%, 45% 98%, 36% 94%, 27% 98%, 18% 93%, 9% 97%, 0 92%);
  filter: drop-shadow(0 7px 5px rgba(27, 39, 42, .09));
}

.paper-body p {
  margin: 0;
  font: 700 16px/1.05 "Kalam", cursive;
}

.paper-body span {
  position: absolute;
  right: 22px;
  bottom: 17px;
  color: #ef8b79;
  font-size: 24px;
}

.tape {
  position: absolute;
  right: -5px;
  top: -1px;
  width: 75px;
  height: 22px;
  background: rgba(69, 170, 161, .72);
  transform: rotate(17deg);
}

.product h2 {
  margin: 0 0 30px;
  max-width: 490px;
  font: 700 clamp(45px, 5vw, 61px)/.98 "Kalam", cursive;
  letter-spacing: -1.4px
}

.underline {
  color: var(--teal);
  position: relative
}

.underline:after {
  content: "";
  position: absolute;
  left: 0;
  right: -6px;
  bottom: -7px;
  height: 9px;
  border-top: 4px solid var(--teal);
  border-radius: 50%;
  transform: rotate(-2deg)
}

.checks {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-weight: 700;
  font-size: 16px
}

.checks li:before {
  content: "✓";
  color: #13a196;
  font-size: 20px;
  font-weight: 900;
  margin-right: 12px
}

.quote {
  margin-top: 32px;
  width: min(500px, 100%);
  padding: 22px 26px 20px;
  background: #fffaf0;
  box-shadow: 5px 7px 0 rgba(0, 0, 0, .07);
  font: 400 20px/1.35 "Kalam", cursive;
  transform: rotate(-1deg);
  position: relative
}

.quote small {
  display: block;
  margin-top: 12px;
  font: 800 12px "Nunito", sans-serif
}

/* phone asset */
.phone-art {
  width: min(620px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 17px 23px rgba(0, 0, 0, .10));
  border-radius: 30px
}

/* ---------- CTA ---------- */
/* ---------- FOOTER ---------- */
.footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.footer .brand {
  font-size: 29px
}

.footerlinks {
  display: flex;
  gap: 31px;
  font-size: 14px;
  font-weight: 800
}

.social {
  display: flex;
  gap: 18px;
  font-size: 22px;
  font-weight: 900
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 26px;
  font-size: 12px;
  font-weight: 700;
}

.footer-legal a {
  color: var(--ink);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal span {
  color: #999;
}

/* ---------- PRICING ---------- */
.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 42px
}

.section-kicker {
  display: inline-block;
  color: #7048c4;
  font: 700 18px/1 "Kalam", cursive
}

.section-heading h2 {
  margin: 8px 0 12px;
  font: 700 clamp(40px, 5vw, 58px)/1 "Kalam", cursive
}

.section-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700
}

.pricing-section {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .38), transparent 22rem),
    var(--lav);
}

.pricing-inner {
  width: min(1160px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: stretch;
}

/* Calculator */

.calculator {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  align-items: center;
  padding: 30px 30px 26px;
  background: #fffaf0;
  border: 2px solid transparent;
  border-radius: 16px;
  transform: rotate(-.5deg);
}

.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  align-items: end;
}

.calc-form h2 {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  font: 700 32px/1 "Kalam", cursive;
  transform: rotate(-1.5deg);
}

.calculator .subtitle {
  margin: 10px 0 22px;
  color: #596464;
  font-size: 9px;
  font-weight: 700;
}

.calculator label {
  display: block;
  margin: 0 0 7px;
  font-size: 9px;
  font-weight: 900;
}

.calculation-result {
  align-self: center;
}

.number-input {
  position: relative;
  margin-bottom: 15px;
}

.number-input input {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 14px;
  border: 1.5px solid #e3dcec;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: 700 12px "Nunito", sans-serif;
  outline: none;
  box-shadow: 0 1px 3px rgba(40, 35, 55, .04);
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Custom dropdown */

.dropdown {
  position: relative;
  margin-bottom: 15px;
  z-index: 10;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid #e3dcec;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: 700 12px "Nunito", sans-serif;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(40, 35, 55, .04);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.dropdown-trigger:hover {
  border-color: #c9b8e8;
}

.dropdown-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1.5px solid #e3dcec;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(40, 35, 55, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.dropdown[data-open] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  color: #4a4a52;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.dropdown-menu li:hover {
  background: #f3ecfd;
  color: #7048c4;
}

.dropdown-menu li.selected {
  background: #e9dcfb;
  color: #7048c4;
}

.dropdown-menu li.selected::before {
  content: "✓";
  margin-right: 7px;
  color: #7048c4;
}

.number-input input {
  padding-right: 38px;
}

.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.number-input span {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
  pointer-events: none;
}

.select-wrap select:focus,
.number-input input:focus {
  border-color: #9b7ad8;
  box-shadow: 0 0 0 3px rgba(118, 80, 200, .14);
}

.calculation-result {
  position: relative;
  margin-top: 20px;
  padding: 18px 16px 16px;
  background: rgba(255, 250, 240, .78);
  border: 1px solid rgba(231, 225, 215, .9);
  border-radius: 14px;
}

.calculation-result::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 52px;
  height: 18px;
  background: rgba(118, 80, 200, .62);
  transform: rotate(-4deg);
}

.result-heading {
  font: 700 14px/1 "Kalam", cursive;
}

.calculation-result > strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.03em;
}

.calculation-result .per-person {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 900;
}

.calculation-result p {
  margin: 9px 0 13px;
  font-size: 8px;
  line-height: 1.45;
  color: #596464;
}

.calculation-result .cta {
  width: 100%;
}

/* Exactly three pricing cards: School | Tour | Umroh */

.packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package {
  position: relative;
  height: 100%;
  min-height: 358px;
  padding: 30px 26px 24px;
  background: #fffaf0;
  border: 2px solid transparent;
  border-radius: 16px;
  transform: rotate(-.5deg);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}

.package:hover {
  transform: translateY(-6px) rotate(0deg);
}

.package.featured {
  border: 2px solid #bfa6ef;
}

.package.featured:hover {
  transform: translateY(-12px) rotate(0deg);
}

.package h3 {
  margin: 0 0 8px;
  font: 700 28px/1 "Kalam", cursive;
  color: #7448c5;
}

.package > strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 900;
}

.package.tour > strong {
  color: var(--coral);
}

.package > strong small {
  font-size: 11px;
  color: var(--ink);
}

.package p {
  margin: 12px 0 14px;
  min-height: 28px;
  font-size: 11px;
  line-height: 1.4;
  color: #5e6866;
  font-weight: 700;
}

.package ul {
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.package li {
  position: relative;
  padding-left: 15px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7048c4;
  font-weight: 900;
}

/* Shared CTA in pricing section */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, .12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, .12);
}

.cta span {
  transition: transform .2s ease;
}

.cta:hover span {
  transform: translateX(3px);
}

.package .cta {
  margin-top: auto;
}

.package a.cta:hover {
  transform: translate(1px, 1px);
}

.popular {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 8px 18px;
  background: var(--yellow);
  transform: translateX(-50%) rotate(-2deg);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  border-radius: 0;
}

.pricing-note {
  grid-column: 2;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .38);
  color: #5d5967;
  font-size: 10px;
  line-height: 1.45;
}

.pricing-note span {
  margin-right: 4px;
}

@media (max-width:1000px) {
  .pricing-inner {
    grid-template-columns: 210px 1fr;
    gap: 22px;
  }

  .packages {
    gap: 10px;
  }

  .pricing-note {
    grid-column: 2;
  }
}

@media (max-width:800px) {
  .pricing-section {
    padding: 55px 0 78px;
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 14px;
  }

  .calculator,
  .packages,
  .pricing-note {
    grid-column: auto;
  }

  .calculator {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .packages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package {
    padding: 26px 18px 20px;
  }
}

@media (max-width:580px) {
  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 14px;
  }

  .packages {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package {
    min-height: 190px;
  }

  .pricing-note {
    margin-top: 0;
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--paper);
  margin-top: 44px;
  padding: 80px 0 96px
}

.faq-paper {
  background: #fffaf0;
  padding: 55px 60px 45px;
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 45px;
  transform: rotate(-.35deg);
}

.faq-title h2 {
  margin: 8px 0;
  font: 700 42px/1.02 "Kalam", cursive
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px
}

.faq-list details {
  border-bottom: 1px solid #d9d1e5;
  padding: 17px 0
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 14px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #764bc7;
  color: #fff;
  display: grid;
  place-items: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg)
}

.faq-list p {
  margin: 12px 28px 0 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  color: #5f6362
}

/* ---------- responsive ---------- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #12191f;
  border-radius: 2px;
  transition: .2s;
}

@media (max-width:900px) {
  .hamburger { display: flex; }
  .navlinks {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 28px 24px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,.1);
    border-radius: 0 0 18px 18px;
    z-index: 100;
  }
  .navlinks.open { display: flex; }
  .nav { position: relative; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 15px
  }

  .hero-visual {
    min-height: 350px;
    order: -1
  }

  .hero-visual .asset {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 650px;
    margin: auto
  }

  .features {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature:nth-child(2),
  .feature:nth-child(4) {
    border-right: 0
  }

  .feature:nth-child(1),
  .feature:nth-child(2),
  .feature:nth-child(3) {
    border-bottom: 1px solid rgba(0, 0, 0, .08)
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .phone-art {
    margin: 10px auto 0;
    max-width: 700px
  }

  .faq-paper {
    grid-template-columns: 1fr;
    padding: 45px 28px
  }

  .faq-list {
    grid-template-columns: 1fr
  }
}

@media (max-width:600px) {
  .container {
    width: min(100% - 28px, 1170px)
  }

  .nav {
    height: 75px
  }

  .brand {
    font-size: 31px
  }

  .nav .btn {
    padding: 10px 13px
  }

  .hero h1 {
    font-size: 54px
  }

  .hero-actions {
    flex-wrap: wrap
  }

  .hero-visual {
    min-height: auto
  }

  .features {
    grid-template-columns: 1fr
  }

  .features-heading {
    font-size: 30px;
    text-align: center;
  }

  .feature {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
  }

  .feature:last-child {
    border-bottom: 0
  }

  .product {
    padding: 72px 0 60px
  }

  .product h2 {
    font-size: 43px
  }

  .quote {
    font-size: 18px
  }

  .footer {
    flex-direction: column;
    padding: 25px 0
  }

  .footerlinks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px
  }

  .pricing-section {
    padding: 72px 0 78px
  }

  .faq-paper {
    padding: 40px 22px
  }

  .faq-title h2 {
    font-size: 38px
  }
}

/* ===== Cocok untuk berbagai rombongan ===== */
.rombongan-section {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  padding: 92px 0 100px;
  background: var(--paper);
}

.rombongan-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 180px;
  left: -130px;
  top: 40px;
  background: #f9f3e8;
  border-radius: 50%;
  opacity: .55;
  pointer-events: none;
}

.rombongan-inner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  align-items: center;
}

.section-intro {
  align-self: start;
  padding-top: 22px;
}

.section-intro h2 {
  margin: 0;
  font: 700 38px/1.02 "Kalam", cursive;
  letter-spacing: -.02em;
  transform: rotate(-2deg);
}

.section-intro h2 span {
  display: inline-block;
  margin-top: 4px;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.rombongan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rombongan-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 20px 15px 18px 18px;
  border: 1px solid rgba(35, 44, 46, .07);
  border-radius: 7px 9px 8px 7px;
  box-shadow: 0 3px 9px rgba(34, 44, 45, .025);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease;
}

.rombongan-card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: 0 14px 30px rgba(34, 44, 45, .12);
}

.rombongan-card.school {
  background: var(--teal-soft);
}

.rombongan-card.tour {
  background: var(--lav);
}

.rombongan-card.umrah {
  background: #f3eee6;
}

.rombongan-card .card-copy {
  position: relative;
  z-index: 2;
  align-self: start;
}

.rombongan-card .card-title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rombongan-card .emoji {
  font-size: 16px;
  line-height: 1;
}

.rombongan-card .card-title h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}

.rombongan-card .card-copy p {
  width: 145px;
  margin: 13px 0 14px;
  font-size: 9px;
  line-height: 1.45;
  font-weight: 600;
  color: #4f5957;
}

.rombongan-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #263134;
  border-radius: 5px;
  background: rgba(255, 255, 255, .23);
  color: #263134;
  text-decoration: none;
  font-size: 8px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.rombongan-card .card-link span {
  font-size: 11px;
  transition: transform .2s ease;
}

.rombongan-card .card-link:hover {
  background: #fff;
  transform: translateY(-1px);
}

.rombongan-card .card-link:hover span {
  transform: translateX(3px);
}

.rombongan-card .card-visual {
  position: absolute;
  right: -7px;
  bottom: -13px;
  width: 52%;
  height: 100%;
  pointer-events: none;
}

.rombongan-card .photo {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 175px;
  height: 188px;
  overflow: hidden;
  border-radius: 52% 48% 45% 55%/35% 35% 65% 65%;
  transform: rotate(3deg);
  filter: saturate(.98);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.rombongan-card:hover .photo {
  transform: rotate(0deg) translateY(-7px) scale(1.04);
  filter: saturate(1.08);
}

.rombongan-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), transparent 45%, rgba(0, 0, 0, .04));
  pointer-events: none;
}

.rombongan-card .photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.students-visual .photo {
  width: 178px;
  height: 188px;
  right: -19px;
  bottom: -24px;
  border-radius: 53% 47% 40% 60%/39% 33% 67% 61%;
}

.students-visual .photo img {
  object-position: 50% 45%;
}

.women-visual .photo {
  width: 170px;
  height: 180px;
  right: -19px;
  bottom: -19px;
  border-radius: 50% 50% 40% 60%/37% 32% 68% 63%;
}

.women-visual .photo img {
  object-position: 52% 48%;
}

.kaaba-visual .photo {
  width: 174px;
  height: 182px;
  right: -15px;
  bottom: -18px;
  border-radius: 55% 45% 38% 62%/42% 31% 69% 58%;
}

.kaaba-visual .photo img {
  object-position: 52% 45%;
}

.rombongan-card .scribble {
  position: absolute;
  z-index: 4;
  font: 700 23px "Kalam", cursive;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.rombongan-card .scribble-school {
  right: 126px;
  top: 28px;
  color: var(--teal);
  transform: rotate(-12deg);
}

.rombongan-card .scribble-tour {
  left: 8px;
  top: 34px;
  color: #7650c8;
  transform: rotate(13deg);
}

.rombongan-card .scribble-umrah {
  left: 6px;
  top: 25px;
  color: #d49c4d;
  transform: rotate(-10deg);
}

.rombongan-card .card-visual::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 4px;
  width: 145px;
  height: 150px;
  background: rgba(255, 255, 255, .36);
  border-radius: 45% 55% 50% 50%;
  transform: rotate(-6deg);
}

.rombongan-card .card-visual .photo {
  z-index: 2;
}

@media (max-width:1050px) {
  .rombongan-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    padding: 0;
    text-align: center;
  }

  .section-intro h2 {
    display: inline-block;
  }

  .rombongan-grid {
    width: min(820px, 100%);
    margin: auto;
  }
}

@media (max-width:760px) {
  .rombongan-section {
    padding: 58px 0 70px;
  }

  .rombongan-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rombongan-card {
    min-height: 205px;
    grid-template-columns: 1fr 180px;
    padding-left: 22px;
  }

  .rombongan-card .card-copy p {
    width: 190px;
    font-size: 10px;
  }

  .rombongan-card .card-title h3 {
    font-size: 17px;
  }

  .rombongan-card .card-visual {
    width: 50%;
  }
}

@media (max-width:430px) {
  .rombongan-card {
    min-height: 220px;
    grid-template-columns: 1fr 150px;
  }

  .rombongan-card .card-copy p {
    width: 150px;
    font-size: 9px;
  }

  .rombongan-card .photo,
  .students-visual .photo,
  .women-visual .photo,
  .kaaba-visual .photo {
    width: 145px;
    height: 165px;
    right: -24px;
  }

  .rombongan-card .card-link {
    font-size: 7px;
  }
}


/* Quote card: reference-paper artwork + live HTML text */
.quote-photo {
  position: relative;
  width: min(520px, 100%);
  min-height: 260px;
  padding: 42px 58px 34px 46px;
  background:
    url("assets/quote-paper-scrapbook.png") center/100% 100% no-repeat;
  background-color: transparent;
  border: none;
  box-shadow: none;
  transform: rotate(-2.5deg);
  display: flex;
  align-items: center;
}

.quote-photo .quote-copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
  font: 400 20px/1.35 "Kalam", cursive;
  transform: rotate(-2deg);
}

.quote-photo small {
  display: block;
  margin-top: 13px;
  font: 800 12px/1.35 "Nunito", sans-serif;
}

@media (max-width:600px) {
  .quote-photo {
    min-height: 210px;
    padding: 30px 28px 25px;
  }

  .quote-photo .quote-copy {
    font-size: 18px
  }
}


/* ===== Live stacked phone mockups ===== */
.phones-live {
  position: relative;
  width: min(670px, 100%);
  height: 580px;
  margin: 0 auto;
}

.live-phone {
  position: absolute;
  width: 292px;
  height: 566px;
  padding: 8px;
  background: #171c20;
  border-radius: 42px;
  box-shadow: 0 18px 28px rgba(23, 28, 32, .18);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.live-phone:hover {
  z-index: 10;
  transform: translateY(-13px) rotate(0deg) scale(1.025);
  box-shadow: 0 35px 55px rgba(28, 38, 40, .25), 0 8px 12px rgba(28, 38, 40, .15);
}

.itinerary-phone {
  left: 34px;
  top: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.participants-phone {
  right: 24px;
  top: 58px;
  transform: rotate(4deg);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fafcfb;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  padding-bottom: 54px;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 23px;
  background: #111619;
  border-radius: 20px;
}

.screen-top {
  height: 52px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: end;
  padding: 0 10px 9px;
  font-size: 14px;
  border-bottom: 1px solid #ecefea;
}

.screen-top strong {
  text-align: center;
  font-weight: 900
}

.back,
.screen-action {
  font-size: 23px;
  line-height: 1;
  text-align: center
}

.screen-subtitle {
  padding: 12px 16px 5px;
  font-size: 12px;
  font-weight: 900;
}

.screen-tabs {
  display: flex;
  gap: 6px;
  padding: 6px 14px 11px;
}

.tab-btn {
  font: inherit;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  padding: 7px 13px;
  border-radius: 20px;
  background: #edf3ef;
  color: #65716d;
}

.tab-btn.active {
  background: #b9ded8;
  color: #1c5f59;
}

.tab-btn.map-tab {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tab-btn.map-tab i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34b26f;
  animation: liveBlink 1.2s ease-in-out infinite;
}

.timeline-live {
  padding: 0 12px;
  display: grid;
  gap: 7px;
}

.timeline-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 46px 1fr 16px;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid #e2e7e4;
  border-radius: 12px;
  padding: 8px 9px;
  font-size: 9px;
  font-family: inherit;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.timeline-item:hover {
  transform: translateX(6px) scale(1.018);
  box-shadow: 0 5px 13px rgba(27, 39, 42, .10);
}

.timeline-item time {
  font-weight: 900;
  color: #525d5a
}

.timeline-item strong {
  display: block;
  font-size: 10px;
  line-height: 1.15
}

.timeline-item small {
  display: block;
  margin-top: 3px;
  color: #7b8581;
  font-size: 8px
}

.timeline-item>span {
  text-align: center;
  color: #8b9591;
  font-size: 13px;
  font-weight: 900
}

.timeline-item.current {
  background: var(--yellow);
  border-color: #e9c500;
}

.timeline-item.current small {
  color: #665300
}

.participant-stats-live {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px 12px;
}

.participant-stats-live>div {
  background: #eef5f2;
  border-radius: 10px;
  text-align: center;
  padding: 8px 4px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.participant-stats-live>div:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 5px 13px rgba(27, 39, 42, .10);
}

.participant-stats-live strong {
  display: block;
  font-size: 20px;
  line-height: 1
}

.participant-stats-live small {
  font-size: 8px;
  font-weight: 800
}

.participant-stats-live .good {
  background: #dff1ea
}

.participant-stats-live .bad {
  background: #ffe4de
}

.search-box {
  margin: 12px 12px 2px;
  background: #f1f4f2;
  border-radius: 16px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #8a938f;
  font-size: 10px;
  font-weight: 800;
}

.participant-title {
  padding: 4px 14px 6px;
  font-size: 10px;
  font-weight: 900;
}

.people-list {
  padding: 0 11px;
  overflow-y: auto;
  max-height: 330px;
  scrollbar-width: thin;
  scrollbar-color: #d8e0dc transparent;
}

.person-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 9px 2px;
  border-bottom: 1px solid #edf0ee;
  font-size: 8px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.person-row:hover {
  transform: translateX(5px);
  background: #f6faf8;
}

.person-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6efea;
  font-size: 8px;
  font-weight: 900;
  color: #37564e;
}

.person-avatar.pink {
  background: #f4dfe3;
  color: #7c4e5c
}

.person-avatar.blue {
  background: #deebf5;
  color: #426584
}

.person-avatar.green {
  background: #dcefe3;
  color: #427254
}

.person-avatar.orange {
  background: #fae7d1;
  color: #8a633a
}

.person-main strong {
  display: block;
  font-size: 9px
}

.person-main small {
  display: block;
  margin-top: 2px;
  color: #7d8581
}

.person-row em {
  font-style: normal;
  color: #ef6e5d;
  background: #fff0ec;
  border-radius: 9px;
  padding: 4px 5px;
  white-space: nowrap;
  font-size: 7px;
  font-weight: 900;
}

.person-row em.scan {
  color: #1f8f70;
  background: #e3f6ec;
}

.person-row em.dist {
  color: #a5721f;
  background: #ffe4bd;
}

.person-row em.dist2 {
  color: #7a5fc4;
  background: #eee7fb;
}

.person-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.person-actions b {
  color: #e05b4d;
  background: #fff0ec;
  border-radius: 9px;
  padding: 4px 5px;
  font-size: 7px;
  font-weight: 900;
}

.person-actions i {
  font-style: normal;
  width: auto;
  height: auto;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.person-actions .act-gps {
  color: #a5721f;
}

.person-actions .act-call {
  color: #319b79;
  font-size: 14px;
}

.map-view {
  height: 330px;
  padding: 0 10px 10px;
}

.map-live {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(35deg, transparent 46%, #dfe8e4 47%, #dfe8e4 49%, transparent 50%),
    linear-gradient(140deg, transparent 45%, #dfe8e4 46%, #dfe8e4 48%, transparent 49%),
    #eef5f1;
}

.map-roads {
  position: absolute;
  inset: 0;
}

.map-road {
  position: absolute;
  height: 8px;
  background: #fffdf7;
  border: 2px solid #d3ddd9;
  border-radius: 20px;
}

.road-a {
  width: 80%;
  left: 3%;
  top: 30%;
  transform: rotate(12deg);
}

.road-b {
  width: 75%;
  left: 10%;
  top: 62%;
  transform: rotate(-20deg);
}

.road-c {
  width: 62%;
  left: 25%;
  top: 42%;
  transform: rotate(55deg);
}

.map-water {
  position: absolute;
  width: 35%;
  height: 130%;
  right: -10%;
  top: -15%;
  background: #ccefeb;
  transform: rotate(12deg);
  opacity: .75;
}

.route-line {
  position: absolute;
  left: 18%;
  top: 34%;
  width: 57%;
  height: 27%;
  border: 3px dashed var(--coral);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(10deg);
  opacity: .7;
}

.map-bus {
  position: absolute;
  left: 20%;
  top: 30%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  border: 2px solid #fff;
  transform: rotate(-45deg) scale(.8);
  box-shadow: 0 2px 6px rgba(27, 39, 42, .20);
  animation: busMove 9s ease-in-out infinite;
}

.map-bus span {
  transform: rotate(45deg);
  font-size: 10px;
}

@keyframes busMove {
  0% {
    left: 20%;
    top: 30%;
  }
  33% {
    left: 52%;
    top: 62%;
  }
  66% {
    left: 63%;
    top: 38%;
  }
  100% {
    left: 20%;
    top: 30%;
  }
}

.map-place {
  position: absolute;
  padding: 4px 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 2px 6px rgba(27, 39, 42, .08);
  font-size: 7px;
  font-weight: 900;
  color: #3d4a46;
}

.place-school {
  left: 7%;
  top: 24%;
}

.place-rest {
  left: 42%;
  top: 68%;
}

.place-tour {
  right: 7%;
  top: 31%;
}

.map-pin {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  box-shadow: 0 2px 6px rgba(27, 39, 42, .22);
  transform: rotate(-45deg);
  animation: pinPulse 1.8s ease-in-out infinite;
}

.map-pin.pin-1 {
  left: 20%;
  top: 31%;
  background: var(--teal);
}

.map-pin.pin-2 {
  left: 52%;
  top: 62%;
  animation-delay: .45s;
}

.map-pin.pin-3 {
  left: 63%;
  top: 38%;
  background: var(--yellow);
  animation-delay: .9s;
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(27, 39, 42, .22), 0 0 0 0 rgba(255, 111, 97, .35);
  }
  50% {
    box-shadow: 0 2px 6px rgba(27, 39, 42, .22), 0 0 0 8px rgba(255, 111, 97, 0);
  }
}

.map-live-tag {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 4px 7px;
  border-radius: 16px;
  background: #fff;
  color: #2f7d5c;
  font-size: 7px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(27, 39, 42, .10);
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-live-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34b26f;
  animation: liveBlink 1.2s ease-in-out infinite;
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 178, 111, .4);
  }
  50% {
    opacity: .55;
    box-shadow: 0 0 0 4px rgba(52, 178, 111, 0);
  }
}

.phone-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 53px;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid #e3e8e4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.phone-bottom span {
  font-size: 14px;
  color: #66716c;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.phone-bottom span:hover {
  transform: translateY(-3px);
  color: var(--teal);
}

.phone-bottom small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  font-weight: 700;
}

.phone-bottom .selected {
  color: #151b1d
}

@media (max-width:1000px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .phones-live {
    width: min(650px, 100%);
    height: 560px;
    margin: 0 auto;
  }
}

@media (max-width:600px) {
  .bus-side .hand-title,
  .bus-side .bus-card,
  .bus-side .safety-mini {
    display: none;
  }

  .bus-side .paper-note {
    margin-top: 0;
  }

  .phones-live {
    width: 100%;
    height: 455px;
    transform: scale(.78);
    transform-origin: top center;
    margin-bottom: -100px;
  }
}

.before-after {
  margin-top: 44px;
  position: relative;
  overflow: hidden;
  background: #fff6e9;
}

.before-after:before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 0;
  height: 45px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 48%, 95% 68%, 90% 55%, 83% 76%, 76% 45%, 68% 70%, 60% 52%, 51% 74%, 43% 45%, 34% 67%, 25% 50%, 17% 72%, 8% 52%, 0 69%);
}

.before-after:after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0;
  height: 45px;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 100%, 100% 52%, 95% 32%, 90% 45%, 83% 24%, 76% 55%, 68% 30%, 60% 48%, 51% 26%, 43% 55%, 34% 33%, 25% 50%, 17% 28%, 8% 48%, 0 31%);
}

.before-after .container {
  text-align: center;
  padding: 76px 0 76px;
}

.before-after .ba-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: start;
  text-align: left;
}

.ba-features h2 {
  margin: 0 0 32px;
  font: 700 38px/1 "Kalam", cursive;
  letter-spacing: -1.4px;
  color: var(--ink);
}

.ba-slider-col {
  min-width: 0;
}

.before-after h2 .sep {
  color: var(--coral);
  margin: 0 8px;
}

.safety-highlights {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.safety-highlights span {
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font: 700 14px/1 "Nunito", sans-serif;
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s;
}

.safety-highlights span:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(69, 170, 161, .15);
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-card {
  position: relative;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare-card.bad {
  background: #fff5f3 url('assets/unhappy.png') no-repeat right bottom;
  background-size: 150px auto;
}
.compare-card.good {
  background: #edf7f4 url('assets/happy.png') no-repeat right bottom;
  background-size: 150px auto;
}
.card-title {
  margin: 0 0 20px;
  font: 700 clamp(20px, 2vw, 26px)/1.1 "Kalam", cursive;
  color: var(--ink);
}
.compare-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font: 700 13px/1.45 "Nunito", sans-serif;
  text-align: left;
}
.compare-list li {
  position: relative;
  padding: 4px 0 4px 24px;
}
.compare-list li + li { margin-top: 8px; }
.compare-list .mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.compare-list.bad .mark { color: #d95173; }
.compare-list.good .mark { color: #278f76; }

@media (max-width: 760px) {
  .before-after .ba-layout { grid-template-columns: 1fr; gap: 32px; }
  .compare-cards { grid-template-columns: 1fr; }
  .compare-list { font-size: 12px; }
}
@media (max-width: 480px) {
  .compare-card { background-size: 120px auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
/* =========================================================
   ROMBITA V3 IMPROVEMENTS — clarity, safety, conversion
   ========================================================= */
.hero-copy{position:relative;z-index:2}
.hero-subtitle{margin:0 0 14px!important;max-width:500px!important;font-size:17px!important;line-height:1.45!important;font-weight:700!important;color:#4f5a58!important}
.hero-trust{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:8px;color:#66706d;font-size:11px;font-weight:900}
.hero-trust span:first-child:before{color:var(--teal)}
.hero-actions{margin-top:25px!important}
.hero-demo{font-size:18px!important}

.features{border-top:1px solid rgba(18,25,31,.06);padding-top:10px}
.feature{position:relative;transition:transform .25s ease}
.feature:hover{transform:translateY(-5px)}
.feature-icon{transition:transform .25s ease}
.feature:hover .feature-icon{transform:rotate(-6deg) scale(1.06)}
.feature h3{font-size:14px!important}
.feature p{font-size:10px!important;line-height:1.45!important}

.ba-kicker{margin-bottom:12px;color:#8a6a49}
.ba-features h2{margin-top:0}
.compare-card{transition:transform .25s ease,box-shadow .25s ease}
.compare-card:hover{transform:translateY(-5px);box-shadow:0 14px 25px rgba(31,44,47,.10)}
.compare-card.good{border-color:rgba(69,170,161,.28)}
.compare-card.bad{border-color:rgba(230,92,89,.16)}

/* Product intro keeps the feature section from becoming a wall of UI. */
.product{padding-top:72px!important}
.product-intro{width:min(700px,100%);margin:0 auto 42px;text-align:center}
.product-intro h2{margin:8px auto 12px;max-width:650px;font:700 clamp(38px,4.6vw,58px)/.98 Kalam,cursive}
.product-intro p{margin:0 auto;max-width:660px;color:#596563;font-size:14px;line-height:1.55;font-weight:700}
.product-intro .green{color:var(--teal)}
.bus-side{position:relative}
.safety-mini{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:13px 0 2px}
.safety-mini>div{display:flex;align-items:flex-start;gap:6px;padding:9px 8px;border-radius:10px;background:rgba(255,255,255,.58);border:1px solid rgba(18,25,31,.05)}
.safety-mini span{display:grid;gap:2px}
.safety-mini b{font-size:8px}
.safety-mini small{font-size:6.5px;color:#707a77;line-height:1.25}
.mini-dot{width:8px;height:8px;border-radius:50%;margin-top:2px;flex:0 0 auto}
.mini-dot.live{background:#48b68c;box-shadow:0 0 0 4px rgba(72,182,140,.12)}
.mini-dot.alert{background:var(--coral);box-shadow:0 0 0 4px rgba(255,111,97,.10)}
.mini-dot.route{background:var(--yellow);box-shadow:0 0 0 4px rgba(255,211,26,.12)}
.status-row{transition:background .2s ease,transform .2s ease,box-shadow .2s ease!important}
.status-row:hover{background:#f5f9f7!important;transform:translateX(5px)!important;box-shadow:inset 3px 0 0 var(--teal)}

/* Rombongan cards: make the three product lines more scannable. */
.rombongan-section{padding-top:78px!important;padding-bottom:84px!important}
.rombongan-card{min-height:205px!important}
.rombongan-card .card-copy p{max-width:180px}
.rombongan-card .card-link{position:relative;z-index:5}

/* Pricing: communicate the business model before the numbers. */
.pricing-section{padding-top:86px!important}
.package{min-height:225px!important}
.package.tour{border-color:rgba(118,80,200,.28)}
.pricing-note{grid-column:1/-1;margin-top:5px;padding:12px 16px;border-radius:10px;background:rgba(255,255,255,.42);border:1px dashed rgba(118,80,200,.28);color:#5f5a6e;font-size:10px;line-height:1.45}
.pricing-note span{margin-right:5px}
.pricing-note b{color:#6546a7}

/* FAQ: readable enough to scan on desktop. */
.faq-section{padding-top:80px!important;padding-bottom:55px!important}
.faq-list details:hover{background:rgba(118,80,200,.035)}

.final-cta{position:relative;overflow:hidden;padding:70px 24px 78px;background:#fff6e9}
.final-cta:before{content:"";position:absolute;left:-3%;right:-3%;top:-28px;height:55px;background:var(--paper);clip-path:polygon(0 0,100% 0,100% 48%,94% 66%,88% 50%,81% 73%,73% 48%,66% 67%,58% 48%,50% 70%,42% 48%,34% 66%,26% 49%,18% 72%,9% 51%,0 68%)}
.final-cta-inner{position:relative;width:min(980px,100%);margin:auto;display:flex;align-items:center;justify-content:space-between;gap:35px}
.final-cta h2{margin:8px 0 10px;font:700 clamp(40px,5vw,61px)/.95 Kalam,cursive}
.final-cta h2 span{color:var(--teal)}
.final-cta p{margin:0;color:#606a67;font-size:13px;font-weight:700}
.final-cta-button{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;padding:16px 23px;background:var(--yellow);border:2px solid var(--ink);border-radius:13px;font-weight:900;box-shadow:3px 4px 0 var(--ink);transition:.15s}
.final-cta-button:hover{transform:translate(2px,2px);box-shadow:1px 2px 0 var(--ink)}
.final-cta-button span{font-size:18px}

@media(max-width:900px){
  .hero{grid-template-columns:1fr 1fr;gap:18px}
  .hero h1{font-size:clamp(50px,7vw,72px)}
  .hero-subtitle{font-size:14px!important}
  .safety-mini{grid-template-columns:1fr}
  .final-cta-inner{align-items:flex-start;flex-direction:column}
}
@media(max-width:760px){
  .hero{grid-template-columns:1fr;min-height:0;padding-bottom:35px}
  .hero-visual{min-height:330px;order:-1}
  .hero-copy{text-align:left}
  .hero h1{font-size:56px}
  .hero-trust{font-size:10px}
  .features{grid-template-columns:repeat(2,1fr)}
  .features-heading{grid-column:1/-1}
  .product-intro{margin-bottom:30px}
  .pricing-section:before{font-size:15px}
}
@media(max-width:560px){
  .container{width:min(100% - 30px,1170px)}
  .hero h1{font-size:50px;letter-spacing:-1.5px}
  .hero-subtitle{font-size:13px!important}
  .hero-actions{flex-wrap:wrap;gap:16px}
  .features{grid-template-columns:1fr 1fr}
  .feature{padding:25px 12px 25px}
  .feature h3{font-size:12px!important}
  .feature p{font-size:8.5px!important}
  .product-intro h2{font-size:39px}
  .product-intro p{font-size:12px}
  .pricing-note{font-size:9px}
  .final-cta{padding-left:16px;padding-right:16px}
  .final-cta h2{font-size:44px}
}

.status-row.chosen{background:#f3faf7!important;box-shadow:inset 3px 0 0 var(--teal);transform:translateX(4px)}
.map-pin-selected{animation-duration:.7s!important;transform:rotate(-45deg) scale(1.18)!important;z-index:5}

/* Remove the white torn-paper layer above the Safety Layer section. */
.product:before { display: none !important; }


/* Seamless transition into Safety Layer:
   no white paper band or gap between sections. */
.before-after:after {
  display: none !important;
}

.product {
  margin-top: 0 !important;
}

.product:before {
  display: none !important;
}

/* =========================================================
   Rombita scroll storytelling
   Subtle scrapbook-style reveal — no heavy parallax.
   ========================================================= */

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) rotate(.25deg);
  transition:
    opacity .72s cubic-bezier(.22, .61, .36, 1),
    transform .78s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translate3d(-42px, 14px, 0) rotate(-1.2deg);
  transition:
    opacity .78s cubic-bezier(.22, .61, .36, 1),
    transform .82s cubic-bezier(.22, .61, .36, 1);
}

.scroll-reveal-left.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translate3d(42px, 14px, 0) rotate(1.2deg);
  transition:
    opacity .78s cubic-bezier(.22, .61, .36, 1),
    transform .82s cubic-bezier(.22, .61, .36, 1);
}

.scroll-reveal-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.scroll-pop {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(.94) rotate(-1deg);
  transition:
    opacity .68s ease,
    transform .72s cubic-bezier(.2, .85, .25, 1);
}

.scroll-pop.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

/* Staggered feature strip */
.scroll-stagger > * {
  transition-delay: var(--scroll-delay, 0ms);
}

/* Handwritten sections get a tiny paper-like lift */
.scroll-paper {
  opacity: 0;
  transform: translate3d(0, 22px, 0) rotate(-2deg);
  transition:
    opacity .75s ease,
    transform .82s cubic-bezier(.2, .8, .25, 1);
}

.scroll-paper.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-1deg);
}

/* Phones enter from opposite sides, like the collage being assembled. */
.scroll-phone-left {
  opacity: 0;
  transform: translate3d(-55px, 28px, 0) rotate(-8deg) !important;
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.18, .8, .22, 1) !important;
}

.scroll-phone-right {
  opacity: 0;
  transform: translate3d(55px, 28px, 0) rotate(8deg) !important;
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.18, .8, .22, 1) !important;
}

.scroll-phone-left.is-visible {
  opacity: 1;
  transform: rotate(-4deg) !important;
}

.scroll-phone-right.is-visible {
  opacity: 1;
  transform: rotate(4deg) !important;
}

/* Pricing cards pop in one after another. */
.pricing-section .package,
.pricing-section .calculator,
.pricing-section .pricing-note {
  transition-delay: var(--scroll-delay, 0ms);
}

/* FAQ opens visually as the paper arrives, while native details remain unchanged. */
.faq-section .faq-list details {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2, .8, .25, 1);
  transition-delay: var(--scroll-delay, 0ms);
}

.faq-section.is-visible .faq-list details {
  opacity: 1;
  transform: translateY(0);
}

/* Final CTA gets a gentle handwritten-style entrance. */
.final-cta.scroll-reveal {
  transform: translate3d(0, 34px, 0) rotate(-.35deg);
}

.final-cta.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-pop,
  .scroll-paper,
  .scroll-phone-left,
  .scroll-phone-right,
  .faq-section .faq-list details {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
