/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple-50: #FBF5ED;
  --purple-100: #F2E2CC;
  --purple-200: #E4C69A;
  --purple-300: #D4A06A;
  --purple-400: #A87240;
  --purple-500: #8E5F34;
  --purple-600: #A87240;
  --purple-700: #6E4926;
  --purple-800: #52361C;
  --purple-900: #382412;
  --gray-50: #FBF8F3;
  --gray-100: #F5F0E8;
  --gray-200: #EDE5D8;
  --gray-300: #D5CCB8;
  --gray-400: #A09888;
  --gray-500: #746C60;
  --gray-600: #4E4840;
  --gray-700: #3D3022;
  --gray-800: #1E1812;
  --gray-900: #1E1812;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E1812;
  background: #FBF8F3;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #6E4926, #A87240, #D4A06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--purple-100);
  color: var(--purple-700);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,114,64,0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-900);
  white-space: nowrap;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text { white-space: nowrap; }
.logo-text span { color: var(--purple-500); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav a:hover { color: var(--purple-600); }

.header-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(168,114,64,0.25);
}
.header-cta:hover {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
  box-shadow: 0 4px 24px rgba(168,114,64,0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle svg { display: block; }

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--purple-100);
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  color: var(--purple-600);
  background: var(--purple-50);
}
.mobile-nav .header-cta {
  display: block;
  text-align: center;
  margin-top: 12px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-50) 0%, #fff 40%, rgba(242,226,204,0.3) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(212,160,106,0.15);
  border-radius: 50%;
  filter: blur(80px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(168,114,64,0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--purple-100);
  border-radius: 100px;
  color: var(--purple-700);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  animation: pulseSoft 2s ease-in-out infinite;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.hero h1 .highlight { color: transparent; background: linear-gradient(135deg, #6E4926, #A87240, #D4A06A); -webkit-background-clip: text; background-clip: text; }
.hero-desc {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-desc strong { color: var(--purple-600); }
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: #fff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(168,114,64,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168,114,64,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: 2px solid var(--purple-200);
  color: var(--purple-700);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--purple-50); }

.hero-social { display: flex; align-items: center; gap: 20px; }
.avatar-group { display: flex; }
.avatar-group span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-left: -10px;
}
.avatar-group span:first-child { margin-left: 0; }
.stars { color: #facc15; font-size: 14px; letter-spacing: 1px; }
.hero-social p { font-size: 14px; color: var(--gray-500); }
.hero-social p strong { color: var(--gray-700); }

/* Phone Mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.phone {
  position: relative;
  width: 320px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(168,114,64,0.12);
  border: 1px solid var(--purple-100);
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}
.phone::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(168,114,64,0.1), rgba(168,114,64,0.15));
  border-radius: 56px;
  filter: blur(30px);
  z-index: -1;
}
.phone-header {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.phone-dots { display: flex; gap: 6px; }
.phone-dots span { width: 10px; height: 10px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.phone-body { padding: 20px; }
.phone-recommend {
  background: var(--purple-50);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}
.phone-recommend-label { font-size: 13px; color: var(--purple-600); font-weight: 600; margin-bottom: 10px; }
.phone-sitter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-sitter-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.phone-sitter-info { flex: 1; }
.phone-sitter-name { font-weight: 700; color: var(--gray-800); font-size: 15px; }
.phone-sitter-rating { font-size: 13px; color: #facc15; }
.phone-sitter-rating span { color: var(--gray-400); }
.phone-sitter-price { text-align: right; }
.phone-sitter-price strong { color: var(--purple-600); font-weight: 700; font-size: 15px; }
.phone-sitter-price small { display: block; color: var(--gray-400); font-size: 12px; }
.phone-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.phone-tags span {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}
.tag-purple { background: var(--purple-100); color: var(--purple-600); }
.tag-green { background: #dcfce7; color: #16a34a; }
.tag-blue { background: #dbeafe; color: #2563eb; }

.phone-list { display: flex; flex-direction: column; gap: 10px; }
.phone-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}
.phone-list-item:hover { border-color: var(--purple-200); }
.phone-list-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-200));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.phone-list-info { flex: 1; }
.phone-list-name { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.phone-list-rating { font-size: 12px; color: #facc15; }
.phone-list-rating span { color: var(--gray-400); }
.phone-list-price { font-size: 14px; font-weight: 700; color: var(--purple-600); }

.phone-cta {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.phone-cta:hover { background: linear-gradient(135deg, var(--purple-700), var(--purple-600)); }

/* ===== Services ===== */
.services { padding: 100px 0; background: #fff; }
.services .header-area { text-align: center; margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 12px 40px rgba(168,114,64,0.06);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ===== How It Works ===== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(251,245,237,0.5) 0%, #fff 100%);
}
.how-it-works .header-area { text-align: center; margin-bottom: 60px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { text-align: center; position: relative; }
.step-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(168,114,64,0.08);
  border: 1px solid var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-600);
  transition: all 0.3s;
}
.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(168,114,64,0.15);
}
.step-icon svg { width: 36px; height: 36px; }
.step-num {
  display: inline-block;
  padding: 4px 14px;
  background: var(--purple-600);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ===== Pricing ===== */
.pricing { padding: 100px 0; background: #fff; }
.pricing .header-area { text-align: center; margin-bottom: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-left {}
.compare-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.compare-box.bad { background: #fef2f2; border: 1px solid #fecaca; }
.compare-box.good { background: var(--purple-50); border: 1px solid var(--purple-200); }
.compare-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare-box.bad .compare-icon { background: #fecaca; color: #ef4444; }
.compare-box.good .compare-icon { background: var(--purple-200); color: var(--purple-600); }
.compare-box h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.compare-box p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat-box {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--gray-50);
}
.stat-box .value { font-size: 22px; font-weight: 800; color: var(--purple-600); }
.stat-box .label { font-size: 13px; font-weight: 600; color: var(--gray-900); margin-top: 4px; }
.stat-box .sub { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* Pricing Phone */
.pricing-phone {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(168,114,64,0.1);
  border: 1px solid var(--purple-100);
  overflow: hidden;
}
.pricing-phone-header {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  padding: 18px 24px;
  color: #fff;
}
.pricing-phone-header h4 { font-size: 16px; font-weight: 700; }
.pricing-phone-header p { font-size: 13px; color: rgba(255,255,255,0.7); }
.pricing-phone-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.price-sitter {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.price-sitter:hover { border-color: var(--purple-200); }
.price-sitter.recommended {
  border-color: var(--purple-300);
  background: rgba(251,245,237,0.5);
}
.price-sitter .ai-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--purple-600);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 8px;
}
.price-sitter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-sitter-left { display: flex; align-items: center; gap: 12px; }
.price-sitter-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.price-sitter-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.price-sitter-meta { font-size: 12px; color: var(--gray-400); }
.price-sitter-right { text-align: right; }
.price-sitter-amount { font-size: 15px; font-weight: 700; color: var(--purple-600); }
.price-sitter-unit { font-size: 11px; color: var(--gray-400); }
.price-sitter-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.price-sitter-tags span {
  padding: 3px 8px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 11px;
  border-radius: 6px;
}

/* ===== Safety ===== */
.safety { padding: 100px 0; background: linear-gradient(180deg, #fff 0%, rgba(251,245,237,0.3) 100%); }
.safety .header-area { text-align: center; margin-bottom: 60px; }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.safety-card {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--purple-100);
  transition: all 0.3s;
}
.safety-card:hover {
  border-color: var(--purple-300);
  box-shadow: 0 16px 48px rgba(168,114,64,0.08);
}
.safety-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: var(--purple-600);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
}
.safety-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.safety-card:hover .safety-icon { transform: scale(1.1); }
.safety-icon svg { width: 30px; height: 30px; }
.safety-card h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.safety-card p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }
.safety-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--purple-600);
  font-weight: 600;
  font-size: 15px;
}

.safety-banner {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}
.safety-banner h3 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.safety-banner > p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.safety-stats { display: flex; justify-content: center; gap: 60px; }
.safety-stats div { text-align: center; }
.safety-stats .num { font-size: 36px; font-weight: 800; color: #fff; }
.safety-stats .lbl { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== Pet Places ===== */
.pet-places { padding: 100px 0; background: #fff; }
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.places-left .tags-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tags-row .tag {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
}
.tags-row .tag.active {
  background: var(--purple-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168,114,64,0.25);
}
.tags-row .tag:hover:not(.active) { background: var(--purple-100); color: var(--purple-600); }
.places-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--purple-50);
  border-radius: 16px;
}
.places-info-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-600);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.places-info h4 { font-weight: 700; color: var(--gray-900); }
.places-info p { font-size: 14px; color: var(--gray-500); }

.places-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.place-card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.place-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 8px 24px rgba(168,114,64,0.06);
  transform: translateY(-4px);
}
.place-thumb {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.place-thumb-inner {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.place-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.place-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-600);
  background: var(--purple-50);
  padding: 2px 10px;
  border-radius: 6px;
}
.place-rating { font-size: 13px; color: #facc15; }
.place-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.place-card .location { font-size: 13px; color: var(--gray-400); margin-bottom: 10px; }
.place-tags { display: flex; gap: 6px; }
.place-tags span {
  padding: 4px 10px;
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: 12px;
  border-radius: 8px;
}

/* ===== Reviews ===== */
.reviews {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(251,245,237,0.3) 0%, #fff 100%);
}
.reviews .header-area { text-align: center; margin-bottom: 60px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.review-card:hover {
  border-color: var(--purple-200);
  box-shadow: 0 8px 24px rgba(168,114,64,0.06);
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.review-loc { font-size: 12px; color: var(--gray-400); }
.review-usage {
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 4px 10px;
  border-radius: 8px;
}
.review-stars { font-size: 13px; color: #facc15; margin-bottom: 4px; }
.review-stars span { color: var(--gray-400); font-size: 12px; margin-left: 4px; }
.review-pet { font-size: 14px; color: var(--purple-600); font-weight: 600; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.reviews-more {
  text-align: center;
}
.reviews-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple-600);
  font-weight: 700;
  font-size: 16px;
}

/* ===== Partner ===== */
.partner { padding: 100px 0; background: #fff; }
.partner-wrap {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-600), var(--purple-800));
  overflow: hidden;
  position: relative;
}
.partner-wrap::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(168,114,64,0.2);
  border-radius: 50%;
  filter: blur(60px);
}
.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px;
  position: relative;
  z-index: 1;
}
.partner-content {}
.partner-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.partner-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.partner-content > p {
  font-size: 17px;
  color: rgba(216,180,254,1);
  line-height: 1.7;
  margin-bottom: 32px;
}
.partner-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.partner-feature {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}
.partner-feature svg { color: var(--purple-300); margin-bottom: 8px; }
.partner-feature h4 { font-size: 14px; font-weight: 700; color: #fff; }
.partner-feature p { font-size: 12px; color: var(--purple-300); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--purple-700);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(56,36,18,0.2);
}
.btn-white:hover { background: var(--purple-50); transform: translateY(-2px); }

/* Partner Card */
.partner-card-wrap { display: flex; align-items: center; justify-content: center; }
.partner-card {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.partner-card::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(255,255,255,0.05);
  border-radius: 32px;
  filter: blur(20px);
}
.partner-card-inner {
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 36px;
}
.partner-profile { text-align: center; margin-bottom: 24px; }
.partner-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.partner-profile h4 { font-size: 18px; font-weight: 700; color: #fff; }
.partner-profile p { font-size: 14px; color: var(--purple-300); }
.partner-stats { display: flex; flex-direction: column; gap: 12px; }
.partner-stat { display: flex; justify-content: space-between; font-size: 14px; }
.partner-stat .label { color: var(--purple-300); }
.partner-stat .value { color: #fff; font-weight: 700; }
.partner-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }
.partner-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-badges span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(216,180,254,1);
  font-size: 12px;
  border-radius: 8px;
}

/* ===== Download ===== */
.download {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--purple-50) 100%);
  text-align: center;
}
.download .header-area { margin-bottom: 40px; }
.download-btns { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gray-900);
  color: #fff;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.store-btn:hover { background: var(--gray-800); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn .text { text-align: left; }
.store-btn .text small { display: block; font-size: 11px; color: var(--gray-400); }
.store-btn .text strong { font-size: 17px; }
.download-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.download-stat .value { font-size: 28px; font-weight: 800; color: var(--purple-600); }
.download-stat .label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ===== Footer ===== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-icon { width: 36px; height: 36px; }
.footer-brand .logo span:first-of-type { color: #fff; }
.footer-brand > p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: var(--gray-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--purple-600); color: #fff; }
.social-links a svg { width: 18px; height: 18px; }

.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-400); }
.footer-contact { font-size: 14px; margin-top: 16px; }
.footer-contact span { color: #fff; }
.footer-contact small { display: block; font-size: 12px; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-mockup { order: 2; display: none; }
  .hero h1 { font-size: 40px; }
  .hero-btns { justify-content: center; }
  .hero-social { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-inner { grid-template-columns: 1fr; padding: 40px; }
  .partner-card-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 16px; padding: 14px 24px; }
  .section-title { font-size: 28px; }
  .section-desc { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .places-cards { grid-template-columns: 1fr; }
  .safety-stats { flex-direction: column; gap: 20px; }
  .safety-banner { padding: 32px 20px; }
  .partner-content h2 { font-size: 28px; }
  .partner-inner { padding: 28px; }
  .partner-features { grid-template-columns: 1fr; }
  .download-btns { flex-direction: column; align-items: center; }
  .download-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { min-height: auto; padding: 120px 0 60px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero .section-desc { font-size: 16px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-connector { display: none; }
  .rating-overview { flex-direction: column; gap: 24px; }
  .income-grid { grid-template-columns: 1fr; }
}

/* ===== Sub-Page Hero ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-50) 0%, #fff 40%, rgba(242,226,204,0.3) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(212,160,106,0.15);
  border-radius: 50%;
  filter: blur(80px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 16px;
}

/* Active Nav */
.nav a.nav-active { color: var(--purple-600); font-weight: 700; }
.mobile-nav a.nav-active { color: var(--purple-600); font-weight: 700; background: var(--purple-50); }

/* ===== Teaser Strips (index) ===== */
.teaser-strip {
  padding: 80px 0;
  background: #fff;
}
.teaser-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border-radius: 24px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
}
.teaser-strip h3 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.teaser-strip p { font-size: 16px; color: var(--gray-500); }
.teaser-strip .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--purple-600);
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(168,114,64,0.25);
}
.teaser-strip .btn-link:hover {
  background: var(--purple-700);
  transform: translateY(-2px);
}

/* ===== FAQ Accordion ===== */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-400);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--purple-600); }
.faq-item.open .faq-question { color: var(--purple-600); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Rating Summary (review page) ===== */
.rating-overview {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 36px 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--purple-100);
  box-shadow: 0 4px 16px rgba(168,114,64,0.06);
}
.rating-big { text-align: center; min-width: 120px; }
.rating-big .score { font-size: 52px; font-weight: 800; color: var(--purple-600); line-height: 1; }
.rating-big .stars-row { color: #facc15; font-size: 18px; margin: 8px 0 4px; letter-spacing: 2px; }
.rating-big .count { font-size: 14px; color: var(--gray-400); }
.rating-bars { flex: 1; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--gray-500);
}
.rating-bar-row .label { width: 32px; text-align: right; font-weight: 600; }
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  border-radius: 4px;
}
.rating-bar-row .pct { width: 36px; font-size: 12px; color: var(--gray-400); }

/* ===== Process Steps (partner page) ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 48px 0;
}
.process-step { text-align: center; flex: 1; max-width: 240px; }
.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}
.process-step h4 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.process-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
}
.process-connector svg { color: var(--purple-300); }

/* ===== Income Grid (partner page) ===== */
.income-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.income-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--purple-100);
  text-align: center;
}
.income-card .val { font-size: 28px; font-weight: 800; color: var(--purple-600); }
.income-card .lbl { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ===== Responsive additions ===== */
@media (max-width: 1024px) {
  .teaser-strip .inner { flex-direction: column; text-align: center; }
  .rating-overview { flex-direction: column; }
  .income-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .process-steps { flex-wrap: wrap; gap: 32px; }
}
