/* ============================================
   pickhub — 필요한 서비스, 검증된 고수
   Soomgo-inspired quote marketplace
============================================ */

:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-soft: #F1F5F9;
  --text: #0F172A;
  --text-soft: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Primary: fresh blue */
  --primary: #3B82F6;
  --primary-hover: #2563EB;
  --primary-soft: #EFF6FF;
  --primary-deep: #1E40AF;

  /* Accents */
  --success: #10B981;
  --warning: #F59E0B;
  --star: #FBBF24;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 14px rgba(15,23,42,0.06);
  --shadow-lg: 0 16px 36px rgba(15,23,42,0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --nav-h: 68px;
  --max-w: 1200px;

  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   Top Navigation
============================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.topnav-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 32px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.15s ease;
  padding: 4px 0;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -22px; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--primary-hover); }

.btn-ghost {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-soft);
}
.btn-ghost:hover { color: var(--text); }

.btn-outline {
  padding: 9px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.15s ease;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

.menu-toggle {
  display: none;
  font-size: 22px;
  padding: 8px;
  margin-left: auto;
}
@media (max-width: 900px) { .menu-toggle { display: block; } }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================
   Container
============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ============================================
   Hero (soomgo-inspired request hero)
============================================ */
.hero {
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--text);
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--primary), #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .hero-title { font-size: 30px; }
  .hero { padding: 44px 0 54px; }
}

.hero-desc {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Request box - main CTA */
.request-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
}
.request-box select,
.request-box input {
  font: inherit;
  font-size: 15px;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 16px;
  color: var(--text);
}
.request-box select {
  flex: 0 0 auto;
  font-weight: 600;
  border-right: 1px solid var(--border);
  cursor: pointer;
}
.request-box input {
  flex: 1;
  min-width: 0;
}
.request-box .btn-request {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.request-box .btn-request:hover { background: var(--primary-hover); }
@media (max-width: 640px) {
  .request-box { flex-direction: column; padding: 14px; gap: 10px; }
  .request-box select,
  .request-box input { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .request-box .btn-request { width: 100%; }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  justify-content: center;
}
.hero-tag {
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.hero-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

/* Trust bar under hero */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 40px;
  color: var(--text-soft);
  font-size: 13px;
}
.hero-trust .pt { display: flex; align-items: center; gap: 6px; }
.hero-trust .pt strong { font-weight: 800; color: var(--text); font-size: 16px; }
.hero-trust .sep { width: 1px; height: 20px; background: var(--border); }
@media (max-width: 640px) {
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .hero-trust .sep { display: none; }
}

/* ============================================
   Section head
============================================ */
.section {
  padding: 60px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
}
.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}
.section-more {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-more:hover { color: var(--primary); }

/* ============================================
   Category Grid
============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }

.cat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 12px 18px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.cat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-soft);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}
.cat-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-item:hover::before { opacity: 0.5; }
.cat-item > * { position: relative; z-index: 1; }
.cat-item .emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.cat-item .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.cat-item .count {
  font-size: 11px;
  color: var(--primary);
  margin-top: 4px;
  font-weight: 700;
}

/* ============================================
   How It Works (3-step)
============================================ */
.how-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
  padding: 70px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 768px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: all 0.2s ease;
}
.how-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.how-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 72px;
  font-weight: 900;
  color: var(--primary-soft);
  line-height: 1;
  letter-spacing: -2px;
}
.how-icon {
  width: 48px; height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.how-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.how-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================
   Service Card Grid
============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.svc-card-media {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--surface-soft);
  position: relative;
}
.svc-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-media img { transform: scale(1.05); }
.svc-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.svc-card-badge.hot { background: var(--warning); }
.svc-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-cat {
  font-size: 11px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.svc-card-meta .star { color: var(--star); }
.svc-card-meta .price {
  margin-left: auto;
  font-weight: 800;
  color: var(--text);
}

/* ============================================
   Stats banner
============================================ */
.stats-band {
  background: var(--primary);
  padding: 50px 0;
  color: white;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08), transparent 50%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
.stat-item .val {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-item .label {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 8px;
}

/* ============================================
   Expert Cards
============================================ */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .expert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .expert-grid { grid-template-columns: 1fr; } }

.expert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.expert-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.expert-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  object-fit: cover;
  border: 3px solid var(--primary-soft);
}
.expert-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.expert-badge {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-weight: 700;
}
.expert-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.expert-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-soft);
}
.expert-stats .val {
  font-weight: 800;
  color: var(--text);
  display: block;
  font-size: 15px;
}

/* ============================================
   Category Page
============================================ */
.cat-hero {
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
  padding: 60px 0 40px;
}
.cat-hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
@media (max-width: 640px) { .cat-hero h1 { font-size: 28px; } }
.cat-hero p {
  color: var(--text-soft);
  font-size: 16px;
  max-width: 560px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-toolbar .count {
  font-size: 14px;
  color: var(--text-soft);
}
.cat-toolbar .count strong { color: var(--primary); font-weight: 800; }
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 7px 14px;
  font: inherit;
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 600;
  color: var(--text-soft);
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active {
  background: var(--text);
  border-color: var(--text);
  color: white;
}

/* ============================================
   Request Page (숨고 signature)
============================================ */
.request-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.request-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.rstep {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.rstep .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-soft);
  font-weight: 800;
  display: grid; place-items: center;
  font-size: 13px;
}
.rstep.active { color: var(--text); }
.rstep.active .num { background: var(--primary); color: white; }
.rstep.done .num { background: var(--success); color: white; }
.rstep-sep {
  width: 32px;
  height: 1px;
  background: var(--border);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.form-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.form-card p.sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--primary); }
.form-row textarea { min-height: 120px; resize: vertical; }
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 540px) { .radio-grid { grid-template-columns: repeat(2, 1fr); } }
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input { position: absolute; opacity: 0; }
.radio-card-inner {
  padding: 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  text-align: center;
  transition: all 0.15s ease;
  font-size: 13px;
  font-weight: 600;
}
.radio-card-inner .emoji { font-size: 26px; display: block; margin-bottom: 6px; }
.radio-card input:checked + .radio-card-inner {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}
.form-nav button {
  flex: 1;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
}
.form-nav .btn-back { background: var(--surface-soft); color: var(--text-soft); }
.form-nav .btn-next { background: var(--primary); color: white; }

/* Quote examples shown after form */
.quote-examples {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}
.quote-card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.quote-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.quote-card .info { flex: 1; }
.quote-card .name { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.quote-card .meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.quote-card .price {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
}
.quote-card .msg {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}

/* ============================================
   Expert Profile Page
============================================ */
.expert-hero {
  background: linear-gradient(180deg, var(--primary-soft), var(--bg));
  padding: 50px 0 40px;
}
.expert-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 640px) {
  .expert-hero-inner { flex-direction: column; text-align: center; }
}
.expert-hero-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.expert-hero h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.8px;
}
.expert-hero .title {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.expert-hero-stats {
  display: flex;
  gap: 28px;
}
@media (max-width: 640px) { .expert-hero-stats { justify-content: center; flex-wrap: wrap; gap: 18px; } }
.expert-hero-stats .stat .val {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  display: block;
}
.expert-hero-stats .stat .label {
  font-size: 12px;
  color: var(--text-muted);
}

.profile-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  padding: 40px 0 60px;
}
@media (max-width: 900px) { .profile-body { grid-template-columns: 1fr; gap: 20px; } }

.profile-main h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 12px;
  letter-spacing: -0.3px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--text);
}
.profile-main h2:first-child { margin-top: 0; }
.profile-main h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.profile-main p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; color: var(--text); }
.profile-main ul { padding-left: 20px; margin-bottom: 16px; }
.profile-main li { line-height: 1.7; margin-bottom: 6px; font-size: 15px; }

.action-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
@media (max-width: 900px) { .action-card { position: static; } }
.action-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}
.action-features {
  list-style: none;
  margin: 0 0 20px;
}
.action-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.action-features li:last-child { border-bottom: none; }
.action-features .chk { color: var(--success); font-weight: 900; flex-shrink: 0; }
.btn-full {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 15px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 10px;
  transition: background 0.15s ease;
}
.btn-full:hover { background: var(--primary-hover); }
.btn-full-outline {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1.5px solid var(--border-strong);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.15s ease;
}
.btn-full-outline:hover { border-color: var(--text); }

/* Review list */
.review-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.review-item:last-child { border-bottom: none; }
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-head img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.review-head .name { font-weight: 700; font-size: 14px; }
.review-head .date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--star); font-size: 13px; margin-left: auto; }
.review-item .text { font-size: 14px; line-height: 1.6; color: var(--text); }

/* ============================================
   Static pages
============================================ */
.page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.page-hero { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.page-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.page h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}
@media (max-width: 640px) { .page h1 { font-size: 28px; } }
.page-lead { font-size: 17px; color: var(--text-soft); line-height: 1.6; }

.page-section { margin-bottom: 36px; }
.page-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.page-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.page-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 12px;
}
.page-section ul { padding-left: 20px; margin-bottom: 16px; }
.page-section ul li { line-height: 1.7; margin-bottom: 6px; }

/* Contact form */
.contact-form { display: grid; gap: 14px; margin-top: 18px; }
.contact-form label { font-size: 13px; font-weight: 700; margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button[type="submit"] {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  justify-self: start;
  transition: background 0.2s ease;
}
.contact-form button[type="submit"]:hover { background: var(--primary-hover); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.contact-card .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 800; margin-bottom: 6px; letter-spacing: 0.5px; }
.contact-card .value { font-weight: 700; font-size: 14px; }

/* ============================================
   Footer
============================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-brand .logo {
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-desc { font-size: 13px; line-height: 1.6; max-width: 320px; }
.footer h4 {
  color: white;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; transition: color 0.15s ease; }
.footer-col a:hover { color: #60A5FA; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
