/* ============================================
   Medical-Info - Static Site Styles
   ============================================ */

:root {
  --color-primary: #1E2A5E;
  --color-primary-hover: #161F47;
  --color-primary-light: #2E3F7A;
  --color-accent: #D62B7B;
  --color-accent-hover: #B01960;
  --color-body: #1A2340;
  --color-heading: #1E2A5E;
  --color-bg: #fff;
  --color-bg-alt: #EAF0F7;
  --color-muted: #767676;
  --color-border: #EAF0F7;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-body);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-primary-light);
}

ul {
  list-style: none;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-heading);
}

h1 { font-size: 72px; font-weight: 700; }
h2 { font-size: 42px; font-weight: 400; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-hero {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn-hero:hover {
  background: var(--color-heading);
  border-color: var(--color-heading);
  color: #fff;
}

.btn-small {
  padding: 8px 24px;
  font-size: 16px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-small:hover {
  background: var(--color-primary-light);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar strong {
  font-weight: 700;
  font-size: 24px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  padding: 10px 0;
}

body {
  padding-top: 116px;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  height: 90px;
}

.logo img {
  height: 90px;
  width: auto;
  transition: height 0.3s;
}

.site-header.scrolled .logo img {
  height: 30px;
}

.logo .logo-light {
  display: none;
}

.logo .logo-dark {
  display: block;
}

.main-nav {
  position: absolute;
  right: 0;
  /* MEDICAL bottom in logo at ~35px from logo top; nav text bottom sits there */
  top: 19px;
  line-height: 16px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 0 16px 0;
  position: relative;
  display: inline-block;
  line-height: 16px;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

.main-nav a.nav-cta {
  background: var(--color-accent);
  color: #fff;
  padding: 0 20px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  letter-spacing: 1.5px;
  line-height: 1;
  transform: translateY(-8px);
  transition: background 0.3s;
}

.main-nav a.nav-cta:hover {
  background: var(--color-accent-hover);
}

.main-nav a.nav-cta::after {
  display: none;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: none;
}

.header-email {
  display: none;
}

.header-phone-strip {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-heading);
  transition: all 0.3s;
  border-radius: 2px;
}

.menu-toggle.active {
  z-index: 1000;
}

.menu-toggle.active span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero - Split Layout --- */
.hero {
  display: flex;
  margin-top: 0;
  min-height: 80vh;
  position: relative;
  background: url('../images/green_wave_flow.webp') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  color: var(--color-body);
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-text h2 {
  color: var(--color-body);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.3;
}

.hero-right {
  flex: 1.3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 0 60px 40px;
  position: relative;
  z-index: 2;
}

.hero-right img {
  width: 100%;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section-title-green {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-body);
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.section-title-green::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
}

.section-title-white {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.section-title-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
}

.section-title-center {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-body);
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 60px;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--color-accent);
}

/* --- Values / Intro Section --- */
.values-section {
  background: var(--color-bg-alt);
  font-family: var(--font-body);
}

.values-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.values-row-bottom {
  margin-bottom: 0;
}

.values-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.values-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 1.5;
}

.value-card {
  background: var(--color-bg);
  text-align: center;
  padding: 30px 20px;
  border-radius: 5px;
}

.value-card img {
  width: 225px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.7;
}

/* --- About Section --- */
.about-section {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  padding: 100px 0;
}

.about-overlay {
  display: none;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-lead {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.about-video {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.about-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yt-lite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: var(--color-primary);
}
.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-lite-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.yt-lite:hover .yt-lite-play {
  opacity: 1;
}

/* --- Details Section --- */
.about-divider {
  position: relative;
  text-align: center;
  margin: 60px 0 40px;
}

.about-divider-line {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

.about-divider-arrow {
  position: relative;
  top: -1px;
}

.about-details {
  padding-bottom: 20px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.detail-block h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.detail-block p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.detail-block ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.detail-block li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}

.detail-block li::before {
  content: '– ';
}

.placeholder-text {
  text-align: center;
  font-size: 18px;
  color: var(--color-muted);
  padding: 60px 0;
  font-style: italic;
}

/* --- Representatives Section --- */
.representatives-section {
  background: var(--color-bg-alt);
}
.representatives-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--color-body);
}
.representatives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.rep-card {
  background: var(--color-bg);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.rep-card h4 {
  color: var(--color-body);
  margin-bottom: 4px;
  font-size: 16px;
}
.rep-card .rep-region {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
}
.rep-card a {
  color: var(--color-body);
  text-decoration: none;
  font-size: 16px;
}
.rep-card a:hover {
  color: var(--color-primary);
}
.rep-coming-soon {
  border: 2px dashed #bbb;
  box-shadow: none;
  background: #f0f0f0;
}
.rep-coming-soon h4 {
  color: #5c5c5c;
  font-style: italic;
}
.rep-coming-soon .rep-region {
  color: #5c5c5c;
}

/* --- Products Section --- */
.product-row {
  display: flex;
  width: 100%;
}

.product-row .product-image {
  flex: 1;
  overflow: hidden;
}

.product-row .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.product-row .product-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.product-brand {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.product-text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 20px;
}

.product-text ul {
  list-style: disc;
  padding-left: 20px;
}

.product-text li {
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 6px;
  line-height: 1.6;
}

.product-row-reverse {
  flex-direction: row-reverse;
}

/* --- News Section --- */
.news-section {
  background: var(--color-bg-alt);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.news-image {
  overflow: hidden;
  height: 280px;
}

.news-image img,
.news-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-category {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
}

.news-body time {
  font-size: 16px;
  color: var(--color-muted);
}

.news-body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-body h4 a {
  color: var(--color-heading);
}

.news-body h4 a:hover {
  color: var(--color-primary);
}

.news-body p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-5col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 0.3fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer-logo {
  width: 195px;
  height: auto;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.7;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: rgba(255,255,255,0.7);
}

.legal-numbers {
  margin-top: 12px;
}

.ifu-link-wrap {
  margin-top: 12px;
}

.ifu-link {
  color: #fff;
  text-decoration: underline;
}

.ifu-link:hover {
  color: var(--color-primary);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 40px 0 20px;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #fff;
}

.footer-copyright a {
  color: #fff;
}

.footer-copyright a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- Cookie Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 16px 24px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  font-size: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
  flex: 1;
  max-width: 800px;
  color: #fff;
}

/* --- IFU Page --- */
.ifu-page .hero {
  min-height: 70vh;
}

.ifu-page .hero-text h2 {
  font-size: 32px;
  max-width: 600px;
}

.ifu-content {
  text-align: center;
}

.ifu-content .section-header h3 {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  color: var(--color-body);
  line-height: 1.6;
  position: relative;
  padding-bottom: 16px;
}

.ifu-content .section-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--color-accent);
}

.privacy-text {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-text h3 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.privacy-text h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.ifu-downloads {
  max-width: 600px;
  margin: 40px auto 0;
}

.ifu-download-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.ifu-product-image {
  width: 200px;
  flex-shrink: 0;
}

.ifu-download-info h4 {
  font-size: 18px;
  color: var(--color-heading);
  margin-bottom: 16px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: background 0.3s;
}

.btn-download:hover {
  background: var(--color-primary-light);
  color: #fff;
}

.btn-download svg {
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 52px; }
  .hero-text h2 { font-size: 32px; }
  .product-row .product-text { padding: 40px 50px; }
  .news-card { grid-template-columns: 300px 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .site-header { top: 0; padding-top: 0; }
  body { padding-top: 105px; }

  .header-phone-strip {
    display: block;
    background: var(--color-primary);
    text-align: center;
    padding: 6px 10px;
  }

  .header-phone-strip p {
    color: #fff;
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
  }

  .header-phone-strip a {
    color: #fff;
    text-decoration: none;
  }

  .header-phone-strip strong {
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    padding: 100px 32px 32px;
    transition: right 0.3s;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-email {
    display: flex;
    align-items: center;
    color: var(--color-heading);
    z-index: 1000;
    transition: color 0.3s;
  }

  .header-email.nav-open {
    color: #fff;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    padding: 80px 30px 30px;
  }

  .hero-text h1 { font-size: 42px; }
  .hero-text h2 { font-size: 28px; margin-bottom: 24px; }
  .hero-text .btn-hero { font-size: 12px; padding: 10px 20px; }

  .hero-right {
    height: 250px;
    padding: 0;
  }

  .hero-right img {
    border-radius: 0;
    box-shadow: none;
  }

  .values-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-title {
    text-align: center;
    padding-right: 0;
  }

  .values-title .section-title-green::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

  .product-row,
  .product-row-reverse {
    flex-direction: column;
  }

  .product-row .product-image img {
    min-height: 250px;
  }

  .product-row .product-text {
    padding: 30px 20px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-image img {
    height: 200px;
  }

  .footer-5col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col-spacer {
    display: none;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .section-title-green,
  .section-title-white,
  .section-title-center {
    font-size: 28px;
  }

  .about-section { padding: 60px 0; }
  .about-lead { font-size: 15px; }

  .news-image { height: 200px; }
  .news-body { padding: 20px; }
  .news-body h4 { font-size: 18px; }

  .ifu-download-card {
    flex-direction: column;
    text-align: center;
  }

  .privacy-text h3 { font-size: 20px; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar { display: none; }
  .hero-text h1 { font-size: 32px; }
  .hero-text h2 { font-size: 22px; margin-bottom: 20px; }
  .hero-left { padding: 70px 20px 20px; }
  .logo img { height: 60px; }
  .site-header.scrolled .logo img { height: 28px; }
  .representatives-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .section-title-green,
  .section-title-white,
  .section-title-center { font-size: 24px; }
  .footer-logo { width: 140px; }
}

/* ============================================================
   MEDICAL-INFO v2 — rebuilt body sections
   Audience: older patients + relatives. Minimal motion, large
   type, high contrast.
   ============================================================ */

:root {
  --mi-cream: #FAF8F5;
  --mi-navy: #183863;
  --mi-navy-dark: #0F2447;
  --mi-magenta: #D62B7B;
  --mi-magenta-dark: #B01960;
  --mi-text: #1d2a44;
  --mi-muted: #5b6778;
  --mi-border: #e7e2da;
  --mi-radius: 6px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mi-magenta);
  margin-bottom: 16px;
}
.eyebrow-light { color: #ffcfe2; }

/* Gentle fade-in on scroll, only motion used site-wide */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---- Story / Rólunk ---- */
.story-section {
  background: var(--mi-cream);
  padding: 120px 0 100px;
}
.story-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: var(--mi-navy);
  margin: 0 0 60px;
  font-weight: 700;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-body p { font-size: 19px; line-height: 1.7; color: var(--mi-text); margin: 0 0 24px; }
.story-lead { font-size: 22px !important; font-weight: 500; color: var(--mi-navy) !important; }
.story-stats { display: flex; flex-direction: column; gap: 40px; border-left: 2px solid var(--mi-magenta); padding-left: 40px; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--mi-navy);
  letter-spacing: -2px;
}
.stat-label { font-size: 15px; color: var(--mi-muted); line-height: 1.4; }

/* ---- Role / Szerepünk ---- */
.role-section { background: #fff; padding: 100px 0; }
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.role-card {
  background: var(--mi-cream);
  padding: 40px 32px;
  border-radius: var(--mi-radius);
  border-top: 3px solid var(--mi-magenta);
}
.role-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--mi-magenta);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.role-card p { font-size: 17px; line-height: 1.65; color: var(--mi-text); margin: 0; }

/* ---- Strategy / Stratégia ---- */
.strategy-section { background: var(--mi-cream); padding: 100px 0; }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.strategy-card {
  background: #fff;
  border-radius: var(--mi-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(24,56,99,0.05);
  display: flex;
  flex-direction: column;
}
.strategy-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.strategy-body { padding: 32px 28px 36px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.strategy-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--mi-magenta);
  letter-spacing: 2px;
}
.strategy-body h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--mi-navy);
  line-height: 1.25;
  margin: 0;
}
.strategy-body p { font-size: 17px; line-height: 1.6; color: var(--mi-text); margin: 0; }

/* ---- Services ---- */
.services-v2 { background: #fff; padding: 100px 0; }
.services-lead { max-width: 820px; margin: 0 auto 60px; text-align: center; font-size: 19px; line-height: 1.6; color: var(--mi-muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.service-card {
  background: var(--mi-cream);
  padding: 40px 32px;
  border-radius: var(--mi-radius);
}
.service-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--mi-navy);
  margin: 0 0 18px;
  font-weight: 700;
}
.service-card p { font-size: 17px; line-height: 1.65; color: var(--mi-text); margin: 0; }

.indirect-care {
  background: var(--mi-navy);
  color: #fff;
  padding: 48px 56px;
  border-radius: var(--mi-radius);
  margin-top: 20px;
}
.indirect-care h4 { font-family: var(--font-heading); font-size: 22px; margin: 0 0 24px; color: #fff; }
.chip-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-family: var(--font-heading);
}

/* ---- Creed / Hitvallás ---- */
.creed-section {
  background: linear-gradient(135deg, var(--mi-navy) 0%, var(--mi-navy-dark) 100%);
  color: #fff;
  padding: 120px 0;
}
.creed-body { max-width: 860px; margin: 0 auto 80px; text-align: center; }
.creed-quote {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.25;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 40px;
  position: relative;
}
.creed-quote::before {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--mi-magenta);
  margin: 0 auto 40px;
}
.creed-text { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.85); margin: 0; }

.values-grid { text-align: center; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 60px; }
.values-heading { font-family: var(--font-heading); font-size: 15px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; margin: 0 0 32px; }
.values-cards { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.value-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,207,226,0.3);
  padding: 22px 40px;
  border-radius: var(--mi-radius);
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

/* ---- Clinics / Rendelőink ---- */
.clinics-section { background: var(--mi-cream); padding: 100px 0; }
.clinics-lead { max-width: 880px; margin: 0 auto 50px; font-size: 19px; line-height: 1.7; color: var(--mi-text); text-align: center; }
.specialties {
  background: #fff;
  border-left: 4px solid var(--mi-magenta);
  padding: 32px 40px;
  margin: 0 auto 60px;
  max-width: 880px;
  border-radius: 0 var(--mi-radius) var(--mi-radius) 0;
}
.specialties p { font-size: 18px; line-height: 1.6; color: var(--mi-text); margin: 0 0 12px; }
.specialties p:last-child { margin-bottom: 0; }
.specialties .note { font-size: 15px; color: var(--mi-muted); font-style: italic; }
.specialties strong { color: var(--mi-navy); }

.clinic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.clinic-placeholder {
  grid-column: 1 / -1;
  background: #fff;
  border: 2px dashed var(--mi-border);
  padding: 60px;
  text-align: center;
  font-size: 17px;
  color: var(--mi-muted);
  border-radius: var(--mi-radius);
}

.praxis-managers { margin-top: 40px; }
.praxis-managers h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--mi-navy);
  text-align: center;
  margin: 0 0 36px;
}
.praxis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.praxis-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--mi-radius);
  border-top: 3px solid var(--mi-magenta);
}
.praxis-card h5 { font-family: var(--font-heading); font-size: 22px; color: var(--mi-navy); margin: 0 0 8px; font-weight: 700; }
.praxis-region { font-size: 15px; color: var(--mi-muted); margin: 0 0 8px; }
.praxis-region strong { color: var(--mi-navy); }
.praxis-cities { font-size: 14px; color: var(--mi-muted); margin: 0 0 20px; line-height: 1.5; }
.praxis-card a { color: var(--mi-navy); text-decoration: none; font-weight: 500; }
.praxis-card a:hover { color: var(--mi-magenta); }
.praxis-card p { font-size: 16px; margin: 0 0 6px; }

/* ---- Training / Képzéseink ---- */
.training-section { background: #fff; padding: 100px 0; }
.training-body { max-width: 820px; margin: 60px auto 0; }
.training-body p { font-size: 19px; line-height: 1.75; color: var(--mi-text); margin: 0 0 28px; }

/* ---- Career / Karrier ---- */
.career-section { background: var(--mi-cream); padding: 100px 0; }
.career-intro { max-width: 820px; margin: 60px auto 0; text-align: center; }
.career-intro p { font-size: 18px; line-height: 1.7; color: var(--mi-text); margin: 0 0 16px; }
.career-intro a { color: var(--mi-magenta); text-decoration: none; }
.career-intro a:hover { text-decoration: underline; }
.confidential { font-size: 15px !important; color: var(--mi-muted) !important; font-style: italic; }

.open-positions-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--mi-navy);
  text-align: center;
  margin: 70px 0 36px;
}
.positions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.position-card {
  background: #fff;
  padding: 40px 36px;
  border-radius: var(--mi-radius);
  position: relative;
}
.position-tag {
  display: inline-block;
  background: var(--mi-magenta);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
}
.position-card h5 { font-family: var(--font-heading); font-size: 30px; color: var(--mi-navy); margin: 0 0 10px; font-weight: 700; }
.position-locations { font-size: 15px; color: var(--mi-muted); margin: 0 0 20px; line-height: 1.5; }
.position-card p { font-size: 16px; line-height: 1.65; color: var(--mi-text); margin: 0 0 24px; }
.position-card .btn { font-size: 14px; padding: 14px 28px; text-transform: none; letter-spacing: 0.5px; }

/* ---- Contact ---- */
.contact-section { background: #fff; padding: 100px 0; }
.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 60px auto 80px;
}
.address-card {
  background: var(--mi-cream);
  padding: 32px 36px;
  border-radius: var(--mi-radius);
  text-align: center;
}
.address-card h5 { font-family: var(--font-heading); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--mi-magenta); margin: 0 0 14px; font-weight: 600; }
.address-card p { font-size: 18px; line-height: 1.55; color: var(--mi-navy); margin: 0; font-weight: 500; }

.contacts-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--mi-navy);
  text-align: center;
  margin: 0 0 40px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  background: var(--mi-cream);
  padding: 32px 28px;
  border-radius: var(--mi-radius);
  border-left: 3px solid var(--mi-magenta);
}
.contact-card h5 { font-family: var(--font-heading); font-size: 19px; color: var(--mi-navy); margin: 0 0 4px; font-weight: 700; line-height: 1.3; }
.contact-role { font-size: 14px; color: var(--mi-muted); margin: 0 0 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.contact-card p { font-size: 15px; margin: 0 0 6px; line-height: 1.4; word-break: break-word; }
.contact-card a { color: var(--mi-navy); text-decoration: none; font-weight: 500; }
.contact-card a:hover { color: var(--mi-magenta); }

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-stats { border-left: none; border-top: 2px solid var(--mi-magenta); padding-left: 0; padding-top: 32px; flex-direction: row; gap: 24px; flex-wrap: wrap; }
  .stat { flex: 1 1 140px; }
  .stat-num { font-size: 48px; }
  .role-grid,
  .strategy-grid,
  .services-grid { grid-template-columns: 1fr; }
  .praxis-grid,
  .positions-grid { grid-template-columns: 1fr; }
  .address-row { grid-template-columns: 1fr; }
  .indirect-care { padding: 32px 24px; }
  .specialties { padding: 24px 28px; }
  .story-section,
  .role-section,
  .strategy-section,
  .services-v2,
  .clinics-section,
  .training-section,
  .career-section,
  .contact-section { padding: 70px 0; }
  .creed-section { padding: 80px 0; }
}
