/* ════════════════════════════════════════════════════════
   11 PROS — MAIN STYLESHEET
   Covers: Reset · Tokens · Navbar · Mobile Drawer · Hero
════════════════════════════════════════════════════════ */


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


/* ─────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────── */
:root {
  /* ── Navbar ── */
  --bg-nav:             #141414;
  --bg-drawer:          #1C1C1C;
  --border-nav:         #2A2A2A;
  --text-primary:       #F5F5F5;
  --text-muted:         #9A9A9A;
  --text-dim:           #6B6B6B;
  --badge-bg:           #2E2E2E;
  --badge-border:       #3A3A3A;
  --badge-text:         #F5F5F5;
  --link-hover-bg:      #242424;
  --link-active:        #FFFFFF;
  --btn-outline-border: #3A3A3A;
  --btn-outline-hover:  #2E2E2E;
  --btn-primary-bg:     #F5F5F5;
  --btn-primary-text:   #141414;
  --btn-primary-hover:  #E0E0E0;
  --nav-h:              72px;

  /* ── Hero ── */
  --hero-bg:            #F5F5F5;
  --hero-surface:       #FFFFFF;
  --hero-border:        #E4E4E4;
  --hero-border-light:  #ECECEC;
  --text-dark:          #111111;
  --text-body:          #555555;
  --text-soft:          #999999;
  --text-faint:         #BBBBBB;
  --pill-bg:            #EBEBEB;
  --pill-border:        #E0E0E0;
  --pill-text:          #888888;
  --input-placeholder:  #AAAAAA;
  --divider-light:      #EFEFEF;
  --cta-dark-bg:        #141414;
  --cta-dark-text:      #F5F5F5;
  --cta-dark-hover:     #2A2A2A;
  --ghost-border:       #DEDEDE;
  --ghost-text:         #666666;
  --ghost-hover-bg:     #F0F0F0;

  /* ── Shared ── */
  --radius:     8px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --transition: 0.2s ease;
}


/* ─────────────────────────────────────────────────────
   BASE
───────────────────────────────────────────────────── */
html {
  overflow-x: hidden; /* prevent horizontal scroll on ALL pages */
}
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--hero-bg);
  color: var(--text-dark);
  padding-top: var(--nav-h);
  overflow-x: hidden;
  max-width: 100vw;
  /* Prevent layout jump when virtual keyboard appears on mobile */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* ═════════════════════════════════════════════════════
   NAVBAR
═════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-nav);
  will-change: box-shadow;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

/* ── Inner layout ─────────────────────────────────── */
.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Logo ─────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 180px;
}

@media (max-width: 900px) {
  .nav-logo img.nav-logo-img {
    height: 46px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .nav-logo img.nav-logo-img {
    height: 40px;
    max-width: 140px;
  }
}

/* Legacy badge/text — hidden now that we use PNG logos */
.logo-badge { display: none; }
.logo-text  { display: none; }

/* ── Desktop nav links ────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  display: block;
  padding: 6px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover  { color: var(--text-primary); background: var(--link-hover-bg); }
.nav-links a.active { color: var(--link-active);  background: var(--link-hover-bg); }

/* ── Desktop CTA buttons ──────────────────────────── */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--btn-outline-border);
  color: var(--text-muted);
}
.btn-outline:hover {
  background: var(--btn-outline-hover);
  border-color: #4A4A4A;
  color: var(--text-primary);
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1.5px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* ── Hamburger ────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: var(--link-hover-bg); }

.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═════════════════════════════════════════════════════
   MOBILE DRAWER
   Uses visibility + opacity (NOT display:none) so the
   slide-in CSS transition actually plays on mobile.
═════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;                          /* full screen below navbar */
  background: var(--bg-drawer);
  border-top: 1px solid var(--border-nav);
  padding: 20px 20px 48px;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;  /* smooth iOS scroll */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);

  /* Hidden state */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity    0.22s ease,
    transform  0.25s ease,
    visibility 0s linear 0.25s;       /* delay visibility until after fade */
}

/* Open state */
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity    0.22s ease,
    transform  0.25s ease,
    visibility 0s linear 0s;          /* show immediately on open */
}

/* ── Mobile links ─────────────────────────────────── */
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  min-height: 52px;                   /* proper mobile touch target */
  transition: color var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.mobile-links a:active { color: var(--text-primary); background: #2A2A2A; }
.mobile-links a.active { color: var(--link-active);  background: #242424; font-weight: 600; }

/* ── Mobile CTA buttons ───────────────────────────── */
.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-nav);
  padding-top: 20px;
}

.mobile-ctas .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  min-height: 52px;
}


/* ═════════════════════════════════════════════════════
   NAVBAR RESPONSIVE
═════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links a { padding: 6px 9px; font-size: 13px; }
}

@media (max-width: 900px) {
  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-ctas  { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0; }              /* logo flush left, hamburger flush right */
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
}


/* ═════════════════════════════════════════════════════
   HERO SECTION
═════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  background: #111111;
  padding: 40px 20px 52px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Subtle dot-grid texture on dark bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after { display: none; }

/* ── Inner wrapper ────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* ── Compact top row (headline + sub inline on desktop) */
.hero-top-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Headline ─────────────────────────────────────── */
.hero-headline {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.hero-headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.45);
}

/* ── Sub ──────────────────────────────────────────── */
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

/* ── Category tile grid ───────────────────────────── */
.hero-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hero-cat:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.hero-cat.is-active {
  background: rgba(255,255,255,.18);
  border-color: #ffffff;
  box-shadow: 0 0 0 1px #ffffff, 0 6px 20px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.hero-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 13px;
  flex-shrink: 0;
  transition: background .15s;
}
.hero-cat:hover .hero-cat-icon { background: rgba(255,255,255,.16); }
.hero-cat-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,.9);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-cat.is-active .hero-cat-icon {
  background: rgba(255,255,255,.25);
}
.hero-cat.is-active .hero-cat-icon svg { color: #ffffff; }
.hero-cat-name {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  text-align: center;
  line-height: 1.3;
  letter-spacing: .1px;
}
.hero-cat.is-active .hero-cat-name { color: #ffffff; font-weight: 700; }

/* ── Hero search bar ──────────────────────────────── */
.hero-search-bar {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 640px;
}
.hero-search-city {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 14px;
  min-height: 58px;
  transition: border-color .15s, background .15s;
}
.hero-search-city:focus-within {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
}
.hero-search-city svg {
  width: 17px; height: 17px;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.hero-search-city input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  caret-color: rgba(255,255,255,.6);
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
  min-width: 0;
}
.hero-search-city input::placeholder { color: rgba(255,255,255,.35); font-weight: 400; }
.hero-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  background: #ffffff;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 58px;
  flex-shrink: 0;
  transition: background .15s, transform .12s, box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  letter-spacing: -.2px;
  box-shadow: 0 4px 16px rgba(255,255,255,.15);
}
.hero-search-btn:hover { background: #f0f0f0; box-shadow: 0 6px 24px rgba(255,255,255,.2); }
.hero-search-btn:active { transform: scale(.97); }
.hero-search-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Keep .btn-ghost for other pages */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--ghost-border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ghost-text);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn-ghost:hover,
.btn-ghost:active { background: var(--ghost-hover-bg); color: var(--text-dark); }
.btn-ghost svg { width: 14px; height: 14px; opacity: 0.5; }

/* ═════════════════════════════════════════════════════
   HERO RESPONSIVE
═════════════════════════════════════════════════════ */

/* Tablet — 5 columns */
@media (max-width: 860px) {
  .hero-cats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 680px) {
  .hero { padding: 28px 14px 44px; }

  .hero-top-row {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .hero-headline {
    font-size: clamp(19px, 6vw, 26px);
    letter-spacing: -.5px;
    white-space: normal;
  }
  .hero-sub {
    font-size: 13px;
    white-space: normal;
  }

  /* 3 cols on mobile */
  .hero-cats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero-cat { padding: 14px 6px 12px; gap: 8px; }
  .hero-cat-icon { width: 42px; height: 42px; border-radius: 10px; }
  .hero-cat-icon svg { width: 24px; height: 24px; }
  .hero-cat-name { font-size: 10.5px; }

  .hero-search-bar {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }
  .hero-search-city { min-height: 52px; }
  .hero-search-btn { width: 100%; min-height: 52px; border-radius: 12px; padding: 0 20px; }
}

@media (max-width: 400px) {
  .hero { padding: 24px 12px 40px; }
  .hero-headline { font-size: 18px; }
  /* 3 cols still, just smaller */
  .hero-cats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .hero-cat { padding: 12px 4px 10px; gap: 6px; border-radius: 10px; }
  .hero-cat-icon { width: 36px; height: 36px; border-radius: 8px; }
  .hero-cat-icon svg { width: 20px; height: 20px; }
  .hero-cat-name { font-size: 9.5px; }
}


/* ═════════════════════════════════════════════════════
   FEATURED CATEGORIES SECTION
═════════════════════════════════════════════════════ */

/* ── Box-sizing reset (section scope) ────────────────── */
.categories *,
.categories *::before,
.categories *::after {
  box-sizing: border-box;
}

/* ── Design tokens for categories ───────────────────── */
:root {
  --cat-bg:              #EFEFEF;
  --cat-surface:         #FFFFFF;
  --cat-surface-hover:   #F7F7F7;
  --cat-border:          #E4E4E4;
  --cat-border-hover:    #D0D0D0;
  --cat-icon-bg:         #F2F2F2;
  --cat-icon-bg-hover:   #EAEAEA;
  --cat-icon-stroke:     #555555;
  --cat-icon-stroke-hover: #111111;
  --cat-name:            #1A1A1A;
  --cat-count:           #999999;
  --cat-arrow:           #CCCCCC;
  --cat-arrow-hover:     #555555;
  --cat-all-bg:          #141414;
  --cat-all-surface:     #1E1E1E;
  --cat-all-border:      #2A2A2A;
  --cat-all-icon-bg:     #2A2A2A;
  --cat-all-name:        #F5F5F5;
  --cat-all-count:       #888888;
  --cat-all-arrow:       #555555;
  --cat-all-arrow-hover: #F5F5F5;
  --section-title-color: #111111;
  --section-sub-color:   #777777;
  --eyebrow-color:       #AAAAAA;
  --footer-link:         #444444;
  --footer-link-hover:   #111111;
}

/* ── Section shell ───────────────────────────────────── */
.categories {
  position: relative;
  width: 100%;
  background: var(--cat-bg);
  padding: 80px 24px 88px;
  overflow: hidden;
}

/* Subtle top separator */
.categories::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cat-border) 20%,
    var(--cat-border) 80%,
    transparent 100%
  );
}

/* ── Inner wrapper ───────────────────────────────────── */
.categories-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Section header ──────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
  max-width: 560px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--eyebrow-color);
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--cat-border);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--section-title-color);
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 12px;
  word-break: break-word;
}

.section-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--section-sub-color);
  line-height: 1.65;
  word-break: break-word;
}

/* ── Categories grid ─────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

/* ── Category card ───────────────────────────────────── */
.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--cat-surface);
  border: 1px solid var(--cat-border);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  /* Animation start state */
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity      0.4s ease,
    transform    0.4s ease,
    background   0.18s ease,
    border-color 0.18s ease,
    box-shadow   0.18s ease;
}

.cat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cat-card:hover {
  background: var(--cat-surface-hover);
  border-color: var(--cat-border-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.cat-card.is-visible:hover  { transform: translateY(-2px); }
.cat-card.is-visible:active { transform: translateY(0); box-shadow: none; }

.cat-card:focus-visible {
  outline: 2px solid #888888;
  outline-offset: 2px;
}

/* ── Icon wrap ───────────────────────────────────────── */
.cat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cat-icon-bg);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.cat-card:hover .cat-icon-wrap { background: var(--cat-icon-bg-hover); }

.cat-icon {
  width: 24px;
  height: 24px;
  color: var(--cat-icon-stroke);
  flex-shrink: 0;
  transition: color 0.18s ease;
}

.cat-card:hover .cat-icon { color: var(--cat-icon-stroke-hover); }

/* ── Card body ───────────────────────────────────────── */
.cat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.cat-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cat-name);
  letter-spacing: -0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.cat-count {
  font-size: 11px;
  font-weight: 500;
  color: var(--cat-count);
  white-space: nowrap;
  line-height: 1.2;
}

/* ── Arrow ───────────────────────────────────────────── */
.cat-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--cat-arrow);
  transition: transform 0.18s ease, color 0.18s ease;
}

.cat-arrow svg { width: 14px; height: 14px; }

.cat-card:hover .cat-arrow {
  color: var(--cat-arrow-hover);
  transform: translateX(3px);
}

/* ── "View All" dark card ────────────────────────────── */
.cat-card--all {
  background: var(--cat-all-bg);
  border-color: var(--cat-all-border);
}

.cat-card--all:hover {
  background: var(--cat-all-surface);
  border-color: #3A3A3A;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cat-card--all .cat-icon-wrap  { background: var(--cat-all-icon-bg); }
.cat-card--all:hover .cat-icon-wrap { background: #333333; }
.cat-card--all .cat-icon       { color: #AAAAAA; }
.cat-card--all:hover .cat-icon { color: #F5F5F5; }
.cat-card--all .cat-name       { color: var(--cat-all-name); }
.cat-card--all .cat-count      { color: var(--cat-all-count); }
.cat-card--all .cat-arrow      { color: var(--cat-all-arrow); }
.cat-card--all:hover .cat-arrow { color: var(--cat-all-arrow-hover); }

/* ── Bottom CTA ──────────────────────────────────────── */
.categories-footer {
  margin-top: 36px;
  text-align: center;
}

.categories-footer-text {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--section-sub-color);
}

.categories-footer-link {
  font-weight: 600;
  color: var(--footer-link);
  text-decoration: none;
  border-bottom: 1px solid var(--cat-border);
  padding-bottom: 1px;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.categories-footer-link:hover {
  color: var(--footer-link-hover);
  border-color: #999999;
}

/* ── Responsive: 3 columns ≤ 1024px ─────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive: 2 columns ≤ 680px ──────────────────── */
@media (max-width: 680px) {
  .categories        { padding: 56px 16px 64px; }
  .section-header    { margin-bottom: 32px; }
  .section-sub       { font-size: 14px; }
  .categories-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card          { padding: 14px 12px; gap: 10px; border-radius: 10px; }
  .cat-icon-wrap     { width: 38px; height: 38px; border-radius: 8px; }
  .cat-icon          { width: 20px; height: 20px; }
  .cat-name          { font-size: 12.5px; }
  .cat-count         { font-size: 10.5px; }
}

/* ── Responsive: very small ≤ 400px ─────────────────── */
@media (max-width: 400px) {
  .categories        { padding: 44px 12px 52px; }
  .categories-grid   { gap: 8px; }
  .cat-card          { padding: 12px 10px; gap: 8px; }
  .cat-icon-wrap     { width: 34px; height: 34px; }
  .cat-icon          { width: 18px; height: 18px; }
  .cat-name          { font-size: 12px; }
  .cat-count         { font-size: 10px; }
  .cat-arrow         { display: none; }
}


/* ═════════════════════════════════════════════════════
   HOW IT WORKS SECTION
═════════════════════════════════════════════════════ */
.how-it-works {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  padding: 80px 24px 88px;
  overflow: hidden;
}

.hiw-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hiw-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #CCCCCC;
  margin-bottom: 16px;
}

.hiw-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: background 0.2s, box-shadow 0.2s;
}

.hiw-step-icon svg {
  width: 32px;
  height: 32px;
  color: #333333;
}

.hiw-step:hover .hiw-step-icon {
  background: #EEEEEE;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.hiw-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #777777;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 52px;
  color: #CCCCCC;
  width: 48px;
}

.hiw-connector svg { width: 40px; height: 12px; }

@media (max-width: 768px) {
  .hiw-steps { flex-direction: column; align-items: center; gap: 8px; }
  .hiw-connector { margin-top: 0; transform: rotate(90deg); }
  .hiw-step { max-width: 320px; padding: 0 16px; }
}


/* ═════════════════════════════════════════════════════
   WHY CHOOSE 11 PROS SECTION
═════════════════════════════════════════════════════ */
.why-us {
  width: 100%;
  background: #F5F5F5;
  padding: 80px 24px 88px;
  position: relative;
}

.why-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s ease;
}

.why-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F2F2F2;
  border-radius: 12px;
  margin-bottom: 16px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: #333333;
}

.why-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.why-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #777777;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-us { padding: 56px 16px 64px; }
}


/* ═════════════════════════════════════════════════════
   LISTINGS PREVIEW SECTION
═════════════════════════════════════════════════════ */
.listings {
  width: 100%;
  background: #FFFFFF;
  padding: 80px 24px 88px;
}

.listings-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Filter tabs */
.listings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 8px 18px;
  background: #F2F2F2;
  border: 1px solid #E4E4E4;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.tab-btn:hover {
  background: #EAEAEA;
  color: #111111;
}

.tab-btn--active {
  background: #141414;
  border-color: #141414;
  color: #FFFFFF;
}

/* Grid */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Pro Card */
.pro-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s ease;
}

.pro-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pro-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

/* Card header */
.pro-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar */
.pro-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-avatar span {
  font-size: 13px;
  font-weight: 800;
  color: #555555;
  letter-spacing: 0.5px;
}

.pro-avatar--blue   { background: #DBEAFE; }
.pro-avatar--blue span   { color: #1D4ED8; }
.pro-avatar--green  { background: #DCFCE7; }
.pro-avatar--green span  { color: #16A34A; }
.pro-avatar--orange { background: #FEF3C7; }
.pro-avatar--orange span { color: #D97706; }
.pro-avatar--purple { background: #EDE9FE; }
.pro-avatar--purple span { color: #7C3AED; }
.pro-avatar--teal   { background: #CCFBF1; }
.pro-avatar--teal span   { color: #0F766E; }

/* Meta */
.pro-meta {
  flex: 1;
  min-width: 0;
}

.pro-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Clickable company name link */
.pro-name-link {
  text-decoration: none;
  display: block;
}
.pro-name-link:hover .pro-name {
  color: #374151;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pro-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999999;
  margin-top: 2px;
}

.pro-location svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* Badges */
.pro-badge {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.pro-badge--top {
  background: #FEF9C3;
  color: #A16207;
  border: 1px solid #FDE68A;
}

.pro-badge--verified {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.pro-badge--new {
  background: #EDE9FE;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

/* Rating */
.pro-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pro-stars {
  font-size: 13px;
  color: #F59E0B;
  letter-spacing: 1px;
}

.pro-rating-num {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
}

.pro-rating-count {
  font-size: 12px;
  color: #AAAAAA;
}

/* Specialties */
.pro-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.specialty-tag {
  padding: 3px 10px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  color: #555555;
  white-space: nowrap;
}

/* Description */
.pro-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #666666;
  flex: 1;
}

/* Action buttons */
.pro-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.pro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.pro-btn--primary {
  flex: 1;
  background: #141414;
  color: #F5F5F5;
  border: 1.5px solid #141414;
}

.pro-btn--primary:hover {
  background: #2A2A2A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pro-btn--call {
  background: transparent;
  color: #333333;
  border: 1.5px solid #E4E4E4;
}

.pro-btn--call:hover {
  background: #F5F5F5;
  border-color: #CCCCCC;
}

.pro-btn--call svg {
  width: 13px;
  height: 13px;
}

/* Hidden card (filtered out) */
.pro-card.is-hidden {
  display: none;
}

.listings-footer {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1000px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .listings-grid { grid-template-columns: 1fr; }
  .listings { padding: 56px 16px 64px; }
  .pro-btn { padding: 9px 12px; font-size: 12.5px; }
}


/* ═════════════════════════════════════════════════════
   FINAL CTA SECTION
═════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  width: 100%;
  background: #111111;
  padding: 88px 24px 96px;
  overflow: hidden;
  text-align: center;
}

/* Radial glow */
.final-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #AAAAAA;
  margin-bottom: 24px;
}

.final-cta-badge svg {
  width: 14px;
  height: 14px;
  color: #F59E0B;
}

.final-cta-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #F5F5F5;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.final-cta-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px #555555;
}

.final-cta-sub {
  font-size: 16px;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.final-cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 40px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #AAAAAA;
}

.cta-perk svg {
  width: 15px;
  height: 15px;
  color: #4ADE80;
  flex-shrink: 0;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn--primary {
  background: #F5F5F5;
  color: #111111;
  border: 1.5px solid transparent;
}

.cta-btn--primary:hover {
  background: #FFFFFF;
  box-shadow: 0 6px 24px rgba(255,255,255,0.12);
}

.cta-btn--ghost {
  background: transparent;
  color: #888888;
  border: 1.5px solid #2A2A2A;
}

.cta-btn--ghost:hover {
  border-color: #444444;
  color: #CCCCCC;
}

@media (max-width: 560px) {
  .final-cta { padding: 64px 16px 72px; }
  .final-cta-actions { flex-direction: column; width: 100%; }
  .cta-btn { width: 100%; }
}


/* ═════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background: #0E0E0E;
  border-top: 1px solid #1E1E1E;
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top row */
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E1E1E;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo upload area */
.footer-logo-wrap {
  position: relative;
  display: inline-block;
}

.footer-logo-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.footer-logo-default {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 36px;
  max-width: 160px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: #444444;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-logo-hint svg {
  width: 11px;
  height: 11px;
}

.footer-logo-label:hover .footer-logo-hint {
  opacity: 1;
}

.footer-logo-input {
  display: none;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: #666666;
  max-width: 220px;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  color: #666666;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.social-link:hover {
  background: #252525;
  border-color: #3A3A3A;
  color: #BBBBBB;
}

.social-link svg {
  width: 15px;
  height: 15px;
}

/* Nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: #666666;
  text-decoration: none;
  transition: color 0.16s;
}

.footer-col a:hover { color: #BBBBBB; }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit {
  font-size: 12.5px;
  color: #444444;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .site-footer { padding: 48px 16px 0; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
