/* ============================================
   TripClap Singapore Landing — Mobile-first
   ============================================ */

:root {
  /* Brand */
  --brand: #f4364f;
  --brand-dark: #d92340;
  --brand-soft: #fff1f3;
  --brand-tint: #ffe4e8;

  /* Neutrals */
  --ink: #1a1a2e;
  --ink-2: #3d3d52;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e7e7ee;
  --line-soft: #f3f3f7;
  --bg: #ffffff;
  --bg-warm: #faf7f5;
  --bg-cream: #fff8f0;

  /* Accents */
  --gold: #f59e0b;
  --green: #16a34a;
  --green-soft: #e7f6ec;
  --blue: #2563eb;

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(20, 20, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(20, 20, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 20, 40, 0.12);
  --shadow-brand: 0 8px 24px rgba(244, 54, 79, 0.28);

  /* Type */
  --font-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================
   Layout helpers
   ============================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 16px;
}

.landing-v1 .container {
  width: 100% !important;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 16px;
}

.lv-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.lv-section-head .section-subtitle {
  margin-inline: auto;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
  .landing-v1 .container { padding-inline: 32px; }
  body { font-size: 16px; }
}

.section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section { padding: 64px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .section-title { font-size: 36px; }
  .section-subtitle { font-size: 17px; margin-bottom: 36px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  border: none;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  .btn, .why-card, .pkg-card, .place img, .gallery-grid img, .faq-a, .assured-faq-a {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
}

.btn-ghost {
  background: #fff;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand-soft); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 24px; font-size: 16px; }

.landing-v1 button,
.landing-v1 .btn {
  -webkit-tap-highlight-color: transparent;
}

.landing-v1 button:focus,
.landing-v1 button:focus-visible,
.landing-v1 .btn:focus,
.landing-v1 .btn:focus-visible {
  outline: none !important;
}

.landing-v1 .btn-primary,
.landing-v1 .btn-primary:hover,
.landing-v1 .btn-primary:focus,
.landing-v1 .btn-primary:focus-visible,
.landing-v1 .btn-primary:active {
  border: none !important;
  border-color: transparent !important;
  outline: none !important;
}

.landing-v1 .btn-primary:focus,
.landing-v1 .btn-primary:focus-visible {
  box-shadow: var(--shadow-brand) !important;
}

.landing-v1 .btn-ghost:focus,
.landing-v1 .btn-ghost:focus-visible,
.landing-v1 .btn-dark:focus,
.landing-v1 .btn-dark:focus-visible,
.landing-v1 .nav-cta:focus,
.landing-v1 .nav-cta:focus-visible {
  box-shadow: none !important;
}

.landing-v1 .hero-banner:focus,
.landing-v1 .hero-banner:focus-visible {
  box-shadow: var(--shadow-md) !important;
}

/* ============================================
   Top nav
   ============================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 16px;
}

.topnav-logo a {
  display: block;
  line-height: 0;
}

.topnav-logo svg {
  width: 140px;
  height: 42px;
  display: block;
}

.topnav-actions {
  text-align: right;
}

.nav-cta {
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 30px;
}

@media (min-width: 768px) {
  .topnav-inner {
    padding-inline: 32px;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 24px 0 32px;
  background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 100%);
  overflow: hidden;
}

.hero-banner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  padding: 0;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-banner:active {
  transform: scale(0.98);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
}

.hero-banner-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-banner-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.hero-title .accent {
  color: var(--brand);
}

.hero-rotate {
  color: var(--brand);
  white-space: nowrap;
}

.hero-rotate .tw-caret {
  display: inline-block;
  width: 3px;
  height: 0.92em;
  margin-left: 3px;
  border-radius: 1px;
  background: var(--brand);
  transform: translateY(0.08em);
  animation: tw-blink 1s steps(1) infinite;
}

@keyframes tw-blink {
  0%, 49.9% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotate .tw-caret {
    animation: none;
    opacity: 1;
  }
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-bullets svg {
  flex-shrink: 0;
  color: var(--green);
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.hero-trust-item > .avatars,
.hero-trust-item > .stars,
.hero-trust-item > svg {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.hero-trust-copy {
  min-width: 0;
}

.hero-trust-copy--single .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.hero-trust-item .num {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
.hero-trust-item .lbl {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.1;
  margin-top: 2px;
  white-space: nowrap;
}
.hero-trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
  justify-self: center;
}

@media (max-width: 767px) {
  .hero-trust {
    padding: 10px 6px;
  }

  .hero-trust-item {
    gap: 4px;
  }

  .hero-trust-item .num {
    font-size: 11px;
  }

  .hero-trust-item .lbl {
    font-size: 9px;
  }

  .hero-trust-copy--single .num {
    font-size: 10px;
  }

  .hero-trust-divider {
    height: 24px;
  }

  .hero-trust-item .avatars .avatar-fallback {
    width: 20px;
    height: 20px;
    font-size: 7px;
    margin-left: -7px;
  }

  .hero-trust-item .stars svg {
    width: 12px;
    height: 12px;
  }

  .hero-trust-item .stars svg:not(:first-child) {
    display: none;
  }

  .hero-trust-item > svg {
    width: 14px;
    height: 14px;
  }
}

.avatars {
  display: flex;
  align-items: center;
}
.avatars img, .avatars .avatar-fallback {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
  background: var(--brand-tint);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  display: grid;
  place-items: center;
}
.avatars > *:first-child { margin-left: 0; }

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  font-size: 13px;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.hero-meta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 8px;
  text-align: center;
}
.hero-meta-card .ico {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--brand);
}
.hero-meta-card .lbl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-meta-card .val {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hero-disclaim {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

@media (min-width: 768px) {
  .hero { padding: 32px 0 56px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .hero-banner {
    order: 2;
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
  }
  .hero-title { font-size: 44px; }
  .hero-cta-row { flex-direction: row; }
  .hero-cta-row .btn { flex: 0 0 auto; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 52px; }
}

/* ============================================
   Why Choose
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 14px;
  text-align: left;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint);
}
.why-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .why-card { padding: 20px; }
  .why-card h4 { font-size: 16px; }
  .why-card p { font-size: 13.5px; }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ============================================
   3 Steps
   ============================================ */
.steps-section {
  background: var(--bg-warm);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244,54,79,0.3);
}
.step h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step { flex-direction: column; padding: 28px 22px; }
  .step-num { width: 44px; height: 44px; font-size: 19px; }
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-body p,
.about-body .about-content p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 12px;
}

.about-body .about-content > h1,
.about-body .about-content > h2:first-child {
  display: none;
}

.about-body .about-content h3,
.about-h3 {
  font-size: 17px;
  margin: 18px 0 8px;
  font-weight: 700;
  color: var(--ink);
}

.about-body .about-content ul,
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.about-body .about-content ul li,
.about-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}

.about-body .about-content ul li::before,
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
}

.about-collapsed {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent);
}

.about-toggle {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.about-toggle:active {
  transform: scale(0.97);
}

.about-toggle-chev {
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.about-toggle[aria-expanded="true"] .about-toggle-chev {
  transform: rotate(180deg);
}

.about-info {
  background: var(--bg-cream);
  border: 1px solid #f5e4d0;
  border-radius: var(--r-lg);
  padding: 16px;
  margin-top: 12px;
}
.about-info-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed #f0d9be;
}
.about-info-row:last-child { border: none; }
.about-info-row strong { color: var(--ink); min-width: 110px; }

@media (min-width: 768px) {
  .about-body .about-content ul,
  .about-list { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .about-toggle-chev {
    transition: none;
  }
}

/* ============================================
   Package Types
   ============================================ */
.pkg-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pkg-type {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 14px;
  text-align: left;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.pkg-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-soft), transparent 60%);
  opacity: 0;
  transition: opacity .2s ease;
}
.pkg-type:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-tint); }
.pkg-type:hover::before { opacity: 1; }
.pkg-type > * { position: relative; }
.pkg-type .emoji {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}
.pkg-type h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.pkg-type p { font-size: 12.5px; color: var(--muted); }

@media (min-width: 768px) {
  .pkg-types { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

/* ============================================
   Packages
   ============================================ */
.pkg-section { background: var(--bg-warm); }

.pkg-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78vw;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 16px 20px;
  margin-inline: -16px;
  scrollbar-width: none;
}
.pkg-scroll::-webkit-scrollbar { display: none; }

.pkg-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.pkg-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--line-soft);
  overflow: hidden;
}
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-img .pkg-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

.pkg-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.pkg-name {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  min-height: 38px;
  text-wrap: pretty;
}
.pkg-by {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.pkg-by strong { color: var(--ink-2); font-weight: 600; }

.pkg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.pkg-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--green-soft);
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.pkg-badge.gold { background: #fff7e6; color: #b45309; }
.pkg-badge.blue { background: #e6f0ff; color: #1d4ed8; }

.pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.pkg-price .lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.pkg-price .val { font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.pkg-price .ex { font-size: 9px; color: var(--muted-2); }

.pkg-rating {
  text-align: right;
}
.pkg-rating .score {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--green);
  color: #fff;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}
.pkg-rating .reviews {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 3px;
}

.pkg-cta-btn {
  width: 100%;
  padding: 11px;
  background: #fff;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  transition: all .15s ease;
}
.pkg-cta-btn:hover { background: var(--brand); color: #fff; }

@media (min-width: 600px) {
  .pkg-scroll { grid-auto-columns: 48%; }
}
@media (min-width: 900px) {
  .pkg-scroll {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding: 0;
    margin-inline: 0;
  }
}
@media (min-width: 1200px) {
  .pkg-scroll { grid-template-columns: repeat(4, 1fr); }
}

.pkg-view-more {
  text-align: center;
  margin-top: 18px;
}

/* ============================================
   Travel Trends + Influencers
   ============================================ */
.trends-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.trends-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,54,79,0.3), transparent 60%);
}
.trends-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.trends-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.trends-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.trends-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand);
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
}
.trends-press {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
}
.trends-press-brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.trends-press-brand span {
  color: var(--brand);
}
.trends-press .label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .trends-card { grid-template-columns: 1.5fr 1fr; padding: 36px; }
  .trends-card h3 { font-size: 30px; }
}

.inf-strip {
  margin-top: 28px;
}
.inf-strip h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink-2);
}
.inf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.inf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inf-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.inf-card .name { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.inf-card .handle { font-size: 11px; color: var(--muted); margin-top: 2px; }

@media (min-width: 600px) { .inf-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .inf-grid { grid-template-columns: repeat(7, 1fr); } }

/* ============================================
   Why Tripclap (stats)
   ============================================ */
.stats-section {
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before, .stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.stats-section::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.stats-section::after { width: 200px; height: 200px; bottom: -50px; right: -50px; }

.stats-section .section-title { color: #fff; }

.stats-section .lv-section-head {
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  width: 100%;
}
.stat {
  text-align: center;
  padding: 16px 8px;
}
.stat .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}
.stat .big {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  color: #fff;
}
.stat .lbl {
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat .big { font-size: 36px; }
}
@media (min-width: 900px) {
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ============================================
   Pay promos
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.promo-card {
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-card.green { background: linear-gradient(135deg, #16a34a, #14532d); }
.promo-card.blue { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.promo-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.promo-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.promo-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .promo-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Places grid
   ============================================ */
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.place {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--line-soft);
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.place img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.place:hover img { transform: scale(1.06); }
.place::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
}
.place .name {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  z-index: 2;
  line-height: 1.2;
}

@media (min-width: 600px) { .places-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .places-grid { grid-template-columns: repeat(6, 1fr); } }

.places-toggle {
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   Agents marquee (auto-scroll)
   ============================================ */
.lv-agents-section {
  overflow: hidden;
}

.agents-marquee {
  overflow: hidden;
  margin-inline: -16px;
  padding-inline: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.agents-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: max-content;
  animation: agents-marquee 36s linear infinite;
  will-change: transform;
}

.agents-marquee:hover .agents-marquee-track {
  animation-play-state: paused;
}

.agent {
  flex: 0 0 132px;
  width: 132px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  padding: 8px;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms ease, border-color 160ms ease;
}

.agent:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .agent:hover {
    border-color: var(--brand-tint);
    box-shadow: var(--shadow-md);
  }
}

.agent img {
  max-width: 90%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes agents-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .agents-marquee {
    margin-inline: 0;
    padding-inline: 0;
  }

  .agent {
    flex: 0 0 156px;
    width: 156px;
  }

  .agents-marquee-track {
    animation-duration: 44s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agents-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .agents-marquee::-webkit-scrollbar {
    display: none;
  }

  .agents-marquee-track {
    animation: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section { background: var(--bg-warm); }

.test-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85vw;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 16px 20px;
  margin-inline: -16px;
  scrollbar-width: none;
}
.test-scroll::-webkit-scrollbar { display: none; }

.test-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.test-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 700; }
.test-city {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.test-quote {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.test-booked {
  font-size: 11.5px;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.test-booked strong { color: var(--brand); font-weight: 700; }

@media (min-width: 600px) { .test-scroll { grid-auto-columns: 46%; } }
@media (min-width: 1024px) {
  .test-scroll {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding: 0;
    margin-inline: 0;
  }
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-grid .gimg {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--line-soft);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid .gimg:hover img { transform: scale(1.08); }

@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(8, 1fr); } }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.faq-q .chev {
  flex-shrink: 0;
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--brand);
}
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-a {
  padding: 0 14px 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 100px;
  font-size: 13px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.foot-block h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.foot-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.foot-logo {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.foot-logo-card {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.foot-logo-card img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 130px;
}

.foot-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}

.foot-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .foot-grid { grid-template-columns: repeat(4, 1fr); }
  .footer { padding: 64px 0 40px; }
}

/* ============================================
   Sticky bottom CTA (mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-cta .price-pill {
  flex: 0 0 auto;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  padding: 6px 10px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
}
.sticky-cta .price-pill strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
}
.sticky-cta .btn { flex: 1; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
  .footer { padding-bottom: 40px; }
}

/* ============================================
   Modal
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 30, 0.55);
  z-index: 200;
  display: grid;
  place-items: flex-end;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-sheet {
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  animation: slideUp .25s ease;
  position: relative;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin: -8px auto 16px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
}

.modal-sheet h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.modal-sheet p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.modal-placeholder {
  background: repeating-linear-gradient(
    -45deg,
    var(--bg-warm),
    var(--bg-warm) 10px,
    #fff 10px,
    #fff 20px
  );
  border: 1.5px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 36px 20px;
  text-align: center;
}
.modal-placeholder .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.modal-placeholder h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.modal-placeholder p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

@media (min-width: 768px) {
  .modal-backdrop { place-items: center; }
  .modal-sheet { border-radius: 22px; max-width: 460px; }
}

/* ============================================
   TripClap Assured
   ============================================ */
.assured-section { padding: 28px 0; }

.assured-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Header */
.assured-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px 20px;
  background:
    radial-gradient(120% 140% at 88% 0%, var(--brand-tint) 0%, rgba(255,228,232,0) 52%),
    linear-gradient(180deg, var(--brand-soft) 0%, #fff 78%);
  border-bottom: 1px solid var(--line-soft);
}

.assured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--brand-tint);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.assured-title {
  font-size: 30px;
  line-height: 1.08;
  margin: 14px 0 0;
  letter-spacing: -0.02em;
}
.assured-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 800;
}

.assured-sub {
  margin-top: 12px;
  max-width: 460px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.assured-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.assured-chip {
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}

/* Price card */
.assured-price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.assured-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.assured-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}
.assured-price-old {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-2);
  text-decoration: line-through;
}
.assured-price-now {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.assured-price-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.assured-dot { color: var(--muted-2); }
.assured-off {
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.assured-cta-primary { margin-top: 16px; gap: 8px; }
.assured-cta-secondary {
  margin-top: 10px;
  gap: 8px;
  box-shadow: none;
  border-color: var(--line);
  color: var(--ink);
}
.assured-cta-secondary:hover { background: var(--bg-warm); }

/* Feature columns */
.assured-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 22px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.assured-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.assured-feature-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.assured-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.assured-feature-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Before → After */
.assured-compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.assured-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-warm);
}
.assured-before {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--line);
}
.assured-arrow {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.assured-after {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* Quick answers */
.assured-faq {
  padding: 22px 20px 6px;
}
.assured-faq-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.assured-faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.assured-faq-item summary {
  list-style: none;
  cursor: pointer;
}
.assured-faq-item summary::-webkit-details-marker {
  display: none;
}
.assured-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 2px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.assured-faq-sign {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
}
.assured-faq-sign::before,
.assured-faq-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}
.assured-faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.assured-faq-item[open] .assured-faq-sign {
  color: var(--brand);
  border-color: var(--brand-tint);
}
.assured-faq-item[open] .assured-faq-sign::after { opacity: 0; }
.assured-faq-a {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 2px 16px;
}

/* Disclaimer */
.assured-disclaimer {
  padding: 18px 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-warm);
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 600px) {
  .assured-features { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .assured-section { padding: 40px 0; }
  .assured-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 36px;
  }
  .assured-head-main { flex: 1; }
  .assured-title { font-size: 40px; }
  .assured-sub { font-size: 16px; }
  .assured-price {
    width: 280px;
    flex-shrink: 0;
    padding: 20px;
  }
  .assured-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 26px 36px;
  }
  .assured-compare { padding: 26px 36px; }
  .assured-compare-row { padding: 16px 22px; gap: 18px; }
  .assured-before, .assured-after { font-size: 14.5px; }
  .assured-faq { padding: 28px 36px 8px; }
  .assured-faq-title { font-size: 22px; }
  .assured-faq-q { font-size: 15.5px; }
  .assured-faq-a { font-size: 14px; }
  .assured-disclaimer { padding: 20px 36px; }
}

/* utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.lv-hidden { display: none !important; }

.lv-enq-mobile {
  background: var(--bg-warm);
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
}

.lv-enq-desktop-wrap {
  display: none;
  background: var(--bg-warm);
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.lv-enq-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
  min-height: 520px;
}

.pkg-card.lv-hidden { display: none !important; }
.place.lv-hidden { display: none !important; }

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Pay promos (matches old landing offer cards) */
.lv-offers-section {
  background: #fff;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .lv-offers-section {
    padding-top: 64px;
  }
}

.lv-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lv-offer-item {
  position: relative;
  background: var(--brand);
  border-radius: 15px;
  padding: 32px 28px;
  overflow: hidden;
  min-height: 220px;
}

.lv-offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.lv-offer-thumb {
  position: absolute;
  right: 12px;
  bottom: 0;
  max-width: 42%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.lv-offer-content {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
}

.lv-offer-tag {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 7px 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  margin-bottom: 10px;
  font-weight: 600;
}

.lv-offer-content h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 18px;
  font-weight: 700;
}

.lv-offer-btn {
  background: #fff !important;
  color: var(--brand) !important;
  box-shadow: none !important;
}

.lv-offer-btn:hover {
  background: var(--brand-soft) !important;
}

@media (min-width: 900px) {
  .lv-offers-grid { grid-template-columns: 1fr 1fr; }
  .lv-offer-content h3 { font-size: 24px; }
}

/* Utilities */
.lv-hidden {
  display: none !important;
}

/* Enquiry forms below Singapore hero */
.lv-enq-desktop-wrap {
  display: none;
  background: var(--bg-warm);
  padding: 28px 0 36px;
}

.lv-enq-mobile {
  display: block;
  background: #fff;
  padding: 0 0 28px;
}

.lv-enq-mobile-banner {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  position: relative;
}

.lv-enq-mobile-banner::after {
  content: "▼";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
}

.lv-enq-mobile .container {
  padding-top: 32px;
}

.lv-enq-intro {
  margin-bottom: 18px;
}

.lv-enq-intro .section-title em {
  font-style: italic;
  color: var(--brand);
}

.landing-v1 .top-form .maindiv {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  box-shadow: var(--shadow-md);
  border-radius: var(--r-lg);
}

.landing-v1 .linfo_n .lftdiv {
  display: none !important;
}

.landing-v1 .linfo_n .rigtdiv {
  width: 100% !important;
  float: none !important;
  min-height: auto !important;
}

.landing-v1 #enq-form-1,
.landing-v1 #enq-form-2 {
  overflow: visible;
  min-height: 0;
}

@media (min-width: 768px) {
  .lv-enq-mobile {
    display: none;
  }

  .lv-enq-desktop-wrap {
    display: block;
  }

  .lv-enq-desktop-wrap .container {
    max-width: 520px;
    margin-inline: auto;
  }
}

/* Enquiry popup — without this, Bootstrap caps .modal-dialog (~500px) and clips the 2-column form */
.landing-v1 .modal.modal-fullscreen .modal-dialog {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  max-width: none;
}

.landing-v1 .modal.modal-fullscreen .modal-content {
  height: auto;
  height: 100vh;
  border-radius: 0;
  border: none;
}

.landing-v1 .modal.modal-fullscreen .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
}

.landing-v1 #modal-root-body .maindiv {
  max-width: 900px;
  width: 100%;
  margin: 20px auto;
  overflow: visible;
}

@media (min-width: 768px) {
  .landing-v1 #modal-root-body .maindiv {
    max-width: 920px;
    margin: 32px auto;
  }
}

/* Keep landing typography when master.css is loaded */
body.landing-v1 {
  font-family: var(--font-sans) !important;
}

body.landing-v1 .add-button {
  float: right;
}
