/* =========================================================
   AILUCS SINGLE-FILE CSS ARCHITECTURE
   01. Design Tokens
   02. Reset & Base
   03. Shared Components
   04. Header & Navigation
   05. Page Sections
   06. Responsive Overrides

   Page-specific blocks use root classes such as .dental-page,
   .lyra-page and .home-page to prevent cross-page side effects.
   ========================================================= */

/* =========================================================
   01. Design Tokens
   ========================================================= */
:root {
  --green: #176c3a;
  --green-dark: #105b30;
  --green-soft: #e9f0ec;
  --orange: #f28b35;
  --ink: #17201c;
  --muted: #657069;
  --line: #dfe4e1;
  --wash: #f4f6f5;
  --white: #fff;
  --shadow-soft: 0 18px 45px rgba(34, 48, 40, 0.11);
  --shadow-card: 0 8px 30px rgba(33, 45, 38, 0.05);
  --header-height: 70px;
  --container: min(100% - 48px, 1200px);
  --fs-xxs: clamp(10px, 0.72vw, 12px);
  --fs-xs: clamp(11px, 0.82vw, 13px);
  --fs-sm: clamp(13px, 0.95vw, 15px);
  --fs-base: clamp(15px, 1vw, 17px);
  --fs-lg: clamp(18px, 1.55vw, 24px);
  --fs-xl: clamp(26px, 2.35vw, 36px);
  --fs-hero: clamp(38px, 4.4vw, 60px);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* =========================================================
   05. Page Sections
   05.01 Dental Laser Page
   ========================================================= */
.dental-page {
  --dental-blue: #0b326d;
  --dental-ink: #101828;
  --dental-muted: #53627a;
  --dental-line: #d9e3f1;
  --dental-soft: #f4f8fd;
  padding: calc(var(--header-height) + 40px);
  color: var(--dental-ink);
  background: linear-gradient(180deg, #f8fbff 0, #fff 16%, #f7faff 100%);
}

.dental-page h1,
.dental-page h2,
.dental-page h3,
.dental-page p {
  margin: 0;
}

.dental-section,
.dental-bottom-band,
.dental-inquiry {
  max-width: 1500px;
  margin: 0 auto 26px;
}

.dental-hero {
  max-width: 1500px;
  position: relative;
  min-height: 640px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--dental-line);
  border-radius: 8px;
  background: #f7f9fb;
  box-shadow: 0 24px 70px rgba(22, 55, 95, 0.11);
}

.dental-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.72) 54%, rgba(255, 255, 255, 0.12) 76%, transparent 100%);
  pointer-events: none;
}

.dental-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 72px);
}

.dental-eyebrow {
  color: var(--dental-blue);
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dental-hero h1 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.35vw, 2.5rem);
  line-height: 1.08;
  color: #10131b;
}

.dental-hero-copy > p:not(.dental-eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: #151922;
  font-size: 1.12rem;
  line-height: 1.56;
}

.dental-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 490px;
  margin-top: 34px;
}

.dental-hero-points span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--dental-blue);
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.dental-hero-points img,
.dental-hero-points .icon-ailucs {
  width: 34px;
  height: 34px;
}

.dental-hero-points .icon-ailucs {
  display: grid;
  place-items: center;
  font-size: 32px;
}

.dental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.dental-actions .solid {
  background: var(--dental-blue) !important;
}

.dental-actions .outline {
  border: 1px solid #0b326d !important;
  color: #0b326d !important;
}

.dental-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 64%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.dental-hero-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

.dental-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 10px;
  color: #111827;
  font-size: 0.72rem;
}

.dental-section {
  padding: 20px 0 0;
  border-top: 1px solid rgba(11, 50, 109, 0.12);
}

.dental-page h2 {
  color: var(--dental-blue);
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.dental-app-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.dental-app-grid article .icon-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dental-app-grid img,
.dental-app-grid .icon-ailucs {
  width: 36px;
  height: 36px;

  border: 1px solid #b8cce7;
  border-radius: 50%;
  background: #fff;
}

.dental-app-grid .icon-ailucs {
  display: grid;
  place-items: center;
  color: var(--dental-blue);
  font-size: 22px;
}

.dental-app-grid h3 {
  color: var(--dental-blue);
  font-size: 0.84rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.dental-app-grid ul,
.dental-wave-grid ul,
.dental-inquiry ul {
  margin: 12px 0 0 25px;
  padding: 0;
  color: #111827;
  font-size: 0.82rem;
  line-height: 1.9;
}

.dental-app-grid ul {
  grid-column: 2;
}

.dental-wave-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr)) minmax(380px, 0.95fr);
  gap: 0;
  margin-top: 14px;
  padding-left: 20px;
  overflow: hidden;
  min-height: 408px;
  border: 1px solid rgba(199, 215, 235, 0.75);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 57%, rgba(247, 251, 255, 0.78) 71%, rgba(245, 250, 255, 0.18) 100%), radial-gradient(circle at 88% 12%, rgba(132, 180, 228, 0.26), transparent 30%), #fff;
  box-shadow: 0 20px 58px rgba(22, 55, 95, 0.08);
}

.dental-wave-card {
  --wave-color: var(--dental-blue);
  position: relative;
  z-index: 2;
  padding: 30px 0px 20px 40px;
  /*border-right: 1px solid rgba(201, 214, 232, .7);*/
}

.dental-wave-card::before {
  content: '';
  position: absolute;
  top: 42px;
  bottom: 44px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--wave-color), rgba(255, 255, 255, 0));
  opacity: 0.82;
}

.dental-wave-blue {
  --wave-color: #0b57d0;
}

.dental-wave-red {
  --wave-color: #e91421;
}

.dental-wave-purple {
  --wave-color: #6025c8;
}

.dental-wave-pin {
  position: absolute;
  top: 34px;
  left: 12px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 9%, var(--wave-color) 42%, color-mix(in srgb, var(--wave-color), #07172f 28%) 100%);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--wave-color), transparent 72%),
    0 6px 14px color-mix(in srgb, var(--wave-color), transparent 65%);
}

.dental-wave-grid h3 {
  color: var(--wave-color);
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.dental-wave-grid h3 span {
  font-size: 0.56em;
}

.dental-wave-grid p {
  margin-top: 18px;
  color: var(--wave-color);
  font-weight: 800;
  font-size: clamp(1.02rem, 1.35vw, 1.45rem);
  line-height: 1.25;
}

.dental-wave-grid ul {
  margin: 28px 0 0 24px;
  color: #1d2735;
  font-size: clamp(0.96rem, 1.05vw, 1.18rem);
  line-height: 1.62;
}

.dental-wave-grid li {
  margin-bottom: 10px;
}

.dental-wave-grid li::marker {
  color: var(--wave-color);
  font-size: 1.08em;
}

.dental-wave-visual {
  position: relative;
  z-index: 1;
  min-height: 408px;
  margin: 0;
  overflow: hidden;
}

.dental-wave-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.48) 18%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.dental-wave-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.18);
  transform-origin: right center;
}

.dental-note {
  margin-top: 8px;
  color: var(--dental-muted);
  font-size: 0.74rem;
  text-align: center;
}

.dental-workflow-steps,
.dental-accessory-grid,
.dental-clinical-grid {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.dental-workflow-steps {
  grid-template-columns: repeat(4, 1fr);
  padding: 14px;
  border: 1px solid var(--dental-line);
  border-radius: 8px;
  background: #fff;
}

.dental-workflow-steps article {
  position: relative;
}

.dental-workflow-steps h3,
.dental-clinical-grid h3 {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d8ea;
  border-radius: 6px;
  background: #eaf1fb;
  color: #111827;
  font-size: 0.9rem;
}

.dental-workflow-steps strong {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--dental-blue);
  background: #d7e5f7;
}

.dental-workflow-steps img,
.dental-clinical-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
  border-radius: 4px;
}

.dental-accessory-grid {
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--dental-line);
  border-radius: 8px;
  background: #fff;
}

.dental-accessory-grid article {
  min-height: 142px;
  padding: 16px 12px;
  border-right: 1px solid var(--dental-line);
  text-align: center;
}

.dental-accessory-grid article:last-child {
  border-right: 0;
}

.dental-accessory-grid img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.dental-accessory-grid h3,
.dental-why-grid h3 {
  margin-top: 10px;
  color: #111827;
  font-size: 0.84rem;
  line-height: 1.2;
}

.dental-accessory-grid p,
.dental-why-grid p {
  margin-top: 8px;
  color: #1f2937;
  font-size: 0.78rem;
  line-height: 1.45;
}

.dental-clinical-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.dental-bottom-band {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 18px;
}

.dental-why,
.dental-platform {
  padding: 18px;
  border: 1px solid var(--dental-line);
  border-radius: 8px;
  background: #fff;
}

.dental-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
}

.dental-why-grid article {
  padding: 18px 16px;
  border-right: 1px solid var(--dental-line);
  text-align: center;
}

.dental-why-grid article:last-child {
  border-right: 0;
}

.dental-why-grid img,
.dental-why-grid .icon-ailucs {
  width: 36px;
  height: 36px;
}

.dental-why-grid .icon-ailucs {
  display: inline-grid;
  place-items: center;
  color: var(--dental-blue);
  font-size: 34px;
}

.dental-platform img {
  max-height: 250px;
  margin-top: 18px;
  display: block;
  object-fit: contain;
}

.dental-inquiry {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--dental-line);
  background: #f6f9fd;
}

.dental-inquiry h2 {
  text-align: left;
}

.dental-inquiry p {
  max-width: 650px;
  margin-top: 10px;
  color: #12315c;
  font-weight: 700;
  line-height: 1.45;
}

.dental-inquiry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-left: 0;
  list-style: none;
  color: var(--dental-blue);
  font-weight: 800;
}

.dental-mini-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dental-mini-form label {
  display: grid;
  gap: 5px;
  color: #68758a;
  font-size: 0.72rem;
}

.dental-mini-form input,
.dental-mini-form select {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cfdbe9;
  border-radius: 5px;
  background: #fff;
  color: #1f2937;
}

.dental-mini-form button {
  grid-column: 2 / 4;
  min-height: 38px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--dental-blue);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .dental-hero,
  .dental-bottom-band,
  .dental-inquiry {
    grid-template-columns: 1fr;
  }

  .dental-hero-copy {
    padding: 42px 36px;
  }

  .dental-app-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dental-wave-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dental-wave-visual {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .dental-wave-visual img {
    transform: scale(1);
  }

  .dental-accessory-grid,
  .dental-clinical-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .dental-page {
    padding: calc(var(--header-height) + 18px) 20px 28px;
  }

  .dental-hero {
    min-height: 720px;
  }

  .dental-hero-copy {
    padding: 32px 22px 0;
  }

  .dental-hero-points,
  .dental-app-grid,
  .dental-wave-grid,
  .dental-workflow-steps,
  .dental-accessory-grid,
  .dental-clinical-grid,
  .dental-why-grid,
  .dental-mini-form {
    grid-template-columns: 1fr;
  }

  .dental-hero-visual,
  .dental-hero-visual img {
    min-height: 0;
  }

  .dental-hero-visual {
    inset: auto 0 0;
    width: 100%;
    height: 46%;
    opacity: 0.92;
  }

  .dental-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 57%, rgba(255, 255, 255, 0.72) 70%, rgba(255, 255, 255, 0.1) 100%);
  }

  .dental-wave-grid article {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--dental-line);
  }

  .dental-wave-card {
    padding: 34px 28px 20px 44px;
  }

  .dental-wave-card::before {
    left: 24px;
  }

  .dental-wave-pin {
    left: 16px;
  }

  .dental-wave-grid ul {
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .dental-wave-grid li {
    margin-bottom: 10px;
  }

  .dental-wave-visual {
    min-height: 210px;
  }

  .dental-wave-grid article:last-child,
  .dental-accessory-grid article,
  .dental-why-grid article {
    border-right: 0;
  }

  .dental-workflow-steps article:not(:last-child)::after {
    display: none;
  }

  .dental-mini-form button {
    grid-column: auto;
  }
}

/* =========================================================
   REX Veterinary Laser System Page
   ========================================================= */
.rex-page {
  padding: calc(var(--header-height));
  background: linear-gradient(180deg, #f4f8f8 0%, #fff 42%, #edf4f3 100%);
  color: #122237;
}

.rex-page h1,
.rex-page h2,
.rex-page h3,
.rex-page p {
  margin-top: 0;
}

.rex-hero,
.rex-performance,
.rex-software,
.rex-wavelengths,
.rex-heads,
.rex-mobility,
.rex-cta {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.rex-hero {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf1f1;
  box-shadow: 0 20px 55px rgba(18, 34, 55, 0.13);
}

.rex-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248, 252, 252, 0.98) 0 39%, rgba(248, 252, 252, 0.82) 50%, rgba(248, 252, 252, 0.08) 76%, transparent 100%), linear-gradient(180deg, transparent 0 68%, rgba(6, 22, 38, 0.38) 100%);
  pointer-events: none;
}

.rex-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: clamp(42px, 5vw, 76px) clamp(24px, 4.5vw, 70px);
}

.rex-hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.rex-eyebrow {
  margin-bottom: 14px;
  color: #0aa675;
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.rex-hero h1 {
  margin-bottom: 0;
  color: #10213a;
  font-size: clamp(72px, 9vw, 90px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.rex-subtitle {
  margin-bottom: 18px;
  color: #10213a;
  font-size: clamp(25px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.rex-lede {
  margin-bottom: 6px;
  color: #09966d;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 900;
}

.rex-hero-copy > p:not(.rex-eyebrow):not(.rex-subtitle):not(.rex-lede) {
  max-width: 430px;
  color: #10213a;
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 800;
  line-height: 1.42;
}

.rex-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rex-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.rex-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 390px;
  margin: 34px 0 20px;
}

.rex-stats article {
  padding: 0 18px;
  border-right: 1px solid rgba(12, 124, 90, 0.2);
  text-align: center;
}

.rex-stats img {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}

.rex-stats article:first-child {
  padding-left: 0;
}

.rex-stats article:last-child {
  border-right: 0;
}

.rex-stats strong {
  display: block;
  color: #10213a;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 900;
}

.rex-stats span {
  color: #253347;
  font-size: 12px;
  font-weight: 700;
}

.rex-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rex-screen-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  width: 160px;
  padding: 18px 16px;
  border: 1px solid rgba(10, 166, 117, 0.78);
  border-radius: 8px;
  background: rgba(8, 25, 42, 0.82);
  box-shadow: 0 0 24px rgba(10, 166, 117, 0.18);
  color: #fff;
  text-align: center;
}

.rex-screen-note strong {
  display: block;
  color: #21d2a1;
  font-size: 30px;
  line-height: 1;
}

.rex-screen-note span,
.rex-screen-note small {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.rex-screen-note small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.rex-performance {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  background: #0b2038;
}

.rex-performance > img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  height: 100%;
  object-fit: cover;
  object-position: left 28%;
  opacity: 0.68;
}

.rex-performance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: 28%;
  min-height: 214px;
  background: linear-gradient(90deg, rgba(8, 28, 48, 0.76), rgba(10, 32, 56, 0.97));
}

.rex-performance-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.6vw, 38px);
  border-left: 1px solid rgba(90, 201, 184, 0.2);
}

.rex-performance-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 14px rgba(10, 166, 117, 0.34));
}

.rex-performance-grid h2,
.rex-performance-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.22;
}

.rex-performance-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.62;
}

.rex-software,
.rex-heads {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(30px, 5vw, 82px);
  padding: clamp(25px, 6vw, 30px);
  background: linear-gradient(135deg, #f8fbfb 0%, #e8f1f2 100%);
}

.rex-section-copy h2,
.rex-wavelengths h2,
.rex-mobility h2,
.rex-cta h2 {
  margin-bottom: 14px;
  color: #10213a;
  font-size: clamp(25px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1.12;
}

.rex-section-copy p:not(.rex-eyebrow),
.rex-wavelengths p,
.rex-mobility p,
.rex-cta p {
  color: #26364b;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.68;
}

.rex-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.rex-feature-row article,
.rex-head-grid article {
  min-height: 120px;
  padding: 5px;
}

.rex-feature-row img,
.rex-head-grid img {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.rex-feature-row strong,
.rex-head-grid strong,
.rex-wave-list strong {
  display: block;
  margin-bottom: 8px;
  color: #10213a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.rex-feature-row span,
.rex-head-grid span,
.rex-wave-list span {
  color: #4d5d70;
  font-size: 13px;
  line-height: 1.52;
}

.rex-software figure {
  margin: 0;
}

.rex-software figure img {
  display: block;
  width: min(100%, 430px);
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 24px 55px rgba(18, 34, 55, 0.16);
}

.rex-software figcaption {
  max-width: 430px;
  margin: 14px auto 0;
  color: #506174;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.rex-wavelengths {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(360px, 1.35fr) minmax(190px, 0.48fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  overflow: hidden;
  padding: clamp(25px, 6vw, 30px);
  background: radial-gradient(circle at 70% 62%, rgba(54, 188, 213, 0.2), transparent 31%), linear-gradient(90deg, #071b31 0%, #0b2744 52%, #061a30 100%);
}

.rex-wavelengths::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rex-wave-copy,
.rex-wave-visual,
.rex-wave-list {
  position: relative;
  z-index: 1;
}

.rex-wavelengths h2,
.rex-wavelengths p {
  color: #fff;
}

.rex-wavelengths p {
  color: rgba(255, 255, 255, 0.8);
}

.rex-wave-copy p:last-child {
  max-width: 330px;
  margin-bottom: 0;
  font-weight: 700;
}

.rex-wave-visual {
  align-self: end;
  margin: 0;
}

.rex-wave-visual img {
  display: block;
  width: 100%;
  min-height: 188px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 -18px 42px rgba(58, 190, 218, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.22);
}

.rex-wave-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rex-wave-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 850;
  line-height: 1.28;
}

.rex-wave-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38e4b6, #0aa675);
  box-shadow: 0 0 17px rgba(56, 228, 182, 0.45);
}

.rex-wave-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(-45deg);
}

.rex-wave-list strong,
.rex-wave-list span {
  color: #fff;
}

.rex-heads {
  grid-template-columns: minmax(190px, 1.1fr) minmax(300px, 0.5fr) minmax(0, 1.4fr);
  gap: clamp(18px, 2.5vw, 38px);
  padding-top: clamp(30px, 3.6vw, 48px);
  padding-bottom: clamp(30px, 3.6vw, 48px);
  background: linear-gradient(180deg, #f5f9fa 0%, #e8f0f2 100%);
}

.rex-head-visual {
  align-self: center;
  margin: 0;
}

.rex-head-visual img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}

.rex-head-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  align-self: stretch;
}

.rex-head-grid article {
  min-height: 0;
  padding: 0;
}

.rex-head-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 7px;
}

.rex-head-grid .rex-head-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}

.rex-head-card-media--ent img {
  object-position: 51% 76%;
}

.rex-head-card-media--medium img {
  object-position: 72% 78%;
}

.rex-head-card-media--large img {
  object-position: 89% 78%;
}

.rex-head-grid img {
  width: 34px;
  height: 34px;
}

.rex-mobility {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(210px, 0.9fr) minmax(480px, 1.7fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  padding: 0 clamp(24px, 4.5vw, 66px) 0 0;
  background: linear-gradient(90deg, #081c31 0%, #18364e 42%, #edf2f1 100%);
}

.rex-mobility-media {
  height: 190px;
  margin: 0;
  overflow: hidden;
}

.rex-mobility-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rex-mobility-copy {
  padding-block: 28px;
}

.rex-mobility h2,
.rex-mobility p {
  color: #fff;
}

.rex-mobility .rex-feature-row {
  margin-top: 0;
}

.rex-mobility-features {
  gap: 12px;
}

.rex-mobility .rex-feature-row article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.rex-mobility .rex-feature-row strong,
.rex-mobility .rex-feature-row span {
  color: #fff;
}

.rex-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 4.5vw, 66px);
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 54%, rgba(255, 255, 255, 0.55) 100%);
}

.rex-cta h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 2.3vw, 34px);
}

.rex-cta p {
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .rex-hero {
    min-height: 610px;
  }

  .rex-hero::after {
    background: linear-gradient(180deg, rgba(248, 252, 252, 0.98) 0 48%, rgba(248, 252, 252, 0.58) 70%, rgba(8, 25, 42, 0.12) 100%);
  }

  .rex-hero-copy {
    width: 100%;
    padding: 34px 28px;
  }

  .rex-hero-media img {
    object-position: right top;
    transform: scale(1.62);
  }

  .rex-screen-note {
    right: 24px;
    bottom: 24px;
  }

  .rex-performance > img {
    display: none;
  }

  .rex-performance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
  }

  .rex-software,
  .rex-wavelengths,
  .rex-heads,
  .rex-mobility {
    grid-template-columns: 1fr;
  }

  .rex-head-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .rex-mobility {
    padding-left: 0;
    padding-right: 0;
  }

  .rex-mobility-media {
    height: 230px;
  }

  .rex-mobility-copy {
    padding: 0 28px;
  }

  .rex-wave-copy p:last-child {
    max-width: 560px;
  }

  .rex-feature-row,
  .rex-wave-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rex-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rex-hero {
    min-height: 720px;
    margin-bottom: 15px;
  }

  .rex-hero-copy {
    padding: 28px 20px;
  }

  .rex-hero-copy > p:not(.rex-eyebrow):not(.rex-subtitle):not(.rex-lede) {
    max-width: 330px;
    font-size: 16px;
  }

  .rex-hero-media img {
    object-position: right top;
    transform: scale(1.8);
  }

  .rex-stats {
    max-width: none;
  }

  .rex-stats article {
    padding: 0 9px;
  }

  .rex-actions {
    max-width: 280px;
  }

  .rex-actions .button {
    width: 100%;
    justify-content: center;
  }

  .rex-screen-note {
    right: 16px;
    bottom: 16px;
    width: 136px;
  }

  .rex-performance-grid,
  .rex-feature-row,
  .rex-wave-list,
  .rex-head-grid {
    grid-template-columns: 1fr;
  }

  .rex-software,
  .rex-wavelengths,
  .rex-heads,
  .rex-mobility,
  .rex-cta {
    padding: 28px 20px;
  }

  .rex-head-grid {
    gap: 22px;
  }

  .rex-mobility-media {
    height: 190px;
    margin-inline: -20px;
  }

  .rex-mobility-copy {
    padding: 0;
  }

  .rex-wave-visual {
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .rex-wave-visual img {
    width: 620px;
    max-width: none;
    min-height: 196px;
  }

  .rex-cta {
    display: grid;
  }

  .rex-head-card-media {
    height: 200px;
  }
}

/* =========================================================
   Class IV Laser Therapy Page
   ========================================================= */
.classiv-page {
  padding: calc(var(--header-height) + 40px);
  background: radial-gradient(circle at 88% 5%, rgba(23, 108, 58, 0.09), transparent 30%), linear-gradient(180deg, #fbfcfb 0%, #f2f5f3 44%, #fff 100%);
}

.classiv-page h1,
.classiv-page h2,
.classiv-page h3,
.classiv-page p {
  margin-top: 0;
}

.classiv-hero,
.classiv-spec-strip,
.classiv-panel,
.classiv-insight-grid,
.classiv-cta {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.classiv-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f9f8;
  box-shadow: 0 18px 50px rgba(29, 45, 36, 0.08);
}

.classiv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.82) 53%, rgba(255, 255, 255, 0.16) 75%, transparent 100%);
  pointer-events: none;
}

.classiv-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  padding: 3% 2% 3% 2%;
}

.classiv-eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: var(--fs-sm);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.classiv-hero h1 {
  max-width: 590px;
  margin-bottom: 18px;
  color: #17202a;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.classiv-hero h1 span {
  display: block;
}

.classiv-lede {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 800;
  line-height: 1.32;
}

.classiv-hero-copy > p:not(.classiv-eyebrow):not(.classiv-lede) {
  max-width: 570px;
  color: #29342f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

.classiv-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: clamp(10px, 1.4vw, 22px);
  max-width: 590px;
  margin-top: 32px;
}

.classiv-benefits span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #101713;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.classiv-benefits b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(23, 108, 58, 0.72);
  border-radius: 50%;
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.classiv-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right top;
}

.classiv-spec-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -36px;
  padding: 21px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(23, 31, 27, 0.13);
}

.classiv-spec-strip article {
  min-height: 62px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.classiv-spec-strip article:last-child {
  border-right: 0;
}

.classiv-spec-strip h2 {
  margin-bottom: 7px;
  color: var(--green);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.22;
}

.classiv-spec-strip p {
  margin-bottom: 0;
  color: #2f3934;
  font-size: 13px;
  line-height: 1.42;
}

.classiv-panel {
  margin-top: 22px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.classiv-panel h2,
.classiv-cta h2 {
  margin-bottom: 14px;
  color: #17202a;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.16;
}

.classiv-panel p,
.classiv-cta p {
  color: #303a34;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

.classiv-workflow {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.78fr;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.classiv-depth {
  position: relative;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #efb2a2 0 20%, #f4c989 20% 43%, #b85f43 43% 67%, #8e3d2d 67% 80%, #e9c9a9 80% 100%);
}

.classiv-depth span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: #17202a;
  font-size: 12px;
  font-weight: 800;
}

.classiv-depth i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 94%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 18, 18, 0.98), rgba(255, 42, 42, 0.12));
  box-shadow:
    0 0 22px rgba(255, 34, 34, 0.95),
    0 0 70px rgba(255, 34, 34, 0.48);
  transform: translateX(-50%);
}

.classiv-checks {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.classiv-checks li {
  position: relative;
  padding-left: 28px;
  color: #39443f;
  font-size: 14px;
  line-height: 1.45;
}

.classiv-checks li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.classiv-app-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.classiv-app-grid article,
.classiv-result-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.classiv-app-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.classiv-app-grid h3 {
  margin: 16px 16px 8px;
  color: var(--green);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.24;
}

.classiv-app-grid ul {
  margin: 0 16px 18px;
  padding-left: 16px;
  color: #37413d;
  font-size: 13px;
  line-height: 1.6;
}

.classiv-insight-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.36fr 0.82fr;
  gap: 18px;
  margin-top: 22px;
}

.classiv-insight-grid .classiv-panel {
  margin-top: 0;
}

.classiv-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.classiv-metrics span {
  color: #2f3934;
  font-size: 13px;
  line-height: 1.3;
}

.classiv-metrics b {
  display: block;
  color: var(--green);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
}

.classiv-wave-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.classiv-wave-grid span {
  display: block;
  min-height: 104px;
  padding: 16px 10px;
  border: 1px solid #d9e2dd;
  border-radius: 8px;
  color: #34403a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.classiv-wave-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
}

.classiv-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.classiv-result-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.classiv-result-grid h3 {
  margin: 12px 14px 5px;
  color: #17202a;
  font-size: 15px;
  text-align: center;
}

.classiv-result-grid p {
  margin: 0 14px 16px;
  color: #4a554f;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.classiv-cta {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin-top: 22px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 10px;
  background: linear-gradient(90deg, #f9fbfa 0%, #fff 56%, rgba(23, 108, 58, 0.12) 100%);
  box-shadow: var(--shadow-card);
}

.classiv-cta img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.classiv-cta h2 {
  margin-bottom: 8px;
}

.classiv-cta p {
  margin-bottom: 0;
}

.classiv-cta .button {
  white-space: nowrap;
}

.classiv-partner {
  margin-top: 18px;
}

.app-card-link {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .classiv-hero {
    min-height: 720px;
  }

  .classiv-hero-copy {
    width: 100%;
  }

  .classiv-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 54%, rgba(255, 255, 255, 0.72) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .classiv-hero-image {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    object-position: -600px bottom;
  }

  .classiv-spec-strip,
  .classiv-app-grid,
  .classiv-insight-grid,
  .classiv-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classiv-spec-strip article:nth-child(2),
  .classiv-spec-strip article:nth-child(4) {
    border-right: 0;
  }

  .classiv-spec-strip article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .classiv-workflow,
  .classiv-cta {
    grid-template-columns: 1fr;
  }

  .classiv-cta img {
    max-width: 260px;
  }
}

@media (max-width: 640px) {
  .classiv-page {
    padding: calc(var(--header-height) + 16px) 18px 24px;
  }

  .classiv-hero {
    min-height: 760px;
  }

  .classiv-hero-copy {
    padding: 30px 22px;
  }

  .classiv-benefits,
  .classiv-spec-strip,
  .classiv-app-grid,
  .classiv-insight-grid,
  .classiv-wave-grid,
  .classiv-result-grid {
    grid-template-columns: 1fr;
  }

  .classiv-benefits {
    grid-template-columns: repeat(2, minmax(82px, 1fr));
  }

  .classiv-spec-strip {
    margin-top: -22px;
  }

  .classiv-spec-strip article,
  .classiv-spec-strip article:nth-child(2),
  .classiv-spec-strip article:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 10px;
  }

  .classiv-spec-strip article:last-child {
    border-bottom: 0;
    border-top: 0;
    padding-top: 14px;
  }

  .classiv-panel {
    padding: 20px;
  }
}

/* =========================================================
   Podiatry Laser Therapy Page
   ========================================================= */
.podiatry-page {
  padding: calc(var(--header-height) + 40px);
  background: radial-gradient(circle at 86% 8%, rgba(23, 108, 58, 0.08), transparent 34%), linear-gradient(180deg, #fbfcfb 0%, #f3f6f4 48%, #fff 100%);
}

.podiatry-page h1,
.podiatry-page h2,
.podiatry-page h3,
.podiatry-page p {
  margin-top: 0;
}

.podiatry-hero,
.podiatry-feature-strip,
.podiatry-grid-section,
.podiatry-split,
.podiatry-product,
.podiatry-cta {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.podiatry-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f9f8;
  box-shadow: 0 18px 50px rgba(29, 45, 36, 0.08);
}

.podiatry-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.72) 53%, transparent 76%);
  pointer-events: none;
}

.podiatry-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 5vw, 70px);
  opacity: 1;
  transform: none;
}

.podiatry-eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.podiatry-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: #17202a;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.podiatry-hero h1 span {
  display: block;
}

.podiatry-lede {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 800;
  line-height: 1.45;
}

.podiatry-hero-copy > p:not(.podiatry-eyebrow):not(.podiatry-lede) {
  max-width: 560px;
  color: #29342f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
}

.podiatry-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.podiatry-hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.podiatry-benefit-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  gap: clamp(10px, 1.5vw, 22px);
  max-width: 600px;
  margin-top: 28px;
}

.podiatry-benefit-icons span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #101713;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.podiatry-benefit-icons b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(23, 108, 58, 0.72);
  border-radius: 50%;
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
}

.podiatry-benefit-icons img {
  width: 34px;
  height: 34px;
}

.podiatry-feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -28px;
  padding: 22px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(23, 31, 27, 0.14);
}

.podiatry-feature-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.podiatry-feature-strip article > img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.podiatry-feature-strip article:last-child {
  border-right: 0;
}

.podiatry-feature-strip b,
.podiatry-feature-strip span {
  display: block;
}

.podiatry-feature-strip b {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 14px;
}

.podiatry-feature-strip span {
  color: #3f4944;
  font-size: 12px;
  line-height: 1.45;
}

.podiatry-grid-section,
.podiatry-split,
.podiatry-product {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.podiatry-grid-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.podiatry-card,
.podiatry-advantages,
.podiatry-wavelengths,
.podiatry-product {
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.podiatry-card,
.podiatry-advantages,
.podiatry-wavelengths {
  padding: clamp(22px, 2.6vw, 34px);
}

.podiatry-page h2 {
  margin-bottom: 18px;
  color: #17202a;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
}

.podiatry-depth-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 300px;
  margin: 12px 0 22px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(248, 194, 168, 0.95) 0 23%, rgba(244, 153, 118, 0.75) 24% 43%, rgba(169, 86, 58, 0.8) 44% 68%, rgba(226, 184, 142, 0.95) 69% 100%);
}

.podiatry-depth-visual::before,
.podiatry-depth-visual::after {
  content: '';
  position: absolute;
  inset: 20% 0 auto;
  height: 16px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 64px 0 rgba(255, 255, 255, 0.2),
    0 132px 0 rgba(255, 255, 255, 0.18);
}

.podiatry-depth-visual span {
  position: relative;
  z-index: 2;
  justify-self: center;
  padding-top: 18px;
  color: #17202a;
  font-size: 13px;
  font-weight: 700;
}

.podiatry-depth-visual i {
  position: absolute;
  top: 48px;
  width: 7px;
  height: 210px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 49, 49, 0.95), rgba(255, 54, 54, 0.18));
  box-shadow:
    0 0 22px rgba(255, 37, 37, 0.9),
    0 0 60px rgba(255, 37, 37, 0.5);
}

.podiatry-depth-visual i:nth-of-type(1) {
  left: 18%;
  height: 118px;
}

.podiatry-depth-visual i:nth-of-type(2) {
  left: 49%;
  height: 168px;
}

.podiatry-depth-visual i:nth-of-type(3) {
  left: 80%;
  height: 235px;
}

.podiatry-checks {
  display: grid;
  gap: 14px;
  margin-top: 25px;
  padding: 0;
  list-style: none;
}

.podiatry-checks li {
  position: relative;
  padding-left: 30px;
  color: #39443f;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.45;
}

.podiatry-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.podiatry-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.podiatry-app-grid article,
.podiatry-wave-grid article,
.podiatry-product-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.podiatry-app-grid article {
  overflow: hidden;
}

.podiatry-app-grid article .text-container {
  padding: 10px;
}

.podiatry-app-grid article > img {
  display: block;
  width: 100%;
}

.podiatry-app-grid h3,
.podiatry-wave-grid h3,
.podiatry-product-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.25;
}

.podiatry-app-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #37413d;
  font-size: 13px;
  line-height: 1.65;
}

.podiatry-split {
  grid-template-columns: 0.52fr 1.48fr;
}

.podiatry-wave-grid,
.podiatry-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.podiatry-wave-grid article,
.podiatry-product-grid article {
  padding: 20px;
}

.podiatry-wave-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  gap: 14px;
}

.podiatry-wave-grid article > img {
  width: 100%;
  aspect-ratio: 102 / 126;
  border-radius: 6px;
  object-fit: cover;
  background: var(--green-soft);
}

.podiatry-product-grid article > img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.podiatry-wave-grid h3 {
  color: #d92d20;
  font-size: clamp(22px, 1.7vw, 28px);
}

.podiatry-wave-grid p,
.podiatry-product-grid p,
.podiatry-cta p {
  color: #46514c;
  font-size: 14px;
  line-height: 1.65;
}

.podiatry-product {
  grid-template-columns: 260px 1fr;
  align-items: center;
  padding: clamp(20px, 2.5vw, 32px);
}

.podiatry-product > img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.podiatry-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.podiatry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(23, 108, 58, 0.13), rgba(255, 255, 255, 0.95));
}

.podiatry-cta h2 {
  margin-bottom: 6px;
}

.podiatry-page .podiatry-hero-copy.reveal {
  opacity: 1;
  transform: none;
}

/* =========================================================
   LYRA Product Detail Page
   ========================================================= */
.lyra-page {
  padding: calc(var(--header-height));
  background: linear-gradient(180deg, #fbfcfb 0%, #f3f6f4 42%, #fff 100%);
}

.lyra-page h1,
.lyra-page h2,
.lyra-page h3,
.lyra-page p {
  margin-top: 0;
}

.lyra-hero,
.lyra-panel,
.lyra-heads,
.lyra-bottom-grid {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.lyra-hero {
  position: relative;
  display: grid;

  align-items: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f9f8;
}

.lyra-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 40%, rgba(255, 255, 255, 0.82) 49%, rgba(255, 255, 255, 0.08) 72%, transparent 100%);
  pointer-events: none;
}

.lyra-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4.8vw, 70px);
}

.lyra-kicker {
  margin-bottom: 18px;
  color: var(--green);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lyra-hero h1 {
  margin-bottom: 18px;
  color: #050806;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.lyra-hero h2 {
  max-width: 540px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.18;
}

.lyra-hero p {
  max-width: 540px;
  color: #303a34;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}

.lyra-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  /* 保持原样，或者改为 top: 50% */
  top: 50%;
  /* 先向下移动 50% */
  width: 80%;
  height: auto;
  /* 保持高度自适应 */
  max-width: none;
  object-fit: cover;
  object-position: right center;
  /* 核心代码：向上回退自身高度的 50% */
  transform: translateY(-50%);
}

.lyra-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 0;
  max-width: 530px;
  margin: 28px 0 24px;
}

.lyra-metrics article {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 78px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.lyra-metrics article:first-child {
  padding-left: 0;
}

.lyra-metrics article:last-child {
  border-right: 0;
}

.lyra-metrics svg {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lyra-metrics b {
  display: block;
  color: var(--green);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.2;
}

.lyra-metrics span {
  display: block;
  color: #19221e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.lyra-panel,
.lyra-heads {
  margin-top: 18px;
  padding: clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(33, 45, 38, 0.06);
}

#software .lyra-panel2 {
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(33, 45, 38, 0.06);
  display: flex;
}

#software .lyra-padding {
  padding: 20px 0 20px 20px;
}

#software .lyra-patient-image {
  position: relative;
  height: 100%;
  width: 100%;
}
#software .lyra-patient-image img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lyra-panel h2,
.lyra-heads h2 {
  margin-bottom: 14px;
  color: #101713;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
}

.lyra-panel p,
.lyra-heads p {
  color: #303a34;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

.lyra-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(28px, 4.2vw, 58px);
}

.lyra-split > img {
  width: 100%;
  border-radius: 8px;
}

.lyra-split-reverse {
  grid-template-columns: 1fr 1.05fr;
}

.lyra-split-reverse > img {
  order: 0;
}

.lyra-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.lyra-section-title h2 {
  margin-bottom: 0;
}

.lyra-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(23, 108, 58, 0.52);
  border-radius: 50%;
  color: var(--green);
}

.lyra-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lyra-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.lyra-tags span,
.lyra-mode-grid article,
.lyra-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #d9e2dd;
  border-radius: 6px;
  background: #fbfcfb;
  color: #18211d;
  font-size: 14px;
  font-weight: 700;
}

.lyra-tags svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lyra-wave {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  align-items: center;
  gap: 28px;
}

.lyra-wave-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.lyra-wave-list article {
  display: grid;
  gap: 8px;
}

.lyra-wave-list b {
  font-size: 17px;
}

.lyra-wave-list article:nth-child(1) b {
  color: #ff1f1f;
}

.lyra-wave-list article:nth-child(2) b {
  color: #e66b19;
}

.lyra-wave-list article:nth-child(3) b {
  color: #7b30ff;
}

.lyra-wave-list article:nth-child(4) b {
  color: #008a76;
}

.lyra-wave-list article:nth-child(5) b {
  color: #006cc4;
}

.lyra-wave-list span {
  color: #26302a;
  font-size: 12px;
  line-height: 1.45;
}

.lyra-wave figure {
  margin: 0;
}

.lyra-wave img {
  width: 100%;
  border-radius: 8px;
}

.lyra-wave figcaption {
  margin-top: 12px;
  color: #56605a;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.lyra-surgery {
  display: grid;
  grid-template-columns: 0.92fr 1.25fr;
  align-items: center;
  gap: 28px;
}

.lyra-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.lyra-mode-grid article {
  display: grid;
  gap: 4px;
}

.lyra-mode-grid b {
  color: var(--green);
}

.lyra-mode-grid span {
  color: #2e3832;
  font-size: 13px;
  line-height: 1.35;
}

.lyra-surgery-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lyra-surgery-images img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.lyra-heads {
  text-align: center;
}

.lyra-heads > p {
  margin-bottom: 18px;
}

.lyra-handpiece {
  width: min(100%, 1080px);
  margin: 0 auto 14px;
}

.lyra-head-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  text-align: left;
}

.lyra-head-grid article {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 14px;
  align-items: center;
}

.lyra-head-grid img {
  grid-row: span 2;
  width: 100%;
  object-fit: contain;
}

.lyra-head-grid b {
  color: #111a15;
  font-size: 15px;
}

.lyra-head-grid span {
  color: #38433d;
  line-height: 1.35;
}

.lyra-bottom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
}

.lyra-bottom-grid .lyra-panel {
  width: 100%;
  margin-top: 0;
}

.lyra-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.lyra-steps span {
  display: grid;
  place-items: center;
  min-height: 74px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.lyra-patients {
  display: grid;
  grid-template-columns: 1fr 250px;
  align-items: end;
  gap: 18px;
  overflow: hidden;
}

.lyra-patients > img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.lyra-patient-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 22px;
}

.lyra-patient-icons span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #18211d;
  font-size: 12px;
  font-weight: 700;
}

.lyra-patient-icons img {
  height: 58px;
  object-fit: contain;
}

.lyra-patients h3 {
  margin: 0 0 6px;
  color: #111a15;
  font-size: 18px;
}

@media (max-width: 980px) {
  .lyra-hero,
  .lyra-split,
  .lyra-split-reverse,
  .lyra-wave,
  .lyra-surgery,
  .lyra-bottom-grid {
    grid-template-columns: 1fr;
  }

  .lyra-hero {
    min-height: 0;
    padding-bottom: 320px;
  }

  .lyra-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 55%, rgba(255, 255, 255, 0.6) 76%, transparent 100%);
  }

  .lyra-hero-image {
    inset: auto 0 0;
    width: 100%;
    height: 360px;
    object-position: center bottom;
  }

  .lyra-wave-list,
  .lyra-patient-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lyra-head-grid,
  .lyra-steps {
    grid-template-columns: 1fr;
  }
  #software .lyra-panel2 {
    display: block;
  }
  #software .lyra-patient-image {
    display: none;
  }
}

@media (max-width: 640px) {
  .lyra-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lyra-hero {
    padding-bottom: 250px;
  }

  .lyra-hero-copy {
    padding: 28px 22px;
  }

  .lyra-hero-image {
    height: 275px;
  }

  .lyra-metrics,
  .lyra-tags,
  .lyra-mode-grid,
  .lyra-surgery-images {
    grid-template-columns: 1fr 1fr;
  }

  .lyra-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .lyra-metrics article:last-child {
    border-bottom: 0;
  }

  .lyra-wave-list,
  .lyra-patient-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lyra-patients {
    grid-template-columns: 1fr;
  }

  .lyra-patients > img {
    max-height: 260px;
  }
}

/* =========================================================
   Laser Facelift Page
   ========================================================= */
.facelift-page {
  padding: calc(var(--header-height) + 40px);
  background: radial-gradient(circle at 84% 4%, rgba(23, 108, 58, 0.08), transparent 30%), linear-gradient(180deg, #fbfcfb 0%, #f2f5f3 48%, #fff 100%);
}

.facelift-page h1,
.facelift-page h2,
.facelift-page h3,
.facelift-page p {
  margin-top: 0;
}

.facelift-hero,
.facelift-stats,
.facelift-card,
.facelift-cta {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.facelift-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 10px;
  background: #f8faf9;
  box-shadow: 0 18px 50px rgba(29, 45, 36, 0.08);
}

.facelift-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.82) 53%, rgba(255, 255, 255, 0.12) 75%, transparent 100%);
  pointer-events: none;
}

.facelift-hero-copy {
  position: relative;
  z-index: 2;
  width: min(50%, 720px);
  padding: 3% 2% 3% 2%;
}

.facelift-eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(14px, 1.15vw, 20px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.facelift-hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: #202730;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.facelift-lede {
  margin-bottom: 22px;
  color: #646b70;
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.24;
}

.facelift-hero-copy > p:not(.facelift-eyebrow):not(.facelift-lede) {
  max-width: 560px;
  color: #28322d;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
}

.facelift-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right top;
}

.facelift-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: clamp(12px, 2vw, 30px);
  max-width: 640px;
  margin-top: 42px;
}

.facelift-benefits span {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #111916;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.facelift-benefits svg,
.facelift-system svg {
  width: 48px;
  height: 48px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facelift-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -28px;
  padding: 24px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(23, 31, 27, 0.12);
}

.facelift-stats article {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 56px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: #18211d;
  text-align: center;
}

.facelift-stats article:last-child {
  border-right: 0;
}

.facelift-stats b {
  color: var(--green);
  font-size: clamp(19px, 1.65vw, 28px);
  line-height: 1.05;
}

.facelift-stats span {
  font-size: 13px;
  line-height: 1.3;
}

.facelift-card {
  margin-top: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(226, 230, 228, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(33, 45, 38, 0.06);
}

.facelift-card h2,
.facelift-cta h2 {
  margin-bottom: 14px;
  color: #202730;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.15;
}

.facelift-card p,
.facelift-cta p {
  color: #303a34;
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.72;
}

.facelift-why {
  display: grid;
  grid-template-columns: 0.92fr 280px 0.9fr;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.facelift-why img,
.facelift-area-grid img,
.facelift-before-grid img {
  width: 100%;
  border-radius: 8px;
}

.facelift-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #202b27;
  font-size: var(--fs-sm);
  list-style: none;
}

.facelift-checks li {
  position: relative;
  padding-left: 28px;
}

.facelift-checks li::before {
  content: '✓';
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.facelift-area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.facelift-area-grid article {
  display: grid;
  grid-template-columns: minmax(86px, 118px) 1fr;
  align-items: center;
  gap: 14px;
}

.facelift-area-grid h3,
.facelift-system h3 {
  margin: 0 0 7px;
  color: var(--green);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.2;
}

.facelift-area-grid p {
  margin-bottom: 0;
  color: #17201c;
  font-size: 12px;
  line-height: 1.45;
}

.facelift-results {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: clamp(26px, 4vw, 56px);
}

.facelift-results > div {
  padding-right: clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.facelift-results section h2 {
  color: var(--green);
  text-align: center;
}

.facelift-results img {
  margin: 0 auto;
}

.facelift-before-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.facelift-before-grid article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.facelift-before-grid span {
  color: #1d2521;
  font-size: 12px;
}

.facelift-system {
  display: grid;
  grid-template-columns: 300px repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.facelift-system > div,
.facelift-system article {
  min-height: 170px;
  padding: 0 clamp(18px, 2.2vw, 32px);
  border-right: 1px solid var(--line);
}

.facelift-system > div {
  display: grid;
  align-content: center;
}

.facelift-system article {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.facelift-system article:last-child {
  border-right: 0;
}

.facelift-system svg {
  margin-bottom: 14px;
}

.facelift-system p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.facelift-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(33, 45, 38, 0.06);
}

.facelift-cta h2 {
  margin-bottom: 6px;
}

.facelift-cta p {
  margin-bottom: 0;
}

.facelift-cta .button {
  min-width: 260px;
  border-radius: 999px;
}

.facelift-page .facelift-hero-copy.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .facelift-hero {
    min-height: 560px;
  }

  .facelift-hero-copy {
    width: min(62%, 680px);
  }

  .facelift-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 430px;
  }

  .facelift-stats,
  .facelift-area-grid,
  .facelift-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facelift-stats article:nth-child(2n),
  .facelift-system article:nth-child(odd) {
    border-right: 0;
  }

  .facelift-why,
  .facelift-results {
    grid-template-columns: 1fr;
  }

  .facelift-results > div {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facelift-system > div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .facelift-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .facelift-hero {
    min-height: 0;
    padding-bottom: 330px;
  }

  .facelift-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 56%, rgba(255, 255, 255, 0.7) 72%, transparent 100%);
  }

  .facelift-hero-copy {
    width: 100%;
    padding: 30px 22px;
  }

  .facelift-hero-image {
    inset: auto 0 0;
    width: 100%;
    height: 340px;
    object-position: right bottom;
  }

  .facelift-stats,
  .facelift-area-grid,
  .facelift-before-grid,
  .facelift-system {
    grid-template-columns: 1fr;
  }

  .facelift-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .facelift-stats article,
  .facelift-system > div,
  .facelift-system article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facelift-stats article:last-child,
  .facelift-system article:last-child {
    border-bottom: 0;
  }

  .facelift-area-grid article {
    grid-template-columns: 112px 1fr;
  }

  .facelift-cta {
    display: grid;
  }

  .facelift-cta .button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   02. Reset & Base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, 'Helvetica Neue', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.55;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Shared layout primitives. Page-specific rules follow below. */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================================================
   03. Shared Components
   ========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 4px;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.button:hover {
  transform: translateY(-1px);
}

.button.solid,
.solid {
  background: var(--green);
  color: var(--white);
}

.button.solid:hover {
  background: var(--green-dark);
}

.button.outline,
.outline {
  border: 1px solid #87a492;
  background: var(--white);
  color: #234d32;
}

.button.outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.section-kicker,
.partner-kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.section-kicker {
  text-align: center;
}

.green-rule {
  width: 36px;
  height: 2px;
  margin: 8px auto 18px;
  background: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   04. Header & Navigation
   ========================================================= */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 6%;
  border-bottom: 1px solid rgba(222, 226, 223, 0.75);
  background: rgba(255, 255, 255, 0.94);
  color: #202722;
  backdrop-filter: blur(14px);
}

.logo {
  width: 150px;
}

.brandmark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid #dce3de;
  border-radius: 50%;
  background: var(--wash);
}

.brandmark i {
  position: absolute;
  top: 7px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 139, 53, 0.12);
}

.brandmark b {
  position: absolute;
  right: -3px;
  bottom: 5px;
  left: -3px;
  height: 17px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(155deg, #70ad75 0 45%, var(--green) 46%);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  margin-left: auto;
  margin-right: clamp(18px, 4vw, 64px);
  color: #424a45;
}

nav > a,
.nav-dropdown-toggle {
  position: relative;
  padding: 28px 0 14px;
  border: 0;
  background: none;
  color: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

nav > a.active,
nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #145d33;
}

nav > a.active::after,
nav > a:hover::after,
.nav-dropdown-toggle.active::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle span {
  margin-left: 4px;
  font-size: 13px;
  padding-bottom: 6px;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 14px;
  width: max-content;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(34, 48, 40, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-dropdown-wide .dropdown-panel {
  grid-template-columns: repeat(5, 150px);
}
.nav-dropdown.is-open .dropdown-panel,
.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-panel a {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.dropdown-panel a:hover {
  color: var(--green);
}
.dropdown-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
}

/* =========================================================
   05. Veterinary Reference Page
   ========================================================= */
.vet-page {
  padding: calc(var(--header-height) + 40px);
  /*background:
        linear-gradient(90deg, rgba(23, 108, 58, .045) 0 1px, transparent 1px),
        linear-gradient(180deg, #fbfcfb 0%, #f1f4f2 48%, #ffffff 100%);*/
  background-size:
    72px 72px,
    auto;
}

.vet-page h1,
.vet-page h2,
.vet-page h3,
.vet-page p {
  margin-top: 0;
}

.vet-hero,
.vet-stats,
.vet-card,
.vet-cta {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.vet-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background: #f7f9f8;
}

.vet-hero::after {
  content: '';
  position: absolute;
  right: -16%;
  bottom: -35%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 108, 58, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.vet-hero-copy {
  position: relative;
  z-index: 3;
  width: min(56%, 760px);
  padding: clamp(34px, 5vw, 70px) 0 clamp(28px, 4vw, 52px) 12px;
}

.vet-eyebrow {
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 800;
  letter-spacing: 0.035em;
}

.vet-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #17202c;
  font-size: clamp(46px, 5.3vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.vet-hero h1 span {
  color: var(--green);
  display: inline-block;
}

.vet-lede {
  max-width: 700px;
  margin-bottom: 24px;
  color: #2c3340;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.42;
}

.vet-intro {
  max-width: 560px;
  margin-bottom: 46px;
  color: #3d4651;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.75;
}

.vet-hero-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 0;
  max-width: 820px;
}

.vet-hero-icons span {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 96px;
  padding: 0 20px;
  color: #101820;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.vet-hero-icons span + span::before {
  content: '';
  position: absolute;
  top: 11px;
  bottom: 14px;
  left: 0;
  width: 1px;
  background: rgba(24, 31, 42, 0.28);
}

.vet-hero-icons b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 48px;
  color: var(--green);
  font-weight: 500;
}

.vet-hero-icons svg {
  width: 58px;
  height: 48px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vet-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  pointer-events: none;
}

.vet-hero-reference {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  transform: translateY(-50%);
}

.vet-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 86% 18%, rgba(23, 108, 58, 0.12), transparent 21%), linear-gradient(100deg, #fff 0 38%, rgba(255, 255, 255, 0.94) 46%, rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0) 100%);
}

.vet-hero-device {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 72px;
  width: clamp(190px, 20vw, 310px);
  border-radius: 14px;
  filter: drop-shadow(0 22px 28px rgba(22, 33, 28, 0.22));
}

.vet-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: -22px;
  padding: 24px 18px;
  border: 1px solid rgba(222, 228, 224, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(34, 45, 40, 0.11);
}

.vet-stats article {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 54px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: #18211d;
  text-align: center;
}

.vet-stats article:last-child {
  border-right: 0;
}

.vet-stats b {
  color: var(--green);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1;
}

.vet-stats span {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.vet-card {
  margin-top: 18px;
  padding: clamp(22px, 2.8vw, 36px);
  border: 1px solid rgba(226, 230, 228, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(33, 45, 38, 0.07);
}

.vet-card h2 {
  margin-bottom: 18px;
  color: #151d29;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.12;
  text-align: center;
}

.vet-card p {
  color: #2f3742;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
}

.vet-why {
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.vet-why h2 {
  text-align: left;
}

.vet-tissue {
}

.vet-tissue img {
  width: 100%;
}

.vet-checks {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #202b27;
  font-size: var(--fs-base);
  list-style: none;
}

.vet-checks li {
  position: relative;
  padding-left: 28px;
}

.vet-checks li::before {
  content: '✓';
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.vet-applications {
  padding-top: 18px;
}

.vet-app-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.vet-app-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(25, 36, 31, 0.05);
}

.vet-app-img img {
  width: 100%;
  height: auto;
}

.vet-app-grid h3 {
  margin: 14px 14px 8px;
  color: var(--green);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.18;
}

.vet-app-grid ul {
  margin: 0;
  padding: 0 18px 18px 28px;
  color: #17201c;
  font-size: 13px;
  line-height: 1.75;
}

.vet-wavelengths {
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 20px);
}

.vet-wavelengths img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.vet-advantages {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.35fr;
  align-items: center;
  gap: 32px;
}

.vet-advantages h2 {
  text-align: left;
}

.vet-animal-strip {
  border-radius: 18px;
}

.vet-animal-strip img {
  width: 100%;
  height: 100%;
}

.vet-animal-strip b {
  position: relative;
  z-index: 2;
  font: inherit;
}

.vet-platforms h2 {
  margin-bottom: 26px;
}

.vet-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.vet-platform-grid article {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 26px;
  padding: 8px 34px;
}

.vet-platform-grid article + article {
  border-left: 1px solid var(--line);
}

.vet-platform-grid img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.vet-platform-grid h3 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.15;
}

.vet-cta {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  min-height: 260px;
  margin-top: 18px;
  overflow: hidden;
  padding: clamp(26px, 3.3vw, 48px);
  border: 1px solid rgba(226, 230, 228, 0.92);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 42%, rgba(255, 255, 255, 0.52) 58%, transparent 100%),
    url('../img/veterinary/veterinary-laser-therapy.webp') right 0 / 65% auto no-repeat,
    #f8faf9;
  box-shadow: 0 14px 38px rgba(33, 45, 38, 0.07);
}

.vet-cta h2 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.08;
}

.vet-cta p {
  max-width: 440px;
  margin-bottom: 18px;
  color: #2f3742;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.35;
}

.vet-cta .button {
  width: auto;
  min-width: 220px;
  border-radius: 999px;
}

.vet-cta-family {
  min-height: 180px;
}

/* =========================================================
   05. Hero
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 690px;
  padding: var(--header-height) 0 0 4.2%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(96deg, #fff 0 46%, #f6f8f7 46% 100%);
}

.hero-kicker {
  position: absolute;
  top: 132px;
  left: 4.2%;
  z-index: 2;
  margin: 0;
  color: var(--green);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero h1 {
  margin: 0 0 25px;
  color: var(--ink);
  font:
    var(--fs-hero)/1.06 Georgia,
    'Times New Roman',
    serif;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero h2 {
  color: var(--green);
}

.hero-copy > p {
  max-width: 58ch;
  color: #4f5953;
  font-size: var(--fs-base);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 30px;
}

/* Hero illustration */
.clinic {
  position: relative;
  overflow: hidden;
  border-left: 1px solid #e8ece9;
  background: linear-gradient(#f0f3f1 0 42%, #fafbfa 42% 75%, #e8ebe9 75%);
}

.clinic::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  left: 18%;
  height: 28%;
  background: repeating-linear-gradient(90deg, #f2f4f3 0 17%, #dfe3e1 17.3% 17.7%);
  box-shadow: 0 7px 14px rgba(60, 70, 64, 0.08);
}

.clinic-label {
  position: absolute;
  top: 11%;
  right: 6%;
  margin: 0;
  color: #748079;
  font-size: var(--fs-sm);
  letter-spacing: 0.16em;
}

.cross {
  position: absolute;
  top: 6%;
  right: 8%;
  color: #b7c2bb;
  font-size: 85px;
  font-weight: 100;
}

.plant {
  position: absolute;
  top: 32%;
  left: 11%;
  color: #6d9876;
  font-size: 58px;
}

.device {
  position: absolute;
  border: 2px solid #8f9792;
  background: linear-gradient(135deg, #fff, #9ea6a1);
  filter: drop-shadow(10px 20px 12px rgba(40, 50, 44, 0.25));
  transform: skew(-4deg);
}

.device .screen {
  position: absolute;
  border: 7px solid #edf0ee;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 32%, #163d2c, #07110d 66%);
  box-shadow: inset -4px -5px #222;
}

.device .screen span {
  position: absolute;
  inset: 35% 10%;
  color: #8fd09d;
  font:
    700 8px/1.55 Arial,
    sans-serif;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: pre;
}

.device .handle {
  position: absolute;
  border: 9px solid #adb3b0;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
}

.device.rex {
  right: 27%;
  bottom: 93px;
  width: 190px;
  height: 290px;
  border-radius: 45px 45px 20px 20px;
}

.device.rex .screen {
  inset: 24px 18px 45px;
}

.device.rex .handle {
  top: -36px;
  right: 32px;
  left: 55px;
  height: 42px;
}

.device.rex i {
  position: absolute;
  top: 70px;
  right: -25px;
  width: 20px;
  height: 105px;
  border-radius: 8px;
  background: #202521;
}

.device.rex i + i {
  right: -42px;
  height: 85px;
}

.device.rex b {
  position: absolute;
  right: 15px;
  bottom: -24px;
  left: 15px;
  border-top: 8px solid #171b18;
}

.device.lyra {
  bottom: 84px;
  left: 3%;
  width: 220px;
  height: 140px;
  border-radius: 30px;
}

.device.lyra .screen {
  inset: 17px 22px 25px;
}

.device.lyra .handle {
  top: -18px;
  left: 14px;
  width: 70px;
  height: 42px;
  transform: rotate(-30deg);
}

.device.lyra i {
  position: absolute;
  right: -8px;
  bottom: 13px;
  width: 28px;
  height: 28px;
  border: 5px solid #ffad16;
  border-radius: 50%;
  background: #e62c10;
}

.dog,
.cat {
  position: absolute;
  right: 1%;
  bottom: 57px;
  font-size: 135px;
  filter: drop-shadow(4px 8px 5px rgba(50, 55, 52, 0.2));
}

.cat {
  right: 18%;
  bottom: 45px;
  font-size: 100px;
}

/* =========================================================
   06. Technology Capabilities
   ========================================================= */
.system,
.products,
.applications {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.system {
  padding: 48px 6% 58px;
  background: var(--white);
}

.system > h2,
.products > h2,
.home-news h2,
.applications h2,
.home-faq h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--fs-xl);
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0;
}

.system .p2,
.home-news .p2,
.applications .p2,
.home-faq .p2 {
  max-width: 820px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.55;
  text-align: center;
}

.technology-capabilities {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(23, 108, 58, 0.07), transparent 34%), linear-gradient(180deg, #fbfcfb 0%, #f6f8f7 100%);
}

.technology-capabilities::before,
.technology-capabilities::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 38vw;
  height: 230px;
  pointer-events: none;
  opacity: 0.55;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, transparent 0 17px, rgba(152, 184, 164, 0.32) 18px 19px), repeating-linear-gradient(90deg, transparent 0 62px, rgba(152, 184, 164, 0.18) 63px 64px);
}

.technology-capabilities::before {
  top: 140px;
  left: -15vw;
  transform: rotate(-8deg);
}

.technology-capabilities::after {
  right: -16vw;
  bottom: 54px;
  transform: rotate(-8deg);
}

.technology-capabilities > * {
  position: relative;
  z-index: 1;
}

.tech-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.tech-kicker::before,
.tech-kicker::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 108, 58, 0.75));
}

.tech-kicker::after {
  background: linear-gradient(90deg, rgba(23, 108, 58, 0.75), transparent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-grid article {
  min-height: 330px;
  padding: 25px;
  border: 1px solid rgba(223, 228, 225, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
}

.feature-head {
  display: grid;
  grid-template-columns: 42px 88px 1fr;
  align-items: center;
  column-gap: 5px;
  min-height: 92px;
}

.feature-number {
  align-self: start;
  display: inline-grid;
  gap: 8px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.feature-number::after {
  content: '';
  width: 25px;
  height: 2px;
  background: var(--green);
}

.feature-head img,
.feature-head .icon-ailucs {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.feature-head img {
  object-fit: contain;
}

.feature-head .icon-ailucs {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 62px;
}

.feature-grid h3 {
  margin: 0;
  color: #14201b;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 800;
  line-height: 1.18;
}

.feature-grid p {
  margin: 16px 0 22px;
  color: #5f6863;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
}

.feature-grid ul {
  margin: 0;
  padding: 18px 0 0 22px;
  border-top: 1px solid rgba(23, 108, 58, 0.28);
  color: #2f3934;
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.55;
}

.feature-grid li {
  margin-bottom: 6px;
  padding-left: 5px;
}

.feature-grid li::marker {
  color: var(--green);
}

/* =========================================================
   07. Products
   ========================================================= */
.products {
  padding: 38px 4.2% 45px;
  background: var(--wash);
}

.products > h2 {
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin: 22px auto 0;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 41% 59%;
  min-height: 420px;
  overflow: hidden;
  padding: 20px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--green);
}

.product-card > img {
  align-self: center;
  width: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--orange);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.product-info h3 {
  margin: 0;
  color: #1c2921;
  font:
    var(--fs-xl)/1.12 Georgia,
    'Times New Roman',
    serif;
}

.product-info h4 {
  margin: 3px 0 14px;
  color: #647069;
  font-size: var(--fs-sm);
  font-weight: 500;
}

.product-info ul {
  margin: 0;
  padding: 0;
  color: #3e4942;
  font-size: var(--fs-sm);
  line-height: 1.75;
  list-style: none;
}

.product-info li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.product-info li::before {
  content: '✓';
  display: inline-grid;
  flex: 0 0 16px;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-top: 0.35em;
  border: 1px solid #97b9a2;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ideal {
  padding: 11px;
  border-left: 2px solid #b8c8be;
  border-radius: 6px;
  background: #f5f7f6;
  color: #515d55;
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.product-info .button {
  padding: 9px 16px;
}

/* =========================================================
   08. Applications
   ========================================================= */
.applications {
  padding: 38px 4.2% 50px;
  background: var(--white);
  text-align: center;
}

.applications .app-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 198px;
  padding: 18px 10px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.app-card:hover {
  border-color: #b3ccc1;
  transform: translateY(-3px);
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--green);
}

.app-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--green);
}

.app-icon .icon-ailucs {
  font-size: 100px;
  line-height: 100px;
}

.app-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.3;
}
/*faq*/
.home-faq {
  padding: clamp(72px, 8vw, 118px) 0;
  background: #f4f6f5;
}
.home-faq-inner {
  width: var(--container);
  margin: 0 auto;
}
.home-faq-heading {
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}
.home-faq-heading .section-kicker {
  margin-bottom: 12px;
}

.home-faq-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.65;
}
.home-faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.home-faq-item {
  border-bottom: 1px solid var(--line);
}
.home-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 4px;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.home-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.home-faq-answer {
  max-width: 760px;
  padding: 0 52px 24px 4px;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}
/* =========================================================
   09. Partner
   ========================================================= */
.partner {
  display: grid;
  grid-template-columns: 36% 29% 35%;
  min-height: 275px;
  overflow: hidden;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.meeting {
  position: relative;
  overflow: hidden;
}

.meeting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-copy {
  padding: 42px 34px;
  background: var(--white);
}

.partner-copy h2 {
  margin: 0 0 24px;
  font-size: var(--fs-xl);
  line-height: 1.18;
}

.partner-copy p {
  margin: 0 0 18px;
  color: #5e6962;
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.benefits {
  padding: 25px 36px;
  border-left: 1px solid var(--line);
  background: #f7f8f7;
}

.benefits article {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #dce2de;
}

.benefits article:last-child {
  border-bottom: 0;
}

.benefits article > b {
  color: var(--green);
  font-size: 31px;
}

.benefits h3 {
  margin: 0 0 8px;
  font-size: var(--fs-sm);
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* =========================================================
   10. Footer Contact
   ========================================================= */
#footer2 {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(48px, 6vw, 72px) 24px;
  background: radial-gradient(58% 70% at 0% 100%, rgba(69, 209, 98, 0.38), transparent 52%), radial-gradient(36% 42% at 91% 0%, rgba(64, 168, 89, 0.14), transparent 62%), linear-gradient(110deg, #0b1010 0%, #101817 44%, #121a19 100%);
  color: #f8fbf8;
}

#footer2::before {
  content: '';
  position: absolute;
  inset: 0 0 auto auto;
  width: 34%;
  height: 45%;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(104, 190, 122, 0.45) 0 2px, transparent 2.5px);
  background-size: 25px 25px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

#footer2::after {
  content: '';
  position: absolute;
  bottom: -31%;
  left: -8%;
  width: 66%;
  height: 44%;
  border: 1px solid rgba(103, 233, 125, 0.5);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(91, 225, 104, 0.22), transparent 34%);
  box-shadow: 0 -16px 42px rgba(85, 230, 105, 0.25);
  transform: rotate(5deg);
}

.footer2-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(34px, 8vw, 150px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer2-copy h2 {
  margin: 0;
  font:
    clamp(36px, 4.2vw, 50px)/1.08 Georgia,
    'Times New Roman',
    serif;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.footer2-copy h2 span {
  color: #64c86b;
  text-shadow: 0 0 24px rgba(86, 210, 100, 0.32);
}

.footer2-copy > i {
  display: block;
  width: 54px;
  height: 3px;
  margin: 22px 0 20px;
  border-radius: 20px;
  background: #58c565;
  box-shadow: 0 0 18px rgba(88, 197, 101, 0.5);
}

.footer2-copy p {
  margin: 0;
  color: rgba(235, 243, 238, 0.68);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.55;
}

.footer2-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 500px;
  margin-top: clamp(30px, 4vw, 44px);
}

.footer2-options article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  border-right: 1px solid rgba(218, 230, 223, 0.18);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.footer2-options article:last-child {
  border-right: 0;
}

.footer2-options svg,
.footer2-options .icon-ailucs {
  width: clamp(34px, 3vw, 40px);
  height: clamp(34px, 3vw, 40px);
}

.footer2-options svg {
  fill: none;
  stroke: #5ac865;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(89, 203, 101, 0.36));
}

.footer2-options .icon-ailucs {
  display: grid;
  place-items: center;
  color: #5ac865;
  font-size: clamp(32px, 3vw, 40px);
  filter: drop-shadow(0 0 12px rgba(89, 203, 101, 0.36));
}

.footer2-options strong {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.25;
}

.footer2-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(223, 235, 227, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 65px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer2-form label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
}

.footer2-form label svg,
.footer2-form label .icon-ailucs {
  position: absolute;
  left: 20px;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.footer2-form label svg {
  fill: none;
  stroke: #59c765;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer2-form label .icon-ailucs {
  display: grid;
  place-items: center;
  color: #59c765;
  font-size: 20px;
}

.footer2-form input,
.footer2-form select,
.footer2-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 20px 0 56px;
  border: 1px solid rgba(223, 235, 227, 0.18);
  border-radius: 7px;
  outline: 0;
  background: rgba(6, 11, 12, 0.5);
  color: var(--white);
  font-size: clamp(13px, 1vw, 16px);
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.footer2-form input::placeholder,
.footer2-form textarea::placeholder,
.footer2-form select {
  color: rgba(236, 240, 238, 0.55);
}

.footer2-form textarea {
  height: 86px;
  padding-top: 18px;
  resize: vertical;
}

.message-field {
  align-items: flex-start;
}

.message-field svg,
.message-field .icon-ailucs {
  top: 18px;
}

.footer2-form input:focus,
.footer2-form select:focus,
.footer2-form textarea:focus {
  border-color: rgba(94, 207, 105, 0.75);
  background: rgba(9, 16, 17, 0.68);
  box-shadow: 0 0 0 3px rgba(89, 199, 101, 0.14);
}

.footer2-form button {
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #68cf70, #36a447);
  color: var(--white);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(41, 154, 64, 0.25);
  transition:
    transform 0.2s,
    filter 0.2s;
}

.footer2-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.footer2-form button span {
  display: inline-block;
  margin-left: 14px;
  font-size: 1.35em;
  line-height: 0;
  vertical-align: -2px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #a9d7b6;
  font-size: var(--fs-sm);
  text-align: center;
}

.form-status.is-loading {
  color: #d6e8da;
}
.form-status.is-success {
  color: #8be39a;
}
.form-status.is-error {
  color: #ffaaa0;
}
.footer2-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* =========================================================
   06. Responsive Overrides
   ========================================================= */
@media (max-width: 1100px) {
  .podiatry-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .podiatry-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 48%, rgba(255, 255, 255, 0.72) 68%, transparent 100%);
  }

  .podiatry-hero-copy {
    padding-bottom: 320px;
  }

  .podiatry-hero-visual {
    top: auto;
    width: 100%;
    height: 380px;
  }

  .podiatry-hero-visual img {
    width: 100%;
  }

  .podiatry-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .podiatry-feature-strip article {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .podiatry-feature-strip article:last-child {
    border-bottom: 0;
  }

  .podiatry-grid-section,
  .podiatry-split,
  .podiatry-product {
    grid-template-columns: 1fr;
  }

  .podiatry-product > img {
    max-width: 300px;
    margin-inline: auto;
  }

  .podiatry-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vet-hero {
    min-height: 580px;
  }

  .vet-hero-copy {
    width: min(72%, 720px);
    padding-right: 22px;
    padding-left: 22px;
  }

  .vet-hero-reference {
    right: -42px;
    width: min(70vw, 720px);
    object-position: right center;
  }

  .vet-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 0;
  }

  .vet-stats article:nth-child(3) {
    border-right: 0;
  }

  .vet-why,
  .vet-advantages,
  .vet-cta {
    grid-template-columns: 1fr;
  }

  .vet-app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vet-platform-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vet-platform-grid article + article {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .applications .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  header {
    background: rgba(255, 255, 255, 0.97);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: none;
  }

  .menu-toggle i {
    width: 22px;
    height: 2px;
    background: #222;
  }

  header nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 16px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    color: #222;
  }

  header nav.open {
    display: flex;
    /* 菜单比视口高时内部滚动（nav 是绝对定位、不占文档流，页面自身滚不到） */
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  header nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle span {
    float: right;
    transition: transform 0.2s;
  }
  .nav-dropdown.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
  }
  .dropdown-panel,
  .nav-dropdown-wide .dropdown-panel {
    position: static;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: auto;
    padding: 12px 4px 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .nav-dropdown.is-open .dropdown-panel {
    display: grid;
    pointer-events: auto;
    /* 必须清掉桌面端 translate(-50%)：移动端面板是静态定位，保留该偏移会让面板左移漂出容器 */
    transform: none;
  }
  .dropdown-panel a {
    padding: 4px;
    font-size: 11px;
  }
  .dropdown-panel img {
    height: 150px;
  }
  .nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    transform: none;
  }
  nav > a:last-child {
    border-bottom: 0;
  }

  .vet-page {
    padding-top: calc(var(--header-height) + 18px);
  }

  .vet-hero h1 {
    font-size: clamp(40px, 9vw, 62px);
  }

  .vet-hero-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .vet-hero-icons span:nth-child(4)::before {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 980px;
    padding: 80px 6% 0;
  }

  .hero-kicker {
    top: 102px;
    left: 6%;
  }

  .clinic {
    min-height: 470px;
    margin: 30px -7% 0;
    border-left: 0;
  }

  .partner {
    grid-template-columns: 1fr 1fr;
  }

  .meeting {
    grid-row: span 2;
  }

  .benefits {
    border-left: 0;
  }

  .footer2-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer2-options {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  :root {
    --fs-hero: clamp(34px, 10vw, 42px);
    --fs-xl: clamp(22px, 6vw, 28px);
  }

  .podiatry-page {
    padding: calc(var(--header-height) + 18px) 20px 28px;
  }

  .podiatry-hero-copy {
    padding: 26px 22px 280px;
  }

  .podiatry-hero h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .podiatry-benefit-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .podiatry-benefit-icons b {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .podiatry-hero-visual {
    height: 320px;
  }

  .podiatry-feature-strip,
  .podiatry-app-grid,
  .podiatry-wave-grid,
  .podiatry-product-grid {
    grid-template-columns: 1fr;
  }

  .podiatry-wave-grid article {
    grid-template-columns: 1fr 96px;
  }

  .podiatry-depth-visual {
    min-height: 240px;
  }

  .podiatry-depth-visual i {
    top: 44px;
    height: 160px;
  }

  .podiatry-depth-visual i:nth-of-type(1) {
    height: 92px;
  }

  .podiatry-depth-visual i:nth-of-type(2) {
    height: 132px;
  }

  .podiatry-depth-visual i:nth-of-type(3) {
    height: 178px;
  }

  .podiatry-cta {
    display: grid;
    text-align: left;
  }

  .logo small {
    font-size: 11px;
  }

  .hero {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-kicker {
    left: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .vet-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .vet-hero-copy {
    width: 100%;
    padding: 30px 8px 22px;
  }

  .vet-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .vet-lede {
    font-size: 18px;
  }

  .vet-intro {
    margin-bottom: 28px;
  }

  .vet-hero-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .vet-hero-icons span:nth-child(4)::before {
    display: block;
  }

  .vet-hero-icons span:nth-child(odd)::before {
    display: none;
  }

  .vet-hero-reference {
    top: auto;
    right: 50%;
    bottom: -12px;
    width: min(118vw, 680px);
    height: 58%;
    object-position: center bottom;
    transform: translateX(50%);
  }

  .vet-hero-visual::before {
    background: radial-gradient(circle at 86% 18%, rgba(23, 108, 58, 0.1), transparent 21%), linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 52%, rgba(255, 255, 255, 0.8) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .vet-hero-device {
    right: 8px;
    bottom: 36px;
    width: 170px;
  }

  .vet-stats {
    grid-template-columns: 1fr;
    margin-top: 14px;
    padding: 18px;
  }

  .vet-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

  .vet-stats article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .vet-card {
    padding: 20px;
  }

  .vet-card h2,
  .vet-why h2,
  .vet-advantages h2 {
    text-align: left;
  }

  .vet-tissue {
    min-height: 220px;
  }

  .vet-app-grid {
    grid-template-columns: 1fr;
  }

  .vet-wavelengths {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vet-animal-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    min-height: 0;
    padding: 10px;
    border-radius: 14px;
  }

  .vet-animal-strip span,
  .vet-animal-strip span:nth-child(even) {
    min-height: 170px;
    clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  }

  .vet-platform-grid article {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .vet-platform-grid img {
    max-height: 230px;
  }

  .vet-cta {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0 56%, rgba(255, 255, 255, 0.58) 100%),
      url('../img/veterinary/veterinary-laser-therapy.webp') 72% 92% / 620px auto no-repeat,
      #f8faf9;
  }

  .device.rex {
    right: 23%;
    transform: scale(0.8) skew(-4deg);
  }

  .device.lyra {
    left: -5%;
    transform: scale(0.75) skew(-4deg);
  }

  .dog {
    font-size: 95px;
  }

  .cat {
    font-size: 75px;
  }

  .system,
  .products,
  .applications {
    padding-right: 18px;
    padding-left: 18px;
  }

  .tech-kicker {
    gap: 10px;
  }

  .tech-kicker::before,
  .tech-kicker::after {
    width: 34px;
  }

  .feature-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .feature-head {
    grid-template-columns: 36px 68px 1fr;
    column-gap: 14px;
    min-height: 76px;
  }

  .feature-number {
    font-size: 17px;
  }

  .feature-head img {
    width: 68px;
    height: 68px;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .applications .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-card {
    min-height: 136px;
    padding: 16px 8px 12px;
  }

  .partner {
    grid-template-columns: 1fr;
  }

  .meeting {
    min-height: 240px;
  }

  .partner-copy {
    padding: 32px 24px;
  }

  .benefits {
    padding: 20px 24px;
  }

  .home-faq {
    padding: 64px 0;
  }
  .home-faq-heading {
    margin-bottom: 30px;
    text-align: left;
  }
  .home-faq-item summary {
    padding: 19px 0;
  }
  .home-faq-answer {
    padding: 0 28px 21px 0;
  }

  #footer2 {
    min-height: 0;
    padding: 44px 20px;
  }

  .footer2-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .footer2-copy p {
    font-size: 16px;
  }

  .footer2-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .footer2-options article:nth-child(2) {
    border-right: 0;
  }

  .footer2-form {
    padding: 20px;
    border-radius: 14px;
  }

  .footer2-form label,
  .footer2-form input,
  .footer2-form select {
    min-height: 58px;
  }

  .footer2-form input,
  .footer2-form select,
  .footer2-form textarea {
    padding-left: 55px;
  }

  .footer2-form label svg,
  .footer2-form label .icon-ailucs {
    left: 18px;
    width: 21px;
    height: 21px;
  }

  .footer2-form button {
    min-height: 60px;
  }
}

/* =========================================================
   Home Hero
   ========================================================= */
.home-hero-reference {
  position: relative;
  width: min(100% - 48px, 1400px);
  /* 桌面/平板：容器宽高比 = 横图 1672:941，cover 零裁剪、整图完整显示 */
  min-height: 0;
  aspect-ratio: 1672 / 941;
  margin: calc(var(--header-height) + 22px) auto 26px;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f9f8;
  box-shadow: 0 18px 50px rgba(29, 45, 36, 0.08);
}

.home-hero-reference::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.97) 0 35%, rgba(247, 250, 249, 0.62) 54%, rgba(247, 250, 249, 0.2) 100%), radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0 58%, rgba(210, 218, 214, 0.54) 100%);
  pointer-events: none;
}

.home-hero-reference::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 1;
  background: linear-gradient(90deg, rgba(227, 227, 227, 0.98) 0 36%, rgba(245, 249, 247, 0.78) 49%, rgba(245, 249, 247, 0.24) 68%, transparent 82%), linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 68%, rgba(221, 229, 225, 0.62) 100%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding: clamp(30px, 5vw, 70px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: clamp(44px, 7vw, 96px);
}

.home-hero-copy h1 {
  margin: 0;
  color: #3b3f3d;
  font:
    800 clamp(38px, 4vw, 58px)/1.08 Helvetica,
    'Aptos Display',
    Arial,
    sans-serif;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(70, 76, 72, 0.12);
}

.home-hero-copy h1 span {
  color: #12a85b;
}

.home-hero-rule {
  width: 78px;
  height: 5px;
  margin: 24px 0 26px;
  border-radius: 999px;
  background: #15b764;
}

.home-hero-copy p {
  max-width: 500px;
  margin: 0;
  color: #505a55;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 30px;
}

.home-hero-device {
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
  width: 100%;
}

.home-hero-device .home-hero-prev {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 51, 40, 0.28);
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.home-hero-device .home-hero-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 51, 40, 0.28);
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.home-hero-device img {
  max-width: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 700ms ease;
}

.home-hero-device .home-hero-dots {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}
.home-hero-device .home-hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.home-hero-device::after {
  display: none;
}

.home-hero-icons {
  display: grid;
  grid-template-columns: repeat(6, 74px);
  gap: 18px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.home-hero-icons li {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 1px 8px rgba(84, 95, 90, 0.35);
}

.home-hero-icons span {
  display: grid;
  place-items: center;
  width: clamp(50px, 5.5vw, 60px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.home-hero-icons svg,
.home-hero-icons .icon-ailucs {
  width: 64%;
  height: 64%;
}

.home-hero-icons svg {
  fill: #fff;
}

.home-hero-icons .icon-ailucs {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(25px, 3.5vw, 30px);
}

@media (max-width: 980px) {
  .home-hero-reference {
    width: min(100% - 32px, 1400px);
    margin-top: calc(var(--header-height) + 18px);
    /* 平板也走横图完整显示，不再裁剪 */
    min-height: 0;
  }

  .home-hero-inner {
    min-height: 0;
    padding: 54px 6% 300px;
  }

  .home-hero-copy {
    padding-top: 20px;
  }

  .home-hero-copy h1 {
    font-size: clamp(42px, 9vw, 66px);
  }

  .home-hero-device {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-hero-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
  }

  .home-hero-icons {
    right: 6%;
    left: 6%;
    bottom: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
  }
}

@media (max-width: 768px) {
  .home-hero-reference {
    width: calc(100% - 28px);
    /* ≤768px：容器宽高比 = 竖图 1000:1778，整图完整显示 */
    min-height: 0;
    aspect-ratio: 1000 / 1778;
  }

  .home-hero-reference::after {
    background:
      linear-gradient(180deg, rgba(245, 249, 247, 0.96) 0 39%, rgba(245, 249, 247, 0.72) 50%, rgba(245, 249, 247, 0.12) 68%, rgba(232, 239, 235, 0.34) 100%),
      linear-gradient(90deg, rgba(245, 249, 247, 0.76) 0 42%, rgba(245, 249, 247, 0.24) 72%, transparent 100%);
  }

  .home-hero-inner {
    padding: 44px 22px 360px;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .home-hero-device {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin: 0;
    /* 容器宽高比 = 竖图 1000:1778，cover 恰好铺满、零裁剪 */
    aspect-ratio: 1000 / 1778;
  }

  .home-hero-device img {
    object-position: center;
  }

  .home-hero-icons {
    grid-template-columns: repeat(3, 1fr);
    bottom: 26px;
  }

  .home-hero-icons li {
    font-size: 13px;
  }
}

/* News and article pages */
.news-page {
  background: #f5f9f7;
  color: #193328;
}

.news-hero > * {
  position: relative;
  z-index: 1;
}
.news-kicker,
.article-kicker {
  color: #149b56;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
}

.article-header h1 {
  max-width: 820px;
  margin: 0;
  color: #173b2b;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.news-hero {
  position: relative;
  min-height: 400px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #183728;
  isolation: isolate;
}
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/static/ailucs/img/news/veterinary-laser-therapy-blog.webp') center / cover no-repeat;
}
.news-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.news-hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.news-hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(43px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #fff;
}
.news-hero p {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.6;
}
.news-hero-line {
  width: 54px;
  height: 4px;
  margin-top: 34px;
  background: #f28b35;
}

.news-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
}
.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d8e5dd;
  padding: 22px 0;
}
.news-toolbar h2 {
  margin: 0;
  font-size: 24px;
}
.news-toolbar span {
  color: #66766d;
  font-size: 14px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfeae4;
}
.news-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.news-card-content {
  padding: 24px;
}
.news-card time,
.article-meta {
  color: #149b56;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.news-card h3 {
  margin: 12px 0;
  font-size: 22px;
  line-height: 1.2;
}
.news-card p {
  margin: 0 0 20px;
  color: #65736c;
  line-height: 1.65;
}
.news-card a {
  color: #173b2b;
  font-weight: 700;
  text-decoration: none;
}
.news-card a span {
  color: #149b56;
  margin-left: 6px;
}
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  list-style: none;
}
.news-pagination a,
.news-pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  color: #52645a;
  border: 1px solid #d7e4dc;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
}
.news-pagination a {
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.news-pagination a:hover,
.news-pagination a.is-current {
  color: #fff;
  border-color: #176c3a;
  background: #176c3a;
}
.news-pagination .pagination-arrow {
  font-size: 20px;
  line-height: 1;
}
.news-pagination .is-disabled {
  color: #b2beb7;
  border-color: #e4ebe6;
  background: #f7faf8;
  pointer-events: none;
}
.article-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 28px 100px;
}
.breadcrumbs {
  margin-bottom: 42px;
  color: #6b7b72;
  font-size: 14px;
  display: unset;
}
.breadcrumbs a {
  color: #149b56;
  text-decoration: none;
}
.article-header {
  max-width: 900px;
  margin-bottom: 42px;
}
.article-header h1 {
  font-size: clamp(40px, 5vw, 50px);
}
.article-meta {
  display: block;
  margin-top: 24px;
}
.article-featured {
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 10px;
}
.article-layout {
  display: grid;
  grid-template-columns: 70% 25%;
  gap: 5%;
  margin-top: 54px;
}
.article-body {
  color: #40534a;
  font-size: 18px;
  line-height: 1.85;
}
.article-body h2 {
  margin: 38px 0 12px;
  color: #173b2b;
  font-size: 30px;
  line-height: 1.2;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body ul {
  padding-left: 22px;
}
.article-aside {
  align-self: start;
  border-left: 2px solid #cbe3d4;
  padding-left: 20px;
  color: #6b7b72;
  font-size: 14px;
  line-height: 1.6;
}
.article-aside ul {
  list-style: none;
  padding: 0;
}
.article-aside li {
  margin-bottom: 15px;
  color: #173b2b;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: left;
}

.article-body table th {
  font-weight: bold;
}

@media (max-width: 760px) {
  .news-hero,
  .article-main {
    padding-top: 112px;
  }
  .news-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    border-left: 0;
    border-top: 2px solid #cbe3d4;
    padding: 18px 0 0;
  }
}
@media (max-width: 520px) {
  .news-hero,
  .news-main,
  .article-main {
    padding-right: 18px;
    padding-left: 18px;
  }
  .news-toolbar {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .news-pagination {
    gap: 5px;
  }
  .news-pagination a,
  .news-pagination span {
    min-width: 36px;
    height: 38px;
    padding: 0 7px;
  }
}
