/* =========================================================
   Green Leaf Laundry — plain CSS
   Edit colours, fonts and spacing freely. No build step.
   ========================================================= */

/* ---------- Design tokens (HSL strings, used like hsl(var(--primary))) ---------- */
:root {
  --background: 90 20% 98%;
  --foreground: 150 10% 15%;
  --card: 0 0% 100%;
  --card-foreground: 150 10% 15%;
  --primary: 142 52% 28%;
  --primary-foreground: 0 0% 100%;
  --secondary: 90 30% 93%;
  --secondary-foreground: 150 10% 15%;
  --muted: 90 15% 94%;
  --muted-foreground: 150 5% 45%;
  --accent: 142 40% 40%;
  --accent-foreground: 0 0% 100%;
  --border: 90 15% 88%;
  --destructive: 0 84% 60%;
  --radius: 0.75rem;
  --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0 solid hsl(var(--border)); }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* room for sticky mobile CTA */
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.h2 { font-size: 1.875rem; line-height: 1.2; color: hsl(var(--foreground)); }
@media (min-width: 768px) { .h2 { font-size: 3rem; } }
.h2-sm { font-size: 1.75rem; line-height: 1.2; }
@media (min-width: 768px) { .h2-sm { font-size: 2.25rem; } }
.lead { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.7; }
.muted { color: hsl(var(--muted-foreground)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-card { background: hsl(var(--card)); }
.bg-soft { background: #F7FAF8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.btn-primary:hover { background: hsl(var(--accent)); }
.btn-outline { background: transparent; border-color: hsl(var(--border)); color: hsl(var(--foreground)); }
.btn-outline:hover { background: hsl(var(--muted)); }
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn svg { width: 1rem; height: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ---------- Navbar ---------- 
    background: hsla(var(--background), 0.85);
*/
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.nav-logo img { height: 2.5rem; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color .2s;
}
.nav-link:hover { color: hsl(var(--primary)); }
.nav-link-strong { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); }
.nav-link-strong svg { width: 1rem; height: 1rem; }
.nav-portal {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.8rem; border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary)); font-size: 0.875rem; font-weight: 600;
  border-radius: 0.5rem; transition: background-color .2s, color .2s;
}
.nav-portal:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.nav-portal svg { width: 1rem; height: 1rem; }
.nav-toggle { display: inline-flex; }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--foreground)); }
.nav-mobile {
  display: none;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,40,30,0.95), rgba(20,40,30,0.75) 50%, rgba(20,40,30,0.2));
}
.hero-inner { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 3rem; }
.hero-content { max-width: 36rem; }
.hero h1 {
  font-size: 2.5rem; line-height: 1.1; color: #fff; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.95); margin-bottom: 1.5rem; max-width: 32rem; line-height: 1.6; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }
.hero-pill {
  font-size: 1rem; color: #fff; font-weight: 600; max-width: 30rem; margin-bottom: 1.25rem;
  border-left: 2px solid hsl(var(--primary)); padding-left: 0.75rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .hero-pill { font-size: 1.125rem; } }
.hero-since { font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-action-meta { font-size: 0.75rem; color: rgba(255,255,255,0.8); padding-left: 0.25rem; }

/* ---------- Hero info strip ---------- */
.info-strip { background: hsla(var(--secondary), 0.4); border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); padding: 1.25rem 0; }
.info-strip-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  align-items: center;
}
@media (min-width: 768px) { .info-strip-grid { grid-template-columns: 1fr 1fr 1fr; } }
.info-strip-item { display: flex; align-items: center; gap: 0.5rem; }
.info-strip-item svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); flex-shrink: 0; }
.info-strip-mid { justify-content: flex-start; }
@media (min-width: 768px) { .info-strip-mid { justify-content: center; text-align: center; } }
.info-strip-end { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; }
@media (min-width: 768px) { .info-strip-end { justify-content: flex-end; } }
.info-strip-end strong { color: hsl(var(--foreground)); font-weight: 500; }
.info-strip-end a { display: inline-flex; align-items: center; gap: 0.4rem; transition: color .2s; }
.info-strip-end a:hover { color: hsl(var(--primary)); }
.info-strip-end a svg { width: 1rem; height: 1rem; }

/* ---------- Trust logos ---------- */
.trust-logos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem;
  align-items: center; max-width: 72rem; margin: 0 auto;
}
@media (min-width: 640px) { .trust-logos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .trust-logos { grid-template-columns: repeat(7, 1fr); } }
.trust-logo { display: flex; justify-content: center; align-items: center; padding: 0 0.5rem; }
.trust-logo img { max-height: 3rem; width: auto; opacity: 0.8; transition: opacity .2s; object-fit: contain; }
.trust-logo img:hover { opacity: 1; }
@media (min-width: 768px) { .trust-logo img { max-height: 3.5rem; } }
.trust-logo.is-emphasized img { max-height: 4rem; }
@media (min-width: 768px) { .trust-logo.is-emphasized img { max-height: 5rem; } }

/* ---------- Generic card grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.maxw-3xl { max-width: 48rem; margin: 0 auto; }
.maxw-4xl { max-width: 56rem; margin: 0 auto; }
.maxw-5xl { max-width: 64rem; margin: 0 auto; }
.maxw-6xl { max-width: 72rem; margin: 0 auto; }

.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.75rem;
}
.card-elev {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .2s, box-shadow .2s;
}
.card-elev:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }

.icon-bubble {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: hsla(var(--primary), 0.1);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-bubble svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.icon-bubble-lg { width: 3rem; height: 3rem; }
.icon-bubble-lg svg { width: 1.5rem; height: 1.5rem; }
.icon-bubble-xl { width: 3.5rem; height: 3.5rem; }
.icon-bubble-xl svg { width: 1.75rem; height: 1.75rem; }
.icon-bubble-grey { background: hsl(var(--muted)); }
.icon-bubble-grey svg { color: hsl(var(--muted-foreground)); }

/* ---------- Pain points ---------- */
.pain { display: flex; align-items: flex-start; gap: 1rem; }
.pain p { padding-top: 0.35rem; line-height: 1.6; }
.italic-quote { font-style: italic; color: hsl(var(--muted-foreground)); font-size: 1.125rem; margin-top: 3rem; max-width: 36rem; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Solution cards ---------- */
.sol { display: flex; align-items: flex-start; gap: 1.25rem; }
.sol h3 { font-family: inherit; font-weight: 600; font-size: 1.125rem; line-height: 1.35; color: hsl(var(--foreground)); }
.sol p { color: hsla(var(--foreground), 0.65); margin-top: 0.4rem; line-height: 1.6; }

/* ---------- Portal mock dashboard ---------- */
.portal-grid { display: grid; gap: 3rem; align-items: center; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .portal-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.portal-feat { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.portal-feat svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.portal-quote {
  font-weight: 500; color: hsl(var(--foreground));
  border-left: 2px solid hsl(var(--primary)); padding-left: 1rem; font-style: italic; margin-top: 1.5rem;
}
.dashboard-card {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.dashboard-card::before {
  content: ''; position: absolute; inset: -1rem; background: hsla(var(--primary), 0.1);
  border-radius: 1.5rem; z-index: -1; filter: blur(40px);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid hsl(var(--border)); margin-bottom: 1.25rem; }
.dash-header p { font-size: 0.75rem; }
.dash-header .label { color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: 0.1em; }
.dash-header .title { font-weight: 600; color: hsl(var(--foreground)); font-size: 0.875rem; }
.dash-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-tile { background: hsl(var(--secondary)); border-radius: 0.5rem; padding: 1rem; }
.dash-tile-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.dash-tile-row svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.dash-tile-row .badge { font-size: 0.625rem; font-weight: 600; color: hsl(var(--primary)); }
.dash-tile-row .badge.muted { color: hsl(var(--muted-foreground)); }
.dash-tile h4 { font-family: inherit; font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); }
.dash-tile small { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.dash-chart { background: hsl(var(--secondary)); border-radius: 0.5rem; padding: 1rem; margin-bottom: 1.25rem; }
.dash-chart-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.dash-chart-row p { font-size: 0.75rem; font-weight: 600; color: hsl(var(--foreground)); }
.dash-chart-row svg { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); }
.dash-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 5rem; }
.dash-bars > div { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.dash-bars .bar { width: 100%; background: hsl(var(--primary)); border-radius: 2px; }
.dash-days { display: flex; gap: 0.5rem; margin-top: 0.25rem; }
.dash-days span { flex: 1; text-align: center; font-size: 0.5625rem; color: hsl(var(--muted-foreground)); }
.dash-invoice { display: flex; justify-content: space-between; align-items: center; background: hsl(var(--secondary)); border-radius: 0.375rem; padding: 0.75rem; margin-bottom: 0.5rem; }
.dash-invoice-l { display: flex; gap: 0.5rem; align-items: center; font-size: 0.875rem; font-weight: 500; }
.dash-invoice-l svg { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); }
.dash-invoice-r { display: flex; gap: 0.75rem; align-items: center; font-size: 0.875rem; }
.dash-status { font-size: 0.625rem; background: hsla(var(--primary), 0.1); color: hsl(var(--primary)); font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 9999px; }
.dash-link { display: flex; justify-content: center; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; color: hsl(var(--primary)); margin-top: 1.25rem; transition: color .2s; }
.dash-link:hover { color: hsl(var(--accent)); }
.dash-link svg { width: 0.75rem; height: 0.75rem; }
.dash-status-dot { width: 2rem; height: 2rem; border-radius: 9999px; background: hsla(var(--primary), 0.1); display: inline-flex; align-items: center; justify-content: center; }
.dash-status-dot::before { content: ''; width: 0.5rem; height: 0.5rem; background: hsl(var(--primary)); border-radius: 9999px; }

/* ---------- Sectors ---------- */
.sector-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 0.75rem; padding: 2rem; text-align: center;
  transition: box-shadow .3s, border-color .3s;
}
.sector-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.06); border-color: hsla(var(--primary), 0.3); }
.sector-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: hsl(var(--card-foreground)); }
.sector-card p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.6; }

/* ---------- Benefits list ---------- */
.benefit-row { display: flex; align-items: center; gap: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.5rem; padding: 1.25rem; margin-bottom: 1.25rem; }
.benefit-row svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); flex-shrink: 0; }
.benefit-row p { font-weight: 500; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; position: relative; }
.step .step-num { position: absolute; top: 0; left: 50%; transform: translate(-50%, -8px); font-size: 3.75rem; font-weight: 700; color: hsla(var(--primary), 0.05); font-family: 'DM Serif Display', serif; }
.step .step-bubble { width: 4rem; height: 4rem; border-radius: 9999px; background: hsla(var(--primary), 0.1); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; position: relative; }
.step .step-bubble svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-item {
  background: hsl(var(--background));
  border: 1px solid hsla(var(--border), 0.5);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .faq-item summary { font-size: 1.125rem; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 0 1.25rem; color: hsl(var(--muted-foreground)); line-height: 1.7; font-size: 0.9375rem; }

.faq-mini { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .faq-mini { grid-template-columns: repeat(3, 1fr); } }
.faq-mini-card { background: hsl(var(--background)); border: 1px solid hsla(var(--border), 0.5); border-radius: 0.75rem; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.stars { display: flex; gap: 0.125rem; color: hsl(var(--primary)); }
.stars svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.faq-mini-card p { font-size: 0.875rem; line-height: 1.6; }
.faq-mini-card .who { font-size: 0.75rem; color: hsl(var(--muted-foreground)); font-weight: 500; }

.faq-cta-strip { display: flex; justify-content: center; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; margin-top: 2.5rem; }
.faq-cta-strip svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 36rem; margin: 0 auto 2rem; }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area-pill { display: flex; align-items: center; gap: 0.75rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.5rem; padding: 1rem; }
.area-pill svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); flex-shrink: 0; }
.area-pill span { font-size: 0.875rem; font-weight: 500; }

/* ---------- Reliability ---------- */
.rel-card { text-align: center; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem; padding: 1.5rem; }
.rel-card h3 { font-family: inherit; font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.rel-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonial { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem; padding: 1.75rem; display: flex; flex-direction: column; transition: box-shadow .2s; }
.testimonial:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.testimonial .quote-mark { width: 2rem; height: 2rem; color: hsla(var(--primary), 0.2); margin-bottom: 1rem; }
.testimonial p.body { color: hsl(var(--foreground)); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.testimonial .stars { margin-bottom: 1rem; }
.testimonial .who { display: flex; gap: 0.75rem; align-items: center; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.testimonial .who img { width: 2.5rem; height: 2.5rem; border-radius: 9999px; object-fit: cover; flex-shrink: 0; }
.testimonial .who .name { font-weight: 600; font-size: 0.875rem; }
.testimonial .who .role { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ---------- Trust stats ---------- */
.tstat { text-align: center; padding: 0 1rem; }
.tstat .icon-bubble-lg { margin: 0 auto 1.25rem; }
.tstat h3 { font-family: inherit; font-weight: 600; font-size: 1.125rem; line-height: 1.25; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .tstat h3 { font-size: 1.25rem; } }
.tstat p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ---------- Portal CTA ---------- */
.portal-cta { background: hsla(var(--primary), 0.05); padding: 5rem 0; text-align: center; }
.portal-cta-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .portal-cta-grid { grid-template-columns: repeat(3, 1fr); } }
.portal-cta-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 0.75rem; padding: 1.5rem; }
.portal-cta-card .icon-bubble { margin: 0 auto 0.75rem; }
.portal-cta-card .name { font-weight: 600; margin-bottom: 0.25rem; }
.portal-cta-card .desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-row .icon-bubble { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; }
.contact-info-row .label { font-weight: 600; }
.contact-info-row a, .contact-info-row p { color: hsl(var(--muted-foreground)); transition: color .2s; }
.contact-info-row a:hover { color: hsl(var(--primary)); }
.contact-form {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem;
  color: hsl(var(--foreground)); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.15);
}
.form-field textarea { resize: vertical; min-height: 5rem; }
.form-foot { font-size: 0.75rem; text-align: center; color: hsl(var(--muted-foreground)); }
.form-meta { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.required { color: hsl(var(--destructive)); }

/* ---------- Footer ---------- */
.site-footer { background: hsl(var(--foreground)); color: rgba(255,255,255,0.6); padding: 4rem 0; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .site-footer .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer img.logo { height: 2.5rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer h4 { font-family: inherit; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.site-footer .footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.site-footer .footer-links a, .site-footer .footer-links div { display: flex; align-items: center; gap: 0.5rem; transition: color .2s; }
.site-footer .footer-links a:hover { color: #fff; }
.site-footer .footer-links svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.site-footer .footer-bottom a:hover { color: #fff; }
.site-footer .footer-bottom .row { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .site-footer .footer-bottom .row { flex-direction: row; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -4px 12px -4px rgba(0,0,0,0.1);
  padding: 0.75rem; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  display: flex; gap: 0.5rem;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta .btn { padding-top: 0.85rem; padding-bottom: 0.85rem; }
.sticky-cta .btn-icon { padding: 0.85rem 1rem; }
.sticky-cta .btn-icon svg { width: 1.25rem; height: 1.25rem; }
.sticky-cta .grow { flex: 1; }

/* ---------- Postcode dialog ---------- */
dialog.postcode-dialog {
  border: none; padding: 0; border-radius: 1rem;
  max-width: 28rem; width: 92vw;
  background: hsl(var(--card)); color: hsl(var(--foreground));
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
dialog.postcode-dialog::backdrop { background: rgba(0,0,0,0.5); }
.dialog-inner { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.dialog-inner .icon-bubble { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; }
.dialog-inner h2 { font-family: inherit; font-weight: 600; font-size: 1.5rem; }
.dialog-inner .desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
.dialog-result { border: 1px solid hsl(var(--border)); border-radius: 0.5rem; padding: 1rem; display: flex; gap: 0.75rem; }
.dialog-result svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 2px; color: hsl(var(--primary)); }
.dialog-result.is-warn svg { color: hsl(var(--muted-foreground)); }
.dialog-result.is-error svg { color: hsl(var(--destructive)); }
.dialog-result p.title { font-weight: 600; }
.dialog-result p.body { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; line-height: 1.5; }
.dialog-result .btn { margin-top: 0.75rem; }
.dialog-close { position: absolute; top: 0.75rem; right: 0.75rem; padding: 0.5rem; color: hsl(var(--muted-foreground)); }
.dialog-close svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Privacy page ---------- */
.privacy-page { padding: 6rem 0; }
.privacy-page h1 { font-size: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .privacy-page h1 { font-size: 2.5rem; } }
.privacy-page section { margin-bottom: 2rem; }
.privacy-page section h2 { font-family: inherit; font-weight: 600; font-size: 1.25rem; margin-bottom: 0.75rem; }
.privacy-page p, .privacy-page li { color: hsl(var(--muted-foreground)); line-height: 1.7; }
.privacy-page ul { list-style: disc inside; margin-top: 0.25rem; }
.privacy-page a { color: hsl(var(--primary)); }
.privacy-page a:hover { text-decoration: underline; }

/* ---------- Reveal-on-scroll (replaces framer-motion) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* utility spacing */
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; } .mt-14 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-14 { margin-bottom: 3.5rem; }
.relative { position: relative; }


.card-title {
    color: hsl(var(--primary));
}

.card {box-shadow:0px 0px 20px #ccc}

.input-validation-error {border:1px solid red}