/* ================================================
   INNOVATION EXCHANGE MARKET — MAIN STYLESHEET
   ================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --blue-900: #0D2040;
  --blue-800: #1A3A6E;
  --blue-700: #1E4D9A;
  --blue-600: #2563C4;
  --blue-100: #E8EFFE;
  --blue-50:  #F0F4FC;

  --gold-600: #D4890A;
  --gold-500: #F0A500;
  --gold-400: #F5BF3C;
  --gold-100: #FEF3D4;

  --teal-700: #007A6E;
  --teal-500: #00A896;
  --teal-400: #1FC8B8;
  --teal-100: #D4F4F1;

  --red-500:  #E53E3E;
  --green-500:#38A169;
  --purple-600:#6B46C1;

  --gray-900: #0F1923;
  --gray-800: #1A2535;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --white: #FFFFFF;
  --bg:    #F8FAFC;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.08);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;

  --transition: all .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .38s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--gray-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 32, 64, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(13, 32, 64, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.navbar {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 8px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-500), var(--teal-500));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; letter-spacing: -.3px; }
.logo-text span   { display: block; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.8);
  font-size: 13.5px; font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link .chevron { font-size: 10px; opacity: .6; transition: var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px; color: var(--gray-700);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--blue-50); color: var(--blue-800); }
.dropdown a .dd-icon { font-size: 16px; width: 22px; text-align: center; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 4px 6px; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  padding: 3px;
}
.lang-btn {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: .3px;
}
.lang-btn.active, .lang-btn:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.btn-nav-login {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.btn-nav-login:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-nav-post {
  font-size: 13.5px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--gray-900);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-post:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(240,165,0,.4); }

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; height: 28px;
  justify-content: center;
  margin-left: auto;
}
.burger span {
  display: block; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-800) 50%, #1A3060 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid {
  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-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--blue-700);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--teal-500);
  bottom: -100px; left: 10%;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--gold-500);
  top: 20%; right: 30%;
  opacity: .08;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--teal-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--gray-900);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(240,165,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,.45);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--blue-900);
  background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
  margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-main-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,168,150,.2);
  border: 1px solid rgba(0,168,150,.3);
  color: var(--teal-400);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero-card-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }

.hero-card-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.hero-card-meta { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.hero-card-price {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px;
}
.price-label { font-size: 12px; color: rgba(255,255,255,.5); }
.price-value { font-size: 28px; font-weight: 800; color: var(--gold-400); }
.price-type { font-size: 12px; color: var(--teal-400); margin-bottom: 4px; }
.hero-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .3px;
}
.tag-blue   { background: rgba(37,99,196,.25); color: #93C5FD; }
.tag-gold   { background: rgba(240,165,0,.2); color: var(--gold-400); }
.tag-teal   { background: rgba(0,168,150,.2); color: var(--teal-400); }
.tag-purple { background: rgba(107,70,193,.25); color: #C4B5FD; }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 13px;
}
.float-card-1 { top: -24px; right: -20px; min-width: 160px; }
.float-card-2 { bottom: -20px; left: -24px; min-width: 180px; }
.float-stat { font-size: 22px; font-weight: 800; color: var(--gold-400); margin-bottom: 2px; }
.float-label { font-size: 12px; color: rgba(255,255,255,.5); }

/* Stats bar */
.hero-stats {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 32px 0;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stat {
  background: rgba(255,255,255,.04);
  padding: 24px 28px;
  text-align: center;
}
.hero-stat-value {
  font-size: 32px; font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-value span { color: var(--gold-400); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.5); }

/* ================================================
   MARQUEE TICKER
   ================================================ */
.ticker-bar {
  background: var(--gray-900);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.6);
  flex-shrink: 0;
}
.ticker-item .badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.badge-sale     { background: rgba(240,165,0,.2); color: var(--gold-400); }
.badge-license  { background: rgba(0,168,150,.2); color: var(--teal-400); }
.badge-new      { background: rgba(56,161,105,.2); color: #68D391; }
.badge-auction  { background: rgba(229,62,62,.2); color: #FC8181; }
.ticker-sep { color: rgba(255,255,255,.2); }
@keyframes ticker { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--teal-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--teal-500);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--blue-800); }
.section-title .gold   { color: var(--gold-600); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works { background: var(--white); }

.hiw-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.hiw-module {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.hiw-module::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.hiw-module.module-1::before { background: linear-gradient(90deg, var(--blue-700), var(--blue-600)); }
.hiw-module.module-2::before { background: linear-gradient(90deg, var(--teal-700), var(--teal-500)); }

.module-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.module-1 .module-badge { background: var(--blue-100); color: var(--blue-800); }
.module-2 .module-badge { background: var(--teal-100); color: var(--teal-700); }

.module-title {
  font-size: 22px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.module-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }
.module-steps { display: flex; flex-direction: column; gap: 14px; }
.module-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.module-1 .step-num { background: var(--blue-100); color: var(--blue-800); }
.module-2 .step-num { background: var(--teal-100); color: var(--teal-700); }
.step-text { font-size: 14px; color: var(--gray-700); padding-top: 4px; line-height: 1.5; }
.step-text strong { color: var(--gray-900); }

/* ================================================
   MARKETPLACE / LISTINGS
   ================================================ */
.marketplace-section { background: var(--bg); }

.filter-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-search {
  flex: 1; min-width: 260px;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
}
.filter-search input {
  flex: 1; border: none;
  font-size: 14px; color: var(--gray-700);
  background: transparent;
}
.filter-search input::placeholder { color: var(--gray-400); }
.search-icon { color: var(--gray-400); font-size: 16px; }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.chip:hover, .chip.active {
  border-color: var(--blue-700);
  background: var(--blue-50);
  color: var(--blue-800);
}
.chip.active { font-weight: 600; }

/* Listing Grid */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.card-header {
  padding: 20px 20px 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.icon-tech   { background: var(--blue-50); }
.icon-green  { background: var(--teal-100); }
.icon-health { background: #FFF0F3; }
.icon-energy { background: #FFFBEB; }
.icon-ai     { background: #F5F3FF; }
.icon-agri   { background: #F0FDF4; }

.card-type-badge {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.type-sale    { background: var(--gold-100); color: var(--gold-600); }
.type-license { background: var(--teal-100); color: var(--teal-700); }
.type-jv      { background: var(--blue-100); color: var(--blue-800); }
.type-auction { background: #FFF5F5; color: var(--red-500); }
.type-collab  { background: #F5F3FF; color: var(--purple-600); }

.card-body { padding: 0 20px 16px; flex: 1; }
.card-title {
  font-size: 15.5px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.card-desc {
  font-size: 13px; color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.card-meta-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--gray-500);
}
.card-meta-row .icon { font-size: 13px; width: 16px; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.card-price {
  font-size: 20px; font-weight: 800;
  color: var(--gray-900);
}
.card-price small {
  font-size: 11px; font-weight: 500;
  color: var(--gray-400);
  display: block;
}
.card-price.negotiable { font-size: 15px; color: var(--gray-600); }
.btn-card {
  font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-card-primary {
  background: var(--blue-800);
  color: var(--white);
}
.btn-card-primary:hover { background: var(--blue-700); }
.btn-card-outline {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}
.btn-card-outline:hover { border-color: var(--blue-700); color: var(--blue-800); background: var(--blue-50); }

/* Verified badge */
.verified-seal {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--green-500);
}
.verified-seal::before { content: '✓'; font-weight: 900; }

/* ================================================
   VERIFICATION TIERS
   ================================================ */
.verification-section { background: var(--white); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}
.tier-card.tier-basic   { background: var(--gray-50); border-color: var(--gray-200); }
.tier-card.tier-standard { background: var(--blue-50); border-color: var(--blue-100); }
.tier-card.tier-advanced { background: linear-gradient(135deg, var(--blue-50), #EDF5F4); border-color: var(--teal-400); }
.tier-card.tier-advanced::before {
  content: 'RECOMMENDED';
  position: absolute; top: 16px; right: -24px;
  background: var(--teal-500); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 32px;
  transform: rotate(45deg);
}

.tier-icon {
  font-size: 36px; margin-bottom: 16px;
}
.tier-name {
  font-size: 20px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.tier-price {
  font-size: 28px; font-weight: 800;
  margin-bottom: 20px;
}
.tier-basic .tier-price    { color: var(--gray-700); }
.tier-standard .tier-price { color: var(--blue-800); }
.tier-advanced .tier-price { color: var(--teal-700); }

.tier-features { display: flex; flex-direction: column; gap: 10px; }
.tier-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-600);
}
.tier-feature .check { color: var(--teal-500); font-weight: 900; flex-shrink: 0; }
.tier-feature .cross { color: var(--gray-300); flex-shrink: 0; }

/* ================================================
   SERVICES
   ================================================ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card.s-blue::after    { background: var(--blue-700); }
.service-card.s-teal::after    { background: var(--teal-500); }
.service-card.s-gold::after    { background: var(--gold-500); }
.service-card.s-purple::after  { background: var(--purple-600); }
.service-card.s-green::after   { background: var(--green-500); }
.service-card.s-red::after     { background: var(--red-500); }
.service-card:hover::after     { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.s-blue .service-icon    { background: var(--blue-50); }
.s-teal .service-icon    { background: var(--teal-100); }
.s-gold .service-icon    { background: var(--gold-100); }
.s-purple .service-icon  { background: #F5F3FF; }
.s-green .service-icon   { background: #F0FDF4; }
.s-red .service-icon     { background: #FFF5F5; }

.service-title {
  font-size: 17px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--blue-700);
  transition: var(--transition);
}
.s-teal .service-link   { color: var(--teal-700); }
.s-gold .service-link   { color: var(--gold-600); }
.service-link:hover { gap: 10px; }

/* ================================================
   STATS / METRICS
   ================================================ */
.metrics-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}
.metrics-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.metrics-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.metric-item { text-align: center; }
.metric-value {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-value .unit { color: var(--gold-400); }
.metric-label { font-size: 14px; color: rgba(255,255,255,.5); }
.metric-sublabel { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 4px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  color: var(--gray-200);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--gold-500); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14.5px; color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.author-role { font-size: 12px; color: var(--gray-500); }

/* ================================================
   PARTNERS
   ================================================ */
.partners-section { background: var(--bg); padding: 56px 0; }

.partners-title {
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logo {
  font-size: 15px; font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.partner-logo:hover { color: var(--gray-500); }
.partner-logo span { font-size: 11px; font-weight: 400; display: block; text-align: center; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, #1A3060 50%, var(--teal-700) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,168,150,.15) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 480px; }
.cta-buttons { display: flex; gap: 14px; flex-shrink: 0; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-500);
  color: var(--gray-900);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-cta-primary:hover { background: var(--gold-400); transform: translateY(-2px); }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,.12); color: var(--white); }

.footer-col-title {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.65); }
.footer-lang { display: flex; gap: 6px; }
.footer-lang button {
  font-size: 12px; color: rgba(255,255,255,.35);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.footer-lang button.active, .footer-lang button:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}

/* ================================================
   MARKETPLACE PAGE
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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: 50px 50px;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-sep { opacity: .4; }

.marketplace-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 24px;
  position: sticky;
  top: 86px;
}
.sidebar-section { margin-bottom: 28px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-title {
  font-size: 12px; font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sidebar-options { display: flex; flex-direction: column; gap: 8px; }
.sidebar-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px; color: var(--gray-700);
}
.sidebar-option:hover, .sidebar-option.active {
  background: var(--blue-50);
  color: var(--blue-800);
}
.sidebar-option.active { font-weight: 600; }
.sidebar-count {
  font-size: 12px; font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.sidebar-option.active .sidebar-count {
  background: var(--blue-100);
  color: var(--blue-700);
}
.range-slider { padding: 4px 0; }
.range-input {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: var(--gray-200);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue-800);
  cursor: pointer;
}
.range-labels {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray-500);
  margin-top: 8px;
}

.listings-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.listings-count { font-size: 14px; color: var(--gray-500); }
.listings-count strong { color: var(--gray-900); }
.sort-select {
  font-size: 13.5px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 7px 32px 7px 12px;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gray-400);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  color: var(--blue-800);
}

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-600);
  transition: var(--transition);
  background: var(--white);
}
.page-btn:hover, .page-btn.active {
  background: var(--blue-800);
  border-color: var(--blue-800);
  color: var(--white);
}
.page-btn.prev, .page-btn.next { width: auto; padding: 0 14px; gap: 6px; font-weight: 600; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-mission {
  background: var(--white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-visual {
  position: relative;
  height: 420px;
}
.mission-map {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-50), var(--teal-100));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.mission-map::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--blue-200) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: .5;
}
.mission-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
}
.mission-badge-1 { top: 20px; right: -20px; }
.mission-badge-2 { bottom: 40px; left: -20px; }
.mission-badge .badge-val { font-size: 20px; font-weight: 800; color: var(--blue-800); }

.mission-content h2 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.7px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.mission-content p {
  font-size: 16px; color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.value-item {
  display: flex; gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.value-icon { font-size: 22px; flex-shrink: 0; }
.value-label { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.value-desc  { font-size: 12.5px; color: var(--gray-500); }

/* Team */
.team-section { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: var(--white);
}
.team-name { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-role { font-size: 13.5px; color: var(--gray-500); margin-bottom: 16px; }
.team-bio  { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ================================================
   SERVICES PAGE
   ================================================ */
.broker-workflow {
  background: var(--white);
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 32px;
}
.workflow-step:last-child { padding-bottom: 0; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-1 .step-circle  { background: var(--blue-800); }
.step-2 .step-circle  { background: var(--blue-700); }
.step-3 .step-circle  { background: var(--teal-700); }
.step-4 .step-circle  { background: var(--teal-500); }
.step-5 .step-circle  { background: var(--gold-600); }
.step-6 .step-circle  { background: var(--gold-500); }
.step-7 .step-circle  { background: var(--green-500); }
.step-8 .step-circle  { background: var(--purple-600); }

.workflow-content { padding-top: 10px; }
.workflow-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.workflow-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.d-flex      { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-blue {
  background: var(--blue-800);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-700); transform: translateY(-1px); }
.btn-teal {
  background: var(--teal-500);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-700); }
.btn-outline {
  border: 1.5px solid var(--blue-800);
  color: var(--blue-800);
}
.btn-outline:hover { background: var(--blue-800); color: var(--white); }

.show-more-btn {
  display: flex; align-items: center; justify-content: center;
  margin-top: 48px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out infinite 1s; }

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-modules { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .marketplace-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-nav-login, .nav-right .lang-selector { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; }
  .cta-buttons { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .partners-logos { gap: 28px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-chips { gap: 6px; }
  .listings-grid { grid-template-columns: 1fr; }
}

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 999;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mobile-menu-links a:hover { color: var(--white); }
.mobile-menu-btns { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.btn-mobile-primary {
  background: var(--gold-500);
  color: var(--gray-900);
  font-size: 16px; font-weight: 700;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}
.btn-mobile-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 16px; font-weight: 600;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
}
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
  cursor: pointer;
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-700); }
