:root {
  --bg: #f3f7fc;
  --bg-accent:
    radial-gradient(circle at top left, rgba(186, 230, 253, 0.34), transparent 26%),
    radial-gradient(circle at top right, rgba(199, 210, 254, 0.26), transparent 24%),
    linear-gradient(180deg, #f9fbfe 0%, #eef4fb 100%);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #162033;
  --muted: #64748b;
  --muted-soft: #7b8aa0;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(99, 102, 241, 0.14);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 22px 48px rgba(15, 23, 42, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --sidebar-width: 270px;
  --header-height: 84px;
  --max-width: 1440px;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.1);
  --accent-text: #3442b0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding-bottom: 50px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-accent);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 26px 24px 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 6px;
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}



.brand-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.language-button:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transform: translateY(-1px);
}

.active-language {
  background: var(--accent-soft);
  color: var(--accent-text);
  border-color: var(--border-strong);
}

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 18px 14px;
  backdrop-filter: blur(14px);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px;
  min-height: 780px;
  backdrop-filter: blur(14px);
}

.nav-link,
.subnav-link,
.products-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.nav-link:hover,
.subnav-link:hover,
.products-toggle:hover {
  background: rgba(148, 163, 184, 0.12);
}

.nav-link.active,
.subnav-link.active,
.products-toggle.active {
  background: var(--accent-soft);
  color: var(--accent-text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.products-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-subnav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  margin-top: 2px;
}

.products-subnav::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(99, 102, 241, 0.16);
  border-radius: 999px;
}

.subnav-link {
  min-height: 42px;
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 600;
}

/* HERO */
.hero {
  display: grid;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-single {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  min-height: 620px;
}

.hero-single .hero-copy,
.hero-single .hero-visual {
  min-height: 100%;
}

.hero-single .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-centered {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 24px;
}

.hero-copy-centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-overlay {
  display: block;
  margin-bottom: 24px;
}

.hero-visual-full {
  position: relative;
  min-height: 260px;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(186, 230, 253, 0.55);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.page-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-single .hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.hero-copy-centered h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.hero-copy-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 520px;
  padding: 8px 8px 8px 6px;
  color: #ffffff;
}

.hero-copy-overlay .eyebrow {
  color: #c7d2fe;
}

.hero-copy-overlay h1 {
  max-width: 11ch;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
  line-height: 0.98;
  margin: 0 0 12px;
  color: #ffffff;
}

.hero-lead,
.page-lead {
  margin: 0;
  color: var(--muted);
}

.hero-single .hero-lead {
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-copy-centered .hero-lead {
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-copy-overlay .hero-lead {
  max-width: 42ch;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 14px;
}

.primary-button,
.secondary-button,
.button,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.primary-button,
.button-primary {
  background: linear-gradient(135deg, #5b6df6, #4f46e5);
  color: white;
  box-shadow: 0 16px 30px rgba(79, 70, 229, 0.22);
}

.primary-button:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(79, 70, 229, 0.28);
}

.secondary-button,
.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid var(--border);
}

.secondary-button:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.hero-copy-overlay .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-text);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-copy-overlay .hero-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hero-video-stage {
  width: 100%;
}

.hero-visual-large {
  min-height: 100%;
}

.hero-visual-large .visual-shell,
.visual-shell-video-centered {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-visual-large .visual-shell {
  background:
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(235, 245, 255, 0.98), rgba(240, 244, 255, 0.95));
  border: 1px solid rgba(186, 230, 253, 0.65);
}

.visual-shell-video {
  isolation: isolate;
  background: #0f172a;
}

.visual-shell-video-centered {
  min-height: 560px;
  isolation: isolate;
  background:
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(231, 240, 252, 0.9), rgba(220, 231, 247, 0.82));
  border: 1px solid rgba(186, 230, 253, 0.55);
  box-shadow: var(--shadow);
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-text);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-visual-large .visual-lines {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-visual-large .visual-lines span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 210, 254, 0.6), rgba(224, 231, 255, 0.55));
}

.hero-visual-large .visual-lines span:nth-child(1) {
  width: 68%;
}

.hero-visual-large .visual-lines span:nth-child(2) {
  width: 52%;
}

.hero-visual-large .visual-lines span:nth-child(3) {
  width: 36%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 20, 36, 0.74) 0%, rgba(12, 20, 36, 0.56) 36%, rgba(12, 20, 36, 0.22) 100%),
    linear-gradient(180deg, rgba(12, 20, 36, 0.22), rgba(12, 20, 36, 0.32));
}

.visual-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.hero-video-tags {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-video-tags .visual-card,
.hero-video-tags .visual-badge {
  position: absolute;
  z-index: 4;
}

.visual-shell-video .visual-badge,
.visual-shell-video-centered .visual-badge {
  position: relative;
  z-index: 3;
}

.visual-card {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.visual-shell-video .visual-card,
.visual-shell-video-centered .visual-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.hero-visual-large .visual-card-top {
  top: 110px;
  right: 28px;
}

.hero-visual-large .visual-card-bottom {
  left: 34px;
  bottom: 84px;
}

.hero-tag-loclare {
  top: 20px;
  left: 20px;
}

.hero-tag-meds {
  top: 20px;
  right: 20px;
}

.hero-tag-status {
  left: 20px;
  bottom: 20px;
}

.hero-visual-large .visual-placeholder {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: auto;
}

/* CARDS */
.product-grid,
.value-grid,
.info-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card,
.value-card,
.info-card,
.text-card {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card:hover,
.value-card:hover,
.info-card:hover,
.text-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.12);
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card-link {
  display: block;
  padding: 26px;
  min-height: 100%;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h2,
.value-card h3,
.info-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.product-card p,
.value-card p,
.info-card p,
.text-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--accent-text);
  font-weight: 700;
  font-size: 0.95rem;
}

.product-card-cta::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.product-card:hover .product-card-cta::after {
  transform: translateX(3px);
}

/* PAGE INTRO */
.page-intro {
  position: relative;
  margin-bottom: 28px;
  padding: 0 0 22px;
  animation: fadeUp 0.45s ease both;
}

.page-intro::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa, #6366f1);
  opacity: 0.9;
}

.page-intro h1 {
  max-width: 14ch;
}

.page-lead {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* LANDING PAGE */
.landing-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.landing-intro .page-lead {
  max-width: 56ch;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-actions .button,
.landing-actions .button-primary,
.landing-actions .button-secondary {
  min-width: 180px;
}

.landing-intro + .info-grid,
.landing-intro + .text-card,
.landing-intro + .landing-section {
  margin-top: 6px;
}

.landing-section {
  margin-bottom: 20px;
  animation: fadeUp 0.45s ease both;
}

.landing-section-inner {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 28px 28px 30px;
  position: relative;
  overflow: hidden;
}

.landing-section-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.9), rgba(99, 102, 241, 0.85));
  opacity: 0.95;
}

.landing-section-inner h2 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.landing-section-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* INFO / TEXT */
.info-card,
.text-card {
  position: relative;
  overflow: hidden;
}

.info-card::before,
.text-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.9), rgba(99, 102, 241, 0.85));
  opacity: 0.95;
}

.info-card {
  min-height: 220px;
  padding: 28px 28px 28px 30px;
  animation: fadeUp 0.45s ease both;
}

.text-card {
  padding: 28px 28px 28px 30px;
  max-width: 900px;
  animation: fadeUp 0.45s ease both;
}

.info-grid .info-card:nth-child(2) {
  animation-delay: 0.06s;
}

.info-card h2 {
  font-size: 1.22rem;
  margin-bottom: 14px;
}

.info-card p,
.text-card p {
  font-size: 1rem;
}

.text-card p + p {
  margin-top: 16px;
}

.content-panel > .product-grid {
  margin-top: 8px;
}

.content-panel > .product-grid .product-card {
  min-height: 100%;
  animation: fadeUp 0.45s ease both;
}

.content-panel > .product-grid .product-card:nth-child(2) {
  animation-delay: 0.06s;
}

.content-panel > .product-grid .product-card-link {
  min-height: 220px;
}

.content-panel > .product-grid .product-card h2 {
  font-size: 1.28rem;
}

.content-panel > .product-grid .product-card p {
  max-width: 34ch;
}

.value-grid .value-card:nth-child(2) {
  animation-delay: 0.05s;
}

.value-grid .value-card:nth-child(3) {
  animation-delay: 0.1s;
}

.site-footer {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  z-index: 1000;
}

.fixed-footer p {
  margin: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-single {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-single .hero-copy h1,
  .hero-single .hero-lead,
  .page-intro h1 {
    max-width: none;
  }

  .hero-visual-large .visual-shell,
  .visual-shell-video-centered,
  .hero-visual-full {
    min-height: 300px;
  }

  .hero-copy-overlay h1 {
    max-width: 10ch;
  }
}

@media (max-width: 960px) {
  .site-shell {
    padding: 18px 16px 28px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .content-panel {
    padding: 24px;
    min-height: auto;
  }

  .hero-copy-centered {
    padding: 28px 24px;
  }

  .hero-copy-overlay {
    max-width: 100%;
    padding: 10px 8px;
  }

  .hero-copy-overlay h1 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 5vw, 2.7rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button,
  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .product-grid,
  .value-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding-bottom: 18px;
  }

  .info-card,
  .text-card,
  .landing-section-inner {
    padding: 24px 22px 24px 26px;
  }

  .content-panel > .product-grid .product-card-link {
    min-height: auto;
  }

  .language-switcher {
    gap: 8px;
  }

  .language-button {
    padding: 9px 14px;
  }

  .visual-shell-video-centered,
  .hero-visual-full {
    min-height: 280px;
    padding: 18px;
  }

  .hero-tag-meds {
    top: 18px;
    right: 18px;
  }

  .hero-tag-status {
    left: 18px;
    bottom: 18px;
  }

  .landing-actions,
  .page-intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-actions .button,
  .landing-actions .button-primary,
  .landing-actions .button-secondary,
  .page-intro-actions .button,
  .page-intro-actions .button-primary,
  .page-intro-actions .button-secondary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .hero-single .hero-copy {
    padding: 30px 24px;
  }

  .hero-copy-centered h1,
  .hero-copy-centered .hero-lead,
  .page-intro h1 {
    max-width: none;
  }

  .hero-visual-large .visual-shell {
    min-height: 260px;
    padding: 18px;
  }

  .hero-visual-large .visual-card,
  .visual-shell-video-centered .visual-card,
  .hero-visual-full .visual-card {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hero-visual-large .visual-card-top {
    top: 18px;
    right: 18px;
  }

  .hero-visual-large .visual-card-bottom {
    left: 18px;
    bottom: 18px;
  }

  .visual-shell-video-centered,
  .hero-visual-full {
    min-height: 240px;
  }

  .hero-tag-loclare {
    top: 16px;
    left: 16px;
  }

  .hero-tag-meds {
    top: 16px;
    right: 16px;
  }

  .hero-tag-status {
    left: 16px;
    bottom: 16px;
  }

  .hero-copy-overlay .hero-lead {
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    min-height: var(--header-height);
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
    padding-top: 8px;
  }

  .header-actions {
    width: 100%;
  }

  .language-switcher {
    justify-content: flex-start;
  }

  .product-card,
  .value-card,
  .info-card,
  .text-card {
    padding: 22px;
  }

  .hero-copy-overlay h1 {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .hero-visual-full {
    min-height: 220px;
  }

  .hero-tag-meds,
  .hero-tag-status {
    display: none;
  }

.brand::before {
  display: none !important;
  content: none !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand span {
  line-height: 1;
}

.brand-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
}