/* ============================================================
   LA THERAPEUTICS — NEUMORPHISM 2.0
   Fonts: Satoshi (body) · General Sans (headings)
   Cubic-bezier(0.34, 1.56, 0.64, 1) — bouncy, premium
============================================================ */
/* Primary: Fontshare. Fallback: Google Fonts (Inter + Outfit) */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&f[]=general-sans@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─────────────────── TOKENS ─────────────────── */
:root {
  /* Light mode base — cleaner, brighter #f0f2f8 */
  --bg: #f0f2f8;
  --bg-card: #f0f2f8;
  --bg-inset: #e4e7f0;
  --shadow-l: #ffffff;
  --shadow-d: #b8c0d0;

  /* Neumorphic shadows */
  --neu-out: 6px 6px 12px var(--shadow-d), -6px -6px 12px var(--shadow-l);
  --neu-out-sm: 4px 4px 8px var(--shadow-d), -4px -4px 8px var(--shadow-l);
  --neu-in: inset 4px 4px 8px var(--shadow-d), inset -4px -4px 8px var(--shadow-l);
  --neu-in-sm: inset 2px 2px 5px var(--shadow-d), inset -2px -2px 5px var(--shadow-l);
  --neu-flat: 2px 2px 5px var(--shadow-d), -2px -2px 5px var(--shadow-l);

  /* Brand colors */
  --crimson: #c0282a;
  --crimson-dark: #8b1a1a;
  --crimson-light: #e05050;
  --purple: #3d1a6e;
  --purple-mid: #5a2d9c;
  --teal: #0e9b98;
  --gold: #c9961a;

  /* Accent palette (Neumorphism 2.0 spec) */
  --indigo: #6366f1;
  --emerald: #10b981;
  --rose: #f43f5e;
  --violet: #8b5cf6;

  /* Text */
  --text: #2d3748;
  --text-mid: #6b7280;
  --text-light: #9ca3af;
  --text-white: #f8fafc;

  /* Layout */
  --nav-h: 70px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Animation — bouncy premium */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.35s var(--spring);
}

/* Dark mode intentionally disabled — site is always light theme */

/* ─────────────────── RESET ─────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  scroll-padding-top: var(--nav-h);
  /* offset for fixed nav */
}

body {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'General Sans', 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-inset);
}

::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 3px;
}

/* ─────────────────── NAVBAR ─────────────────── */
.la-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--bg);
  /* No bottom shadow/border — clean flat nav */
  backdrop-filter: blur(12px);
  transition: var(--t);
  width: 100%;
  box-sizing: border-box;
}

.la-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.la-logo img {
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 3px var(--shadow-d));
  transition: transform 0.3s var(--spring);
}

.la-logo img:hover {
  transform: scale(1.06);
}

/* Hide logo-text (logo only per spec) */
.la-logo-text {
  display: none;
}

.la-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.la-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--t);
  box-shadow: var(--neu-flat);
}

.la-nav-links a:hover {
  color: var(--crimson);
  box-shadow: var(--neu-out-sm);
  transform: translateY(-2px) scale(1.04);
}

.la-nav-links a.active {
  box-shadow: var(--neu-in-sm);
  color: var(--crimson);
}

.la-nav-cta {
  padding: 9px 20px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson)) !important;
  color: #fff !important;
  box-shadow: 4px 4px 10px rgba(139, 26, 26, 0.35), -2px -2px 6px var(--shadow-l) !important;
  font-weight: 700 !important;
}

.la-nav-cta:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 6px 6px 14px rgba(139, 26, 26, 0.4), -2px -2px 6px var(--shadow-l) !important;
}

/* Hamburger — clean flat lines, no box shadow on container */
.la-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px 6px;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background 0.2s ease;
}

.la-hamburger:hover {
  background: var(--bg-inset);
}

.la-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  transform-origin: center;
}

/* Mobile nav drawer */
.la-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  box-shadow: 0 8px 24px var(--shadow-d);
  padding: 16px 20px 24px;
  z-index: 999;
  animation: slideDown 0.3s var(--spring);
}

.la-mobile-menu.open {
  display: block;
}

.la-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
  box-shadow: var(--neu-out-sm);
  transition: var(--t);
}

.la-mobile-menu a:hover,
.la-mobile-menu a.active {
  box-shadow: var(--neu-in-sm);
  color: var(--crimson);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────── HERO ─────────────────── */
.la-hero {
  min-height: 100svh;
  min-height: 100vh;
  /* fallback */
  background: linear-gradient(160deg, #0c2461 0%, #1e3799 50%, #0a3d62 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}

.la-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.25;
}

.la-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: blob-float 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.la-hero-blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #c0282a, transparent 70%);
  right: -80px;
  top: -120px;
  animation-duration: 14s;
}

.la-hero-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #1e90ff, transparent 70%);
  left: -40px;
  bottom: -40px;
  animation-duration: 10s;
}

.la-hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0e9b98, transparent 70%);
  right: 28%;
  top: 28%;
  opacity: 0.2;
  animation-duration: 16s;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.08);
  }

  100% {
    transform: translate(-10px, 20px) scale(0.95);
  }
}

.la-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.la-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: particle-rise linear infinite;
}

@keyframes particle-rise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20px) scale(1.5);
    opacity: 0;
  }
}

.la-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;
}

.la-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.la-hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e9b98;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.la-hero-title {
  font-family: 'General Sans', 'Outfit', sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.la-hero-title .t-red {
  color: #ef5350;
}

.la-hero-title .t-cream {
  color: #ede8df;
}

.la-hero-title .t-teal {
  color: #0e9b98;
}

.la-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 400;
}

.la-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #ef5350, #c0282a);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s var(--spring);
  box-shadow: 0 6px 24px rgba(192, 40, 42, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(192, 40, 42, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.btn-hero-ghost {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s var(--spring);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.la-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

.la-hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ─────────────────── STAT ROW ─────────────────── */
.la-hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--shadow-d);
  box-shadow: 0 4px 16px var(--shadow-d);
}

.la-stat-row-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--neu-out);
  transition: var(--t);
  cursor: default;
}

.la-stat-row-pill:hover {
  box-shadow: var(--neu-in);
  transform: translateY(-2px);
}

.la-stat-row-icon {
  font-size: 24px;
  flex-shrink: 0;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.la-stat-row-num {
  font-family: 'General Sans', 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.la-stat-row-num sup {
  font-size: 16px;
  color: var(--teal);
}

.la-stat-row-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* ─────────────────── TICKER ─────────────────── */
.la-ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  background: var(--bg);
  border-top: 1px solid var(--shadow-d);
  border-bottom: 1px solid var(--shadow-d);
  box-shadow: 0 2px 12px var(--shadow-d);
}

.la-ticker-inner {
  display: inline-block;
  animation: ticker 40s linear infinite;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 1px;
  white-space: nowrap;
}

.la-ticker-inner .dot {
  color: var(--crimson);
  margin: 0 12px;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─────────────────── SECTIONS ─────────────────── */
.la-section {
  padding: 90px 60px;
}

.la-section-sm {
  padding: 56px 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--neu-in-sm);
}

.la-section-title {
  font-family: 'General Sans', 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.la-section-title .t-red {
  color: var(--crimson);
}

.la-section-title .t-purple {
  color: var(--purple);
}

.la-section-title .t-teal {
  color: var(--teal);
}

.la-section-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 540px;
}

/* ─────────────────── NEU CARD ─────────────────── */
.neu-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--neu-out);
  transition: var(--t);
}

.neu-card:hover {
  box-shadow: 10px 10px 24px var(--shadow-d), -10px -10px 24px var(--shadow-l);
  transform: translateY(-4px);
}

.neu-card-inset {
  background: var(--bg-inset);
  border-radius: var(--radius);
  box-shadow: var(--neu-in);
}

/* ─────────────────── FEATURE CARDS ─────────────────── */
.la-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.la-feature-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 1 1 220px;
  max-width: 320px;
}

.la-feature-card:hover {
  box-shadow: 10px 10px 28px var(--shadow-d), -8px -8px 22px var(--shadow-l);
  transform: translateY(-6px) scale(1.01);
}

.la-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: var(--neu-in-sm);
  animation: float-icon 3s ease-in-out infinite;
}

.la-feature-icon.red {
  background: var(--bg);
}

.la-feature-icon.purple {
  background: var(--bg);
}

.la-feature-icon.teal {
  background: var(--bg);
}

.la-feature-icon i {
  transition: var(--t);
}

.la-feature-card:hover .la-feature-icon i {
  transform: scale(1.15);
}

.la-feature-title {
  font-family: 'General Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.la-feature-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Icon colors */
.la-feature-icon i.fa-microscope {
  color: var(--crimson);
}

.la-feature-icon i.fa-shield-alt {
  color: var(--purple);
}

.la-feature-icon i.fa-flask {
  color: var(--teal);
}

.la-feature-icon i.fa-globe-asia {
  color: var(--crimson);
}

.la-feature-icon i.fa-heartbeat {
  color: var(--crimson);
}

.la-feature-icon i.fa-hand-holding-medical {
  color: var(--purple);
}

.la-feature-icon i.fa-chart-line {
  color: var(--indigo);
}

.la-feature-icon i.fa-graduation-cap {
  color: var(--violet);
}

.la-feature-icon i.fa-hand-holding-heart {
  color: var(--teal);
}

.la-feature-icon i.fa-users {
  color: var(--emerald);
}

/* ─────────────────── PRODUCT CARDS ─────────────────── */
.la-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 24px;
}

.la-product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.la-product-card:hover {
  box-shadow: 10px 10px 28px var(--shadow-d), -8px -8px 22px var(--shadow-l);
  transform: translateY(-7px);
}

.la-product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-inset);
  box-shadow: var(--neu-in);
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--spring);
}

.la-product-card:hover .la-product-img-wrap img {
  transform: scale(1.07);
}

/* NO top-right category tag — removed per user request */
.la-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-inset);
}

.la-product-placeholder::before {
  content: attr(data-letter);
  font-family: 'General Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}

.la-product-placeholder span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 10px;
}

.la-product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.la-product-name-head {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1.2;
}

.la-product-name-tail {
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 8px;
}

.la-product-caption {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.la-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.la-product-unit {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: var(--neu-in-sm);
}

.la-product-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  color: #fff;
  border: none;
  box-shadow: 3px 3px 8px rgba(139, 26, 26, 0.3), -2px -2px 5px var(--shadow-l);
  transition: var(--t);
}

.la-product-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 5px 5px 12px rgba(139, 26, 26, 0.4), -2px -2px 5px var(--shadow-l);
}

.la-product-btn:active {
  box-shadow: var(--neu-in-sm);
  transform: scale(0.98);
}

/* ─────────────────── FEATURED CSS TRACK ─────────────────── */
.la-featured-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 10px 4px 24px 4px;
  scrollbar-width: none;
}

.la-featured-track::-webkit-scrollbar {
  display: none;
}

.la-featured-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

/* ─────────────────── MODAL ─────────────────── */
.la-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(14, 20, 40, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  padding: 16px;
}

.la-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.la-modal {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.35s var(--spring);
  box-shadow: 8px 8px 24px var(--shadow-d), -4px -4px 12px var(--shadow-l);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.la-modal-header {
  padding: 24px 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--shadow-d);
}

.la-modal-title-head {
  font-family: 'General Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--crimson);
}

.la-modal-title-tail {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  margin-top: 3px;
}

.la-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-mid);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neu-out-sm);
  transition: var(--t);
  flex-shrink: 0;
}

.la-modal-close:hover {
  box-shadow: var(--neu-in-sm);
  color: var(--crimson);
  transform: rotate(90deg) scale(1.1);
}

.la-modal-body {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}

.la-modal-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--neu-in);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-inset);
}

.la-modal-placeholder {
  font-family: 'General Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--crimson);
  opacity: 0.3;
}

.la-modal-unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--neu-in-sm);
  color: var(--text-mid);
  margin-bottom: 14px;
}

.la-modal-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.la-modal-composition {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 400;
}

/* Search row */
.la-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* Search */
.la-search-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.la-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
}

.la-search-input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border: none;
  outline: none;
  border-radius: 50px;
  background: var(--bg);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--neu-in);
  transition: var(--t);
}

.la-search-input::placeholder {
  color: var(--text-light);
}

/* Filter pills */
.la-filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 16px 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 4px;
}

.la-filter-pills::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.la-filter-pill {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: var(--bg);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--neu-out-sm);
  transition: var(--t);
  flex-shrink: 0;
}

.la-filter-pill:hover {
  transform: translateY(-2px) scale(1.04);
  color: var(--crimson);
}

.la-filter-pill.active {
  box-shadow: var(--neu-in-sm);
  color: var(--crimson);
}

/* No results */
.la-no-results {
  text-align: center;
  padding: 80px 20px;
}

.la-no-results-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.la-no-results h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.la-no-results p {
  color: var(--text-light);
}

/* ─────────────────── STATS STRIP ─────────────────── */
.la-stats-strip {
  padding: 70px 60px;
  background: var(--bg-inset);
  box-shadow: var(--neu-in);
}

.la-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.la-stat-item {
  text-align: center;
}

.la-stat-big {
  font-family: 'General Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.la-stat-big-unit {
  font-size: 28px;
  color: var(--teal);
}

.la-stat-desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
  font-weight: 500;
}

/* ─────────────────── THERAPY GRID ─────────────────── */
.la-therapy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.la-therapy-card {
  flex: 0 0 140px;
  padding: 22px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
}

.la-therapy-card:hover {
  box-shadow: var(--neu-in);
  transform: translateY(-3px);
}

.la-therapy-icon {
  font-size: 30px;
  margin-bottom: 10px;
  animation: float-icon 3s ease-in-out infinite;
}

.la-therapy-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

/* ─────────────────── PAGE HERO ─────────────────── */
.la-page-hero {
  padding: 140px 60px 72px;
  background: linear-gradient(150deg, #0c2461 0%, #1e3799 55%, #0a3d62 100%);
  position: relative;
  overflow: hidden;
}

.la-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(30, 144, 255, 0.15), transparent);
}

.la-page-hero-content {
  position: relative;
  z-index: 2;
}

.la-page-hero h1 {
  font-family: 'General Sans', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  line-height: 1.1;
}

.la-page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.8;
}

.la-breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 600;
}

.la-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.la-breadcrumb a:hover {
  color: #fff;
}

/* Careers hero text overrides */
.la-careers-hero h1 {
  font-family: 'General Sans', 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 16px;
  line-height: 1.1;
}

.la-careers-hero h1 span {
  color: #0e9b98;
}

.la-careers-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ─────────────────── ABOUT PAGE ─────────────────── */
.la-about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.la-mission-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  border-left: 4px solid var(--crimson);
  transition: var(--t);
}

.la-mission-card.vision {
  border-left-color: var(--teal);
}

.la-mission-card:hover {
  box-shadow: 10px 10px 28px var(--shadow-d), -8px -8px 22px var(--shadow-l);
  transform: translateY(-5px);
}

.la-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.la-value-card {
  padding: 26px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
}

.la-value-card:hover {
  box-shadow: var(--neu-in);
  transform: translateY(-3px);
}

.la-value-icon {
  font-size: 32px;
  margin-bottom: 12px;
  animation: float-icon 3s ease-in-out infinite;
}

.la-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.la-cert-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.la-cert-card:hover {
  box-shadow: var(--neu-in);
}

/* ─────────────────── CONTACT ─────────────────── */
.la-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}

.la-contact-info-panel {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0c2461, #1e3799, #0a3d62);
  color: #fff;
}

.la-contact-info-title {
  font-family: 'General Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.la-contact-info-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.la-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.la-contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0e9b98;
  flex-shrink: 0;
}

.la-contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.la-contact-item-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ─────────────────── FORM ─────────────────── */
.la-form-panel {
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--neu-out);
}

.la-form-title {
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.la-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.la-form-group {
  margin-bottom: 18px;
}

.la-form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.la-form-input,
.la-form-select,
.la-form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: none;
  outline: none;
  border-radius: var(--radius-xs);
  background: var(--bg);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--neu-in);
  transition: var(--t);
}

.la-form-input::placeholder,
.la-form-textarea::placeholder {
  color: var(--text-light);
}

.la-form-input:focus,
.la-form-select:focus,
.la-form-textarea:focus {
  box-shadow: var(--neu-in), 0 0 0 2px rgba(192, 40, 42, 0.2);
}

.la-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.la-form-select {
  appearance: none;
  cursor: pointer;
}

.la-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  color: #fff;
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 4px 4px 12px rgba(139, 26, 26, 0.35), -2px -2px 6px var(--shadow-l);
  transition: var(--t);
}

.la-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 6px 6px 18px rgba(139, 26, 26, 0.45), -2px -2px 6px var(--shadow-l);
}

.la-submit-btn:active {
  box-shadow: var(--neu-in);
  transform: scale(0.99);
}

/* ─────────────────── CTA BAND ─────────────────── */
.la-cta {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(150deg, #0c2461, #1e3799, #0a3d62);
  position: relative;
  overflow: hidden;
}

.la-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(30, 144, 255, 0.18), transparent);
}

.la-cta-title {
  font-family: 'General Sans', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.la-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.la-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─────────────────── FOOTER ─────────────────── */
.la-footer {
  background: linear-gradient(170deg, #050d1f, #0c2461, #051020);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 60px 28px;
}

.la-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.la-footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.la-footer-desc {
  font-size: 13px;
  line-height: 1.8;
  max-width: 280px;
}

.la-footer-col-title {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.la-footer-link {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--t);
}

.la-footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.la-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 12px;
}

.la-footer-social {
  display: flex;
  gap: 12px;
}

.la-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--t);
}

.la-footer-social a:hover {
  background: var(--crimson);
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  border-color: var(--crimson);
}

/* ─────────────────── CAREERS ─────────────────── */
.la-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.la-role-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  transition: var(--t);
}

.la-role-card:hover {
  box-shadow: var(--neu-in);
  transform: translateY(-3px);
}

.la-role-dept {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.la-role-card h4 {
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.la-role-meta {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.la-careers-hero {
  padding: 140px 60px 72px;
  background: linear-gradient(150deg, #0c2461, #1e3799, #0a3d62);
  position: relative;
  overflow: hidden;
}

.la-careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 40%, rgba(192, 40, 42, 0.2), transparent);
}

/* ─────────────────── UTILITIES ─────────────────── */
.t-red {
  color: var(--crimson);
}

.t-purple {
  color: var(--purple);
}

.t-teal {
  color: var(--teal);
}

.t-gold {
  color: var(--gold);
}

.la-divider-chip {
  text-align: center;
  margin: 0 auto 52px;
}

.la-divider-chip::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--crimson);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 10px;
}

.la-divider-chip::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
}

/* ─────────────────── SCROLL-TO-TOP ─────────────────── */
.la-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
}

.la-scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.la-scroll-top:hover {
  box-shadow: 0 6px 16px rgba(192, 40, 42, 0.25), 0 12px 32px rgba(192, 40, 42, 0.15);
  transform: translateY(-3px) scale(1.08);
  color: var(--crimson);
}

/* ─────────────────── TOAST ─────────────────── */
.la-toast {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: var(--neu-out);
  font-size: 13px;
  font-weight: 600;
  min-width: 260px;
  transform: translateX(120%);
  transition: transform 0.4s var(--spring);
}

.la-toast.show {
  transform: translateX(0);
}

.la-toast.success {
  border-left: 4px solid var(--emerald);
}

.la-toast.error {
  border-left: 4px solid var(--rose);
}

/* ─────────────────── AOS ANIMATIONS ─────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--spring);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

[data-aos="fade-up"] {
  transform: translateY(28px);
}

[data-aos="fade-right"] {
  transform: translateX(-28px);
}

[data-aos="fade-left"] {
  transform: translateX(28px);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1200px) {
  .la-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .la-nav {
    padding: 0 24px;
  }

  .la-section,
  .la-section-sm {
    padding-left: 36px;
    padding-right: 36px;
  }

  .la-hero-content {
    padding: 0 36px;
  }

  .la-footer {
    padding: 56px 36px 22px;
  }

  .la-hero-stat-row {
    padding: 20px 36px;
    gap: 14px;
  }

  .la-cta {
    padding: 70px 36px;
  }

  .la-page-hero,
  .la-careers-hero {
    padding: 130px 36px 60px;
  }
}

@media (max-width: 768px) {
  .la-nav {
    padding: 0 16px;
    height: 62px;
    --nav-h: 62px;
  }

  .la-logo img {
    height: 38px;
  }

  .la-nav-links {
    display: none;
  }

  .la-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .la-hero {
    min-height: 100svh;
  }

  .la-hero-content {
    padding: 80px 20px 60px;
    max-width: 100%;
  }

  .la-hero-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .la-hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .la-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  .la-hero-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .la-stat-row-pill {
    padding: 13px 12px;
    gap: 10px;
  }

  .la-stat-row-num {
    font-size: 20px;
  }

  .la-stat-row-icon {
    font-size: 20px;
  }

  .la-stat-row-label {
    font-size: 9px;
  }

  .la-section {
    padding: 44px 16px;
  }

  .la-section-sm {
    padding: 34px 16px;
  }

  .la-stats-strip {
    padding: 50px 16px;
  }

  .la-cta {
    padding: 56px 16px;
  }

  .la-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .la-footer {
    padding: 40px 16px 18px;
  }

  .la-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .la-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .la-page-hero,
  .la-careers-hero {
    padding: 100px 16px 44px;
  }

  .la-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .la-stat-big {
    font-size: 38px;
  }

  .la-features-grid {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
  }

  .la-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .la-therapy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .la-therapy-card {
    padding: 16px 10px;
  }

  .la-therapy-icon {
    font-size: 24px;
  }

  .la-therapy-name {
    font-size: 11px;
  }

  .la-contact-grid {
    grid-template-columns: 1fr;
  }

  .la-about-mission-grid {
    grid-template-columns: 1fr;
  }

  .la-roles-grid {
    grid-template-columns: 1fr;
  }

  /* Our Story section: stack text above 2x2 tiles */
  .la-about-teaser-grid {
    grid-template-columns: 1fr !important;
  }

  .la-about-teaser-tiles {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  /* All inline 2-column grids → 1 column on mobile */
  [style*='grid-template-columns:1fr 1fr'],
  [style*='grid-template-columns: 1fr 1fr'] {
    grid-template-columns: 1fr !important;
  }

  /* Stats strip inline grid */
  [style*='repeat(4,1fr)'],
  [style*='repeat(4, 1fr)'] {
    grid-template-columns: 1fr 1fr !important;
  }

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

  .la-search-wrap {
    flex: 1 1 100% !important;
  }

  .la-featured-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .la-modal-body {
    grid-template-columns: 1fr;
  }

  .la-modal {
    margin: 8px;
    width: calc(100vw - 16px);
    border-radius: 18px;
  }

  .la-modal-header {
    padding: 18px 18px 14px;
  }

  .la-modal-body {
    padding: 18px;
  }

  .la-filter-pills {
    gap: 6px;
  }

  .la-filter-pill {
    font-size: 11px;
    padding: 6px 12px;
  }

  .la-ticker-inner {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .la-products-grid {
    grid-template-columns: 1fr;
  }

  .la-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .la-hero-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .la-therapy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}