/* =========================================================
   RentersQuest — Premium Global Stylesheet v2.0
   Design Language: Refined Luxury / Enterprise SaaS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --orange:        #E8541E;
  --orange-light:  #FF7A45;
  --orange-dark:   #C43E0A;
  --orange-glow:   rgba(232, 84, 30, 0.18);
  --black:         #080B0F;
  --off-black:     #0F1217;
  --dark:          #161B22;
  --dark-2:        #1C222B;
  --gray-dark:     #3A4250;
  --gray:          #7A8694;
  --gray-light:    #B0BAC6;
  --white:         #FFFFFF;
  --cream:         #FAFAF8;
  --border:        #E2E6EC;
  --border-dark:   rgba(255,255,255,0.08);
  --font-display:  'Inter', sans-serif;
  --font-body:     'Inter', sans-serif;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow:        0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-orange: 0 8px 32px rgba(232, 84, 30, 0.3), 0 2px 8px rgba(232, 84, 30, 0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232, 84, 30, 0.5);
  border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 5%;
  transition: all 0.5s var(--ease);
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease);
}
nav.scrolled::before {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 1px solid rgba(226, 230, 236, 0.6);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1440px; margin: 0 auto;
  position: relative; z-index: 1;
}
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--black); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-dot {
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%; display: inline-block;
  box-shadow: 0 0 16px rgba(232, 84, 30, 0.5);
  animation: pulse-dot 3s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); box-shadow: 0 0 16px rgba(232,84,30,0.5); }
  50%      { transform: scale(1.15); box-shadow: 0 0 24px rgba(232,84,30,0.7); }
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; color: rgba(8,11,15,0.75);
  text-decoration: none; font-weight: 500; letter-spacing: -0.01em;
  transition: all 0.2s; padding: 10px 16px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--black); background: rgba(0,0,0,0.04); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 4px; padding: 16px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease); z-index: 1000;
  min-width: 580px;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  color: var(--gray-dark); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: all 0.2s; border-radius: var(--radius-sm);
}
.dropdown-item:hover {
  color: var(--orange);
  background: linear-gradient(135deg, rgba(232,84,30,0.07), rgba(232,84,30,0.03));
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--black); background: transparent; padding: 10px 20px;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 1.5px solid rgba(0,0,0,0.12);
  text-decoration: none; transition: all 0.2s var(--ease);
  letter-spacing: -0.01em;
}
.nav-login:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.03);
}
.nav-cta {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: white;
  background: var(--black);
  padding: 11px 24px;
  border-radius: var(--radius-sm); cursor: pointer; border: none;
  text-decoration: none; letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::after { opacity: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* =========================================================
   COMMON SECTION STYLES
   ========================================================= */
section { padding: 140px 5%; }
.section-wrap { max-width: 1440px; margin: 0 auto; }

.section-label {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5vw, 68px); color: var(--black);
  line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 17px; color: var(--gray); line-height: 1.7;
  font-weight: 400; max-width: 580px; letter-spacing: -0.01em;
}
.section-header { margin-bottom: 80px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: white; background: var(--orange);
  padding: 16px 36px; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-orange);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(232,84,30,0.4); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--black); background: transparent;
  padding: 15px 32px; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,0.15); cursor: pointer;
  letter-spacing: -0.01em; transition: all 0.25s var(--ease);
}
.btn-secondary:hover {
  border-color: var(--black); background: rgba(0,0,0,0.03);
  transform: translateY(-1px);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden;
  background: var(--black);
}
.hero-video-container {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover; object-position: center;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,15,0.78) 0%,
    rgba(8,11,15,0.60) 40%,
    rgba(8,11,15,0.80) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
  margin: 0 auto; padding: 0 24px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 8px 18px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
h1.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7.5vw, 96px);
  color: var(--white); line-height: 0.95;
  letter-spacing: -0.05em; margin-bottom: 28px;
}
h1.hero-title em { color: var(--orange); font-style: normal; display: block; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 540px; margin: 0 auto 40px;
  font-weight: 400; letter-spacing: -0.01em;
}
.hero-search {
  max-width: 760px; margin: 0 auto 48px;
}
.search-container {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.15);
  padding: 8px; display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.search-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-glow); border-radius: var(--radius-sm);
  margin-left: 4px;
  font-size: 18px;
}
.search-container input {
  flex: 1; border: none; outline: none;
  padding: 16px 18px; font-size: 16px;
  font-family: var(--font-body); color: var(--black);
  background: transparent; font-weight: 500;
  letter-spacing: -0.01em;
}
.search-container input::placeholder { color: rgba(122,134,148,0.7); }
.search-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.search-container select {
  border: none; outline: none; padding: 12px 18px;
  font-size: 14px; font-family: var(--font-body);
  color: var(--gray); background: transparent;
  cursor: pointer; font-weight: 500;
}
.search-btn {
  background: var(--orange); color: white; border: none;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-family: var(--font-body);
  font-size: 15px; cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-orange);
  letter-spacing: -0.01em; white-space: nowrap;
}
.search-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.search-suggestions { margin-top: 18px; }
.search-suggestions-label {
  color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.search-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.search-pill {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  text-decoration: none; font-size: 13px;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s; font-weight: 500;
}
.search-pill:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 60px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { text-align: center; }
.stat-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; color: var(--white); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 6px;
}
.stat-val span { color: var(--orange); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 3;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}
@keyframes bounce-scroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--cream); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 24px 5%;
}
.trust-strip-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-dark);
  letter-spacing: -0.01em; white-space: nowrap;
}
.trust-item-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange-glow), rgba(232,84,30,0.05));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(232,84,30,0.15);
}

/* =========================================================
   FEATURED RENTALS
   ========================================================= */
#featured {
  background: var(--white);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.featured-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.4s var(--ease);
  position: relative;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.featured-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px;
}
.featured-card-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.featured-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 60%);
  transition: opacity 0.3s;
}
.featured-card:hover .featured-card-img::after { opacity: 0; }
.featured-card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(232, 84, 30, 0.0);
  transition: background 0.3s;
}
.featured-card:hover .featured-card-img-overlay {
  background: rgba(232, 84, 30, 0.06);
}
.featured-card-body { padding: 22px; }
.featured-card-category {
  font-size: 11px; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.featured-card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: var(--black); margin-bottom: 6px; line-height: 1.2;
  letter-spacing: -0.02em;
}
.featured-card-meta { font-size: 13px; color: var(--gray); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
.featured-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.featured-card-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: var(--black); letter-spacing: -0.03em;
}
.featured-card-price span { font-size: 13px; font-weight: 400; color: var(--gray); font-family: var(--font-body); }
.featured-card-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.count { font-size: 12px; color: var(--gray); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
#how {
  background: var(--cream); overflow: hidden;
}
.how-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.how-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 560px;
}
.how-visual-bg {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at 40% 50%, rgba(232,84,30,0.1), transparent 65%);
}
.phone-mockup {
  width: 260px; background: var(--black);
  border-radius: 40px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 16px 40px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.phone-notch {
  height: 36px; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.phone-notch-pill {
  width: 100px; height: 24px; background: var(--off-black);
  border-radius: 100px;
}
.phone-screen {
  background: var(--off-black); padding: 20px 16px;
  min-height: 480px;
}
.phone-app-bar {
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 10px 12px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.phone-search-icon { font-size: 14px; }
.phone-search-text {
  height: 10px; flex: 1;
  background: rgba(255,255,255,0.08); border-radius: 5px;
}
.phone-listing {
  background: rgba(255,255,255,0.04); border-radius: 12px;
  overflow: hidden; margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-listing-img {
  height: 100px; background-size: cover; background-position: center;
  opacity: 0.9;
}
.phone-listing-body { padding: 10px 12px; }
.phone-listing-title { height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; width: 70%; margin-bottom: 6px; }
.phone-listing-price { height: 8px; background: var(--orange); border-radius: 4px; width: 40%; opacity: 0.7; }
.phone-listing-2 { opacity: 0.5; }
.phone-book-btn {
  width: 100%; background: var(--orange); border-radius: 10px;
  padding: 12px; margin-top: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  font-family: var(--font-body); letter-spacing: 0.02em;
}
.floating-card {
  position: absolute; background: white;
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg); z-index: 3;
  border: 1px solid var(--border);
}
.floating-card-1 { top: 80px; right: -20px; min-width: 170px; }
.floating-card-2 { bottom: 100px; left: -30px; min-width: 150px; }
.floating-card-label { font-size: 11px; color: var(--gray); font-weight: 500; margin-bottom: 6px; }
.floating-card-value { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--black); letter-spacing: -0.03em; }
.floating-card-sub { font-size: 11px; color: #22C55E; font-weight: 600; margin-top: 3px; }

.steps-content { position: relative; z-index: 2; }
.step-item {
  display: flex; gap: 24px; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; color: var(--orange); letter-spacing: 0.1em;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--orange-glow);
  border: 1px solid rgba(232,84,30,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: var(--black); margin-bottom: 8px; letter-spacing: -0.02em;
}
.step-text { font-size: 14.5px; color: var(--gray); line-height: 1.65; letter-spacing: -0.01em; }

/* =========================================================
   HUMAN RENTALS SECTION
   ========================================================= */
#human-rentals {
  background: var(--cream);
}
.human-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.human-card {
  display: block; text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.35s var(--ease); position: relative;
  background: var(--white);
  padding: 28px 24px 24px;
}
.human-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.human-card:hover .human-icon { transform: scale(1.06); }
.human-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background-size: cover; background-position: center;
  margin-bottom: 16px; transition: transform 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.human-icon::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,84,30,0.25), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.human-card:hover .human-icon::after { opacity: 1; }
.human-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--black); margin-bottom: 6px; letter-spacing: -0.02em;
}
.human-desc {
  font-size: 13px; color: var(--gray); line-height: 1.55;
}
.human-arrow {
  margin-top: 16px; font-size: 18px; color: var(--orange);
  opacity: 0; transform: translateX(-4px);
  transition: all 0.25s var(--ease); display: block;
}
.human-card:hover .human-arrow { opacity: 1; transform: translateX(0); }

/* =========================================================
   PROFESSIONAL CARDS
   ========================================================= */
.professional-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.4s var(--ease);
  position: relative;
}
.professional-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.professional-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px;
}
.professional-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.professional-status {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid white;
}
.professional-status.online { background: #22C55E; }
.professional-status.offline { background: #94A3B8; }
.professional-body { padding: 22px; }
.professional-category {
  font-size: 11px; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.professional-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: var(--black); margin-bottom: 6px; line-height: 1.2;
  letter-spacing: -0.02em;
}
.professional-meta { font-size: 13px; color: var(--gray); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
.professional-skills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.skill-tag {
  font-size: 11px; font-weight: 500; color: var(--gray-dark);
  background: var(--cream); padding: 4px 8px;
  border-radius: 100px; border: 1px solid var(--border);
}
.professional-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.professional-rate {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: var(--black); letter-spacing: -0.03em;
}
.professional-rate span { font-size: 13px; font-weight: 400; color: var(--gray); font-family: var(--font-body); }
.professional-rating { display: flex; align-items: center; gap: 6px; }

/* =========================================================
   CATEGORIES GRID
   ========================================================= */
#categories { background: var(--white); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  display: block; text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.35s var(--ease); position: relative;
  background: var(--white);
  padding: 28px 24px 24px;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cat-card:hover .cat-icon { transform: scale(1.06); }
.cat-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background-size: cover; background-position: center;
  margin-bottom: 16px; transition: transform 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.cat-icon::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,84,30,0.25), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.cat-card:hover .cat-icon::after { opacity: 1; }
.cat-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--black); margin-bottom: 6px; letter-spacing: -0.02em;
}
.cat-desc {
  font-size: 13px; color: var(--gray); line-height: 1.55;
}
.cat-arrow {
  margin-top: 16px; font-size: 18px; color: var(--orange);
  opacity: 0; transform: translateX(-4px);
  transition: all 0.25s var(--ease); display: block;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* =========================================================
   MONETIZE / EARN
   ========================================================= */
#monetize {
  background: var(--black); overflow: hidden;
  position: relative;
}
#monetize::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: var(--orange); opacity: 0.04; filter: blur(100px);
}
.mono-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mono-card {
  padding: 52px; background: var(--off-black);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.mono-card:hover { background: var(--dark); }
.mono-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.mono-num {
  font-family: var(--font-display); font-size: 80px; font-weight: 800;
  color: rgba(255,255,255,0.03); position: absolute;
  top: 20px; right: 28px; line-height: 1;
}
.mono-tag {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; display: inline-flex; align-items: center; gap: 6px;
}
.mono-tag::before { content: ''; width: 14px; height: 1.5px; background: var(--orange); }
.mono-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--white); margin-bottom: 14px; letter-spacing: -0.03em;
}
.mono-text { font-size: 14.5px; color: rgba(255,255,255,0.4); line-height: 1.7; letter-spacing: -0.01em; }

/* =========================================================
   STATS / COUNTER SECTION
   ========================================================= */
#stats-section {
  background: var(--orange);
  padding: 80px 5%;
}
.stats-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-block-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  color: white; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 10px;
}
.stat-block-val span { opacity: 0.7; }
.stat-block-lbl {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: -0.01em;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials { background: var(--black); }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 72px;
}
.test-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border-dark);
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.test-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0; transition: opacity 0.3s;
}
.test-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
}
.test-card:hover::before { opacity: 1; }
.test-quote-mark {
  font-family: var(--font-display); font-size: 72px; color: var(--orange);
  line-height: 0.7; margin-bottom: 24px; opacity: 0.4; font-weight: 800;
}
.test-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star {
  width: 16px; height: 16px; background: #F59E0B;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.test-text {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.65); line-height: 1.75;
  margin-bottom: 30px; font-weight: 400; letter-spacing: -0.01em;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: white; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232,84,30,0.35);
}
.test-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--white); letter-spacing: -0.02em;
}
.test-role { font-size: 12.5px; color: rgba(255,255,255,0.35); font-weight: 500; margin-top: 2px; }

/* =========================================================
   CTA SECTION
   ========================================================= */
#cta {
  background: var(--black); padding: 160px 5%;
  position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,84,30,0.12), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
h2.cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); color: var(--white);
  letter-spacing: -0.04em; line-height: 1.0; max-width: 640px;
}
h2.cta-title em { color: var(--orange); font-style: normal; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-cta-white {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: var(--black); background: var(--white);
  padding: 16px 36px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; text-decoration: none; white-space: nowrap;
  transition: all 0.25s var(--ease); letter-spacing: -0.01em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.btn-cta-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-cta-outline {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,0.75); background: transparent;
  padding: 15px 32px; border-radius: var(--radius-sm);
  cursor: pointer; border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none; white-space: nowrap;
  transition: all 0.25s var(--ease); letter-spacing: -0.01em;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--off-black);
  padding: 100px 5% 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 72px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 20px; display: inline-flex; }
.footer-about {
  font-size: 14px; color: rgba(255,255,255,0.35);
  line-height: 1.75; max-width: 280px; letter-spacing: -0.01em;
}
.footer-socials { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.social-icon { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 700; font-family: var(--font-body); }
.footer-col-title {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em;
}
.footer-col a {
  font-size: 13.5px; color: rgba(255,255,255,0.35);
  text-decoration: none; margin-bottom: 14px; display: block;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 36px; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); letter-spacing: -0.01em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s; letter-spacing: -0.01em;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* =========================================================
   STICKY CTA
   ========================================================= */
.sticky-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  opacity: 0; transform: translateY(16px) scale(0.95);
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.sticky-cta-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: white; background: var(--black);
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.25s var(--ease); letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta-btn:hover { background: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* =========================================================
   SECTION CTA
   ========================================================= */
.section-cta {
  text-align: center; 
  margin-top: 64px; 
}

/* =========================================================
   CATEGORIES / LISTINGS PAGE
   ========================================================= */
.page-hero {
  padding: 160px 5% 100px; background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,0.015) 1px,transparent 1px);
  background-size: 80px 80px;
}
.page-hero-glow {
  position: absolute; top: -150px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: var(--orange); opacity: 0.05; filter: blur(120px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 80px); color: var(--white);
  line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 16px;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.45); max-width: 540px; line-height: 1.65; letter-spacing: -0.01em; }

/* Category filter bar */
.cat-filter-bar {
  background: var(--white); padding: 24px 5%;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 80px; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.cat-filter-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.cat-filter-btn {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--gray); transition: all 0.2s;
  display: flex; align-items: center; gap: 6px; letter-spacing: -0.01em;
}
.cat-filter-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }
.cat-filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
.cat-filter-btn .cat-emoji { font-size: 15px; }

/* Listings grid */
.listings-section { padding: 60px 5% 120px; background: var(--cream); min-height: 60vh; }
.listings-inner { max-width: 1440px; margin: 0 auto; }
.listings-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.listings-count { font-size: 14px; color: var(--gray); }
.listings-count strong { color: var(--black); font-weight: 600; }
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px;
}
.listing-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); cursor: pointer;
  transition: all 0.35s var(--ease); position: relative;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.listing-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 56px; position: relative;
  overflow: hidden;
}
.listing-img-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.4s var(--ease);
}
.listing-card:hover .listing-img-bg { transform: scale(1.05); }
.listing-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
}
.listing-body { padding: 22px; }
.listing-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--black); margin-bottom: 6px; letter-spacing: -0.02em;
}
.listing-loc { font-size: 13px; color: var(--gray); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.listing-footer { display: flex; justify-content: space-between; align-items: center; }
.listing-price {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--black); letter-spacing: -0.03em;
}
.listing-price span { font-size: 13px; font-weight: 400; color: var(--gray); font-family: var(--font-body); }
.listing-rating { display: flex; align-items: center; gap: 5px; }
.listing-rent-btn {
  margin-top: 18px; width: 100%;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: white; background: var(--black);
  border: none; padding: 13px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.listing-rent-btn:hover { background: var(--orange); transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* =========================================================
   DASHBOARD PREVIEW
   ========================================================= */
#dashboard { background: var(--cream); }
.dash-tabs {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
}
.dash-tab {
  padding: 14px 28px; font-size: 14px; font-weight: 600;
  color: var(--gray); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s; letter-spacing: -0.01em;
}
.dash-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.dash-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.dash-stat { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.dash-stat-val { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--black); margin-bottom: 4px; letter-spacing: -0.03em; }
.dash-stat-lbl { font-size: 12.5px; color: var(--gray); letter-spacing: -0.01em; }
.dash-stat-chg { font-size: 12px; color: #22C55E; font-weight: 600; margin-top: 10px; }
.dash-row { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.dash-chart-box { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.dash-chart-lbl { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 24px; letter-spacing: -0.01em; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.bar { background: linear-gradient(to top, var(--orange), var(--orange-light)); border-radius: 6px 6px 0 0; flex: 1; transition: height 0.3s; opacity: 0.85; }
.bar:hover { opacity: 1; }
.dash-list { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.dash-list-item {
  font-size: 13px; color: var(--black);
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.dash-list-item:last-child { border: none; }
.item-title-d { font-weight: 600; font-size: 13px; color: var(--black); letter-spacing: -0.01em; }
.item-amt { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--orange); }

/* =========================================================
   MOVIES / STREAMING
   ========================================================= */
.movie-card { transition: all 0.35s var(--ease); border-radius: var(--radius); overflow: hidden; }
.movie-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.genre-btn { transition: all 0.2s var(--ease); border-radius: 100px; }
.genre-btn:hover { background: var(--orange) !important; color: white !important; border-color: var(--orange) !important; }
.genre-btn.active { background: var(--orange) !important; color: white !important; border-color: var(--orange) !important; }

/* =========================================================
   AUTH PAGES
   ========================================================= */
.auth-page {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: var(--black); padding: 72px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-left-bg {
  position: absolute; inset: 0; opacity: 0.02;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,1) 1px,transparent 1px);
  background-size: 60px 60px;
}
.auth-left-accent {
  position: absolute; bottom: -120px; left: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: var(--orange); opacity: 0.06; filter: blur(80px);
}
.auth-left-content { position: relative; z-index: 2; }
.auth-left h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3vw, 48px); color: var(--white);
  line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 20px;
}
.auth-left h2 em { color: var(--orange); font-style: normal; }
.auth-left p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 340px; letter-spacing: -0.01em; }
.auth-perks { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.auth-perk { display: flex; gap: 16px; align-items: flex-start; }
.auth-perk-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(232,84,30,0.1); border: 1px solid rgba(232,84,30,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.auth-perk-text strong {
  font-family: var(--font-display); font-size: 14.5px; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 4px; letter-spacing: -0.02em;
}
.auth-perk-text span { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.55; }
.auth-left-stats {
  position: relative; z-index: 2;
  display: flex; gap: 40px;
}
.auth-stat-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; color: var(--white); letter-spacing: -0.04em;
}
.auth-stat-val span { color: var(--orange); }
.auth-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; letter-spacing: 0.02em; }

/* Right side */
.auth-right {
  padding: 72px 60px; display: flex; align-items: center; justify-content: center;
  background: var(--cream);
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-wrap .auth-logo { margin-bottom: 48px; display: block; }
.auth-form-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; color: var(--black); margin-bottom: 8px; letter-spacing: -0.04em;
}
.auth-form-sub {
  font-size: 14px; color: var(--gray); margin-bottom: 36px; letter-spacing: -0.01em;
}
.auth-form-sub a { color: var(--orange); text-decoration: none; font-weight: 600; }
.auth-form-sub a:hover { text-decoration: underline; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--black); margin-bottom: 9px; letter-spacing: -0.01em;
}
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body);
  color: var(--black); background: var(--white); outline: none;
  transition: all 0.2s; letter-spacing: -0.01em;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,84,30,0.08);
}
.form-group input::placeholder { color: rgba(122,134,148,0.6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--gray); margin-top: 7px; letter-spacing: -0.01em; }

.btn-submit {
  width: 100%; padding: 16px; background: var(--black); color: white;
  border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer;
  transition: all 0.25s var(--ease); margin-top: 8px;
  letter-spacing: -0.01em; position: relative; overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange); opacity: 0; transition: opacity 0.3s;
}
.btn-submit:hover::after { opacity: 1; }
.btn-submit span { position: relative; z-index: 1; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

.form-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0; font-size: 12.5px; color: var(--gray-light);
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.btn-oauth {
  width: 100%; padding: 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
  font-size: 14px; font-weight: 500; font-family: var(--font-body);
  cursor: pointer; color: var(--black);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s; margin-bottom: 12px;
}
.btn-oauth:hover { border-color: var(--orange); background: var(--orange-glow); }
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.role-option {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px; cursor: pointer; transition: all 0.2s; text-align: center;
  background: var(--white);
}
.role-option:hover { border-color: var(--orange); }
.role-option.active { border-color: var(--orange); background: var(--orange-glow); }
.role-option .role-icon { font-size: 26px; margin-bottom: 10px; }
.role-option .role-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--black); margin-bottom: 4px; letter-spacing: -0.02em;
}
.role-option .role-desc { font-size: 12px; color: var(--gray); }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 18px; font-size: 13px; color: var(--gray); letter-spacing: -0.01em;
}
.form-check input { width: auto; margin-top: 2px; accent-color: var(--orange); }
.form-check a { color: var(--orange); text-decoration: none; }

/* =========================================================
   TECH / COMPARISON TABLE
   ========================================================= */
#tech { background: var(--cream); }
.tech-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.tech-table th {
  text-align: left; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray);
  padding: 16px 24px; border-bottom: 2px solid var(--border);
}
.tech-table td {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--black); vertical-align: middle;
}
.tech-table tr:hover td { background: rgba(232,84,30,0.02); }
.tech-badge {
  display: inline-block; background: var(--black); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.02em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  section { padding: 120px 5%; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 1100px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 48px 32px; }
  .how-inner { grid-template-columns: 1fr; gap: 60px; }
  .how-visual { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  section { padding: 100px 5%; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 24px;
    flex-direction: column; gap: 4px;
  }
  .nav-links.active { 
    display: flex; 
    flex-direction: column; 
    align-items: stretch; 
    gap: 8px;
  }
  .nav-item { width: 100%; }
  .nav-links a { 
    width: 100%; 
    padding: 14px 18px; 
    border-radius: var(--radius-sm); 
    text-align: left;
  }
  .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .nav-actions .nav-login,
  .nav-actions .nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: 1px solid var(--border);
    background: rgba(232,84,30,0.03); margin-top: 8px;
    border-radius: var(--radius); display: grid; grid-template-columns: 1fr;
    gap: 2px; padding: 12px; min-width: auto;
  }
  .nav-login { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .human-grid { grid-template-columns: repeat(2, 1fr); }
  .mono-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .trust-strip-inner { gap: 28px; }
  h1.hero-title { letter-spacing: -0.04em; }
}

@media (max-width: 640px) {
  section { padding: 80px 5%; }
  h2.section-title { font-size: clamp(32px, 7vw, 48px); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .human-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .role-selector { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .search-container { flex-direction: column; gap: 8px; padding: 10px; }
  .search-divider { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .sticky-cta { bottom: 20px; right: 20px; left: 20px; }
  .sticky-cta-btn { justify-content: center; }
}

@media (max-width: 420px) {
  .cats-grid { grid-template-columns: 1fr; }
  .human-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-direction: column; gap: 16px; align-items: flex-start; padding: 0 5%; }
}

/* =========================================================
   LOADING STATE
   ========================================================= */
.page-loader {
  position: fixed; inset: 0; background: var(--black); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; color: white; letter-spacing: -0.04em;
  display: flex; align-items: center; gap: 10px;
  animation: loader-pulse 1s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
