:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --surface-2: #f8f4ec;
  --card: #fff;
  --card-soft: #f3ede1;
  --ink: #17362d;
  --ink-2: #29453d;
  --muted: #687770;
  --line: rgba(23, 54, 45, 0.12);
  --gold: #d3a14a;
  --gold-deep: #b47a20;
  --green: #12392f;
  --green-2: #0d2d25;
  --wa: #25d366;
  --shadow: 0 18px 44px rgba(18, 57, 47, 0.08);
  --shadow-soft: 0 12px 28px rgba(18, 57, 47, 0.06);
  --shell: min(1180px, calc(100% - 40px));
  --body: "Manrope", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --header: 76px;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 999;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), #f7d58a);
}

/* Logo: max 100px di semua permukaan */
.brand img,
.location-logo,
.footer-brand img {
  width: auto;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.topbar {
  background: var(--green-2);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-info {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 57, 47, 0.05);
}

.nav-row {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  color: #3d534b;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 57, 47, 0.1);
  font-size: 13px;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.header-cta .icon-wa {
  width: 20px;
  height: 20px;
  fill: #25d366;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  margin: 6px auto;
  transition: 0.25s;
}

.nav-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

.section-head {
  display: block;
  margin-bottom: 32px;
}

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

.section-head h2,
.hero h1,
.about h2,
.final-cta h2 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(42px, 5.6vw, 68px);
  color: var(--green-2);
}

.hero h1 em,
.section-head h2 em {
  color: var(--gold-deep);
  font-style: italic;
}

.section-head h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  color: var(--green-2);
  max-width: min(100%, 56rem);
}

.hero {
  padding: 56px 0 36px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 161, 74, 0.14), transparent 64%);
  right: -100px;
  top: -140px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.hero-lead {
  max-width: 640px;
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(18, 57, 47, 0.16);
}

.btn-secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 57, 47, 0.14);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #2dcf66, #0fb856);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.icon-wa {
  width: 22px;
  height: 22px;
  max-width: none;
  flex-shrink: 0;
  fill: currentColor;
  fill-rule: evenodd;
}

.btn-whatsapp .icon-wa,
.floating-wa .icon-wa {
  fill: #fff;
}
.btn-big { padding: 16px 24px; }
.btn-big small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.trust-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-row div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 57, 47, 0.08);
}

.trust-row strong { display: block; font-size: 14px; margin-bottom: 3px; }
.trust-row span { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

.hero-visual { position: relative; min-height: 560px; }

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main { inset: 0 64px 80px 0; }
.hero-card-small {
  width: 240px;
  height: 300px;
  right: 0;
  bottom: 18px;
  transform: rotate(4deg);
}

.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(18, 57, 47, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-badge span {
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-size: 15px;
  margin-top: 4px;
  color: var(--green);
}

.brand-marquee {
  width: min(1240px, calc(100% - 36px));
  margin: 12px auto 0;
  border-radius: 24px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.62), rgba(239, 228, 204, 0.78), rgba(255, 255, 255, 0.5));
  box-shadow: 0 10px 28px rgba(18, 57, 47, 0.04);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  padding: 13px 0;
  min-width: max-content;
  animation: marquee 24s linear infinite;
  font-size: 13px;
  font-weight: 750;
  color: var(--green);
}

.marquee-track i { color: var(--gold); font-style: normal; }

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

.section-wave {
  position: relative;
  width: 100%;
  height: 72px;
  margin-top: -1px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.section-wave svg { width: 100%; height: 100%; display: block; }
.section-wave path { fill: currentColor; }
.wave-a { color: #fffdf8; background: var(--bg); }
.wave-b { color: #efe8dc; background: #fffdf8; }
.wave-c { color: var(--green); background: #efe8dc; }
.wave-d { color: var(--bg); background: var(--green); }
.wave-e { color: #f0eadf; background: var(--bg); }
.wave-f { color: #fbf7ef; background: #f0eadf; }

.section { padding: 84px 0; }
.product-explorer { background: #fffdf8; padding-top: 72px; }

.explorer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.category-list {
  position: sticky;
  top: calc(var(--header) + 16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(18, 57, 47, 0.09);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.category-tab span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card-soft);
  font-size: 11px;
  font-weight: 750;
  color: var(--green);
}

.category-tab strong { font-size: 16px; text-align: left; }
.category-tab i { font-style: normal; color: var(--gold-deep); transition: transform 0.2s ease; }

.category-tab:hover {
  transform: translateX(3px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-tab:hover i,
.category-tab.active i { transform: translate(3px, -2px); }

.category-tab.active {
  background: linear-gradient(135deg, #fff, #f5eee0);
  border-color: rgba(211, 161, 74, 0.36);
  box-shadow: var(--shadow-soft);
}

.category-display { display: grid; gap: 16px; }

.category-image-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.category-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.category-image-wrap.is-changing img { opacity: 0.7; transform: scale(1.02); }

.category-image-overlay {
  position: absolute;
  inset: auto 20px 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.80);
  border: 1px solid rgba(18, 57, 47, 0.09);
  box-shadow: 0 10px 28px rgba(18, 57, 47, 0.08);
  backdrop-filter: blur(2px);
}

.category-image-overlay span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}

.category-image-overlay h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.category-image-overlay p {
  font-size: 15px;
  color: var(--muted);
  max-width: 720px;
}

.category-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.category-help { font-size: 13px; color: var(--muted); }

.quick-ask {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf8, #f3ede1);
  border: 1px solid rgba(18, 57, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.quick-ask-head h3 { font-size: 24px; line-height: 1.2; margin-bottom: 6px; }
.quick-ask-head p { font-size: 15px; color: var(--muted); }

.quick-chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.quick-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 57, 47, 0.1);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.quick-chip:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.quick-chip.active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
}

.quick-cta-panel {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 12px;
}

.quick-preview {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 57, 47, 0.1);
  font-size: 14px;
  color: var(--ink-2);
}

.quick-cta-panel .btn-whatsapp {
  min-height: 100%;
  padding: 16px 20px;
  justify-content: flex-start;
  border-radius: 20px;
}

.quick-cta-panel .btn-whatsapp span { font-size: 16px; font-weight: 750; }
.quick-cta-panel .btn-whatsapp small { margin-left: 30px; }

.brands { background: #efe8dc; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brand-card {
  min-height: 118px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 57, 47, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.brand-card.logo img {
  max-width: 100px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-card span { font-size: 13px; font-weight: 650; color: var(--muted); }
.brand-card.textonly strong { font-size: 17px; }
.brand-card.textonly span { font-size: 12px; }

.about {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(36px, 4.4vw, 54px);
  margin-top: 10px;
}

.about-copy p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.76);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-features article {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-features strong { display: block; font-size: 18px; margin-bottom: 6px; }
.about-features p { font-size: 15px; color: rgba(255, 255, 255, 0.72); }

.maps { background: var(--bg); }

.maps-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.map-frame,
.location-panel {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.location-panel {
  padding: 26px;
  background: linear-gradient(180deg, #fffdf8, #f6f0e5);
  border: 1px solid rgba(18, 57, 47, 0.08);
}

.location-panel h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-top: 10px;
}

.location-panel p { margin-top: 12px; font-size: 16px; color: var(--muted); }

.location-panel ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.location-panel li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-2);
}

.location-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.payment { background: #f0eadf; }

.payment-wrap {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(18, 57, 47, 0.09);
  box-shadow: var(--shadow-soft);
}

.payment-owner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.payment-owner span {
  display: inline-flex;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.payment-owner strong { display: block; margin-top: 4px; font-size: 22px; }

.payment-owner small {
  max-width: 420px;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-card {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(18, 57, 47, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.payment-card.highlight { background: linear-gradient(135deg, #fff, #f3ecd8); }

.payment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bank-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.payment-label {
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payment-number {
  margin: 14px 0 12px;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 750;
  letter-spacing: 0.04em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.payment-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-bottom span { font-size: 15px; color: var(--muted); font-weight: 650; }

.copy-btn {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--card-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
}

.faq { background: #fbf7ef; }
.faq-list { display: grid; gap: 10px; }

.faq details {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 57, 47, 0.09);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 28px;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-deep);
  font-size: 26px;
}

.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 10px; font-size: 15px; color: var(--muted); }

.final-cta { padding: 0 0 96px; background: #fbf7ef; }

.final-cta-card {
  padding: 32px;
  min-height: 220px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--green), #1d4b3e);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 { font-size: clamp(36px, 4.4vw, 54px); margin-top: 8px; }

.final-cta p {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.76);
  max-width: 640px;
}

.site-footer { background: #ece6d9; padding: 48px 0 20px; }

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

.site-footer p {
  margin-top: 12px;
  max-width: 460px;
  font-size: 15px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-links h3 { font-size: 13px; margin-bottom: 10px; color: var(--green); }

.footer-links a,
.footer-links span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 7px;
}

.footer-bottom {
  display: flex;
  /* justify-content: space-between; */
  gap: 12px;
  padding-top: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--green);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover { color: var(--green-2); }

.floating-wa {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dcf66, #0fb856);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
  font-weight: 750;
}

.floating-wa .icon-wa { width: 20px; height: 20px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.24s;
  z-index: 160;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .hero-grid,
  .about-grid,
  .maps-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero-visual { min-height: 500px; }
  .hero-card-main { inset: 0 40px 72px 0; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-owner { align-items: flex-start; flex-direction: column; }
  .payment-owner small { text-align: left; }
  .final-cta-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header: 68px; }
  .topbar { display: none; }
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: rgba(245, 241, 232, 0.98);
    border-bottom: 1px solid var(--line);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .main-nav.open { max-height: 460px; padding: 10px 20px 18px; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }

  .hero-lead { font-size: 16px; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 440px; }
  .trust-row { grid-template-columns: 1fr; }
  .explorer-grid { grid-template-columns: 1fr; }
  .category-list { position: relative; top: 0; }
  .quick-cta-panel { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features,
  .payment-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .section-wave { height: 56px; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 24px, 1180px); --header: 64px; }
  .section { padding: 64px 0; }
  .hero { padding-top: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .hero-card-main { inset: 0 24px 64px 0; }
  .hero-card-small { width: 148px; height: 180px; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
  .hero-badge strong { font-size: 13px; }
  .brand-marquee { width: calc(100% - 18px); }
  .section-wave { height: 48px; }
  .product-explorer { padding-top: 52px; }
  .category-image-wrap { min-height: 440px; }
  .category-image-overlay { inset: auto 12px 12px; padding: 16px; }
  .category-image-overlay h3 { font-size: 22px; }
  .quick-ask { padding: 16px; }
  .about-copy p { font-size: 16px; }
  .map-frame iframe { min-height: 340px; }
  .payment-wrap { padding: 16px; }
  .payment-number { font-size: 22px; }
  .faq summary { font-size: 16px; }
  .final-cta { padding-bottom: 80px; }
  .final-cta-card { padding: 22px; }
  .footer-grid,
  .footer-links,
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .floating-wa {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .floating-wa span { display: none; }
  .floating-wa .icon-wa { width: 26px; height: 26px; }
}

.btn, .nav-toggle, .copy-btn, .quick-chip, .category-tab, .floating-wa, summary {
  touch-action: manipulation;
}
