/* Singh Pages — landing.css
   Color palette:
     --navy:    #0f172a  (dark bg)
     --slate:   #1e293b  (text)
     --muted:   #64748b  (secondary text)
     --border:  #e2e8f0
     --surface: #f8fafc
     --white:   #ffffff
     --amber:   #f59e0b  (primary accent)
     --amber-d: #d97706
     --emerald: #10b981  (success)
     --indigo:  #6366f1  (secondary accent)
*/

:root {
  --navy: #0f172a;
  --slate: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --amber: #f59e0b;
  --amber-d: #d97706;
  --emerald: #10b981;
  --indigo: #6366f1;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 4px 20px rgba(15,23,42,.1);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 24px 60px rgba(15,23,42,.16);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Reveal animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

.header.is-scrolled {
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0,0,0,.15);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.logo__text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo__accent { color: var(--amber); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--amber);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--amber-d);
  transform: translateY(-1px);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(4px);
  z-index: 200;
}

.mobile-nav.is-open { display: block; }

.mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--white);
  padding: 24px;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  animation: slideIn .3s cubic-bezier(.16,1,.3,1);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-nav__close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--slate);
  margin-bottom: 16px;
}

.mobile-nav__panel a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.mobile-nav__panel a:hover { color: var(--amber); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 40px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(99,102,241,.15), transparent),
              radial-gradient(ellipse 60% 50% at 80% 70%, rgba(245,158,11,.1), transparent);
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: var(--indigo);
  top: -100px;
  right: 10%;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: var(--amber);
  bottom: -50px;
  left: 5%;
  animation-delay: 3s;
}

@keyframes glowPulse {
  0% { opacity: 0.25; transform: scale(1); }
  100% { opacity: 0.45; transform: scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(245,158,11,.12);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(245,158,11,.2);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--amber), #fbbf24, var(--amber-d));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 560px;
}

/* Search bar */
.search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.1);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

.search__fields {
  display: flex;
  gap: 0;
}

.search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.search__field svg { color: var(--muted); flex-shrink: 0; }

.search__field input {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  color: var(--slate);
  background: transparent;
}

.search__field input::placeholder { color: var(--muted); }

.search__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
}

.search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.search__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

.hero__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.hero__tags a {
  padding: 4px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.hero__tags a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

/* Stats strip */
.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 780px;
  margin: 56px auto 0;
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(8px);
}

.stat__number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ─── Section shared ─── */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-d);
  margin-bottom: 12px;
}

.section-tag--light { color: rgba(255,255,255,.7); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-title em {
  font-style: normal;
  color: var(--amber-d);
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-desc {
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Categories ─── */
.categories {
  padding: 96px 0;
  background: var(--surface);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.cat-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(245,158,11,.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-d);
  transition: background .25s;
}

.cat-card:hover .cat-card__icon {
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--white);
}

.cat-card__icon svg { width: 28px; height: 28px; }

.cat-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}

.cat-card__count {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Claim ─── */
.claim {
  padding: 96px 0;
}

.claim__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.claim__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.claim__card {
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.claim__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.claim__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
}

.claim__card-bar {
  height: 10px;
  background: var(--surface);
  border-radius: 5px;
  margin-bottom: 8px;
}

.claim__card-bar--sm { height: 8px; opacity: 0.6; }

.claim__card-body { margin-bottom: 16px; }

.claim__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.claim__card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(16,185,129,.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.claim__card-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 1px;
}

.claim__float {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-d);
  animation: float 4s ease-in-out infinite;
}

.claim__float--1 { top: 10%; left: 5%; animation-delay: 0s; }
.claim__float--2 { bottom: 15%; right: 5%; color: var(--emerald); animation-delay: 1.3s; }
.claim__float--3 { top: 55%; left: 0%; color: var(--indigo); animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.claim__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.claim__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.claim__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
}

.claim__perks svg { color: var(--emerald); flex-shrink: 0; }

.claim__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.claim__phone {
  font-size: 14px;
  color: var(--muted);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn--lg { padding: 14px 32px; font-size: 16px; }

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--navy);
  border-color: transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.3);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: transparent;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.btn--outline {
  background: transparent;
  color: var(--amber-d);
  border-color: var(--amber-d);
}

.btn--outline:hover {
  background: rgba(245,158,11,.08);
  transform: translateY(-2px);
}

/* ─── Q&A ─── */
.qa {
  padding: 0;
}

.qa__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.qa__content {
  background: linear-gradient(135deg, var(--navy), #1a2640);
  color: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qa__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.qa__title em {
  font-style: italic;
  color: var(--amber);
}

.qa__desc {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 0 24px;
}

.qa__examples {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.qa__examples li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255,255,255,.5);
  font-style: italic;
}

.qa__examples li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

.qa__visual {
  position: relative;
  overflow: hidden;
}

.qa__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.qa__bubble {
  position: absolute;
  padding: 10px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}

.qa__bubble--1 {
  background: var(--white);
  color: var(--slate);
  top: 20%;
  left: 10%;
  border-bottom-left-radius: 4px;
}

.qa__bubble--2 {
  background: var(--emerald);
  color: var(--white);
  bottom: 25%;
  right: 10%;
  border-bottom-right-radius: 4px;
  animation-delay: 2s;
}

/* ─── Advertise ─── */
.advertise {
  padding: 96px 0;
  background: var(--surface);
}

.advertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.advertise__visual { position: relative; }

.advertise__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.advertise__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--indigo), #8b5cf6);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(99,102,241,.3);
  animation: float 4s ease-in-out infinite;
}

.advertise__badge-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.advertise__badge span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

.advertise__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.advertise__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.advertise__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.advertise__feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(99,102,241,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}

.advertise__feature strong {
  display: block;
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 2px;
}

.advertise__feature p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ─── App ─── */
.app {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy), #1a2640);
  color: var(--white);
  overflow: hidden;
}

.app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.app__desc {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 0 28px;
}

.app__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.store-badge:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.store-badge span { font-size: 10px; opacity: 0.7; }
.store-badge strong { font-size: 14px; display: block; }

.app__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.app__stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
}

.app__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.app__phone {
  width: 260px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.08);
}

.app__screen {
  background: var(--white);
  border-radius: 26px;
  padding: 16px;
  min-height: 480px;
}

.app__screen-header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.app__screen-bar {
  width: 80px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
}

.app__screen-search {
  margin-bottom: 16px;
}

.app__screen-pill {
  height: 40px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.app__screen-map {
  height: 180px;
  background: linear-gradient(180deg, #e0f2fe, #bae6fd);
  border-radius: 12px;
  margin-bottom: 16px;
}

.app__screen-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app__screen-card {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border-radius: 10px;
}

.app__screen-card div:first-child {
  width: 44px;
  height: 44px;
  background: var(--border);
  border-radius: 10px;
  flex-shrink: 0;
}

.app__screen-card div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app__screen-card div:last-child::before {
  content: "";
  height: 8px;
  width: 70%;
  background: var(--border);
  border-radius: 4px;
}

.app__screen-card div:last-child::after {
  content: "";
  height: 6px;
  width: 50%;
  background: var(--border);
  border-radius: 3px;
  opacity: 0.5;
}

.app__notif {
  position: absolute;
  padding: 10px 18px;
  background: var(--white);
  color: var(--slate);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}

.app__notif--1 { top: 15%; right: 0; }
.app__notif--2 { bottom: 20%; left: 0; animation-delay: 2s; }

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 2fr;
  gap: 40px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo--footer .logo__icon {
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.logo--footer .logo__text { font-size: 18px; }

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin: 12px 0 0;
  max-width: 240px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.9);
  margin: 0 0 16px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li { margin-bottom: 10px; }

.footer__list a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer__list a:hover { color: var(--amber); }

.footer__cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}

.footer__legal a:hover { color: var(--amber); }

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--wide { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .hero { padding: 100px 20px 32px; min-height: auto; }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }

  .search__fields { flex-direction: column; }
  .search__divider { width: auto; height: 1px; margin: 0 12px; }

  .claim__inner,
  .advertise__inner,
  .app__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .claim__visual { order: -1; }

  .qa__inner { grid-template-columns: 1fr; }
  .qa__content { padding: 56px 32px; }
  .qa__image { min-height: 300px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Autocomplete dropdowns (shared) ─── */
.search__field--loc,
.search__field--biz { position: relative; }

.loc-dropdown,
.biz-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.loc-dropdown.is-open,
.biz-dropdown.is-open { display: block; }

.loc-dropdown__item,
.biz-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--slate);
  transition: background .15s;
}

.loc-dropdown__item:hover,
.biz-dropdown__item:hover { background: var(--surface); }

.loc-dropdown__item svg,
.biz-dropdown__item svg { color: var(--amber); flex-shrink: 0; }

.biz-dropdown__item strong { font-weight: 400; }
.biz-dropdown__item b { color: var(--amber-d); font-weight: 700; }

/* ─── Business cards (used on landing) ─── */
.bcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}

.bcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bcard--sponsored { border-color: rgba(99,102,241,.3); }

.bcard__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bcard__body { padding: 20px; }
.bcard__top { margin-bottom: 8px; }

.bcard__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate);
  margin: 0 0 4px;
  line-height: 1.3;
}

.bcard__cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--amber-d);
}

.bcard__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
}

.bcard__stars { color: var(--amber); letter-spacing: 1px; }
.bcard__rating { font-weight: 700; color: var(--slate); }
.bcard__reviews { color: var(--muted); }

.bcard__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.bcard__location svg { color: var(--amber); flex-shrink: 0; }

.bcard__actions { display: flex; gap: 8px; }

.bcard__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border: none;
}

.bcard__btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-d));
  color: var(--navy);
}

.bcard__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.25);
}

.bcard__btn--outline {
  background: var(--white);
  color: var(--slate);
  border: 1px solid var(--border);
}

.bcard__btn--outline:hover { border-color: var(--amber); }

/* ─── Recommended & Popular sections ─── */
.recommended { padding: 96px 0; }
.popular { padding: 96px 0; background: var(--surface); }

@media (max-width: 800px) {
  .bcard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 20px 12px; }
  .hero__title { font-size: 2.2rem; }
  .footer__cities { grid-template-columns: 1fr 1fr; }
  .claim__card { width: 100%; }
}
