/* ============================================
   더주부픽 — 주부가 고른 홈서비스 마켓
   Kmong-inspired marketplace
============================================ */

:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-soft: #F7F7F8;
  --text: #1B1B1B;
  --text-soft: #6E6E7A;
  --text-muted: #A5A5B0;
  --border: #EEEEEE;
  --border-strong: #DCDCE0;

  /* Warm coral primary (different from kmong's red-orange) */
  --primary: #FF6B6B;
  --primary-hover: #E85555;
  --primary-soft: #FFF0F0;

  /* Secondary warm yellow (trust/rating) */
  --yellow: #FFB800;
  --yellow-soft: #FFF6DB;

  /* Success / Sale */
  --success: #22C55E;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --nav-h: 64px;
  --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: 24px;
}

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

.nav-search {
  flex: 1;
  max-width: 520px;
  background: var(--surface-soft);
  border: 2px solid var(--surface-soft);
  border-radius: 100px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-search:focus-within {
  border-color: var(--primary);
  background: var(--surface);
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font: inherit;
  color: var(--text);
  font-size: 14px;
}
.nav-search .icon { font-size: 16px; color: var(--text-muted); }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

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

.btn-outline {
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s ease;
}
.btn-outline:hover { border-color: var(--text); }

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

.menu-toggle {
  display: none;
  font-size: 22px;
  padding: 8px;
}
@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
============================================ */
.hero {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFF9E6 100%);
  padding: 50px 0 60px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 40px; }
}
.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .hero-title { font-size: 28px; } }
.hero-title .accent { color: var(--primary); }
.hero-desc {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-search {
  display: flex;
  background: var(--surface);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  box-shadow: var(--shadow-md);
  align-items: center;
  max-width: 480px;
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 15px;
  background: transparent;
  padding: 12px 0;
}
.hero-search button {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease;
}
.hero-search button:hover { background: var(--primary-hover); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-tag {
  font-size: 13px;
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 100px;
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}
.hero-tag:hover { border-color: var(--primary); color: var(--primary); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.hero-badge {
  position: absolute;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
}
.hero-badge-1 { top: 16px; left: -16px; }
.hero-badge-2 { bottom: 30px; right: -16px; }
.hero-badge .big { font-size: 20px; font-weight: 900; color: var(--primary); display: block; }

/* ============================================
   Section Heading
============================================ */
.section {
  padding: 48px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-title {
  font-size: 24px;
  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;
}
.section-more:hover { color: var(--primary); }

/* ============================================
   Category Grid
============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@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 14px 18px;
  text-align: center;
  transition: all 0.18s ease;
}
.cat-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cat-item .emoji {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}
.cat-item .name {
  font-size: 13px;
  font-weight: 700;
}

/* ============================================
   Service Card Grid (main product listings)
============================================ */
.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-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-card-media {
  aspect-ratio: 4/3;
  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-save {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  transition: all 0.15s ease;
}
.svc-card-save:hover { transform: scale(1.1); }
.svc-card-save.saved { color: var(--primary); }

.svc-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
}
.svc-card-badge.new { background: var(--success); }

.svc-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-seller {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.svc-card-seller img {
  width: 18px; height: 18px;
  border-radius: 50%;
  object-fit: cover;
}
.svc-card-seller .pro {
  font-size: 10px;
  padding: 1px 6px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 3px;
  font-weight: 700;
  margin-left: 2px;
}
.svc-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.svc-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-bottom: 10px;
}
.svc-card-rating .star { color: var(--yellow); }
.svc-card-rating .score { font-weight: 700; color: var(--text); }
.svc-card-rating .count { color: var(--text-muted); }
.svc-card-price {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.svc-card-price .label {
  font-size: 11px;
  color: var(--text-muted);
}
.svc-card-price .amount {
  font-size: 16px;
  font-weight: 800;
}

/* ============================================
   Promo banner
============================================ */
.promo {
  background: linear-gradient(90deg, #FFE6E6 0%, #FFF6DB 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 720px) {
  .promo { grid-template-columns: 1fr; padding: 24px; }
}
.promo h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.promo p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.promo-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.promo-img img { width: 100%; height: 100%; object-fit: cover; }

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

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

/* ============================================
   Category (listing) Page
============================================ */
.cat-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 32px 0;
}
@media (max-width: 900px) {
  .cat-page { grid-template-columns: 1fr; gap: 20px; }
}

.filter-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
@media (max-width: 900px) {
  .filter-side { position: static; }
}
.filter-side h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-soft);
}
.filter-option input { accent-color: var(--primary); }
.filter-option:hover { color: var(--text); }

.cat-main {
  min-width: 0;
}
.cat-hero {
  margin-bottom: 24px;
}
.cat-hero h1 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.cat-hero p {
  color: var(--text-soft);
  font-size: 15px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-toolbar .count {
  font-size: 14px;
  color: var(--text-soft);
}
.cat-toolbar .count strong { color: var(--primary); }
.sort-select {
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
  cursor: pointer;
}

/* ============================================
   Service Detail Page
============================================ */
.svc-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 32px 0 60px;
}
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; }
}

.svc-detail-main {
  min-width: 0;
}
.svc-detail-hero {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--surface-soft);
}
.svc-detail-hero img { width: 100%; height: 100%; object-fit: cover; }

.svc-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.svc-breadcrumb a:hover { color: var(--primary); }

.svc-detail-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .svc-detail-title { font-size: 22px; } }

.svc-detail-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
  font-size: 14px;
}
.svc-detail-meta .stat { display: flex; align-items: center; gap: 6px; color: var(--text-soft); }
.svc-detail-meta .stat strong { color: var(--text); font-weight: 800; }

.svc-detail-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--text);
}
.svc-detail-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.svc-detail-content p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: var(--text);
}
.svc-detail-content ul, .svc-detail-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.svc-detail-content li { line-height: 1.7; margin-bottom: 6px; }

/* Pricing tiers (kmong-style) */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
@media (max-width: 900px) {
  .pricing-card { position: static; }
}
.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface-soft);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 18px;
}
.pricing-tab {
  padding: 9px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  color: var(--text-soft);
  transition: all 0.15s ease;
}
.pricing-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.pricing-plan .plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.pricing-plan .plan-price {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.pricing-plan .plan-price .won { font-size: 16px; font-weight: 700; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .chk { color: var(--success); font-weight: 800; flex-shrink: 0; }

.pricing-card .btn-buy {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.15s ease;
  margin-bottom: 10px;
}
.pricing-card .btn-buy:hover { background: var(--primary-hover); }

.pricing-card .btn-contact {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.15s ease;
}
.pricing-card .btn-contact:hover { border-color: var(--text); }

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

/* ============================================
   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: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}
@media (max-width: 640px) { .page h1 { font-size: 26px; } }
.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: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  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: 12px 24px;
  border-radius: 100px;
  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(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 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: 12px; }
.footer-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; max-width: 320px; }
.footer h4 { font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
