/* Landing Klik Burger: tema restoran moden, token base.css */

.lp {
  --lp-max: 72rem;
  --lp-pad: clamp(1rem, 4vw, 2rem);
  --lp-radius: 18px;
  --lp-radius-sm: 12px;
  --lp-hero-img: url("https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=2000&q=80");
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--content-bg);
}

.lp a:focus-visible {
  outline: 2px solid var(--accent-ring);
  outline-offset: 3px;
}

/* Header: bar gelap konsisten atas semua seksyen */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-header__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0.65rem var(--lp-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.lp-brand:hover {
  color: #ffffff;
}

.lp-brand__accent {
  color: var(--sidebar-accent);
}

.lp-brand:hover .lp-brand__accent {
  color: var(--accent-hover);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.lp-nav__link {
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.lp-nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.52rem 1rem;
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  .lp-btn {
    transition: none;
  }
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn--sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
}

.lp-btn--lg {
  padding: 0.78rem 1.45rem;
  font-size: 0.95rem;
  border-radius: var(--lp-radius-sm);
}

.lp-btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.lp-btn--ghost:hover {
  background: var(--surface-muted);
}

.lp-btn--primary {
  background: linear-gradient(180deg, #ffc44d 0%, var(--sidebar-accent) 100%);
  border-color: rgba(0, 0, 0, 0.12);
  color: #141414;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12), 0 6px 20px rgba(245, 166, 35, 0.4);
}

.lp-btn--primary:hover {
  background: linear-gradient(180deg, #ffd166 0%, var(--accent-hover) 100%);
  border-color: rgba(0, 0, 0, 0.1);
}

.lp-btn--dark {
  background: #141414;
  color: #fafafa;
  border-color: #141414;
}

.lp-btn--dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.lp-btn--inverse {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.lp-btn--inverse:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-btn--ghost-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.lp-btn--ghost-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lp-btn--outline-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.lp-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.lp-main {
  flex: 1;
}

.lp-section {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: clamp(2.75rem, 8vw, 5rem) var(--lp-pad);
}

.lp-section--features {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, #f0f0f2 0%, var(--content-bg) 35%, var(--content-bg) 100%);
}

.lp-section__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.lp-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sidebar-accent);
}

.lp-eyebrow--on-dark {
  color: var(--sidebar-accent);
  opacity: 0.95;
}

.lp-lead {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Hero: foto burger + overlay gelap (selari lapisan & titik fokus gambar) */
.lp-hero {
  position: relative;
  color: #e8e8e8;
  text-align: center;
  min-height: min(92vh, 52rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.02);
  transform-origin: center center;
  --lp-hero-focal-x: 50%;
  --lp-hero-focal-y: 42%;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a1208;
  background-image: var(--lp-hero-img);
  background-size: cover;
  background-position: var(--lp-hero-focal-x) var(--lp-hero-focal-y);
  background-repeat: no-repeat;
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 95% 75% at var(--lp-hero-focal-x) var(--lp-hero-focal-y),
      rgba(0, 0, 0, 0.18) 0%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.65) 100%
    );
}

.lp-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.lp-hero__inner {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding-left: var(--lp-pad);
  padding-right: var(--lp-pad);
  box-sizing: border-box;
}

.lp-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.lp-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.038em;
  color: #fff;
  text-wrap: balance;
}

.lp-hero__lead {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(240, 240, 240, 0.86);
  line-height: 1.5;
  max-width: 38rem;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.1rem;
}

.lp-hero__actions .lp-btn--lg {
  padding: 0.88rem 1.65rem;
  font-size: clamp(0.98rem, 2.1vw, 1.12rem);
}

.lp-hero__chips {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 100%;
}

.lp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 0.95rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.lp-hero__chip i {
  color: var(--sidebar-accent);
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
}

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

  .lp-hero__content {
    padding-top: 1.35rem;
  }

  .lp-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero__actions .lp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tajuk seksyen */
.lp-h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  color: var(--text);
}

.lp-h2--light {
  color: #fff;
  text-align: left;
  margin-bottom: 0.35rem;
}

.lp-h2--band {
  color: #fafafa;
  margin-top: 0.35rem;
}

/* Kad ciri */
.lp-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .lp-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.lp-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--lp-radius);
  padding: 1.5rem 1.35rem 1.45rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03), 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lp-tile {
    transition: none;
  }
}

.lp-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sidebar-accent), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lp-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.35);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(0, 0, 0, 0.1);
}

.lp-tile:hover::before {
  opacity: 1;
}

.lp-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.lp-tile__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.2);
}

.lp-tile__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--lp-radius-sm);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0.08) 100%);
  color: #b3740a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.lp-tile h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Jalur nilai gelap */
.lp-band {
  background: linear-gradient(165deg, #161616 0%, #0f0f0f 45%, #141008 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.lp-band::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -40%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.lp-band__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.lp-band__head {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.lp-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .lp-pills {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
}

.lp-pill {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 166, 35, 0.28);
}

.lp-pill__v {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--sidebar-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-pill__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  min-width: 0;
}

.lp-pill__t {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fafafa;
}

.lp-pill__d {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.35;
}

/* CTA */
.lp-cta-wrap {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.lp-cta {
  position: relative;
  background: linear-gradient(155deg, #222 0%, #121212 50%, #18140c 100%);
  border-radius: var(--lp-radius);
  padding: clamp(2rem, 4.5vw, 2.75rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lp-cta__accent {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta__copy {
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .lp-cta {
    grid-template-columns: 1fr auto;
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    align-items: center;
  }

  .lp-h2--light {
    text-align: left;
  }
}

.lp-cta__lead {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  max-width: 26rem;
}

.lp-cta__btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 720px) {
  .lp-cta__btns {
    justify-content: flex-end;
  }
}

/* Footer */
.lp-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 1.25rem var(--lp-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__links {
  display: flex;
  gap: 1.25rem;
}

.lp-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
}

.lp-footer a:hover {
  color: var(--sidebar-accent);
}

/* Modal */
.lp-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lp-pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lp-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lp-modal {
  width: min(24rem, 100%);
  background: var(--surface);
  border-radius: var(--lp-radius);
  border: 1px solid var(--border);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  max-height: min(92vh, 34rem);
  overflow: auto;
}

.lp-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.lp-modal__head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-modal__head p {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lp-modal__close {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-modal__close:hover {
  background: var(--border);
}

.lp-modal__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.lp-field {
  margin-bottom: 0.85rem;
}

.lp-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.lp-req {
  color: var(--danger);
}

.lp-field input,
.lp-field textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.9rem;
  background: #fff;
}

.lp-field input:focus,
.lp-field textarea:focus {
  border-color: var(--sidebar-accent);
  outline: 0;
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.lp-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.lp-form__note {
  margin: 0.7rem 0 0;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.lp-success {
  text-align: center;
  padding: 0.35rem 0 0.15rem;
}

.lp-success__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: rgba(46, 125, 30, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.lp-success h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-success__text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lp-success__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.lp-mailto {
  text-align: center;
  text-decoration: none;
}

.lp-summary {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text);
  font-family: ui-monospace, monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px; 
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 639px) {
  .lp-nav {
    width: 100%;
    justify-content: flex-end;
  }
}
