

:root {
  --plum: #6a2c6a;
  --plum-dark: #4a1f4d;
  --plum-deep: #3a1a3d;
  --plum-soft: #8a5a8c;
  --lavender: #efe6ef;
  --lavender-line: #e4d7e3;
  --cream: #faf8f9;
  --sand: #f5f1f4;
  --ink: #2f2a30;
  --ink-soft: #5c545e;
  --white: #ffffff;
  --line: #e8e0e6;
  --shadow-sm: 0 1px 3px rgba(58, 26, 61, 0.06), 0 1px 2px rgba(58, 26, 61, 0.04);
  --shadow-md: 0 6px 22px rgba(58, 26, 61, 0.08);
  --shadow-lg: 0 18px 48px rgba(58, 26, 61, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --header-h: 76px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main, .site-footer { position: relative; z-index: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--plum); text-decoration: none; }
.prose a:not(.btn) { font-weight: 600; }
.prose a:not(.btn):hover { color: var(--plum-dark); }
a:hover { color: var(--plum-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 0.5rem + 2vw, 2.2rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--plum); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--plum-soft); outline-offset: 2px; border-radius: 4px; }

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  min-height: 44px; line-height: 1.1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn .btn-ic { width: 16px; height: 16px; }
.btn-primary { background: var(--plum); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--plum-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--white); color: var(--plum); border-color: var(--line); }
.btn-outline:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.16); color: #fff; border-width: 1px; border-color: rgba(255,255,255,.85); font-weight: 700; }
.btn-ghost:hover { background: #fff; color: var(--plum-dark); border-color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

body.home .site-header { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; box-shadow: none; }
body.home .site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--sans); font-size: 1.55rem; font-weight: 700; color: var(--plum); letter-spacing: -0.01em; }
.brand-sub { font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: #7c7580; letter-spacing: 0.03em; text-transform: lowercase; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 0.65rem; }
.main-nav a {
  position: relative; font-size: 0.98rem; font-weight: 600; color: var(--plum); text-decoration: none;
  padding: 0.5rem 0.7rem; transition: color .15s;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.02rem; height: 2px;
  background: var(--plum); border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  transition: transform .28s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--plum); font-weight: 700; }
.main-nav .btn { margin-left: 0.5rem; padding: 0.6rem 1.15rem; }
.main-nav a.btn-primary { color: #fff; }
.main-nav a.btn-primary:hover { color: #fff; background: var(--plum-dark); transform: none; box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 9px;
  width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; color: var(--plum);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ic-close { display: none; }

.hero { position: relative; color: #fff; padding: 0; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(480px, 55vw, 700px); object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(95deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.28) 32%, rgba(255,255,255,.05) 58%, rgba(255,255,255,0) 78%);
}
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-content .container { width: 100%; }
.hero-inner { max-width: 620px; }
.hero h1 { font-family: var(--sans); font-weight: 700; color: var(--plum); margin-bottom: 0.7rem; text-shadow: none; letter-spacing: -0.035em; }
.hero p { font-family: var(--sans); color: #1c1620; font-weight: 500; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); max-width: 27em; text-wrap: balance; margin-bottom: 1.7rem; text-shadow: none; letter-spacing: -0.012em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-actions .btn-outline { border-color: #fff; }
.hero-actions .btn-outline:hover { border-color: #fff; color: var(--plum); }

.feature-strip { position: relative; z-index: 5; margin-top: -58px; }
.feature-card-row {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.feature-item { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.4rem 1.3rem; border-right: 1px solid var(--line); }
.feature-item:last-child { border-right: 0; }
.feature-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; background: var(--lavender); display: flex; align-items: center; justify-content: center; color: var(--plum); }
.feature-ic svg { width: 22px; height: 22px; }
.feature-item h2 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--plum); margin: 0 0 2px; }
.feature-item p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }

section { padding: clamp(3.2rem, 2.4rem + 3vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.4rem, 2rem + 2vw, 4rem) 0; }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(1.4rem, 1rem + 1vw, 2.1rem); }
.section-head h2 { margin-bottom: 0.3rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }
.eyebrow { font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.8rem; color: var(--plum-soft); display: block; margin-bottom: 0.25rem; }
.eyebrow + h2 { margin-top: 0; }
.prose .eyebrow + h2 { margin-top: 0.15rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 1rem + 3vw, 4rem); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3 / 2.15; object-fit: cover; }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.help-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lavender-line); }
.help-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--lavender); display: flex; align-items: center; justify-content: center; color: var(--plum); margin-bottom: 1rem; }
.help-ic svg { width: 28px; height: 28px; }
.help-card h3 { margin-bottom: 0.4rem; }
.help-card p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }

.rebates { background: var(--lavender); border-radius: var(--radius); padding: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem); display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
.rebates h2 { margin-bottom: 0.6rem; }
.rebates p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.rebate-logos { display: flex; align-items: center; justify-content: center; gap: 1.6rem; border-left: 1px solid var(--lavender-line); padding-left: 2rem; flex-wrap: wrap; }
.rebate-badge { font-weight: 700; color: var(--plum-dark); font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }
.rebate-badge svg { width: 26px; height: 26px; color: var(--plum); }

.prac-quals { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.5; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; max-width: 820px; margin: 0 auto; }
.team-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo { overflow: hidden; aspect-ratio: 1 / 1; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.045); }
.team-body { padding: 1.5rem 1.7rem 1.7rem; }
.team-name { font-size: clamp(1.3rem, 1.15rem + 0.5vw, 1.5rem); margin: 0 0 0.2rem; }
.team-role { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.78rem; font-weight: 700; color: var(--plum-soft); margin: 0 0 0.8rem; }
.team-line { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 1.2rem; line-height: 1.55; }
.team-link { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--plum); }
.team-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.team-card:hover .team-link svg { transform: translateX(4px); }

.cta-band { position: relative; background: linear-gradient(120deg, var(--plum) 0%, var(--plum-dark) 100%); border-radius: var(--radius); padding: clamp(2rem, 1.5rem + 2vw, 3rem); color: #fff; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.cta-band::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-copy { display: flex; align-items: center; gap: 1.2rem; }
.cta-ic { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-ic svg { width: 30px; height: 30px; color: #fff; }
.cta-band h2 { color: #fff; margin: 0 0 0.15rem; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); }

.page-hero { background: linear-gradient(120deg, var(--plum) 0%, var(--plum-dark) 100%); color: #fff; padding: clamp(2.6rem, 2rem + 3vw, 4.2rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: 0.4rem; }
.page-hero p { margin: 0; color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 44em; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 1rem; color: rgba(255,255,255,.75); }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb span { padding: 0 0.4rem; }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.profile { display: grid; grid-template-columns: 320px 1fr; gap: clamp(1.8rem, 1rem + 3vw, 3.5rem); align-items: start; }
.profile-side { position: static; }
.profile-side img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.profile-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; margin-top: 1.2rem; box-shadow: var(--shadow-sm); scroll-margin-top: 90px; }
.profile-card h2 { font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--plum-soft); margin-bottom: 0.8rem; }
.profile-card .row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.94rem; margin-bottom: 0.7rem; }
.profile-card .row:last-child { margin-bottom: 0; }
.profile-card svg { width: 17px; height: 17px; color: var(--plum); flex-shrink: 0; margin-top: 3px; }
.profile-card a { word-break: break-word; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.4rem 0 1.4rem; }
.tag { background: var(--lavender); color: var(--plum-dark); font-size: 0.85rem; font-weight: 600; padding: 0.35rem 0.85rem; border-radius: 999px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.contact-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-block h2 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); margin-bottom: 0.2rem; }
.contact-block .role { color: var(--plum-soft); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.contact-line { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 1rem; }
.contact-line svg { width: 20px; height: 20px; color: var(--plum); flex-shrink: 0; }
.map-embed { border: 0; width: 100%; height: 370px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.note-box { background: var(--sand); border: 1px solid var(--lavender-line); border-left: 4px solid var(--plum); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; }
.note-box h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.note-box p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }
.note-box strong { color: var(--plum-dark); }

.site-footer { background: var(--plum-deep); color: rgba(255,255,255,.82); padding: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem) 0 1.1rem; margin-top: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; column-gap: clamp(2rem, 1rem + 3vw, 4rem); row-gap: 2rem; align-items: start; }
.footer-links { padding-left: clamp(0.75rem, 2vw, 2rem); }
.footer-col { padding-top: 0.7rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,.68); margin: 0.9rem 0 0; max-width: 34ch; }
.footer-col h2 { font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin: 0 0 0.7rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.07rem; }
.footer-col li a { line-height: 1.5; }
.footer-col a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-contact .fc-row { display: flex; gap: 0.6rem; margin-bottom: 0.22rem; font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,.8); }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 1.6rem; padding-top: 1.1rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .feature-card-row { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(1), .feature-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .rebates { grid-template-columns: 1fr; }
  .rebate-logos { border-left: 0; border-top: 1px solid var(--lavender-line); padding-left: 0; padding-top: 1.4rem; justify-content: flex-start; }
  .contact-grid, .team-grid { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 110; }
  .brand { position: relative; z-index: 110; }
  body.home .site-header.nav-open { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .site-header.nav-open .nav-toggle .ic-menu { display: none; }
  .site-header.nav-open .nav-toggle .ic-close { display: block; }
  .site-header.nav-open .main-nav {
    display: flex; position: fixed; inset: 0; z-index: 100; overflow: hidden;
    flex-direction: column; align-items: center; justify-content: center; gap: 0.55rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--lavender) 100%);
    padding: 5rem 1.5rem 3rem; animation: navFade .3s ease;
  }
  .site-header.nav-open .main-nav::before,
  .site-header.nav-open .main-nav::after {
    content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  }
  .site-header.nav-open .main-nav::before { width: 360px; height: 360px; top: -110px; right: -120px; background: radial-gradient(circle, rgba(106,44,106,.14), transparent 70%); }
  .site-header.nav-open .main-nav::after { width: 320px; height: 320px; bottom: -100px; left: -110px; background: radial-gradient(circle, rgba(138,90,140,.16), transparent 70%); }
  .site-header.nav-open .main-nav a:not(.btn) {
    position: relative; font-family: var(--serif); font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 600;
    letter-spacing: -0.01em; color: var(--plum); padding: 0.3rem 1rem; background: transparent;
    opacity: 0; transform: translateY(18px); animation: navItem .55s cubic-bezier(.2,.7,.3,1) forwards;
  }
  .site-header.nav-open .main-nav a:not(.btn):hover { background: transparent; color: var(--plum-dark); }
  .site-header.nav-open .main-nav a:nth-child(1) { animation-delay: .08s; }
  .site-header.nav-open .main-nav a:nth-child(2) { animation-delay: .16s; }
  .site-header.nav-open .main-nav a:nth-child(3) { animation-delay: .24s; }
  .site-header.nav-open .main-nav a[aria-current="page"]::after {
    content: ""; display: block; position: absolute; left: 50%; transform: translateX(-50%);
    bottom: -1px; width: 28px; height: 3px; background: var(--plum); border-radius: 3px;
  }
  .site-header.nav-open .main-nav .btn {
    margin-top: 1.5rem; font-size: 1.1rem; padding: 0.95rem 2.6rem;
    opacity: 0; transform: translateY(18px); animation: navItem .55s cubic-bezier(.2,.7,.3,1) .34s forwards;
  }
  @keyframes navFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes navItem { to { opacity: 1; transform: none; } }
  .feature-strip { margin-top: -70px; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .cta-band { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
  .cta-copy { flex-direction: column; align-items: center; gap: 0.7rem; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .hero-media img { height: 100vh; height: 100svh; }
  .hero-content { align-items: flex-end; }
  .hero-inner { padding-bottom: 2.4rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 15%), linear-gradient(0deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.32) 34%, rgba(255,255,255,0) 64%); }
  .feature-strip { margin-top: 1.4rem; }
  .feature-card-row { grid-template-columns: 1fr; }
  .feature-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: 0; }
  .help-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { padding-left: 0; }
  .hero-actions .btn, .hero-actions { width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .fab-btn::before { display: none; }
  .rebates .btn { width: 100%; justify-content: center; }
  .rebate-logos { justify-content: center; gap: 1.4rem; }
}

.fab-contact { position: fixed; right: 18px; bottom: 18px; z-index: 96; isolation: isolate; display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.fab-contact:not(.open) { animation: fabFloat 3.2s ease-in-out infinite; }
.fab-btn { position: relative; width: 60px; height: 60px; border-radius: 50%; border: 0; background: var(--plum); color: #fff; cursor: pointer; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.fab-btn::before { content: "Contact our psychologists"; position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: #fff; color: var(--plum); font-family: var(--sans); font-weight: 700; font-size: 0.85rem; padding: 0.55rem 1rem; border-radius: 999px; box-shadow: var(--shadow-md); transition: opacity .2s ease; }
.fab-contact.open .fab-btn::before { opacity: 0; visibility: hidden; }
@keyframes fabFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.fab-btn:hover { background: var(--plum-dark); transform: translateY(-2px); }
.fab-btn svg { width: 26px; height: 26px; }
.fab-ic-close { display: none; }
.fab-contact.open .fab-ic-open { display: none; }
.fab-contact.open .fab-ic-close { display: block; }
.fab-panel { position: relative; z-index: 1; -webkit-transform: translateZ(0); transform: translateZ(0); width: min(340px, 92vw); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 1.3rem; animation: fabIn .22s ease; }
.fab-panel h3 { font-size: 1.2rem; margin: 0 0 0.2rem; }
.fab-panel > p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; }
.fab-person { display: flex; gap: 0.8rem; align-items: center; background: var(--sand); border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem; margin-bottom: 0.7rem; }
.fab-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex-shrink: 0; }
.fab-info { min-width: 0; }
.fab-info strong { display: block; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); line-height: 1.2; }
.fab-info > span { font-size: 0.8rem; color: var(--plum-soft); }
.fab-actions { display: flex; gap: 1rem; margin-top: 0.35rem; font-size: 0.85rem; }
.fab-actions span, .fab-actions a { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--ink); text-decoration: none; }
.fab-actions a { color: var(--plum); font-weight: 600; }
.fab-actions svg { width: 15px; height: 15px; color: var(--plum); flex-shrink: 0; }
.fab-note { font-size: 0.78rem; color: var(--ink-soft); margin: 0.4rem 0 0; line-height: 1.45; }
.fab-note strong { color: var(--plum-dark); }
@keyframes fabIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .btn:hover, .help-card:hover { transform: none; }
  .site-header.nav-open .main-nav a:not(.btn),
  .site-header.nav-open .main-nav .btn { animation: none; opacity: 1; transform: none; }
  .fab-panel { animation: none; }
  .fab-contact:not(.open) { animation: none; }
}
