/* ================================================================
   Halal Food Drop — Marketing Site
   ================================================================ */

:root {
  --bg-base: #05090a;
  --bg-surface: #080f0d;
  --bg-card: #0c1712;
  --bg-card-hover: #111f18;
  --green-100: #0d2218;
  --green-200: #163320;
  --green-500: #1e6640;
  --green-600: #27834f;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dark: #a88838;
  --gold-muted: rgba(201, 168, 76, 0.18);
  --text-primary: #f0ebe0;
  --text-secondary: #8a8678;
  --text-muted: #4e4a3e;
  --border: #141e18;
  --border-light: #1e2e24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Work Sans", sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 28px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .pill-dot,
  .phone,
  .float-badge {
    animation: none !important;
  }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(5, 9, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-200) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080700;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(30, 102, 64, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--bg-base));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 55fr 45fr;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.2s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title .gold {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--text-primary);
  color: #0a0900;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: "Work Sans", sans-serif;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.18);
}

.btn-store:active {
  transform: translateY(0);
}

.btn-store svg {
  flex-shrink: 0;
}

.btn-store-copy .small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  line-height: 1;
}

.btn-store-copy .big {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.btn-store-gold {
  background: var(--gold);
  color: #080700;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.stat-num.gold {
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ================================================================
   PHONE MOCKUP (CSS map)
   ================================================================ */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 580px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(30, 102, 64, 0.22) 0%,
    rgba(201, 168, 76, 0.04) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.phone-stage {
  position: relative;
}

.phone {
  position: relative;
  width: 272px;
  height: 548px;
  background: #080e0b;
  border-radius: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(30, 102, 64, 0.09);
  overflow: hidden;
  animation: phone-float 7s ease-in-out infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #080e0b;
  border-radius: 18px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: #0a1810;
  display: flex;
  flex-direction: column;
}

.pmap {
  flex: 1;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(30, 102, 64, 0.07) 28px,
      rgba(30, 102, 64, 0.07) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(30, 102, 64, 0.07) 28px,
      rgba(30, 102, 64, 0.07) 29px
    ),
    linear-gradient(160deg, #0a1a10 0%, #0c2018 100%);
}

.road {
  position: absolute;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 2px;
}

.road-h {
  left: 0;
  right: 0;
  height: 3px;
}

.road-v {
  top: 0;
  bottom: 0;
  width: 3px;
}

.mpin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mpin-head {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
}

.mpin-head.gld {
  background: var(--gold);
}

.mpin-head.grn {
  background: var(--green-500);
}

.mpin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
}

.mpin-lbl {
  margin-top: 5px;
  background: rgba(5, 9, 10, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 7px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  font-family: "Work Sans", sans-serif;
}

.pbar {
  background: rgba(5, 9, 10, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 10px 14px 22px;
}

.psearch {
  background: var(--green-100);
  border: 1px solid var(--border-light);
  border-radius: 9px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.psearch span {
  font-size: 10.5px;
  color: var(--text-muted);
  font-family: "Work Sans", sans-serif;
}

.ptabs {
  display: flex;
  justify-content: space-around;
}

.ptab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ptab-pip {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.badge-right {
  right: -28px;
  top: 72px;
  animation: badge-float 7s ease-in-out infinite;
  animation-delay: 1.2s;
}

.badge-left {
  left: -28px;
  bottom: 110px;
  animation: badge-float 7s ease-in-out infinite;
  animation-delay: 2.6s;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.badge-text span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .badge-right,
  .badge-left {
    display: none;
  }
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.section {
  padding: 96px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 5px 13px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .steps::before {
    content: "";
    display: block;
    position: absolute;
    top: 44px;
    left: calc(33.33% + 24px);
    right: calc(33.33% + 24px);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(201, 168, 76, 0.3) 30%,
      rgba(201, 168, 76, 0.3) 70%,
      transparent
    );
  }
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Outfit", sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: rgba(201, 168, 76, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.step h3 {
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* ================================================================
   FEATURES
   ================================================================ */
.features-section {
  background: var(--bg-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s ease;
}

.feat:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .feat:hover {
    transform: none;
  }
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon.g {
  background: rgba(30, 102, 64, 0.12);
  border: 1px solid rgba(30, 102, 64, 0.2);
  color: var(--green-600);
}

.feat-icon.au {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.16);
  color: var(--gold);
}

.feat h3 {
  font-family: "Outfit", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feat p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================================================
   SCREENSHOTS — phone-framed images
   ================================================================ */
.ss-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 16px 20px 32px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
}

.ss-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1100px) {
  .ss-scroll {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: nowrap;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.ss-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
}

.ss-item:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .ss-item:hover {
    transform: none;
  }
}

.ss-frame {
  position: relative;
  width: 200px;
  height: 408px;
  background: #080e0b;
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.85),
    0 24px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 10px 8px 10px;
}

.ss-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #080e0b;
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}

.ss-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  background: var(--bg-card);
}

.ss-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  font-family: "Work Sans", sans-serif;
}

/* ================================================================
   COMMUNITY CTA
   ================================================================ */
.community-section {
  background: var(--bg-surface);
}

.community-card {
  background: linear-gradient(145deg, var(--green-100) 0%, rgba(30, 102, 64, 0.07) 100%);
  border: 1px solid rgba(30, 102, 64, 0.22);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.community-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(30, 102, 64, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.community-icon {
  width: 62px;
  height: 62px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.community-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.community-card p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080700;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.22);
}

.btn-cta:active {
  transform: translateY(0);
}

/* ================================================================
   DOWNLOAD CTA
   ================================================================ */
.download-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.055) 0%, transparent 60%);
  pointer-events: none;
}

.dl-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 0 auto 28px;
}

.dl-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dl-title .g {
  color: var(--gold);
}

.dl-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 44px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.dl-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.dl-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.18s;
}

.footer-link:hover {
  color: var(--text-secondary);
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.legal-page .container {
  max-width: 760px;
}

.legal-prose h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-prose h2 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-prose p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-prose ul {
  margin: 0 0 20px 1.25rem;
  color: var(--text-secondary);
}

.legal-prose li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 15.5px;
}

.legal-prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: var(--gold-light);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color 0.18s;
}

.legal-back:hover {
  color: var(--gold);
}

/* ================================================================
   MARKETING SUBPAGES — Advertise, Cities, City SEO
   ================================================================ */
.mkt-page {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.mkt-page .container {
  max-width: 960px;
}

.mkt-hero {
  margin-bottom: 48px;
}

.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.mkt-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.mkt-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}

.mkt-lead a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mkt-lead a:hover {
  color: var(--gold-light);
}

.mkt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.btn-outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-light);
  background: var(--gold-muted);
}

.mkt-section {
  margin-top: 56px;
}

.mkt-section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mkt-section-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.mkt-steps {
  display: grid;
  gap: 16px;
  margin-bottom: 8px;
}

@media (min-width: 720px) {
  .mkt-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mkt-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.mkt-step-num {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 10px;
}

.mkt-step h3 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.mkt-step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.pricing-card.is-featured {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.12);
  position: relative;
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-base);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.pricing-name {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-price {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

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

.pricing-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--gold-muted);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.28);
  transition: background 0.18s, color 0.18s;
}

.pricing-cta:hover {
  background: rgba(201, 168, 76, 0.28);
  color: var(--text-primary);
}

.pricing-card.is-featured .pricing-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0900;
  border-color: transparent;
}

.pricing-card.is-featured .pricing-cta:hover {
  filter: brightness(1.06);
  color: #0a0900;
}

.mkt-cta-band {
  margin-top: 64px;
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--bg-card) 0%, #0a1510 100%);
  border: 1px solid var(--border-light);
  text-align: center;
}

.mkt-cta-band h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mkt-cta-band p {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.mkt-cta-band .mkt-actions {
  justify-content: center;
}

/* City hub + city SEO pages */
.city-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.city-card {
  display: block;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.city-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.city-card-name {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.city-card-meta {
  font-size: 13.5px;
  color: var(--text-muted);
}

.city-card-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.city-prose {
  max-width: 640px;
}

.city-prose p {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 14.5px;
}

.city-links a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.city-links a:hover {
  color: var(--gold-light);
}
