/* ttr-home.css — Bark-style layout + hero search proportions (zero-edit) */
:root{
  --ttr:#4db6ac;
  --ink:#0f172a;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
  --radius:14px;
}
*{box-sizing:border-box}
body.ttr-body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#111;background:#fff;margin:0}
a{color:var(--ink);text-decoration:none}
.container{max-width:1240px;margin:0 auto;padding:0 24px}

/* ---------------- Header (spacing only) ---------------- */
.ttr-topbar{background:var(--bg);border-bottom:1px solid var(--border)}
.ttr-topbar__inner{min-height:68px;gap:28px}
.ttr-logo img{height:28px}
.ttr-exp-btn{font-size:15px}
.ttr-search input{max-width:600px;height:46px;border-radius:999px;padding:12px 18px;font-size:15px}
.ttr-cta{padding:10px 18px;border-radius:999px;font-weight:700}
@media(max-width:960px){
  .ttr-topbar__inner{gap:14px}
  .ttr-search{padding:8px 0}
  .ttr-logo img{height:24px}
}

/* ---------------- Hero ---------------- */
.hero{padding:72px 0 36px;background:#fafafa;border-bottom:1px solid var(--border)}
.hero__inner{display:block}
.hero h1{font-size:56px;line-height:1.06;margin:0 0 10px;font-weight:800;letter-spacing:-0.02em}
.hero .sub{color:var(--muted);font-size:18px;margin:0 0 20px}

/* Pill-style search bar like Bark */
.hero .search{display:flex;align-items:center;gap:0;background:#fff;border:1px solid var(--border);border-radius:999px;overflow:hidden;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.hero .search input{height:52px;border:0;background:#fff;padding:0 16px;font-size:16px}
.hero .search #ttr-svc{flex:1 1 62%}      /* wider left field */
.hero .search #ttr-loc{flex:0 0 26%;min-width:180px} /* narrower postal */
.hero .search #ttr-loc{border-left:1px solid var(--border)}
.hero .search button{flex:0 0 12%;height:52px;border:0;background:var(--ttr);color:#fff;font-weight:800;padding:0 22px;white-space:nowrap}
.hero .search button:hover{opacity:.95}
/* Mobile stack */
@media(max-width:720px){
  .hero .search{flex-wrap:wrap;gap:10px;border-radius:12px;box-shadow:none;overflow:visible;border:0}
  .hero .search input{flex:1 1 100%;min-width:0;height:48px;border:1px solid var(--border);border-radius:12px}
  .hero .search #ttr-loc{border-left:0}
  .hero .search button{flex:1 1 100%;height:48px;border-radius:12px}
}

.popular{margin-top:12px;color:var(--muted);font-size:14px}
.popular a{color:var(--ink);text-decoration:underline}

/* ---------------- Discover (card groups) ---------------- */
.discover{padding:44px 0}
.discover h2{font-size:24px;margin:0 0 18px}
.discover__grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.group{border:1px solid var(--border);border-radius:var(--radius);padding:16px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.group__title{font-weight:800;margin-bottom:8px}
.group__list{columns:2;margin:0;padding:0}
.group__list li{list-style:none;margin:8px 0}
.group__list a{color:var(--ink)}
@media(max-width:900px){.discover__grid{grid-template-columns:1fr}.group__list{columns:1}}

/* ---------------- How it works (pills) ---------------- */
.how{padding:40px 0;background:#fcfcfc;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.how h2{font-size:24px;margin:0 0 18px}
.how__steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.step{display:flex;gap:12px;align-items:flex-start;padding:16px;border:1px solid var(--border);border-radius:14px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.step__num{min-width:32px;height:32px;border-radius:999px;background:var(--ttr);color:#fff;display:grid;place-items:center;font-weight:800}
.step__title{font-weight:800;margin-bottom:4px}
.step__desc{color:var(--muted);font-size:15px}
@media(max-width:1024px){.how__steps{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.how__steps{grid-template-columns:1fr}}

/* ---------------- Testimonials ---------------- */
.quotes{padding:40px 0}
.quotes__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.quote{padding:16px;border:1px solid var(--border);border-radius:14px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.quote blockquote{margin:0 0 8px;font-size:15px;line-height:1.4}
.quote figcaption{color:var(--muted);font-size:14px}
@media(max-width:900px){.quotes__grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.quotes__grid{grid-template-columns:1fr}}

/* ---------------- FAQs ---------------- */
.faqs{padding:40px 0;background:#fcfcfc;border-top:1px solid var(--border)}
.faqs h2{font-size:24px;margin:0 0 18px}
.faqs details{border:1px solid var(--border);border-radius:14px;padding:14px;background:#fff;margin-bottom:12px;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.faqs summary{cursor:pointer;font-weight:700}

/* ---------------- CTA for Providers ---------------- */
.cta-pros{padding:40px 0;border-top:1px solid var(--border)}
.cta__inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.cta__inner .btn{background:var(--ttr);color:#fff;padding:12px 18px;border-radius:12px;font-weight:800}
