* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 77px;
}

.header-inner {
  width: 100%;
  padding: 0 48px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8b6cf0, #c084fc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  line-height: 1.2;
}

.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.logo-slogan {
  font-size: 10px;
  color: #999;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav-item {
  padding: 8px 20px;
  font-size: 15px;
  color: #555;
  border-radius: 24px;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-item:hover {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.12), rgba(108, 92, 231, 0.06));
  color: #6c5ce7;
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

.city-dropdown-wrapper {
  position: relative;
}

.city-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 13px;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.city-selector:hover {
  background: rgba(108, 92, 231, 0.14);
}

/* ===== City Panel ===== */
.city-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 480px;
  max-height: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.city-dropdown-wrapper.open .city-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.city-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.city-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 12px 12px 0;
  background: #f5f5f7;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.city-search-box:focus-within {
  background: #fff;
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.08);
}

.city-search {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  width: 100%;
  color: #333;
}

.city-search::placeholder {
  color: #b0b0b0;
}

.city-hot {
  padding: 12px 16px 8px;
}

.city-hot-title {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  font-weight: 500;
}

.city-hot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-pill {
  padding: 5px 14px;
  font-size: 13px;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.city-pill:hover {
  background: rgba(108, 92, 231, 0.16);
}

.city-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 12px;
}

.city-list::-webkit-scrollbar {
  width: 4px;
}

.city-list::-webkit-scrollbar-thumb {
  background: rgba(108, 92, 231, 0.2);
  border-radius: 4px;
}

.city-list::-webkit-scrollbar-thumb:hover {
  background: rgba(108, 92, 231, 0.35);
}

.city-group {
  margin-bottom: 4px;
}

.city-group-title {
  font-size: 12px;
  color: #999;
  font-weight: 600;
  padding: 6px 0 4px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.city-group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.city-item {
  padding: 4px 10px;
  font-size: 13px;
  color: #555;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.city-item:hover {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
}

.city-item.active {
  color: #6c5ce7;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.1);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f5f5f7;
  border-radius: 24px;
  width: 120px;
  min-width: 140px;
  transition: all 0.3s;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.search-box:focus-within {
  background: #fff;
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  width: 100%;
  color: #333;
}

.search-box input::placeholder {
  color: #b0b0b0;
}

.auth-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-login {
  padding: 8px 20px;
  font-size: 14px;
  color: #6c5ce7;
  background: transparent;
  border: 1px solid #6c5ce7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-login:hover {
  background: rgba(108, 92, 231, 0.08);
}

.btn-register {
  padding: 8px 24px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b6cf0, #6c5ce7);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
}

/* ===== Hero Section ===== */
.hero {
  margin-top: 50px;
  background: linear-gradient(180deg, #f8f5ff 0%, #fbfafe 100%);
  padding: 40px 0 20px;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  padding: 0 148px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  flex: 1;
  min-width: 0;
  padding-right: 40px;
}

.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  -webkit-text-stroke: 1.2px rgba(26, 26, 46, 0.15);
  paint-order: stroke fill;
}

.title-highlight {
  background: linear-gradient(135deg, #6c5ce7, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 1.2px rgba(108, 92, 231, 0.2);
  paint-order: stroke fill;
}

.hero-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.service-cards {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 14px;
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 88px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.12);
  border-color: rgba(108, 92, 231, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.service-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  white-space: nowrap;
}

.service-desc {
  font-size: 11px;
  color: #999;
  white-space: nowrap;
}

.promo-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  /* background: rgba(108, 92, 231, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(108, 92, 231, 0.08); */
  white-space: nowrap;
}

.promo-text {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}

.promo-amount {
  color: #ff6b8a;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== Hero Right - Decorative ===== */
.hero-right {
  position: relative;
  width: 400px;
  max-width: 42%;
  height: 420px;
  flex-shrink: 0;
}

.heart-decoration {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(108, 92, 231, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

.orbit-ring-1 {
  width: 320px;
  height: 320px;
}

.orbit-ring-2 {
  width: 380px;
  height: 380px;
  animation-direction: reverse;
  animation-duration: 40s;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.heart-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.heart-shape {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 40px rgba(108, 92, 231, 0.25));
}

.orbit-avatar {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.orbit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-avatar-1 {
  top: 15px;
  left: 55%;
}

.orbit-avatar-2 {
  top: 80px;
  right: 30px;
}

.orbit-avatar-3 {
  bottom: 90px;
  left: 10px;
}

.orbit-avatar-4 {
  bottom: 60px;
  right: 80px;
}

.orbit-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #6c5ce7;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 2px;
}

.orbit-text.handwriting {
  font-family: 'STXingkai', cursive;
  font-size: 22px;
  letter-spacing: 3px;
  color: #7c6cf0;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 20px; right: 80px; animation-delay: 0s; }
.sparkle-2 { top: 100px; left: 40px; animation-delay: 0.5s; }
.sparkle-3 { bottom: 80px; right: 60px; animation-delay: 1s; }
.sparkle-4 { top: 60px; right: 40px; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ===== Recommended Section ===== */
.recommended {
  padding: 0px 0 40px;
  background: #fff;
}

.section-inner {
  width: 100%;
  padding: 0 48px;
}

.section-header {
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
}

.section-tag {
  padding: 3px 10px;
  font-size: 12px;
  color: #ff6b8a;
  background: rgba(255, 107, 138, 0.1);
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #888;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.view-more:hover {
  color: #6c5ce7;
}

/* ===== Companion Cards ===== */
.companion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.companion-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
}

.companion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 222/338;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.companion-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.2) 55%, transparent 80%);
}

.card-badges {
  display: flex;
  gap: 6px;
  padding: 10px 12px 0;
  justify-content: space-between;
}

.badge-online {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
}

.badge-online .dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.badge-verified {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: linear-gradient(to right, rgba(139, 108, 240, 0.8), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(4px);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.badge-video {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  background: rgba(108, 92, 231, 0.506);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
  width: fit-content;
  margin-bottom: 4px;
}

.card-info {
  margin-top: auto;
  padding: 14px 12px 12px;
}

.card-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.card-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.card-rating {
  font-size: 12px;
  color: #ffd700;
  font-weight: 600;
  white-space: nowrap;
}

.card-level {
  padding: 1px 6px;
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #8b6cf0, #6c5ce7);
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
}

.card-tags {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.845);
  margin-bottom: 4px;
  white-space: nowrap;
}

.card-dot {
  color: rgb(255, 255, 255);
}

.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.747);
  margin-bottom: 5px;
  white-space: nowrap;
}

.card-location span {
  color: #6e8dc2;
  font-weight: 500;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
}

.price-amount {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.card-price em {
margin-left: 1px;
  font-size: 12px;
}

.card-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  font-size: 12px;
  color: #fb5087;
  white-space: nowrap;
}

/* ===== Benefits Section ===== */
.benefits {
  padding: 0 0 17px;
  background: #fff;
}

.benefits-inner {
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.benefits-promo {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #f5f0ff 0%, #fdf0f3 50%, #f0f0ff 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex: 0 0 33.33%;
  white-space: nowrap;
}

.benefits-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-content {
  flex: 1;
}

.promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  white-space: nowrap;
}

.promo-desc {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.promo-highlight {
  color: #ff6b8a;
  font-weight: 700;
  font-size: 16px;
}

.promo-visual {
  position: relative;
  z-index: 1;
}

.btn-claim {
  padding: 12px 32px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #8b6cf0, #6c5ce7);
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.benefits-features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  background: #f9f7fe;
  border-radius: 20px;
  padding: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
  flex: 1;
  transition: all 0.3s;
}

.feature-item:hover {
  background: #f5f5ff;
  border-radius: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.feature-icon-orange {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.feature-icon-green {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.feature-icon-purple {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
  white-space: nowrap;
}

.feature-text p {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(108, 92, 231, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-item {
  padding: 14px 16px;
  font-size: 16px;
  color: #555;
  border-radius: 12px;
  transition: all 0.2s;
  font-weight: 500;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
}

.mobile-nav-auth {
  margin-top: auto;
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-auth .btn-login,
.mobile-nav-auth .btn-register {
  flex: 1;
  padding: 12px 0;
  font-size: 15px;
}

/* ===== Responsive ===== */

/* Desktop small: <= 1100px */
@media (max-width: 1100px) {
  .nav-item {
    padding: 8px 14px;
    font-size: 14px;
  }

  .header-right {
    gap: 5px;
  }

  .search-box {
    width: 160px;
  }

  .hero-right {
    width: 360px;
  }

  .orbit-ring-1 {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-2 {
    width: 340px;
    height: 340px;
  }

  .heart-shape svg {
    width: 240px;
    height: 240px;
  }

  .companion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet: <= 900px */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-right .search-box {
    display: none;
  }

  .header-right .auth-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-inner {
    padding: 0 24px;
  }

  .hero-inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 36px;
  }

  .hero-left {
    padding-right: 0;
    display: grid;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-right {
    width: 320px;
    height: 320px;
  }

  .orbit-ring-1 {
    width: 240px;
    height: 240px;
  }

  .orbit-ring-2 {
    width: 290px;
    height: 290px;
  }

  .heart-shape svg {
    width: 200px;
    height: 200px;
  }

  .service-cards {
    flex-wrap: wrap;
    gap: 10px;
  }

  .service-card {
    min-width: 76px;
    flex: 1;
  }

  .companion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-inner,
  .benefits-inner {
    padding: 0 24px;
  }

  .benefits-promo {
    padding: 24px;
  }

  .benefits-inner {
    flex-direction: column;
  }

  .benefits-features {
    flex-wrap: wrap;
  }

  .feature-item {
    min-width: calc(50% - 10px);
  }
}

/* Mobile: <= 600px */
@media (max-width: 600px) {
  .header {
    height: 60px;
  }

  .header-inner {
    padding: 0 8px;
    height: 60px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-name {
    font-size: 16px;
  }

  .logo-slogan {
    font-size: 9px;
  }

  .city-selector {
    padding: 5px 10px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    margin-top: 60px;
    padding: 30px 0 24px;
  }

  .hero-inner {
    padding: 0 16px;
    gap: 28px;
  }

  .hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 12px;
    white-space: normal;
    margin-bottom: 24px;
  }

  /* Service cards - scrollable row */
  .service-cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .service-cards::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 80px;
    flex-shrink: 0;
    padding: 14px 10px 10px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-name {
    font-size: 12px;
  }

  .service-desc {
    font-size: 9px;
  }

  .promo-banner {
    font-size: 12px;
  }

  .promo-text {
    font-size: 12px;
  }

  /* Hero right - smaller */
  .hero-right {
    width: 240px;
    height: 240px;
  }

  .orbit-ring-1 {
    width: 180px;
    height: 180px;
  }

  .orbit-ring-2 {
    width: 220px;
    height: 220px;
  }

  .heart-shape svg {
    width: 160px;
    height: 160px;
  }

  .orbit-avatar {
    width: 36px;
    height: 36px;
  }

  .orbit-text {
    font-size: 14px;
  }

  .orbit-text.handwriting {
    font-size: 16px;
  }

  /* Companion cards */
  .section-inner {
    padding: 0 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-tag {
    font-size: 11px;
    padding: 2px 8px;
  }

  .view-more {
    font-size: 13px;
  }

  .companion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .companion-card {
    border-radius: 12px;
  }

  .card-name {
    font-size: 15px;
  }

  .card-rating {
    font-size: 11px;
  }

  .card-level {
    font-size: 9px;
    padding: 1px 5px;
  }

  .card-tags {
    font-size: 11px;
  }

  .card-location {
    font-size: 10px;
  }

  .price-amount {
    font-size: 15px;
  }

  .card-price {
    font-size: 11px;
  }

  .card-likes {
    padding: 3px 8px;
    font-size: 10px;
  }

  .badge-online,
  .badge-verified {
    font-size: 9px;
    padding: 2px 6px;
  }

  .badge-video {
    font-size: 9px;
    padding: 2px 8px;
  }

  /* Benefits */
  .benefits-inner {
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
  }

  .benefits-promo {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    white-space: normal;
    flex: 0 0 auto;
  }

  .promo-title {
    font-size: 16px;
  }

  .promo-desc {
    font-size: 13px;
    white-space: normal;
  }

  .promo-highlight {
    font-size: 14px;
  }

  .promo-visual {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .promo-visual svg {
    width: 70px;
    height: 70px;
  }

  .btn-claim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 22px;
    font-size: 13px;
  }

  .btn-claim:hover {
    transform: translate(-50%, -50%) translateY(-2px);
  }

  .benefits-features {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .feature-item {
    min-width: 100%;
    padding: 10px 12px;
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-text h4 {
    font-size: 14px;
  }

  .feature-text p {
    font-size: 11px;
  }

  /* City panel mobile */
  .city-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    transform: translateY(0);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 150;
  }

  .city-panel::before {
    display: none;
  }

  .city-dropdown-wrapper.open .city-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .city-search-box {
    margin: 16px 16px 8px;
    padding: 14px 16px;
  }

  .city-search {
    font-size: 15px;
  }

  .city-item {
    padding: 10px 12px;
    font-size: 14px;
  }

  .city-pill {
    padding: 8px 16px;
    font-size: 14px;
  }

  .recommended {
    padding: 0 0 24px;
  }

  .section-header {
    margin-bottom: 16px;
  }

  .benefits {
    padding: 0 0 12px;
  }
}
