﻿/* ========================================
   LIKAPA - Landing
   ======================================== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap");

/* --- Tokens (Light - default) --- */
:root {
  --surface: #faf8f5;
  --card: #ffffff;
  --text: #1a1835;
  --muted: #6b6980;
  --border: #e4e2dd;
  --berry: #a21caf;
  --berry-soft: rgba(162, 28, 175, 0.08);
  --lime: #a3e635;
  --lime-fg: #1a1835;
  --glow: rgba(162, 28, 175, 0.15);
  --radius: 10px;
  --font-h: "Outfit", sans-serif;
  --font-b: "Plus Jakarta Sans", sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
@supports not (scrollbar-gutter: stable) {
  html { overflow-y: scroll; }
}
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 15%, var(--glow), transparent),
    radial-gradient(
      ellipse 35% 35% at 80% 85%,
      rgba(163, 230, 53, 0.04),
      transparent
    );
}
.mk-main {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1,
h2,
h3 {
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.2;
}
h3 {
  font-size: 1.1rem;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  margin-bottom: 10px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--berry);
  background: var(--berry-soft);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--lime {
  background: var(--lime);
  color: var(--lime-fg);
  box-shadow: 0 4px 18px rgba(163, 230, 53, 0.2);
}
.btn--lime:hover {
  box-shadow: 0 8px 28px rgba(163, 230, 53, 0.3);
}
.btn--berry {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 4px 18px rgba(162, 28, 175, 0.18);
}
.btn--berry:hover {
  box-shadow: 0 8px 28px rgba(162, 28, 175, 0.28);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--berry);
  color: var(--berry);
}
.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}
.btn--full {
  width: 100%;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--berry);
  letter-spacing: -0.03em;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__mobile-controls {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav__link {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--berry);
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  transition:
    color 0.2s,
    transform 0.2s;
}
.nav__burger:hover {
  color: var(--berry);
}
.nav__burger:active {
  transform: scale(0.95);
}

/* --- Mobile Drawer --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: var(--card);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-drawer__brand {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--berry);
  letter-spacing: -0.03em;
}
.mobile-drawer__close {
  background: var(--berry-soft);
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.mobile-drawer__close:hover {
  background: var(--berry);
  color: #fff;
}
.mobile-drawer__close:active {
  transform: scale(0.9);
}
.mobile-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
}
.mobile-drawer__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}
.mobile-drawer__link:hover {
  background: var(--berry-soft);
  color: var(--berry);
}
.mobile-drawer__link:active {
  transform: scale(0.98);
}
.mobile-drawer__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px;
}
.mobile-drawer__footer {
  padding: 16px 16px 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-drawer__footer .btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* --- Hero --- */
.hero {
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  margin-bottom: 18px;
}
.hero__sub {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Visual: Desktop + Phone */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-height: 500px;
}
.hero__img--desktop {
  height: 520px;
  width: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.hero__img--mobile {
  height: 520px;
  width: auto;
  display: block;
  object-fit: contain;
  z-index: 2;
}

/* --- Features Cards --- */
.features {
  padding: 100px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.feature-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  min-height: 48px;
}
.feature-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-h);
  margin-bottom: 0;
}
.badge--success {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #10b981;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}
.feature-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
.feature-card__features li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.feature-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--berry);
  font-weight: 700;
}

/* QR Mini Preview */
.bento__qr-preview {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qr-box {
  width: 64px;
  height: 64px;
  border: 2px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1rem;
  color: var(--berry);
  background: var(--surface);
}
.bento__qr-preview > span {
  color: var(--muted);
  font-size: 1.4rem;
}
.menu-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-mini__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: var(--surface);
  border-radius: 6px;
  font-size: 0.8rem;
}
.menu-mini__row span:last-child {
  font-weight: 600;
  color: var(--berry);
}

.bento__mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin-top: 16px;
}
.bar {
  flex: 1;
  background: var(--berry);
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  opacity: 0.65;
}
.bar--accent {
  background: var(--lime);
  opacity: 0.8;
}

/* --- Card Slider --- */
.card-slider {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
}
.slider-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}
.slider-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}
.slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  pointer-events: all;
  backdrop-filter: blur(4px);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}
.slider-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}
.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 0;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dot.active {
  background: var(--berry);
  width: 20px;
  border-radius: 4px;
}
.slider-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--berry-soft),
    rgba(163, 230, 53, 0.06)
  );
  color: var(--muted);
  font-size: 0.85rem;
  border-radius: 12px;
}

/* --- Pricing --- */
.pricing {
  padding: 100px 0;
}

.venue-directory {
  padding: 90px 0 30px;
}

.venue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.venue-tab {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-h);
  font-size: 0.88rem;
  cursor: pointer;
}

.venue-tab.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--lime-fg);
}

.venue-panel {
  display: none;
}

.venue-panel.is-active {
  display: block;
}

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

.venue-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.venue-card__logo {
  width: 82px;
  height: 82px;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f5f9;
}

.venue-card__body h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.venue-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.venue-card__meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.9rem;
}

.venue-card__meta-row i {
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  top: 2px;
}

.venue-card__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.venue-card__socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pricing__wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
  align-items: start;
}
.pricing__card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  min-width: 0;
}
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing__label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.pricing__label--active {
  color: var(--text);
  font-weight: 600;
}
.pricing__label em {
  color: var(--berry);
  font-style: normal;
  font-weight: 600;
}
.toggle {
  width: 50px;
  height: 26px;
  background: var(--border);
  border: none;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle.active {
  background: var(--berry);
}
.toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.toggle.active .toggle__knob {
  transform: translateX(24px);
}
.pricing__price {
  margin-bottom: 6px;
  margin-top: 16px;
}
.pricing__currency {
  font-size: 1.3rem;
  color: var(--muted);
  vertical-align: super;
}
.pricing__amount {
  font-family: var(--font-h);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--berry);
}
.pricing__period {
  font-size: 0.95rem;
  color: var(--muted);
}
.pricing__crossed {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 1.2em;
}
.pricing__crossed s {
  opacity: 0.5;
}
.pricing__list {
  list-style: none;
  text-align: left;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__item {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin: -2px -14px;
  position: relative;
}
.pricing__item:hover {
  background: var(--surface);
  transform: translateX(2px);
}
.pricing__item.active {
  background: var(--berry-soft);
  border-left: 3px solid var(--berry);
  padding-left: 11px;
  position: relative;
  z-index: 1;
}
.pricing__item--highlight {
  font-weight: 600;
  color: var(--berry);
}
.pricing__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.pricing__divider::before,
.pricing__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pricing__divider span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.pricing__note {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 14px;
}

/* Pricing Detail Card */
.pricing__detail {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: left var(--detail-origin, center);
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.pricing__detail.card-entering {
  opacity: 0;
  transform: translateX(-30px) scaleX(0.95);
}

/* Triangular connector from list to card */
.pricing__detail::before {
  content: "";
  position: absolute;
  left: -40px;
  top: var(--connector-top, 50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 40px 20px 0;
  border-color: transparent var(--card) transparent transparent;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.05));
}

.pricing__detail.card-entering::before {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.pricing__detail.connected::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}
.pricing__detail-slider {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
  height: 280px;
}
.pricing__detail-slider .slider-container {
  height: 280px;
}
.pricing__detail-slider .slider-slide {
  height: 280px;
}
.pricing__detail-content {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    transform 0.3s ease;
}
.pricing__detail-content.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transform: translateY(10px);
}
.pricing__detail-title {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-h);
  margin-bottom: 16px;
  color: var(--berry);
}
.pricing__detail-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__brand strong {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--berry);
  display: block;
  margin-bottom: 6px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--berry);
}
.footer__copy {
  text-align: right;
  font-size: 0.78rem;
  color: var(--muted);
  align-self: end;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

/* Hero stagger */
.hero__title {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease forwards;
}
.hero__sub {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease 0.12s forwards;
}
.hero__actions {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease 0.24s forwards;
}
.hero__visual {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.36s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__sub {
    margin: 0 auto 28px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    justify-content: center;
    min-height: 350px;
    padding: 0 20px;
    gap: 12px;
  }
  .hero__img--desktop {
    height: 380px;
  }
  .hero__img--mobile {
    height: 380px;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: auto;
  }
  .pricing__wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing__item.active::after,
  .pricing__item.active::before {
    display: none;
  }
  .pricing__detail::before {
    display: none;
  }
  .pricing__detail.connected::before {
    display: none;
  }
  .pricing__detail {
    transform: none !important;
    opacity: 1 !important;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer__copy {
    text-align: center;
  }
}
@media (max-width: 900px) {
  .nav__mobile-controls {
    display: flex;
  }
  .nav__mobile-controls .nav__burger {
    display: block;
  }
  .nav__right {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero__visual {
    min-height: 280px;
    padding: 0 10px;
    gap: 8px;
  }
  .hero__img--desktop {
    height: 300px;
  }
  .hero__img--mobile {
    height: 300px;
  }
  .pricing__card {
    padding: 28px 20px;
  }
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .venue-card {
    grid-template-columns: 68px 1fr;
  }
  .venue-card__logo {
    width: 68px;
    height: 68px;
  }
  .pricing__detail {
    padding: 24px 20px;
  }
  .pricing__detail-slider {
    height: 220px;
  }
  .pricing__detail-slider .slider-container {
    height: 220px;
  }
  .pricing__detail-slider .slider-slide {
    height: 220px;
  }
  .bento__qr-preview {
    flex-wrap: wrap;
    gap: 10px;
  }
  .bento__qr-preview > span {
    display: none;
  }
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10001;
}

.lightbox-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
  transform: translateY(-50%) scale(1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Mobile Lightbox Adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
    max-height: 85vh;
  }

  .lightbox-image {
    max-height: 85vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Slider Image Hover Effect */
.slider-slide {
  cursor: pointer;
  position: relative;
}

.slider-slide::after {
  content: "🔍  Tıklayarak Büyüt";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.slider-slide:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .slider-slide::after {
    font-size: 12px;
    padding: 8px 14px;
  }
}
