/* Menupage.com.ng — Luxury Hospitality Theme */
:root {
  --gold: #D4A017;
  --gold-light: #e8b83a;
  --gold-dark: #b88914;
  --navy: #0B132B;
  --navy-light: #151f3d;
  --white: #ffffff;
  --grey-50: #f8f9fb;
  --grey-100: #eef0f4;
  --grey-200: #d8dce3;
  --grey-400: #8b93a7;
  --grey-600: #5a6175;
  --shadow: 0 4px 24px rgba(11, 19, 43, 0.08);
  --shadow-lg: 0 12px 48px rgba(11, 19, 43, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--grey {
  background: var(--grey-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section--dark .section-label {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--grey-600);
  font-size: 1.05rem;
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-light);
}

/* Header */
.header.scrolled {
  box-shadow: var(--shadow);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--gold-dark);
}

/* Nav dropdown — Demo */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.nav-dropdown__toggle:hover,
.nav-dropdown.open .nav-dropdown__toggle {
  color: var(--gold-dark);
}

.nav-dropdown__caret {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--navy);
}

.nav-dropdown__menu a:hover {
  background: var(--grey-50);
  color: var(--gold-dark);
}

.header__cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-100);
}

.mobile-nav a:hover {
  color: var(--gold-dark);
}

.mobile-nav__label {
  display: block;
  padding: 1rem 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
}

.mobile-nav__sub {
  padding-left: 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .nav,
  .header__cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero & Carousel */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
}

.hero-carousel {
  padding-top: var(--header-h);
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0d1835 50%, var(--navy-light) 100%);
}

.hero-carousel__track {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 72px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 3rem 0 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-carousel__arrow {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(212, 160, 23, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.hero-carousel__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-carousel__dot.is-active,
.hero-carousel__dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease-out;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease-out 0.1s both;
}

.hero__title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeUp 0.6s ease-out 0.4s both;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.hero__stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.phone-mockup {
  position: relative;
  width: 260px;
  padding: 12px;
  background: linear-gradient(145deg, #1a2545, #0d1428);
  border-radius: 36px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 160, 23, 0.2);
}

.phone-mockup__notch {
  width: 80px;
  height: 24px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-mockup__screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.menu-preview {
  padding: 1rem;
}

.menu-preview__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0.75rem;
}

.menu-preview__logo {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 8px;
}

.menu-preview__name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
}

.menu-preview__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--grey-100);
}

.menu-preview__item-info h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
}

.menu-preview__item-info p {
  font-size: 0.6rem;
  color: var(--grey-400);
}

.menu-preview__price {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.qr-float {
  position: absolute;
  bottom: 20px;
  left: -30px;
  width: 100px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.qr-float svg {
  width: 100%;
  height: auto;
}

.qr-float span {
  display: block;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

.dashboard-float {
  position: absolute;
  top: 40px;
  right: -40px;
  width: 180px;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite 1s;
}

.dashboard-float h5 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.dashboard-float .bar {
  height: 6px;
  background: var(--grey-100);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}

.dashboard-float .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .phone-mockup {
    width: 280px;
  }
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.industry-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.industry-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
  border-radius: 12px;
  font-size: 1.5rem;
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
}

/* Features table */
.features-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 500px;
}

.features-table th,
.features-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.features-table thead {
  background: var(--navy);
  color: var(--white);
}

.features-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
}

.features-table tbody tr:nth-child(even) {
  background: var(--grey-50);
}

.features-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 50%;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-connector {
  display: none;
}

/* Demo menus */
.demo-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .demo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.demo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
}

.demo-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 19, 43, 0.95) 100%);
  z-index: 1;
}

.demo-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--white);
}

.demo-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.demo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.demo-card__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.demo-card--restaurant .demo-card__visual { background: linear-gradient(135deg, #2d1f0f, #5c3d1e); }
.demo-card--lounge .demo-card__visual { background: linear-gradient(135deg, #1a0f2e, #3d2060); }
.demo-card--hotel .demo-card__visual { background: linear-gradient(135deg, #0f1f2e, #1e4060); }
.demo-card--nightclub .demo-card__visual { background: linear-gradient(135deg, #1a0520, #400830); }

/* Pricing */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-toggle span {
  font-weight: 600;
  color: var(--grey-600);
  transition: var(--transition);
}

.pricing-toggle span.active {
  color: var(--navy);
}

.pricing-toggle__switch {
  position: relative;
  width: 56px;
  height: 30px;
  background: var(--grey-200);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-toggle__switch.annual {
  background: var(--gold);
}

.pricing-toggle__switch.annual::after {
  left: 29px;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pricing-card__tagline {
  font-size: 0.875rem;
  color: var(--grey-600);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  margin-bottom: 1.5rem;
}

.pricing-card__price .amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
}

.pricing-card__price .period {
  font-size: 0.875rem;
  color: var(--grey-600);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}

.pricing-card__features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 10px;
  font-weight: 800;
}

.benefit-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.8125rem;
  color: var(--grey-600);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold);
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--gold-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer p {
  padding-bottom: 1.25rem;
  color: var(--grey-600);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--grey-600);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--grey-50);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(212, 160, 23, 0.1);
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.25rem;
}

.contact-method strong {
  display: block;
  font-size: 0.875rem;
}

.contact-method span {
  font-size: 0.875rem;
  color: var(--grey-600);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.125rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--grey-100);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background: var(--white);
  color: var(--grey-600);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--grey-100);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer__brand img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--gold-dark);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Live chat float */
.livechat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
  font-size: 1.5rem;
  transition: var(--transition);
}

.livechat-float:hover {
  transform: scale(1.1);
}

/* Hero alternate visuals */
.qr-hero-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qr-hero-visual__code {
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
}

.qr-hero-visual__code svg { width: 100px; }

.qr-hero-visual__code p {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.5rem;
}

.qr-hero-visual__arrow {
  font-size: 2rem;
  color: var(--gold);
}

.phone-mockup--sm { width: 180px; }

.hotel-hero-visual__card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  color: var(--navy);
  max-width: 280px;
}

.hotel-hero-visual__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #3498db;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.hotel-hero-visual__card h4 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.hotel-hero-visual__card li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.8rem;
}

.nightclub-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nightclub-hero-visual__item {
  padding: 1.25rem;
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.4);
  border-radius: var(--radius);
  max-width: 260px;
}

.nightclub-hero-visual__item--glow {
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.nightclub-hero-visual__label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ff00ff;
  letter-spacing: 0.15em;
}

.nightclub-hero-visual__item h4 { margin: 0.25rem 0; }

.nightclub-hero-visual__item strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.dashboard-hero-visual {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  color: var(--navy);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
}

.dashboard-hero-visual h5 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.dashboard-hero-visual__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--grey-100);
}

.dashboard-hero-visual__row input {
  width: 80px;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
}

.dashboard-hero-visual__row--updated input {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
}

.dashboard-hero-visual__row em {
  font-size: 0.65rem;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 700;
}

.dashboard-hero-visual__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--grey-600);
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
}

.page-hero--light {
  background: var(--grey-50);
  color: var(--navy);
}

.page-hero--light .section-label { color: var(--gold-dark); }

.get-started-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .get-started-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.get-started-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.get-started-card--primary {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.08), #fff);
}

.get-started-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.get-started-card p {
  color: var(--grey-600);
  margin-bottom: 1.25rem;
}

.get-started-list {
  margin-bottom: 1.25rem;
}

.get-started-list li {
  padding: 0.35rem 0;
  color: var(--grey-600);
  list-style: disc;
  margin-left: 1.25rem;
}

.get-started-list a {
  color: var(--gold-dark);
  font-weight: 600;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.steps--light .step-card--light {
  background: var(--white);
  border: 1px solid var(--grey-100);
  color: var(--navy);
}

.steps--light .step-card--light p {
  color: var(--grey-600);
}

.steps--light {
  counter-reset: step;
}

.step-card--light::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 50%;
}

.text-center { text-align: center; }

/* Auth */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--grey-50);
}

.auth-page__logo img {
  height: 56px;
  margin-bottom: 2rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
}

.auth-card h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-card > p {
  text-align: center;
  color: var(--grey-600);
  margin-bottom: 1.5rem;
}

.auth-card__footer {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1rem;
  color: var(--grey-600);
}

.auth-card__footer a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About split */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.about-visual__highlight {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-visual p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Alerts */
.alert {
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert--error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

/* Subscription page */
.subscribe-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .subscribe-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.subscribe-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.subscribe-card h2 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.subscribe-card p {
  color: var(--grey-600);
  margin-bottom: 1rem;
}

.subscribe-plans > div {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--grey-100);
}

.subscribe-plans strong {
  display: block;
  color: var(--navy);
}

.subscribe-plans span {
  font-size: 0.9rem;
  color: var(--grey-600);
}

/* Dashboard */
.dashboard-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dashboard-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.dashboard-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.9rem;
}

.dashboard-card--full {
  grid-column: 1 / -1;
}

.dashboard-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--grey-100);
  padding: 0.65rem 0;
  font-size: 0.95rem;
}

.dashboard-list strong {
  color: var(--navy);
}

.dashboard-list span {
  color: var(--grey-600);
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-stats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
}

.stat-card h4 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.stat-card strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-light);
}

.table-wrap {
  overflow-x: auto;
}

.auth-card__hint {
  font-size: 0.8rem;
  color: var(--grey-400);
}
