/* ================================================================
   Tudo Guru — Public Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --tg-primary:   #00B89F;
  --tg-primary-dk:#007F6E;
  --tg-gold:      #F5A623;
  --tg-sand:      #FFF8EE;
  --tg-ink:       #12120F;
  --tg-slate:     #3C3C3A;
  --tg-mist:      #E8F5F3;
  --tg-white:     #FFFFFF;
  --tg-radius:    14px;
  --tg-shadow:    0 6px 28px rgba(0,0,0,.10);
}

.tg-wrap * { box-sizing: border-box; }

.tg-wrap {
  font-family: 'DM Sans', sans-serif;
  color: var(--tg-ink);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero Bar ──────────────────────────────────────────────────── */
.tg-hero-bar {
  background: linear-gradient(135deg, var(--tg-sand) 0%, #dff7f3 100%);
  border-radius: var(--tg-radius);
  padding: 56px 48px 44px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tg-hero-bar::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,184,159,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.tg-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: var(--tg-ink); margin: 0 0 12px;
}
.tg-hero-title em { color: var(--tg-primary); font-style: normal; }
.tg-hero-sub { color: var(--tg-slate); font-size: 1.05rem; margin: 0 0 28px; }

/* ── Search Bar ────────────────────────────────────────────────── */
.tg-search-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,.13);
  overflow: hidden;
  max-width: 820px; margin: 0 auto 20px;
}
.tg-search-cat, .tg-search-loc, .tg-search-kw {
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem; padding: 14px 18px;
  background: transparent; color: var(--tg-ink);
}
.tg-search-cat  { border-right: 1px solid #eee; min-width: 160px; }
.tg-search-loc  { border-right: 1px solid #eee; min-width: 160px; }
.tg-search-kw   { flex: 1; min-width: 120px; }
.tg-search-btn  {
  background: var(--tg-primary); color: #fff;
  border: none; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .92rem;
  cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.tg-search-btn:hover { background: var(--tg-primary-dk); }

.tg-hero-stats {
  display: flex; gap: 20px; justify-content: center;
  font-size: .88rem; color: var(--tg-slate); flex-wrap: wrap;
}

/* ── Filter Bar ────────────────────────────────────────────────── */
.tg-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid #eee;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.tg-results-label { font-weight: 600; color: var(--tg-slate); }
.tg-filter-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tg-filter-check { font-size: .88rem; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.tg-sort-select {
  border: 1px solid #ddd; border-radius: 8px;
  padding: 7px 12px; font-size: .88rem;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}

/* ── Category Pills ────────────────────────────────────────────── */
.tg-cat-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.tg-cat-pill {
  background: var(--tg-sand); color: var(--tg-slate);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 8px 16px; font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.tg-cat-pill:hover, .tg-cat-pill.active {
  background: var(--tg-mist);
  border-color: var(--tg-primary);
  color: var(--tg-primary-dk);
}

/* ── Grid ──────────────────────────────────────────────────────── */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* ── Tradesperson Card ─────────────────────────────────────────── */
.tg-card {
  background: #fff;
  border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  display: flex; flex-direction: column;
}
.tg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,.14);
}
.tg-card-featured { border: 2px solid var(--tg-gold); }
.tg-card-featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--tg-gold); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: .5px;
}

.tg-card-header {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 20px 14px;
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dk) 100%);
  position: relative;
}
.tg-card-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.4);
  overflow: hidden;
  background: rgba(255,255,255,.2);
}
.tg-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tg-card-avatar-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: #fff;
}
.tg-card-identity { flex: 1; }
.tg-card-name { margin: 0 0 3px; font-size: 1rem; line-height: 1.2; }
.tg-card-name a { color: #fff; text-decoration: none; font-weight: 700; }
.tg-card-name a:hover { text-decoration: underline; }
.tg-card-trade { font-size: .8rem; color: rgba(255,255,255,.75); }
.tg-badge-verified {
  display: inline-block; background: rgba(255,255,255,.18);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  margin-top: 5px; letter-spacing: .5px;
}
.tg-card-availability {
  font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  align-self: flex-start; letter-spacing: .5px;
  white-space: nowrap;
}
.tg-card-availability.available { background: #4ade80; color: #052e16; }
.tg-card-availability.busy      { background: #fbbf24; color: #451a03; }

.tg-card-body { padding: 16px 20px; flex: 1; }
.tg-card-location { font-size: .82rem; color: var(--tg-slate); margin-bottom: 8px; }
.tg-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.tg-card-rating-num { font-weight: 700; font-size: .9rem; }
.tg-card-rating-count { font-size: .78rem; color: #999; }
.tg-card-meta { margin-bottom: 10px; }
.tg-card-exp { font-size: .8rem; color: var(--tg-slate); }
.tg-card-services { display: flex; flex-wrap: wrap; gap: 5px; }

.tg-card-footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* ── Stars ─────────────────────────────────────────────────────── */
.tg-stars { display: inline-flex; }
.tg-star.full  { color: var(--tg-gold); }
.tg-star.half  { color: var(--tg-gold); opacity: .6; }
.tg-star.empty { color: #ddd; }

/* ── Buttons ───────────────────────────────────────────────────── */
.tg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .88rem; cursor: pointer; border: none;
  text-decoration: none; transition: all .2s;
  white-space: nowrap;
}
.tg-btn-primary  { background: var(--tg-primary); color: #fff; }
.tg-btn-primary:hover { background: var(--tg-primary-dk); color: #fff; }
.tg-btn-outline  { background: transparent; color: var(--tg-primary); border: 2px solid var(--tg-primary); }
.tg-btn-outline:hover { background: var(--tg-mist); }
.tg-btn-whatsapp { background: #25D366; color: #fff; }
.tg-btn-whatsapp:hover { background: #1da851; color: #fff; }
.tg-btn-phone    { background: var(--tg-primary); color: #fff; }
.tg-btn-phone:hover { background: var(--tg-primary-dk); color: #fff; }
.tg-btn-white    { background: #fff; color: var(--tg-primary-dk); }
.tg-btn-white:hover { background: var(--tg-sand); }
.tg-btn-sm  { padding: 7px 14px; font-size: .82rem; }
.tg-btn-large { padding: 16px 36px; font-size: 1rem; width: 100%; }

/* ── Tags ──────────────────────────────────────────────────────── */
.tg-tag {
  background: var(--tg-mist); color: var(--tg-primary-dk);
  font-size: .72rem; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
}
.tg-tag-small {
  background: #f0f0f0; color: #666;
  font-size: .72rem; padding: 2px 8px; border-radius: 100px;
}

/* ── Load More / No Results ────────────────────────────────────── */
.tg-load-more-wrap { text-align: center; margin: 12px 0 40px; }
.tg-no-results { grid-column: 1/-1; text-align: center; padding: 60px; }
.tg-no-results-icon { font-size: 3rem; margin-bottom: 12px; }
.tg-no-results h3 { margin: 0 0 8px; }
.tg-no-results p { color: var(--tg-slate); }

/* ── Register CTA ──────────────────────────────────────────────── */
.tg-register-cta {
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dk) 100%);
  border-radius: var(--tg-radius);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}
.tg-register-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin: 0 0 12px;
}
.tg-register-cta p { opacity: .85; margin: 0 0 24px; }

/* ── Profile Page ──────────────────────────────────────────────── */
.tg-profile-wrap { padding-top: 20px; max-width: 1100px; }
.tg-breadcrumb {
  font-size: .83rem; color: #999; margin-bottom: 24px;
  display: flex; gap: 8px; align-items: center;
}
.tg-breadcrumb a { color: var(--tg-primary); text-decoration: none; }
.tg-breadcrumb a:hover { text-decoration: underline; }

.tg-profile-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 32px; align-items: start;
}
.tg-profile-card {
  background: #fff; border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow); padding: 28px;
  position: sticky; top: 20px;
}
.tg-profile-photo-wrap { text-align: center; margin-bottom: 16px; }
.tg-profile-photo {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--tg-mist);
}
.tg-profile-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--tg-primary); color: #fff;
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.tg-profile-avail {
  display: inline-block; font-size: .8rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; margin-top: 10px;
}
.tg-profile-avail.available { background: #dcfce7; color: #166534; }
.tg-profile-avail.busy      { background: #fef3c7; color: #92400e; }

.tg-profile-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; text-align: center; margin: 12px 0 4px; }
.tg-profile-trade { text-align: center; color: var(--tg-slate); font-size: .9rem; margin-bottom: 8px; }
.tg-profile-verified { text-align: center; color: var(--tg-primary-dk); font-weight: 600; font-size: .85rem; margin-bottom: 12px; }
.tg-profile-rating { display: flex; align-items: center; gap: 6px; justify-content: center; margin-bottom: 16px; }
.tg-profile-rating-num { font-weight: 700; }
.tg-profile-rating-count { font-size: .8rem; color: #999; }

.tg-profile-stats-row { display: flex; gap: 4px; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 14px 0; margin-bottom: 16px; }
.tg-ps { flex: 1; text-align: center; }
.tg-ps span { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--tg-primary); }

.tg-profile-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tg-profile-contacts .tg-btn { justify-content: center; }

.tg-profile-details { font-size: .85rem; color: var(--tg-slate); display: flex; flex-direction: column; gap: 8px; }
.tg-detail-row { display: flex; align-items: flex-start; gap: 6px; }

.tg-profile-main { }
.tg-profile-section {
  background: #fff; border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow); padding: 28px;
  margin-bottom: 24px;
}
.tg-profile-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--tg-mist);
}
.tg-profile-bio { line-height: 1.75; color: var(--tg-slate); }
.tg-services-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tg-services-list li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--tg-slate); }

/* ── Reviews ───────────────────────────────────────────────────── */
.tg-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--tg-mist); }
.tg-reviews-header h2 { margin: 0; border: none; padding: 0; }

.tg-review-form-wrap {
  background: var(--tg-sand); border-radius: 12px;
  padding: 24px; margin-bottom: 24px;
}
.tg-review-form-wrap h3 { margin: 0 0 16px; }
.tg-star-picker { display: flex; gap: 8px; margin-bottom: 6px; cursor: pointer; }
.tg-star-btn { font-size: 2rem; color: #ddd; transition: color .15s; line-height: 1; }
.tg-star-btn.active, .tg-star-btn:hover { color: var(--tg-gold); }

.tg-review {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
}
.tg-review:last-child { border-bottom: none; }
.tg-review-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.tg-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--tg-mist); color: var(--tg-primary-dk);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.tg-review-info { flex: 1; }
.tg-review-date { font-size: .78rem; color: #999; white-space: nowrap; }
.tg-review-title-pub { font-weight: 700; margin-bottom: 6px; }
.tg-review-body-pub { color: var(--tg-slate); line-height: 1.65; margin: 0 0 10px; }
.tg-review-reply { background: var(--tg-mist); border-left: 3px solid var(--tg-primary); padding: 12px 16px; border-radius: 0 8px 8px 0; margin: 10px 0; font-size: .88rem; }
.tg-review-helpful { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: #999; }
.tg-vote-btn { border: 1px solid #ddd; background: #fff; border-radius: 100px; padding: 3px 10px; cursor: pointer; font-size: .8rem; transition: all .2s; }
.tg-vote-btn:hover { border-color: var(--tg-primary); color: var(--tg-primary); }

.tg-review-msg, .tg-form-msg {
  margin-top: 12px; padding: 12px 16px; border-radius: 8px;
  font-size: .9rem; font-weight: 500;
}
.tg-review-msg.success, .tg-form-msg.success { background: #dcfce7; color: #166534; }
.tg-review-msg.error,   .tg-form-msg.error   { background: #fee2e2; color: #991b1b; }
.tg-no-reviews { color: var(--tg-slate); font-style: italic; }

/* ── Registration Form ─────────────────────────────────────────── */
.tg-register-wrap { max-width: 800px; }
.tg-register-hero {
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dk) 100%);
  border-radius: var(--tg-radius); padding: 48px 40px;
  text-align: center; color: #fff; margin-bottom: 32px;
}
.tg-register-hero h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin: 0 0 12px; }
.tg-register-hero p { opacity: .85; margin: 0 0 20px; }
.tg-register-benefits { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: .88rem; opacity: .9; }
.tg-register-form-wrap { background: #fff; border-radius: var(--tg-radius); box-shadow: var(--tg-shadow); overflow: hidden; }
.tg-form-section { padding: 28px 32px; border-bottom: 1px solid #f0f0f0; }
.tg-form-section:last-child { border-bottom: none; }
.tg-form-section-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 0 0 20px; }
.tg-form-submit-section { background: var(--tg-sand); text-align: center; }
.tg-terms-note { font-size: .82rem; color: #999; margin-bottom: 16px; }
.tg-form-success { text-align: center; padding: 60px 32px; }
.tg-success-icon { font-size: 3rem; margin-bottom: 16px; }
.tg-form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 0 0 12px; }

/* ── Form Fields ───────────────────────────────────────────────── */
.tg-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tg-field label { font-weight: 600; font-size: .88rem; color: var(--tg-ink); }
.tg-field input:not([type=checkbox]):not([type=radio]):not([type=file]),
.tg-field select,
.tg-field textarea {
  border: 2px solid #e5e5e5; border-radius: 10px;
  padding: 11px 14px; font-size: .92rem;
  font-family: 'DM Sans', sans-serif; color: var(--tg-ink);
  transition: border-color .2s;
  width: 100%;
}
.tg-field input:focus, .tg-field select:focus, .tg-field textarea:focus {
  outline: none; border-color: var(--tg-primary);
}
.tg-field textarea { resize: vertical; }
.tg-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tg-field-note { font-size: .78rem; color: #999; }
.required { color: var(--tg-primary); }

/* ── Spinner ───────────────────────────────────────────────────── */
.tg-btn.loading { opacity: .7; pointer-events: none; }
.tg-btn.loading::after { content: ' ⏳'; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .tg-hero-bar   { padding: 36px 24px 28px; }
  .tg-search-bar { border-radius: 14px; flex-direction: column; }
  .tg-search-cat, .tg-search-loc, .tg-search-kw { border-right: none; border-bottom: 1px solid #eee; width: 100%; }
  .tg-search-btn { border-radius: 0 0 14px 14px; }
  .tg-profile-grid { grid-template-columns: 1fr; }
  .tg-profile-card { position: static; }
  .tg-services-list { grid-template-columns: 1fr; }
  .tg-field-row { grid-template-columns: 1fr; }
  .tg-form-section { padding: 20px 20px; }
  .tg-filter-bar { flex-direction: column; align-items: flex-start; }
}

/* Tudo Guru v1.0.2 enhancements */
.tg-homepage{display:block}
.tg-home-hero{padding:28px 0 10px}
.tg-home-hero-inner{display:grid;grid-template-columns:1.3fr .9fr;gap:28px;align-items:center}
.tg-home-copy h1{font-size:clamp(2.2rem,4vw,4rem);line-height:1.02;margin:0 0 12px}
.tg-home-copy p{font-size:1.05rem;max-width:760px}
.tg-home-kicker{display:inline-block;padding:8px 12px;border-radius:999px;background:rgba(0,184,159,.1);color:var(--tg-primary);font-weight:700;margin-bottom:14px}
.tg-home-glow-card{position:relative;min-height:320px}
.tg-home-orb{position:absolute;inset:20px 0 auto auto;width:260px;height:260px;border-radius:999px;background:radial-gradient(circle, rgba(0,184,159,.22), rgba(255,255,255,0));filter:blur(8px)}
.tg-home-trust-card,.tg-step-card,.tg-quote-card,.tg-category-tile,.tg-trust-item{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;box-shadow:0 12px 34px rgba(15,23,42,.08)}
.tg-home-trust-card{position:relative;padding:28px}
.tg-home-trust-card ul{margin:12px 0 18px 18px}
.tg-home-quick-tags{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0}
.tg-home-quick-tags a{display:inline-flex;padding:8px 12px;border-radius:999px;background:#fff;border:1px solid rgba(15,23,42,.1);text-decoration:none}
.tg-section{padding:24px 0}
.tg-section-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:18px}
.tg-section-head h2{margin:0}
.tg-category-grid,.tg-testimonial-grid,.tg-trust-grid,.tg-steps-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.tg-category-tile{display:flex;flex-direction:column;padding:20px;text-decoration:none;color:inherit}
.tg-category-icon{font-size:1.5rem;margin-bottom:10px}
.tg-category-name{font-weight:700;margin-bottom:6px}
.tg-category-count{color:#64748b}
.tg-step-card,.tg-quote-card,.tg-trust-item{padding:22px}
.tg-step-num{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:999px;background:var(--tg-primary);color:#fff;font-weight:700;margin-bottom:10px}
.tg-trust-grid .tg-trust-cta{background:linear-gradient(180deg,#ffffff,#f4fbfa)}
.tg-site-footer{display:flex;justify-content:space-between;align-items:center;gap:16px;border-top:1px solid rgba(15,23,42,.08);padding:24px 0 14px;color:#475569}
.tg-site-footer strong{display:block;color:#0f172a}
.tg-site-footer-links{display:flex;gap:14px;flex-wrap:wrap}
.tg-site-footer-links a{text-decoration:none}
.tg-card-topbadges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.tg-badge{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;font-size:.8rem;font-weight:700}
.tg-badge-featured{background:#fff8e6;color:#9a6700}
.tg-badge-verified{background:#e7f7f3;color:#0f766e}
.tg-badge-premium{background:#fef3c7;color:#92400e}
.tg-badge-new{background:#ede9fe;color:#6d28d9}
.tg-card-completeness{margin:12px 0}
.tg-card-completeness-bar{height:8px;background:#e2e8f0;border-radius:999px;overflow:hidden}
.tg-card-completeness-bar span{display:block;height:100%;background:linear-gradient(90deg,var(--tg-primary),#15b8a6);border-radius:999px}
.tg-card-completeness small{display:block;margin-top:6px;color:#64748b}
.tg-card-areas{font-size:.92rem;color:#475569;margin-top:8px}
.tg-grid-featured .tg-card{border-width:1px}
.tg-profile-badges{margin-bottom:10px}
.tg-register-steps{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.tg-register-steps span{padding:8px 12px;border-radius:999px;background:#fff;border:1px solid rgba(15,23,42,.1)}
.tg-register-steps span.active{background:rgba(0,184,159,.1);border-color:rgba(0,184,159,.25);color:var(--tg-primary);font-weight:700}
.tg-hero-stats{display:flex;gap:16px;flex-wrap:wrap;margin-top:16px}
.tg-card-footer .tg-btn{white-space:nowrap}
@media (max-width: 980px){
  .tg-home-hero-inner,.tg-category-grid,.tg-testimonial-grid,.tg-trust-grid,.tg-steps-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .tg-home-hero-inner,.tg-category-grid,.tg-testimonial-grid,.tg-trust-grid,.tg-steps-grid,.tg-site-footer{grid-template-columns:1fr;display:grid}
  .tg-site-footer{justify-content:start}
}
