/* Freeway Medical — professional clinical design */

:root {
  --navy: #0c4a6e;
  --navy-dark: #083652;
  --blue: #0284c7;
  --blue-light: #7ec8f5;
  --blue-pale: #e0f2fe;
  --pink: #ff2d8a;
  --pink-soft: #fce7f3;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 74, 110, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 74, 110, 0.12);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.container {
  width: min(92vw, 1180px);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(12, 74, 110, 0.25);
}
.btn--primary:hover {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.3);
}
.btn--outline {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { box-shadow: var(--shadow-lg); }
.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.32);
}
.btn--pink:hover {
  background: #e82680;
  box-shadow: 0 6px 28px rgba(255, 45, 138, 0.42);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  transition: gap 0.25s;
}
.link-arrow::after { content: "\2192"; }
.link-arrow:hover { gap: 0.6rem; color: var(--pink); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.site-header.is-over-hero {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-header.is-over-hero.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow);
}
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link {
  color: rgba(255, 255, 255, 0.82);
}
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link:hover,
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link.is-active {
  color: var(--white);
}
.site-header.is-over-hero:not(.is-scrolled) .site-nav__link.is-active::after {
  background: var(--pink);
}
.site-header.is-over-hero:not(.is-scrolled) .lang__btn {
  color: rgba(255, 255, 255, 0.82);
}
.site-header.is-over-hero:not(.is-scrolled) .lang__btn:hover { color: var(--white); }
.site-header.is-over-hero:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.site-header.is-over-hero:not(.is-scrolled) .site-nav__cta {
  background: var(--pink);
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.35);
}
.site-header.is-over-hero:not(.is-scrolled) .site-nav__cta:hover {
  background: var(--white);
  color: var(--navy);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.site-header__logo img {
  width: clamp(110px, 12vw, 148px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.2s;
  position: relative;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--navy); }
.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.site-nav__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang { position: relative; }
.lang__btn {
  border: none; background: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
}
.lang__btn:hover { color: var(--navy); }
.lang__menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 120px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.35rem 0;
  z-index: 10;
}
.lang__menu[hidden] { display: none; }
.lang__menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.lang__menu a:hover { background: var(--blue-pale); color: var(--navy); }

/* Hero — full-screen banner */
.hero--fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("/uploads/allimg/20251108/1-25110PS409410.jpg") center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 65% at 50% 45%, rgba(8, 54, 82, 0.78) 0%, rgba(8, 54, 82, 0.42) 55%, rgba(8, 54, 82, 0.55) 100%),
    linear-gradient(180deg, rgba(8, 54, 82, 0.35) 0%, rgba(8, 54, 82, 0.15) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.hero__content {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.badge--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(126, 200, 245, 0.45);
  color: var(--blue-light);
  backdrop-filter: blur(6px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.hero__text {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 40rem;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero--fullscreen .btn--primary {
  background: var(--pink);
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.35);
}
.hero--fullscreen .btn--primary:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.25);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--blue-light);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

/* Intro home — split editorial layout */
.intro-home {
  position: relative;
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: var(--white);
  overflow: hidden;
}

.intro-home__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--blue-light) 50%, var(--navy) 100%);
}

.intro-home__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.intro-home__content {
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--pink);
}

.intro-home__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.intro-home__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.intro-home__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-500);
  max-width: 34rem;
}

.intro-home__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.intro-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(12, 74, 110, 0.14);
  border-color: transparent;
}

.intro-card__media {
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 80%, rgba(126, 200, 245, 0.15), transparent),
    linear-gradient(180deg, #0a3d5c 0%, #0c4a6e 100%);
  min-height: 220px;
}
.intro-card__media img {
  width: min(72%, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s var(--ease);
}
.intro-card:hover .intro-card__media img {
  transform: scale(1.06);
}

.intro-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.intro-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.25s, color 0.25s;
}
.intro-card:hover .intro-card__link {
  color: var(--pink);
  gap: 0.55rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--gray-50); }
.section--compact { padding: 3rem 0; }
.section--contact {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.section-header { margin-bottom: 2.5rem; max-width: 36rem; }
.section-header--center {
  text-align: center;
  margin-inline: auto;
}
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.65rem;
}
.section-label--light { color: var(--blue-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--gray-500); }
.section-desc--light { color: rgba(255,255,255,0.75); }
.section-text {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* Product cards */
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.product-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--blue-pale);
  color: var(--navy);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.product-card__icon svg { width: 28px; height: 28px; }
.product-card__icon--blue { background: var(--pink-soft); color: var(--pink); }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Highlights — Evolve-Pro */
.highlights {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--white);
}

.highlights__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.highlights__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.highlights__visual img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin-inline: auto;
}

.highlights__content {
  max-width: 34rem;
}

.highlights__headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

/* Upcoming Events */
.events {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.events__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin-inline: auto;
}

.event-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(12, 74, 110, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.event-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 74, 110, 0.11);
}

.event-item__media {
  display: block;
  overflow: hidden;
}
.event-item__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.event-item:hover .event-item__media img {
  transform: scale(1.04);
}

.event-item__body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.event-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.event-item__name a {
  color: var(--navy);
  transition: color 0.2s;
}
.event-item__name a:hover {
  color: var(--blue);
}

.event-item__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.event-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: gap 0.25s, color 0.25s;
}
.event-item__link:hover {
  color: var(--pink);
  gap: 0.55rem;
}

/* What makes us different — banner + bento cards */
.different {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.different__bg {
  position: absolute;
  inset: 0;
  background: url("/uploads/allimg/20251108/1-25110PS409410.jpg") center 35% / cover no-repeat;
}

.different__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 54, 82, 0.92) 0%, rgba(12, 74, 110, 0.84) 45%, rgba(2, 132, 199, 0.76) 100%),
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(255, 45, 138, 0.14), transparent 55%);
}

.different__inner {
  position: relative;
  z-index: 1;
}

.different__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.different__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  white-space: nowrap;
}

.different__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.different-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(12, 74, 110, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.different-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(12, 74, 110, 0.11);
  border-color: rgba(126, 200, 245, 0.55);
}

.different-card--featured {
  grid-row: 1 / -1;
}

.different-card__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.different-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 54, 82, 0.08) 100%);
  pointer-events: none;
}

.different-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.different-card:hover .different-card__media img {
  transform: scale(1.05);
}

.different-card--featured .different-card__media {
  flex: 1;
  min-height: 320px;
}
.different-card--featured .different-card__media img {
  object-position: center 42%;
  min-height: 320px;
}

.different-card:not(.different-card--featured) .different-card__media {
  height: clamp(150px, 18vw, 190px);
}
.different-card:not(.different-card--featured):nth-child(2) .different-card__media img {
  object-position: center 35%;
}
.different-card:not(.different-card--featured):nth-child(3) .different-card__media img {
  object-position: center 22%;
}

.different-card__body {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.35rem 1.45rem;
}
.different-card--featured .different-card__body {
  padding: 1.5rem 1.5rem 1.65rem;
}

.different-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.different-card--featured h3 {
  font-size: clamp(1.2rem, 1.85vw, 1.42rem);
}

.different-card p {
  font-size: clamp(0.88rem, 1.15vw, 0.96rem);
  color: var(--gray-500);
  line-height: 1.65;
}

.different-card__deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(
      -58deg,
      transparent,
      transparent 16px,
      rgba(12, 74, 110, 0.05) 16px,
      rgba(12, 74, 110, 0.05) 17px
    );
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: clamp(240px, 38vh, 360px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  overflow: hidden;
  color: var(--white);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/uploads/allimg/20251108/1-25110PS409410.jpg") center 35% / cover no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 54, 82, 0.92) 0%, rgba(12, 74, 110, 0.84) 50%, rgba(2, 132, 199, 0.72) 100%),
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(255, 45, 138, 0.12), transparent 55%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.85rem;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.55; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.65rem;
}
.page-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  line-height: 1.7;
}

.page-content { padding: clamp(3.5rem, 7vw, 5rem) 0; }
.page-content--alt { background: var(--gray-50); }

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.content-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.content-split__body .section-text { margin-bottom: 1rem; }

.about-intro-section {
  background: var(--gray-50);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.about-intro__aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding-left: 1.15rem;
  border-left: 3px solid var(--pink);
}

.about-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.about-intro__lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 16rem;
}

.about-intro__panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12, 74, 110, 0.07);
}

.about-intro__body {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-intro__body .section-text {
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 42rem;
}
.about-intro__body .section-text:last-child {
  margin-bottom: 0;
}

.about-intro__footer {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.75rem, 3.5vw, 2.5rem);
  background:
    linear-gradient(135deg, var(--blue-pale) 0%, rgba(252, 231, 243, 0.45) 100%);
  border-top: 1px solid var(--gray-200);
}

.about-intro__slogan {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.about-intro__tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink);
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.value-panel {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--blue);
}
.value-panel h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-panel p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* CEO spotlight */
.ceo-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.ceo-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.ceo-spotlight__copy {
  padding-left: 1.15rem;
  border-left: 3px solid var(--pink);
}

.ceo-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ceo-spotlight__quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}

.ceo-spotlight__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.ceo-spotlight__attribution {
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.ceo-spotlight__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.ceo-spotlight__role {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.ceo-spotlight__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-900);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.ceo-spotlight__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue-light));
  z-index: 1;
}

.ceo-spotlight__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--gray-200);
  vertical-align: middle;
}

/* Company history / milestones */
.history-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.history-section__bg {
  position: absolute;
  inset: 0;
  background: url("/static/images/3affe8a3ca9f00a58ee841892b4c3cec.jpg") center center / cover no-repeat;
}

.history-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 54, 82, 0.82) 0%, rgba(12, 74, 110, 0.88) 50%, rgba(8, 54, 82, 0.85) 100%);
}

.history-section__inner {
  position: relative;
  z-index: 1;
}

.history-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.history-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
}

.history-carousel__nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.history-carousel__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.05);
}

.history-carousel__viewport {
  overflow: hidden;
  padding: 0.5rem 0;
}

.history-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.history-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s, opacity 0.35s;
  opacity: 0.82;
  transform: scale(0.96);
}

.history-card.is-active {
  background: var(--pink);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(255, 45, 138, 0.35);
  opacity: 1;
  transform: scale(1);
}

.history-card__year {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.history-card__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.history-card__list {
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.history-card__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.55rem;
}
.history-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}
.history-card.is-active .history-card__list li::before {
  background: var(--white);
}

.product-portfolio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Products page — high-contrast catalog */
.page-hero--products .page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(8, 54, 82, 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 45, 138, 0.08), transparent 60%);
}

.page-hero__title--caps {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.products-intro {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.products-intro::before,
.products-intro::after {
  content: "";
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  border-radius: 50%;
  border: 1px solid rgba(12, 74, 110, 0.08);
  pointer-events: none;
}

.products-intro::before {
  top: 12%;
  left: -4%;
  box-shadow:
    28px 28px 0 -1px rgba(12, 74, 110, 0.05),
    56px 56px 0 -1px rgba(12, 74, 110, 0.04);
}

.products-intro::after {
  bottom: 8%;
  right: -3%;
  box-shadow:
    -28px -28px 0 -1px rgba(12, 74, 110, 0.05),
    -56px -56px 0 -1px rgba(12, 74, 110, 0.04);
}

.products-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin-inline: auto;
}

.products-intro__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.products-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.products-intro__kicker {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.15rem;
}

.products-intro__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-500);
  max-width: 40rem;
  margin-inline: auto;
}

.products-nav-band {
  padding: 0 0 clamp(0.5rem, 1vw, 1rem);
  background: var(--gray-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.portfolio-switch__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.15rem 1rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.portfolio-switch__btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-switch__btn.is-active {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--pink);
}

.portfolio-switch__name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.portfolio-switch__btn.is-active .portfolio-switch__name {
  color: var(--white);
}

.portfolio-switch__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

.portfolio-switch__btn.is-active .portfolio-switch__desc {
  color: var(--blue-light);
}

.product-story {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.product-story--white {
  background: var(--white);
}

.product-story--gray {
  background: var(--gray-100);
}

.product-story--dark {
  background: var(--gray-900);
  color: var(--white);
}

.product-story__intro {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.product-story__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.65rem;
}

.product-story__intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.product-story__intro-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-500);
}

.product-story__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.product-story__split--reverse .product-story__copy {
  order: 2;
}

.product-story__split--reverse .product-story__visual {
  order: 1;
}

.product-story__kicker {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.85rem;
}

.product-story__kicker--dark {
  color: var(--blue);
}

.product-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.product-story__title--dark {
  color: var(--gray-900);
}

.product-story__tag {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(255, 45, 138, 0.55);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.product-story__tag--dark {
  border-color: rgba(255, 45, 138, 0.35);
}

.product-story__tag--muted {
  border-color: rgba(12, 74, 110, 0.2);
  color: var(--blue);
}

.product-story__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-story__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.product-story__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--pink);
  border-radius: 1px;
}

.product-story__list--dark li {
  color: var(--gray-500);
}

.product-story__list--dark li::before {
  background: var(--blue);
}

.product-story__visual {
  display: grid;
  place-items: center;
  min-height: clamp(160px, 22vw, 220px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.product-story__visual img {
  width: min(100%, 420px);
  height: auto;
  max-height: clamp(80px, 12vw, 120px);
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.45s var(--ease);
}

.product-story--gray .product-story__visual img {
  filter: drop-shadow(0 12px 28px rgba(12, 74, 110, 0.2));
}

.product-story:hover .product-story__visual img {
  transform: scale(1.04);
}

.product-specs {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #050505;
  color: var(--white);
}

.product-specs__heading {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  color: rgba(255, 255, 255, 0.85);
}

.product-specs__table {
  max-width: 720px;
  margin-inline: auto;
}

.product-specs__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 45, 138, 0.45);
}

.product-specs__row:first-child {
  border-top: 1px solid rgba(255, 45, 138, 0.45);
}

.product-specs__row dt {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.product-specs__row dd {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-light);
  text-align: right;
}

.products-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, var(--gray-900) 0%, #050505 100%);
  text-align: center;
}

.products-cta__inner {
  max-width: 36rem;
  margin-inline: auto;
}

.products-cta__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.65rem;
}

.products-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.products-cta__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-section {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(126, 200, 245, 0.1), transparent 55%),
    var(--gray-50);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.contact-section__head {
  max-width: 34rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.contact-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.contact-section__desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray-500);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.contact-list__item {
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--pink);
  box-shadow: 0 10px 36px rgba(12, 74, 110, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.contact-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(12, 74, 110, 0.1);
}

.contact-list__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
}

.contact-list__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-list dt {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.contact-list dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--gray-500);
}

.contact-list a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-list a:hover {
  color: var(--pink);
}

.contact-map-full {
  width: 100%;
  background: var(--white);
}

.contact-map-full .contact-map-block__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: clamp(1.25rem, 2.5vw, 1.5rem) 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-map-block__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--navy);
  flex-shrink: 0;
}

.contact-map-block__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-map-block__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.contact-map-block__subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.contact-map {
  width: 100%;
  min-height: clamp(360px, 52vh, 520px);
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 52vh, 520px);
  border: 0;
}

.contact-offices {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.35rem, 2.5vw, 1.65rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--blue-light);
  box-shadow: var(--shadow);
}

.contact-offices__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--navy);
  flex-shrink: 0;
}

.contact-offices__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-offices__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.contact-offices__address {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-500);
  font-style: normal;
}

.contact-offices__address a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-offices__address a:hover {
  color: var(--pink);
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--pink);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-card address,
.contact-card p {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-card a:hover { color: var(--pink); }
.contact-cta { text-align: center; }

.page-content--dark {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.page-content--dark .section-title { color: var(--white); }
.page-content--dark .section-desc { color: rgba(255, 255, 255, 0.75); }
.page-content--dark .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.page-content--dark .contact-card h3 { color: var(--blue-light); }
.page-content--dark .contact-card address,
.page-content--dark .contact-card p { color: rgba(255, 255, 255, 0.85); }
.page-content--dark .contact-card a { color: var(--white); }
.page-content--dark .contact-card a:hover { color: var(--blue-light); }

.highlights--on-light .highlights__title { color: var(--navy); }

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__brand img { margin-bottom: 1rem; opacity: 0.95; }
.site-footer__brand p { font-size: 0.875rem; line-height: 1.65; max-width: 16rem; }
.site-footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--white);
  transition: background 0.2s, color 0.2s;
}
.site-footer__social a:hover { background: var(--pink); color: var(--white); }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}
.site-footer a:hover { color: var(--white); }
.site-footer__bottom {
  padding: 1.5rem 0 2rem;
  text-align: center;
}
.site-footer__bottom p { font-size: 0.8rem; }
.site-footer__legal {
  margin-top: 0.35rem;
  font-size: 0.72rem !important;
  opacity: 0.55;
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 1.25rem; left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 2000;
  width: min(92vw, 480px);
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.5s var(--ease);
}
.cookie.is-visible { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: 0.8rem; color: var(--gray-500); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--delay.is-visible { transition-delay: 0.12s; }
.reveal--delay-2.is-visible { transition-delay: 0.24s; }

@media (max-width: 960px) {
  .intro-home__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-home__content {
    padding-left: 1rem;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--pink);
    padding-top: 1.25rem;
  }
  .intro-home__text { margin-inline: auto; }
  .intro-home__cards { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .different__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .different-card--featured { grid-row: auto; }
  .different-card--featured .different-card__media { min-height: 240px; }
  .different-card:not(.different-card--featured) .different-card__media { height: 200px; }
  .product-cards,
  .site-footer__grid { grid-template-columns: 1fr; }
  .highlights__layout { grid-template-columns: 1fr; }
  .highlights__content { max-width: none; text-align: center; }
  .highlights__visual img { max-width: 420px; }
  .events__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .content-split,
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__aside {
    position: static;
    border-left: none;
    border-top: 3px solid var(--pink);
    padding-left: 0;
    padding-top: 1rem;
    text-align: center;
  }
  .about-intro__lead { margin-inline: auto; }
  .ceo-spotlight__copy {
    border-left: none;
    border-top: 3px solid var(--pink);
    padding-left: 0;
    padding-top: 1rem;
    text-align: center;
  }
  .ceo-spotlight__attribution { text-align: center; }
  .values-row,
  .ceo-spotlight,
  .history-carousel__track { grid-template-columns: 1fr; }
  .history-carousel__nav { display: none; }
  .history-card { transform: none; opacity: 1; }
  .history-card:not(.is-active) { display: none; }
  .history-card.is-active { display: block; }
  .product-portfolio,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-section__head { text-align: center; margin-inline: auto; }
  .portfolio-switch { grid-template-columns: 1fr; }
  .product-story__split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-story__split--reverse .product-story__copy,
  .product-story__split--reverse .product-story__visual {
    order: unset;
  }
  .product-story__list li {
    text-align: left;
  }
  .product-specs__row dd {
    width: 100%;
    text-align: left;
  }
  .hero__overlay {
    background:
      radial-gradient(ellipse 90% 70% at 50% 40%, rgba(8, 54, 82, 0.82) 0%, rgba(8, 54, 82, 0.55) 100%);
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
  .site-nav__cta { margin: 1rem 0 0; width: 100%; }
  .lang { padding: 1rem 0; }
  .section { padding: 3.5rem 0; }
  .different__title { white-space: normal; }
  .events__grid { grid-template-columns: 1fr; max-width: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .product-card:hover { transform: none; }
}
