/* ============================================================
   Smartland B2B — Design System
   Matches visual identity of smartlandapartments.com
   ============================================================ */

/* --- Tokens ------------------------------------------------- */
:root {
  --pink:   #eb146e;
  --pink-2: #c9115d;
  --dark:   #282828;
  --dark-2: #3a3a3a;
  --mid:    #4e4e4e;
  --bg:     #f0f0f0;
  --white:  #fff;
  --line:   #e0e0e0;
  --radius: 4px;
  --shadow: 0 3px 10px rgb(0 0 0/15%);
  --max:    1200px;
  --success: #0F766E;
  --danger:  #9F1239;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--mid);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  line-height: 1.15;
}

/* --- Layout ------------------------------------------------- */
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* --- Topbar ------------------------------------------------- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.topbar .mini-links { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar a:hover { color: #fff; }

/* --- Header ------------------------------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--pink);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* --- Nav ---------------------------------------------------- */
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  white-space: nowrap;
}
.nav-links a { color: var(--dark); font-weight: 600; }
.nav-links a:hover { color: var(--pink); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

/* --- Buttons ------------------------------------------------ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 9999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity .12s ease, box-shadow .12s ease, background .12s ease;
  text-align: center;
  white-space: nowrap;
}
.button:hover { opacity: .88; box-shadow: var(--shadow); }
.button-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.button-primary:hover { background: var(--pink-2); border-color: var(--pink-2); opacity: 1; }
.button-outline {
  background: transparent;
  border-color: var(--pink);
  color: var(--pink);
}
.button-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.button-white:hover { background: #f0f0f0; opacity: 1; }
.button-white-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.button-white-outline:hover { background: rgba(255,255,255,.12); opacity: 1; }
/* Legacy compatibility aliases */
.button-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.button-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* --- Forms -------------------------------------------------- */
label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font: inherit;
  color: var(--dark);
  background: var(--white);
}
textarea { min-height: 124px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(235,20,110,.14);
}
.form-note { font-size: 14px; color: var(--mid); margin-bottom: 14px; }
.small { font-size: 13px; color: var(--mid); }

/* --- Hero --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
/* Dark overlay sits above slides, below content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; }

/* --- Hero slideshow ----------------------------------------- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@keyframes kenBurns {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.08); }
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: var(--white);
}
.hero .lead {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 680px;
  opacity: .9;
  margin: 0 0 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

/* --- Page hero with image (inner pages) -------------------- */
.page-hero-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding-bottom: 48px;
}
.page-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 0;
}
.page-hero-img .container { position: relative; z-index: 1; }
.page-hero-img h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 12px;
  color: var(--white);
}
.page-hero-img .kicker { color: #f9a8cc; }
.page-hero-img .section-intro { color: rgba(255,255,255,.88); max-width: 720px; }
.page-hero-img .breadcrumbs { color: rgba(255,255,255,.65); margin-bottom: 12px; }

/* Plain page-hero (fallback — unused after redesign but kept for backward compat) */
.page-hero {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, rgba(40,40,40,.06) 0%, rgba(40,40,40,0) 100%);
}

/* --- Stats bar ---------------------------------------------- */
.stats { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; padding: 28px 0; }
.stat { padding: 12px 16px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-size: clamp(18px, 2.5vw, 24px); line-height: 1.1; color: var(--dark); margin-bottom: 4px; font-weight: 800; }
.stat span { font-size: 14px; color: var(--mid); }

/* --- Feature blocks ---------------------------------------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
}
.feature-block--reverse { }
.feature-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
  transition: transform .6s ease;
}
.feature-block:hover .feature-block__img { transform: scale(1.04); }
.feature-block__text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.feature-block__text h2 { margin: 0 0 16px; }
.feature-block__text p { color: var(--mid); margin: 0 0 20px; }
.feature-block--reverse .feature-block__img { order: 2; }
.feature-block--reverse .feature-block__text { order: 1; }

/* --- Cards -------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); }
.card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.2; }
.card p { margin: 0 0 12px; color: var(--mid); }
.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(235,20,110,.10);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

/* --- Sections ----------------------------------------------- */
.section { padding: 80px 0; }
.section-tight { padding: 54px 0; }
.section h2 { margin-bottom: 12px; }
.section-intro { max-width: 780px; color: var(--mid); font-size: 18px; margin-bottom: 26px; }
.kicker {
  font-size: 13px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 8px;
}

/* --- Grids -------------------------------------------------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

/* --- Dark band --------------------------------------------- */
.dark-band {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}
.dark-band .kicker { color: #f9a8cc; }
.dark-band h2 { color: var(--white); }
.dark-band .section-intro, .dark-band p { color: rgba(255,255,255,.82); }
.dark-band .card { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.1); box-shadow: none; }
.dark-band .card h3 { color: var(--white); }
.dark-band .card p { color: rgba(255,255,255,.78); }
.dark-band .icon-chip { background: rgba(255,255,255,.12); color: var(--white); }

/* --- Utilities ---------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 10px 0 0; }
.checklist li { padding-left: 24px; position: relative; margin-bottom: 10px; color: var(--mid); }
.checklist li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 900; }
.dark-band .checklist li { color: rgba(255,255,255,.82); }

.steps { counter-reset: step; display: grid; gap: 16px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 18px 66px; position: relative; box-shadow: var(--shadow); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px; top: 18px;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(235,20,110,.10);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 6px; font-size: 19px; }
.step p { margin: 0; color: var(--mid); }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(235,20,110,.10);
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
}
.quote {
  padding: 22px;
  border-left: 4px solid var(--pink);
  background: rgba(235,20,110,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--mid);
  font-style: italic;
}
/* --- Proof block (outcomes / evidence) ---------------------- */
.proof-block {
  background: rgba(235,20,110,.05);
  border: 1px solid rgba(235,20,110,.18);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.proof-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pink);
  font-weight: 700;
  margin: 0 0 12px;
}
.proof-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.proof-block ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 9px;
  color: var(--mid);
  font-size: 14.5px;
}
.proof-block ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* --- Featured card ------------------------------------------ */
.card--featured {
  border-color: var(--pink);
  border-width: 2px;
}
.dark-band .card--featured {
  border-color: rgba(235,20,110,.5);
  background: rgba(235,20,110,.10);
}

.notice {
  border: 1px dashed rgba(235,20,110,.35);
  background: rgba(235,20,110,.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--mid);
}
.breadcrumbs { font-size: 14px; color: var(--mid); margin-bottom: 16px; }
.subnav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.subnav a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.subnav a:hover { border-color: var(--pink); color: var(--pink); }
.inline-list { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 16px 0 0; list-style: none; }
.inline-list li { padding-left: 18px; position: relative; color: rgba(255,255,255,.82); }
.inline-list li::before { content: "\2022"; position: absolute; left: 0; color: var(--pink); }

/* --- FAQ ---------------------------------------------------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: border-color .15s;
}
.faq details:hover { border-color: var(--pink); }
.faq details[open] { border-color: var(--pink); }
.faq details + details { margin-top: 12px; }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(235,20,110,.10);
  color: var(--pink);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  transition: transform .2s, background .15s;
}
.faq details[open] summary::after {
  content: "\00d7";
  background: rgba(235,20,110,.18);
  transform: rotate(0deg);
}
.faq details p { margin: 12px 0 0; color: var(--mid); }

/* --- CTA panel --------------------------------------------- */
.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}
.cta-panel h2 { color: var(--white); margin: 0; }
.cta-panel p { color: rgba(255,255,255,.82); margin: 10px 0 0; }
.cta-panel .kicker { color: #f9a8cc; }

/* --- Form section ------------------------------------------ */
.form-section { background: var(--white); padding: 80px 0; }
.form-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h2 { margin: 0 0 8px; }
.hero-form {
  background: rgba(255,255,255,.98);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 3px 30px rgb(0 0 0/18%);
}
.hero-form h2 { margin: 0 0 10px; font-size: clamp(22px, 3vw, 32px); }
.hero-form .form-note { font-size: 14px; color: var(--mid); margin-bottom: 14px; }

/* --- Status message ---------------------------------------- */
.status-message { display: none; margin-top: 12px; padding: 12px 14px; border-radius: var(--radius); font-size: 14px; }
.status-message.success { display: block; background: rgba(15,118,110,.08); color: var(--success); border: 1px solid rgba(15,118,110,.18); }
.status-message.error { display: block; background: rgba(159,18,57,.08); color: var(--danger); border: 1px solid rgba(159,18,57,.18); }

/* --- Photo strip ------------------------------------------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; overflow: hidden; }
.photo-strip img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s ease; }
.photo-strip img:hover { transform: scale(1.05); }

/* --- Section images ---------------------------------------- */
.section-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); display: block; }
.section-img-tall { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); display: block; }

/* --- Hero points (legacy) ---------------------------------- */
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 26px 0 30px; }
.hero-point { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 14px 16px; }
.hero-point strong { display: block; font-size: 15px; color: var(--white); }
.hero-point span { font-size: 14px; color: rgba(255,255,255,.75); }

/* --- Footer ------------------------------------------------- */
.footer { background: var(--dark); color: rgba(255,255,255,.82); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; }
.footer h4 { color: var(--white); margin: 0 0 14px; font-size: 15px; }
.footer p { color: rgba(255,255,255,.72); font-size: 14px; margin-top: 14px; }
.footer .brand img { height: 40px; width: auto; max-width: 200px; object-fit: contain; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bottom { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 14px; color: rgba(255,255,255,.52); }

/* --- Sticky mobile CTA ------------------------------------- */
.sticky-mobile-cta { display: none; }

/* ============================================================
   Responsive — 980px
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .split, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  /* Feature blocks stack vertically */
  .feature-block { grid-template-columns: 1fr; }
  .feature-block--reverse .feature-block__img { order: 0; }
  .feature-block--reverse .feature-block__text { order: 0; }
  .feature-block__img { min-height: 280px; }
  .feature-block__text { padding: 40px 28px; }
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px solid var(--pink);
    box-shadow: 0 8px 24px rgb(0 0 0/12%);
    z-index: 49;
  }
  .nav-links.open { display: flex; }
  .menu-button { display: inline-flex; }
  .cta-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive — 720px
   ============================================================ */
@media (max-width: 720px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 200px; }
  .section-img, .section-img-tall { height: 220px; }
  .grid-4, .grid-3, .grid-2, .hero-points, .stat-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .hero-form { padding: 20px; }
  .nav { min-height: 64px; }
  .section { padding: 60px 0; }
  .form-card { padding: 24px 18px; }
  .feature-block__text { padding: 32px 20px; }
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
    z-index: 55;
  }
  body.has-mobile-cta { padding-bottom: 84px; }
}

/* ============================================================
   Animations & Interactivity — "breathing" system
   ============================================================ */

/* --- Keyframes ---------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes statPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* --- Scroll-triggered fade-in ------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Cards -------------------------------------------------- */
.card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgb(0 0 0/14%);
}
a.card:hover { border-color: var(--pink); }

/* --- Stat bar ----------------------------------------------- */
.stat { transition: background .2s ease; cursor: default; }
.stat:hover { background: rgba(235,20,110,.04); }
.stat strong { transition: color .2s ease; }
.stat:hover strong { color: var(--pink); }

/* --- Steps -------------------------------------------------- */
.step {
  transition: transform .2s ease, box-shadow .22s ease;
}
.step:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 22px rgb(0 0 0/12%);
}
.step::before { transition: background .2s ease, color .2s ease; }
.step:hover::before { background: var(--pink); color: #fff; }

/* --- Buttons ------------------------------------------------ */
.button {
  transition: background .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease,
              box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgb(0 0 0/16%);
}
.button:active { transform: translateY(0); box-shadow: none; }

/* --- Nav links: slide underline ----------------------------- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 999px;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* --- Checklist items ---------------------------------------- */
.checklist li {
  transition: padding-left .18s ease;
}
.checklist li:hover { padding-left: 30px; }

/* --- Icon chips --------------------------------------------- */
.icon-chip {
  transition: transform .2s ease, background .2s ease;
}
.card:hover .icon-chip {
  transform: scale(1.12);
  background: rgba(235,20,110,.18);
}

/* --- Proof block items -------------------------------------- */
.proof-block ul li {
  transition: padding-left .18s ease;
}
.proof-block ul li:hover { padding-left: 28px; }

/* --- FAQ summary -------------------------------------------- */
.faq summary {
  transition: color .18s ease;
}
.faq details:hover summary { color: var(--pink); }
.faq details[open] summary  { color: var(--pink); }

/* --- Brand logo subtle scale -------------------------------- */
.brand img { transition: transform .22s ease, opacity .22s ease; }
.brand:hover img { transform: scale(1.04); opacity: .88; }
