/* WebsiteSelfHelp.com — calm, trustworthy, fast. No framework. */

:root {
  --teal: #0d6e6e;
  --teal-dark: #0a5757;
  --teal-light: #e6f2f1;
  --ink: #1f2a30;
  --body: #3c4a52;
  --muted: #6b7984;
  --line: #e3e8ec;
  --bg: #ffffff;
  --bg-soft: #f6f9f9;
  --bg-soft2: #eef4f4;
  --amber: #b7791f;
  --amber-bg: #fdf6e7;
  --amber-line: #f0d9a8;
  --red: #b3261e;
  --red-bg: #fcecea;
  --red-line: #f2c4bf;
  --green: #1f7a4d;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16,40,40,.06), 0 6px 20px rgba(16,40,40,.06);
  --shadow-sm: 0 1px 2px rgba(16,40,40,.06);
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin: .3rem 0; }
.muted { color: var(--muted); }
.center { text-align: center; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-weight: 600; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: .85rem 1.4rem; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  transition: transform .04s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--teal-dark); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); background: var(--teal-light); }
.btn-ghost { background: transparent; color: var(--teal-dark); border-color: transparent; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #8f1d17; color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.wa-callout { border-left-color: #25d366; }
.wa-callout h3 { display: flex; align-items: center; gap: .5rem; }
.wa-icon { width: 22px; height: 22px; fill: #25d366; flex: none; }
.btn-sm { padding: .55rem .95rem; font-size: .92rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.08rem; }
.btn .icon { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row.center { justify-content: center; }

/* ---- Icons ---- */
.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.icon-inline { width: 18px; height: 18px; vertical-align: -3px; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.2rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; color: var(--teal); }
.brand-icon { width: 26px; height: 26px; }
.brand-text { font-weight: 600; letter-spacing: -.01em; }
.brand-text strong { color: var(--teal-dark); font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: var(--body); font-weight: 500; }
.site-nav a[aria-current] { color: var(--teal-dark); }
.site-nav a.btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 64px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--bg-soft2); }
  .site-nav a.btn { margin-top: 12px; border: 1.5px solid transparent; }
}

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, var(--teal-light), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 64px 0 48px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .85rem;
  color: var(--teal-dark); background: var(--teal-light); padding: .35rem .75rem;
  border-radius: 999px; margin-bottom: 1rem;
}
.hero p.lead { font-size: 1.2rem; color: var(--body); margin-bottom: 1.6rem; }
.trust-note {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem;
  color: var(--muted); font-size: .95rem;
}
.trust-note .icon-inline { color: var(--green); }

.trust-badges {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
}
.trust-badges li {
  display: inline-flex; align-items: center; gap: .4rem; margin: 0;
  color: var(--ink); font-weight: 600; font-size: .92rem;
}
.trust-badges .icon-inline { color: var(--green); flex: none; }

.survey-stat {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.1rem;
  background: #fff; border: 1px solid var(--teal-light); border-left: 4px solid var(--teal);
  color: var(--ink); font-weight: 600; padding: .7rem 1rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); line-height: 1.4;
}
.survey-stat .icon-inline { color: var(--green); flex: none; }
.survey-stat .muted { font-weight: 400; }
.survey-stat-note { font-size: .78rem; color: var(--muted); margin: .4rem 0 0; }

/* ---- Helper satisfaction comparison ---- */
.sat-compare { margin-top: 1.2rem; }
.sat-compare-title { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.sat-compare-title .icon-inline { color: var(--teal); flex: none; }
.sat-compare-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: .55rem; max-width: 560px; }
.sat-card {
  flex: 1 1 200px; display: flex; align-items: baseline; gap: .6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem 1rem; box-shadow: var(--shadow-sm);
}
.sat-card .sat-pct { font-size: 1.7rem; font-weight: 800; line-height: 1; }
.sat-card .sat-label { color: var(--muted); font-size: .9rem; }
.sat-card.usa { border-left: 4px solid var(--green); }
.sat-card.usa .sat-pct { color: var(--green); }
.sat-card.overseas { border-left: 4px solid var(--amber); }
.sat-card.overseas .sat-pct { color: var(--amber); }

.freeband { background: var(--teal-light); border-bottom: 1px solid var(--line); }
.freeband .container { padding-top: 16px; padding-bottom: 16px; }
.freeband p {
  margin: 0; text-align: center; color: var(--teal-dark); font-size: 1.02rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap;
}
.freeband .icon-inline { color: var(--green); }

/* ---- Search ---- */
.search-form { display: flex; gap: 10px; max-width: 560px; margin-top: 1.2rem; }
.search-form input[type="search"] {
  flex: 1; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff;
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.search-form .btn { flex: none; }
@media (max-width: 480px){ .search-form { flex-direction: column; } .search-form .btn { width: 100%; } }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-4 { grid-template-columns: repeat(3,1fr);} .grid-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s, transform .06s;
  display: block; color: var(--body);
}
a.card:hover { text-decoration: none; border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: .35rem; color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--teal-light); color: var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.card-link { margin-top: 12px; font-weight: 600; color: var(--teal-dark); display: inline-flex; align-items: center; gap: .35rem; }

/* ---- How it works ---- */
.steps { counter-reset: step; display: grid; gap: 16px; grid-template-columns: repeat(4,1fr); }
@media (max-width: 800px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.step .num {
  counter-increment: step; width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff;
  font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.step .num::before { content: counter(step); }

/* ---- Help paths ---- */
.path-card { border-top: 4px solid var(--line); }
.path-card.free { border-top-color: var(--green); }
.path-card.freelancer { border-top-color: var(--teal); }
.path-card.expert { border-top-color: var(--amber); }
.path-card h3 { display: flex; align-items: center; gap: .5rem; }

/* ---- Two-option comparison ---- */
.compare-card { display: flex; flex-direction: column; border-top: 4px solid var(--line); }
.compare-card.free { border-top-color: var(--green); }
.compare-card.helper { border-top-color: var(--teal); }
.compare-card.free .card-icon { background: #e7f3ec; color: var(--green); }
.compare-head { margin-bottom: 4px; }
.compare-head .card-icon { margin-bottom: 12px; }
.compare-head h3 { margin-bottom: .25rem; font-size: 1.3rem; }
.compare-head p { color: var(--muted); margin: 0; }
.compare-list { flex: 1 1 auto; margin: 16px 0 22px; }
.compare-list li { margin: .55rem 0; }
.compare-btn { align-self: flex-start; }

/* ---- Callouts ---- */
.callout {
  border: 1px solid var(--line); border-left: 4px solid var(--teal); background: var(--bg-soft);
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 1.4rem 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.callout.safety { border-left-color: var(--amber); background: var(--amber-bg); border-color: var(--amber-line); }
.callout.safety h3, .callout.safety .icon-inline { color: var(--amber); }
.callout.danger { border-left-color: var(--red); background: var(--red-bg); border-color: var(--red-line); }
.callout.danger h3, .callout.danger .icon-inline { color: var(--red); }
.callout.tip { border-left-color: var(--green); }

/* ---- Section heading helper ---- */
.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); margin: 0; }

/* ---- Article ---- */
.breadcrumb { font-size: .9rem; color: var(--muted); margin: 22px 0 8px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-dark); }
.article { max-width: 760px; margin: 0 auto; padding-bottom: 40px; }
.article .summary { font-size: 1.18rem; color: var(--body); }
.article h2 { margin-top: 2.2rem; padding-top: .4rem; }
.article h2 .icon-inline { color: var(--teal); margin-right: .35rem; }
.article ul li::marker { color: var(--teal); }
.checklist { list-style: none; padding-left: 0; }
.checklist li { position: relative; padding-left: 30px; margin: .55rem 0; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 4px; background: var(--teal-light);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 13px no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 13px no-repeat;
  background-color: var(--teal);
}
.donot { list-style: none; padding-left: 0; }
.donot li { position: relative; padding-left: 30px; margin: .55rem 0; }
.donot li::before { content: "✕"; position: absolute; left: 4px; top: 0; color: var(--red); font-weight: 700; }
.tag-risk {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600;
  color: var(--amber); background: var(--amber-bg); border: 1px solid var(--amber-line);
  padding: .3rem .7rem; border-radius: 999px;
}
.codeblock {
  display: block; margin: .6rem 0; padding: 12px 14px; overflow-x: auto;
  background: var(--bg-soft2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86rem; line-height: 1.7; color: var(--ink); white-space: pre-wrap; word-break: break-word;
}

/* ---- FAQ ---- */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 16px; margin: 10px 0; background:#fff;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); padding: 12px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; color: var(--teal); font-weight: 800; margin-right: .6rem; }
.faq details[open] summary::before { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--bg-soft2); }
.faq p { padding: 10px 0; margin: 0; }

/* ---- Related ---- */
.related-list { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .related-list { grid-template-columns: 1fr; } }
.related-list a {
  display: flex; align-items: center; gap: .6rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-weight: 500;
}
.related-list a:hover { border-color: var(--teal); text-decoration: none; background: var(--teal-light); }
.related-list a .icon-inline { color: var(--teal); flex: none; }

/* ---- Forms ---- */
.form-wrap { max-width: 720px; margin: 0 auto; }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 0 0 18px; background: #fff; }
.fieldset legend, .field-label { font-weight: 600; color: var(--ink); }
.field { margin: 0 0 18px; }
.field > label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.hint { color: var(--muted); font-size: .9rem; margin: 2px 0 8px; }
input[type=text], input[type=email], input[type=tel], input[type=url], select, textarea {
  width: 100%; padding: .7rem .8rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
textarea { min-height: 110px; resize: vertical; }
.choices { display: grid; gap: 10px; }
.choices.cols-2 { grid-template-columns: 1fr 1fr; }
.choices.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px){ .choices.cols-2, .choices.cols-3 { grid-template-columns: 1fr; } }
.choice {
  display: flex; align-items: center; gap: .6rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .65rem .8rem; cursor: pointer; background: #fff; transition: border-color .12s, background .12s;
}
.choice:hover { border-color: var(--teal); }
.choice input { width: auto; margin: 0; accent-color: var(--teal); }
.choice:has(input:checked) { border-color: var(--teal); background: var(--teal-light); }
.req { color: var(--red); }

/* ---- Result page ---- */
.result-hero { padding: 48px 0 24px; }
.result-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; margin-bottom: 1rem;
}
.result-badge.diy { background: var(--teal-light); color: var(--teal-dark); }
.result-badge.freelancer { background: #e9f3ee; color: var(--green); }
.result-badge.quick-fix { background: var(--amber-bg); color: var(--amber); }
.result-badge.expert-review { background: #e7eefb; color: #1f4fb0; }
.result-badge.emergency { background: var(--red-bg); color: var(--red); }

/* ---- Matched helper profile (result pages) ---- */
.helper-match { border: 1px solid var(--teal-light); background: linear-gradient(180deg, var(--teal-light), #fff 60%); border-radius: var(--radius); padding: 20px 22px; margin: 1.6rem 0; box-shadow: var(--shadow-sm); }
.helper-badge { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .85rem; color: var(--teal-dark); background: #fff; border: 1px solid var(--teal-light); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 16px; }
.helper-badge .icon-inline { color: var(--green); }
.helper-card { display: flex; gap: 18px; align-items: flex-start; }
.helper-photo { width: 120px; height: 120px; flex: none; border-radius: 50%; object-fit: cover; object-position: center top; border: 3px solid #fff; box-shadow: var(--shadow); background: #fff; }
.helper-body { flex: 1 1 auto; min-width: 0; }
.helper-name { margin: 0 0 .4rem; }
.helper-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 .6rem; }
.helper-tag { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 700; padding: .24rem .65rem; border-radius: 999px; }
.helper-tag .icon-inline { width: 14px; height: 14px; }
.helper-tag.vetted { color: var(--green); background: #e7f3ec; border: 1px solid #cfe8da; }
.helper-tag.reviews { color: var(--amber); background: var(--amber-bg); border: 1px solid var(--amber-line); }
.helper-role { color: var(--ink); font-weight: 600; margin: 0 0 .1rem; }
.helper-meta { color: var(--muted); font-size: .88rem; margin: 0 0 .7rem; }
.helper-rank { display: flex; align-items: center; gap: .45rem; margin: 0 0 .45rem; color: var(--body); font-size: .92rem; }
.rank-star { font-size: 1.2rem; line-height: 1; flex: none; filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }
.rank-text strong { color: var(--ink); }
.rank-sub { color: var(--muted); font-weight: 400; }
.star-menu { margin: 0 0 .8rem; font-size: .88rem; }
.star-menu > summary { cursor: pointer; color: var(--teal-dark); font-weight: 600; list-style: none; display: inline-flex; align-items: center; gap: .4rem; padding: .1rem 0; }
.star-menu > summary::-webkit-details-marker { display: none; }
.star-menu > summary::after { content: "\203A"; color: var(--muted); transition: transform .15s ease; }
.star-menu[open] > summary::after { transform: rotate(90deg); }
.star-menu .sm-key { color: #f5b301; }
.star-menu-list { list-style: none; padding: 8px 0 2px; margin: 0; display: grid; gap: 5px; }
.star-menu-list li { display: flex; align-items: center; gap: .5rem; color: var(--body); }
.star-menu-list .sm-star { font-size: 1rem; line-height: 1; flex: none; }
.star-menu-list .sm-here { color: var(--green); font-weight: 700; font-size: .82rem; }
.star-menu-list .is-current { font-weight: 600; }
.helper-reviews-link { font-size: .88rem; margin: 0 0 .7rem; }
.helper-reviews-link a { font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.helper-reviews-link a .icon-inline { color: var(--teal); flex: none; }
.helper-reviews-link .muted { font-weight: 400; }

/* ---- Reviews page ---- */
.reviews-grid { columns: 3 330px; column-gap: 18px; }
.review-card { break-inside: avoid; -webkit-column-break-inside: avoid; display: inline-block; width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin: 0 0 18px; box-shadow: var(--shadow-sm); }
.review-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.review-who { display: flex; flex-direction: column; min-width: 0; }
.review-user { font-weight: 700; color: var(--ink); }
.review-meta { font-size: .82rem; color: var(--muted); }
.review-stars { color: #f5b301; letter-spacing: 2px; font-size: .95rem; margin-bottom: .45rem; }
.review-text { margin: 0; color: var(--body); font-size: .95rem; }
.review-tag { display: inline-block; margin-top: .7rem; font-size: .72rem; font-weight: 600; color: var(--teal-dark); background: var(--teal-light); padding: .2rem .6rem; border-radius: 999px; }
@media (max-width: 720px) { .reviews-grid { columns: 1; } }
.helper-extra { margin: 1.1rem 0 .2rem; padding-top: .9rem; border-top: 1px dashed var(--line); }
.helper-extra h4 { margin: 0 0 .5rem; font-size: .95rem; color: var(--ink); }
.helper-extra-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.helper-extra-list li { display: inline-flex; align-items: center; gap: .45rem; color: var(--body); font-size: .92rem; }
.helper-extra-list .icon-inline { color: var(--teal); flex: none; }
.helper-contact { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 .5rem; }
.helper-pref { font-size: .9rem; color: var(--muted); margin: .2rem 0 .6rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.helper-pref .icon-inline { color: var(--green); flex: none; }
.helper-note { font-size: .92rem; color: var(--body); background: #fff; border: 1px solid var(--teal-light); border-radius: var(--radius-sm); padding: .7rem .9rem; margin: 0; }

/* ---- Two-column profile + rolling reviews ticker ---- */
.helper-layout { display: flex; gap: 18px; align-items: stretch; }
.helper-layout > .helper-card { flex: 1 1 auto; min-width: 0; }
.helper-roll { flex: 0 0 320px; display: flex; flex-direction: column; min-width: 0; }
.roll-title { margin: 0 0 .5rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.roll-viewport { position: relative; flex: 1 1 auto; min-height: 440px; max-height: 640px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%); }
.roll-track { display: flex; flex-direction: column; gap: 10px; will-change: transform; }
.helper-roll:hover .roll-track { animation-play-state: paused; }
@keyframes rollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.roll-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; box-shadow: var(--shadow-sm); }
.roll-stars { color: #f5b301; font-size: .78rem; letter-spacing: 1px; }
.roll-text { margin: .25rem 0 .35rem; font-size: .84rem; line-height: 1.45; color: var(--body); }
.roll-user { font-size: .76rem; font-weight: 700; color: var(--teal-dark); }
@media (max-width: 700px) {
  .helper-layout { flex-direction: column; }
  .helper-roll { flex: 1 1 auto; }
  .roll-viewport { min-height: 240px; max-height: 320px; }
}
@media (prefers-reduced-motion: reduce) { .roll-track { animation: none; } }
.helper-body p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .helper-card { flex-direction: column; align-items: center; text-align: center; } .helper-tags, .helper-contact, .helper-pref { justify-content: center; } }

/* ---- Misc ---- */
.lead-list { columns: 2; }
@media (max-width: 560px){ .lead-list { columns: 1; } }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--ink); background: var(--bg-soft); }
.pill { display:inline-block; padding:.15rem .55rem; border-radius:999px; font-size:.78rem; font-weight:600; background:var(--bg-soft2); color:var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 18px; }

/* ---- Footer ---- */
.site-footer { background: #10302f; color: #cfe0df; padding: 48px 0 28px; margin-top: 64px; }
.site-footer h3 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .8rem; }
.site-footer a { color: #cfe0df; }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: #8fa9a7; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 800px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .35rem 0; }
.brand-footer { color: #fff; }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-mark { color: #4fd0c8; }
.footer-safety { display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; color: #8fa9a7; margin-top: 1rem; }
.footer-safety .icon-inline { color: #4fd0c8; flex: none; }
