/* ============================================================
   GNL — Global Night Life
   Black & crimson-pink nightlife theme (matches reference design)
   ============================================================ */

:root {
  --black: #050505;
  --black-2: #0d0d0f;
  --panel: #101013;
  /* --panel-border: rgba(232, 48, 90, 0.28); */
  --panel-border: rgba(65, 61, 62, 0.28);
  --border-soft: rgba(255, 255, 255, 0.08);
  --pink: #e8305a;          /* GNL crimson pink */
  --pink-bright: #ff2e63;
  --pink-soft: rgba(232, 48, 90, 0.14);
  --white: #ffffff;
  --grey: #c9c9cf;
  --grey-dim: #9a9aa3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232, 48, 90, 0.10), transparent 50%),
    var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.text-pink { color: var(--pink-bright); }

/* ============ NAVBAR ============ */
#mainNav {
  padding: 0.9rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
#mainNav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
}
.brand-logo { height: 52px; width: auto; }

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0.9rem;
  padding-bottom: 0.35rem;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--pink-bright); }
.navbar-nav .nav-link.active { color: var(--pink-bright); }
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.btn-download-outline {
  border: 1.5px solid var(--pink);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.4rem;
  transition: all 0.25s ease;
}
.btn-download-outline:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 24px rgba(232, 48, 90, 0.55);
}

.navbar-toggler {
  border: 1px solid var(--panel-border);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(232, 48, 90, 0.4); }

@media (max-width: 1199.98px) {
  #navMenu {
    background: rgba(13, 13, 15, 0.98);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .navbar-nav .nav-link { padding: 0.6rem 0; margin: 0; }
  .btn-download-outline { display: inline-block; margin-top: 0.75rem; }
}

/* ============ HERO ============ */
.hero {
  padding: 130px 0 60px;
  position: relative;
}

.hero-eyebrow {
  color: var(--pink-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.85rem;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-desc {
  color: var(--grey);
  max-width: 470px;
  margin-top: 1.2rem;
  line-height: 1.7;
}

/* Hero buttons (two-line) */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 12px;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-hero i { font-size: 1.5rem; }
.btn-hero span { display: flex; flex-direction: column; line-height: 1.25; }
.btn-hero strong { font-size: 0.95rem; }
.btn-hero small { font-size: 0.75rem; opacity: 0.85; }

.btn-hero-solid {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 30px rgba(232, 48, 90, 0.4);
}
.btn-hero-solid:hover {
  background: var(--pink-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(255, 46, 99, 0.55);
}

.btn-hero-outline {
  border: 1.5px solid var(--pink);
  color: var(--white);
  background: transparent;
}
.btn-hero-outline:hover {
  background: var(--pink-soft);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-outline i { color: var(--pink-bright); }

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0.5rem 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
.store-badge i { font-size: 1.6rem; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 0.65rem; color: var(--grey); }
.store-badge strong { font-size: 0.95rem; }
.store-badge:hover {
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 48, 90, 0.35);
}
.store-badge-sm { padding: 0.4rem 0.8rem; }
.store-badge-sm i { font-size: 1.25rem; }
.store-badge-sm strong { font-size: 0.8rem; }

/* .hero-visual {
  border-radius: 20px;
  filter: drop-shadow(0 26px 60px rgba(232, 48, 90, 0.28));
} */

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }

.section-heading {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: capitalize;
}
.heading-underline {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 0.6rem;
}

/* ============ WHY GNL CARDS ============ */
.why-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-7px);
  border-color: var(--pink);
  box-shadow: 0 16px 40px rgba(232, 48, 90, 0.22);
}
.why-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--pink-soft);
  display: grid;
  place-items: center;
}
.why-icon img { width: 38px; height: 38px; object-fit: contain; }
.why-card h5 {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.55rem;
}
.why-card p { color: var(--grey); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* ============ PANELS ============ */
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 2rem;
}
.panel-heading { font-weight: 800; }

.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: 0.95rem;
}
.tick-list li i { color: var(--pink-bright); margin-top: 2px; }
.small-list li { font-size: 0.88rem; margin-bottom: 0.65rem; }

.audience-img {
  border-radius: 14px;
  /* border: 1px solid var(--border-soft); */
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 190px;
}

/* ============ PHONE MOCKUPS ============ */
/* .phones {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
}
.phone {
  flex: 1 1 0;
  max-width: 150px;
  background: #17171b;
  border: 2px solid #26262c;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.55rem;
  padding: 0.45rem 0.6rem;
  color: var(--grey);
  border-bottom: 1px solid #24242a;
  font-weight: 600;
}
.phone-screen { padding: 0.55rem; }
.ps-title { font-size: 0.62rem; font-weight: 700; margin: 0.3rem 0 0.25rem; }
.ps-label { font-size: 0.52rem; color: var(--grey-dim); margin: 0 0 0.3rem; }
.ps-img {
  height: 62px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.4rem;
}
.ps-img.sm { height: 44px; }
.ps-input {
  height: 14px;
  border-radius: 5px;
  background: #232329;
  border: 1px solid #2d2d34;
  margin-bottom: 0.35rem;
}
.ps-btn {
  width: 100%;
  border: none;
  background: var(--pink);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  padding: 0.35rem 0;
  margin-top: 0.15rem;
} */

.phones {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
}
.phone {
  flex: 1 1 0;
  max-width: 165px;
  background: #17171b;
  border: 3px solid #26262c;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(232, 48, 90, 0.28);
}
.phone-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* ============ MISSION BAND ============ */
.mission-band {
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: var(--black-2);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.mission-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0.78) 45%, rgba(5,5,5,0.35) 100%);
}
.mission-content {
  position: relative;
  padding: 3rem clamp(1.5rem, 6vw, 5rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mission-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  text-transform: uppercase;
  line-height: 1.35;
}
.mission-sub { color: var(--grey); font-size: 0.95rem; margin-top: 0.8rem; max-width: 620px; }

/* ============ FOOTER ============ */
.footer {
  background: #030303;
  border-top: 1px solid var(--border-soft);
}
.footer-heading {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
}
.footer-text { color: var(--grey-dim); font-size: 0.85rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: var(--grey-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--pink-bright); }
.footer-divider { border-color: var(--border-soft); margin: 2rem 0 1.2rem; }

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--white);
  margin-right: 0.45rem;
  transition: all 0.25s ease;
  text-decoration: none;
  font-size: 0.95rem;
}
.social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(232, 48, 90, 0.45);
}

/* ============ BACK TO TOP ============ */
#backToTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: #fff;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 1030;
  box-shadow: 0 8px 24px rgba(232, 48, 90, 0.5);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--pink-bright); transform: translateY(-3px); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
/* ============ LAPTOP / SMALL DESKTOP (992px – 1281px) ============ */
@media (min-width: 992px) and (max-width: 1281px) {

  /* Navbar */
  .brand-logo { height: 44px; }
  .navbar-nav .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.6px;
    margin: 0 0.5rem;
  }
  .btn-download-outline {
    font-size: 0.72rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero { padding: 115px 0 50px; }
  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 1.2px; }
  .hero-title { font-size: clamp(2.2rem, 4vw, 3.2rem); }
  .hero-desc { font-size: 0.9rem; max-width: 420px; }

  .btn-hero { padding: 0.6rem 1.1rem; gap: 0.6rem; }
  .btn-hero i { font-size: 1.25rem; }
  .btn-hero strong { font-size: 0.85rem; }
  .btn-hero small { font-size: 0.68rem; }

  .store-badge { padding: 0.4rem 0.9rem; }
  .store-badge i { font-size: 1.35rem; }
  .store-badge strong { font-size: 0.85rem; }
  .store-badge small { font-size: 0.6rem; }

  /* Sections */
  .section { padding: 65px 0; }
  .section-heading { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

  /* Why GNL cards */
  .why-card { padding: 1.4rem 1.2rem; gap: 0.85rem; }
  .why-icon { width: 52px; height: 52px; }
  .why-icon img { width: 32px; height: 32px; }
  .why-card h5 { font-size: 0.88rem; }
  .why-card p { font-size: 0.82rem; }

  /* Panels & lists */
  .panel { padding: 1.5rem; }
  .panel-heading { font-size: 1.25rem; }
  .tick-list li { font-size: 0.86rem; margin-bottom: 0.7rem; }
  .small-list li { font-size: 0.8rem; }
  .audience-img { min-height: 130px; max-height: 165px; }

  /* Phone mockups */
  .phone { max-width: 128px; }
  .ps-title { font-size: 0.56rem; }
  .ps-label { font-size: 0.48rem; }
  .ps-img { height: 52px; }
  .ps-img.sm { height: 38px; }
  .ps-btn { font-size: 0.48rem; }

  /* Mission band */
  .mission-band { min-height: 220px; }
  .mission-title { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
  .mission-sub { font-size: 0.86rem; }

  /* Footer */
  .footer-heading { font-size: 0.72rem; }
  .footer-text, .footer-links a { font-size: 0.8rem; }
  .social-links a { width: 34px; height: 34px; font-size: 0.85rem; }
}
@media (max-width: 991.98px) {
  .hero { padding: 110px 0 50px; }
  .section { padding: 60px 0; }
  .phones { flex-wrap: wrap; }
  .phone { max-width: 46%; }
}
@media (max-width: 575.98px) {
  .brand-logo { height: 40px; }
  .phone { max-width: 47%; }
  .mission-content { padding: 2.2rem 1.4rem; }
  .btn-hero { width: 100%; justify-content: center; }
}

/* ============ SUBPAGES (Contact / Legal) ============ */
.page-hero {
  padding: 160px 0 20px;
  text-align: center;
}
.page-hero .hero-eyebrow { margin-bottom: 0.4rem; }
.page-hero .section-heading { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.legal-panel h2 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--pink-bright);
  margin: 2rem 0 0.9rem;
}
.legal-panel h2:first-of-type { margin-top: 0; }
.legal-panel p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.85;
}
.legal-panel a { color: var(--pink-bright); text-decoration: none; }
.legal-panel a:hover { text-decoration: underline; }
.legal-updated {
  color: var(--grey-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-strip {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-soft);
  color: var(--grey-dim);
  font-size: 0.88rem;
  line-height: 1.8;
}
.company-strip strong { color: var(--white); }

/* Contact info cards */
.contact-card {
  text-align: center;
  padding: 2rem 1.4rem;
}
.contact-card .why-icon {
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--pink-bright);
}
.contact-card h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
}
.contact-card p, .contact-card a {
  color: var(--grey);
  font-size: 0.92rem;
  margin: 0;
  text-decoration: none;
  line-height: 1.7;
  word-break: break-word;
  transition: color 0.25s ease;
}
.contact-card a:hover { color: var(--pink-bright); }

@media (max-width: 991.98px) {
  .page-hero { padding: 130px 0 10px; }
}

/* ===== Global Vision page ===== */
.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--panel-border);
  border-radius: 50px;
  background: var(--panel);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.market-chip:hover {
  border-color: var(--pink-bright);
  transform: translateY(-2px);
}
.market-chip-live {
  border-color: rgba(232, 48, 90, 0.55);
}
.market-flag { font-size: 1.1rem; line-height: 1; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--grey);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}
.check-item i { color: var(--pink-bright); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 575.98px) {
  .market-chip { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
  .check-item { font-size: 0.85rem; }
}

/* ===== Help Center FAQ ===== */
.faq-cat { font-size: 0.85rem; margin-bottom: 0.9rem; }
.faq-accordion .accordion-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--pink-bright);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(1.4);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(38%) sepia(83%) saturate(4132%) hue-rotate(327deg) brightness(101%) contrast(102%);
}
.faq-accordion .accordion-body {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 1.25rem 1.25rem;
}
.faq-accordion .accordion-body strong { color: var(--white); }
.faq-accordion .accordion-body a { color: var(--pink-bright); text-decoration: none; }
@media (max-width: 575.98px) {
  .faq-accordion .accordion-button { font-size: 0.88rem; padding: 1rem; }
  .faq-accordion .accordion-body { font-size: 0.84rem; padding: 0 1rem 1rem; }
}

/* ===== Partner page onboarding steps ===== */
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 99, 0.5);
  background: rgba(255, 46, 99, 0.08);
  color: var(--pink-bright);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== For Clubs pricing ===== */
.pricing-panel { border-color: rgba(255, 46, 99, 0.4); }
.pricing-amount {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
}

/* ===== Fallback: never leave content permanently hidden if JS fails ===== */
.reveal { animation: revealFallback 0.7s ease 1.2s forwards; }
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Linked why-cards: keep normal text colors, no blue link color ===== */
a.why-card,
a.why-card:hover,
a.why-card:focus,
a.why-card:visited {
  color: var(--white);
  text-decoration: none;
}
.why-card h5 { color: var(--white); }
a.why-card:hover h5 { color: var(--pink-bright); }
a.why-card p { color: var(--grey); }
