/* === GLOBAL SAFETY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

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

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* === DESIGN TOKENS === */
:root {
  --blue: #1565C0;
  --blue2: #0D47A1;
  --blue-light: #E3F0FF;
  --blue-mid: #90CAF9;
  --orange: #E8450A;
  --orange2: #BF360C;
  --orange-light: #FFF3EE;
  --gray: #F5F7FA;
  --border: #E0E7EF;
  --text: #1A2340;
  --text2: #4A5568;
  --text3: #8A9AB5;
  --white: #fff;
  --shadow: 0 2px 16px rgba(21, 101, 192, .08);
  --shadow2: 0 4px 24px rgba(21, 101, 192, .13);
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

body.intro-playing {
  overflow: hidden;
}

body.intro-playing > :not(.video-intro) {
  visibility: hidden;
}

.video-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.video-intro.closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body:not(.intro-playing) > .video-intro {
  display: none;
}

.video-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.intro-skip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6000;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.intro-skip:hover{background:rgba(255,255,255,0.18)}

/* === FLUID CONTAINER === */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* === BADGES & LABELS === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-light);
  color: var(--blue2);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.sec-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

/* === BUTTONS (44px min tap target) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue2);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange2);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  min-height: 36px;
}

/* TOPBAR */
.topbar {
  background: var(--blue2);
  color: #fff;
  padding: 7px 0;
  font-size: 12px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  opacity: .9;
}

.topbar a:hover {
  opacity: 1;
}

.topbar-left {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255, 255, 255, .3);
}

.social-btn svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
}

.logo-wrap img {
  height: 48px;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 7px;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-enquire {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.nav-enquire:hover {
  background: var(--orange2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}

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

.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--blue);
}

.mobile-enquire {
  display: block;
  margin-top: 14px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  width: 100%;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 90svh;
  max-height: 900px;
  overflow: hidden;
}

.slider-track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
  will-change: transform;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
}

.slider-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.slider-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.hl-blue {
  color: #90CAF9;
}

.hl-orange {
  color: #FFB74D;
}

.slider-sub {
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-text-col .hero-eyebrow {
  margin-bottom: 16px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  backdrop-filter: blur(4px);
  line-height: 1;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all .3s;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.sdot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* HERO (legacy gradient fallback) */
.hero {
  background: linear-gradient(135deg, #EAF2FF 0%, #F5F9FF 60%, #FFF3EE 100%);
  padding: 64px 0 56px;
}

.hero-photo {
  background: none;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.82) 0%, rgba(21, 101, 192, 0.75) 50%, rgba(13, 71, 161, 0.70) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--blue);
}

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

.hero-eyebrow {
  margin-bottom: 16px;
}

.hero p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-stat .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}

.hero-stat .n.orange {
  color: var(--orange);
}

.hero-stat .l {
  font-size: 12px;
  color: var(--text2);
  margin-top: 3px;
  font-weight: 500;
}

.hero-stat .ico {
  font-size: 22px;
  margin-bottom: 6px;
}

.badge-light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* PRESENCE */
.presence {
  background: var(--blue2);
  padding: 36px 0;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.pres-item {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.pres-item:last-child {
  border: none;
}

.pres-item .pn {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.pres-item .pl {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ABOUT */
.about {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.about.has-bg {
  background: none;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: url('./bg-about.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  z-index: 0;
}

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

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-img-box {
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  border-radius: 20px;
  aspect-ratio: 16/10;
  height: auto;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual {
  position: relative;
}

.about-badge-float {
  position: absolute;
  bottom: -18px;
  right: -10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
}

.about-badge-float .ab-n {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.about-badge-float .ab-l {
  font-size: 11px;
  color: var(--text2);
  font-weight: 500;
}

.quote-block {
  border-left: 3px solid var(--blue);
  padding: 12px 18px;
  background: var(--blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text2);
  font-style: italic;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.ab-feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.ab-feat .feat-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.ab-feat .feat-t {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.ab-feat .feat-d {
  font-size: 11px;
  color: var(--text2);
}

/* SEGMENTS */
.segments {
  padding: 72px 0;
  background: var(--gray);
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.seg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--shadow);
}

.seg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-color: var(--blue-mid);
}

.seg-card-header {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.seg-card-header.pharma {
  background: linear-gradient(135deg, #E3F0FF, #BBDEFB);
}

.seg-card-header.ayur {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.seg-card-header.nutri {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}

.seg-card-img {
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.seg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.seg-card:hover .seg-card-img img {
  transform: scale(1.06);
}

.seg-body {
  padding: 20px;
}

.seg-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}

.seg-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.seg-count {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* SPECIALITIES */
.specialities {
  padding: 72px 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.spec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
  transition: all .2s;
  box-shadow: var(--shadow);
}

.spec-card:hover {
  border-color: var(--blue-mid);
  background: var(--blue-light);
}

.spec-card .si {
  font-size: 28px;
}

.spec-card .sn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* STRENGTHS */
.strengths {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  background: none;
}

.strengths-bg {
  position: absolute;
  inset: 0;
  background-image: url('./bg-strengths.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.strengths-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 53, 0.92), rgba(13, 71, 161, 0.88));
  z-index: 1;
}

.strengths>.container {
  position: relative;
  z-index: 2;
}

.strengths .sec-label {
  color: #FFB74D;
}

.strengths .sec-title {
  color: #fff;
}

.strengths .sec-desc {
  color: rgba(255, 255, 255, 0.75);
}

.strengths .str-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.strengths .str-title {
  color: #fff;
}

.strengths .str-desc {
  color: rgba(255, 255, 255, 0.72);
}

.strengths .str-icon.blue {
  background: rgba(144, 202, 249, 0.15);
}

.strengths .str-icon.orange {
  background: rgba(255, 183, 77, 0.15);
}

.str-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.str-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.str-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.str-icon.blue {
  background: var(--blue-light);
}

.str-icon.orange {
  background: var(--orange-light);
}

.str-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.str-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* WE SERVE */
.we-serve {
  padding: 72px 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.serve-chip {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: all .2s;
}

.serve-chip:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.serve-chip .si {
  font-size: 18px;
}

/* BLOGS */
.blogs {
  padding: 72px 0;
  background: var(--gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
}

.blog-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-img.b1 {
  background: linear-gradient(135deg, #E3F0FF, #BBDEFB);
}

.blog-img.b2 {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.blog-img.b3 {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}

.blog-body {
  padding: 18px;
}

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 7px;
}

.blog-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 11px;
  color: var(--text3);
}

/* CTA */
.enquiry-cta {
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: none;
}

.enquiry-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('./bg-cta.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.enquiry-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.90), rgba(13, 27, 53, 0.88));
  z-index: 1;
}

.enquiry-cta>.container {
  position: relative;
  z-index: 2;
}

.enquiry-cta h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.enquiry-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 26px;
}

.enquiry-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--blue);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn-white:hover {
  background: var(--blue-light);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, .1);
}

/* CONTACT */
.contact {
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

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

.contact-info {
  background: var(--gray);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.info-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.info-value {
  font-size: 14px;
  color: var(--text);
  margin-top: 3px;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #0D1B35;
  color: #fff;
  padding: 56px 0 0;
}

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

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  margin-bottom: 9px;
  cursor: pointer;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .fs {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}

.footer-socials .fs:hover {
  background: rgba(255, 255, 255, .2);
}

.footer-socials .fs svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, .65);
}

/* PRODUCT PAGE */
.product-page-hero {
  background: linear-gradient(135deg, var(--blue-light), #EAF4FF);
  padding: 44px 0 32px;
}

.product-page-hero h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-page-hero p {
  font-size: 15px;
  color: var(--text2);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--blue);
  cursor: pointer;
  text-decoration: none;
}

.product-layout{padding:40px 0;}
.product-inner{display:grid;grid-template-columns:240px 1fr;gap:28px;}
.filter-sidebar{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:16px 20px;position:sticky;top:84px;height:fit-content;}
.filter-sidebar h3{font-size:13px;font-weight:700;margin-bottom:12px;padding-bottom:10px;border-bottom:1px solid var(--border);}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text3);
  margin-bottom: 10px;
}

.filter-tag {
  display: inline-block;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin: 3px;
  border: 1px solid var(--border);
  color: var(--text2);
  background: #fff;
  transition: all .2s;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.filter-search {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  margin-bottom: 16px;
}

.filter-search:focus {
  border-color: var(--blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .2s;
}

.prod-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.prod-card-top {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-size: 34px;
  background: var(--gray);
}

.prod-body {
  padding: 16px;
}

.prod-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.prod-comp {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 8px;
  font-style: italic;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.prod-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue2);
}

.prod-tag.green {
  background: #E8F5E9;
  color: #2E7D32;
}

.prod-enquire{width:100%;background:var(--blue);color:#fff;border:none;border-radius:var(--radius-sm);padding:10px;font-size:13px;font-weight:600;cursor:pointer;transition:background .2s;font-family:inherit;}
.prod-enquire:hover{background:var(--blue2);}

/* Product card with real photo */
.prod-card-photo{height:160px;padding:0;overflow:hidden;background:#f0f5ff;}
.prod-card-photo img{width:100%;height:100%;object-fit:contain;display:block;padding:10px;transition:transform .4s ease;box-sizing:border-box;}
.prod-card:hover .prod-card-photo img{transform:scale(1.07);}

/* Modal with product photo — larger display area */
.modal-prod-ico-photo{
  width:200px;height:200px;
  flex:0 0 200px;
  min-width:200px;
  min-height:200px;
  aspect-ratio:1 / 1;
  border-radius:16px;
  background:rgba(255,255,255,.95);
  border:2px solid rgba(255,255,255,.6);
  overflow:hidden;
  padding:0;
}

.modal-prod-ico-photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text2);
}

.no-results .nri {
  font-size: 52px;
  margin-bottom: 14px;
}

.prod-count {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ABOUT PAGE */
.about-page-section {
  padding: 72px 0;
}

.about-page-section.alt {
  background: var(--gray);
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px var(--blue-light);
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* MAP */
.map-placeholder {
  background: var(--blue-light);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
}

/* MODAL */
/* ===== MODAL — PREMIUM SQUARE REDESIGN ===== */
@keyframes gb-popup-scale-blur {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    filter: blur(0px);
  }
}

@keyframes overlayIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 60, .65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
  animation: overlayIn 0.25s ease forwards;
}

.modal {
  background: #fff;
  border-radius: 20px;
  width: min(800px, 96vw);
  height: min(800px, 96vw);
  max-height: 96vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 40, 120, .28), 0 12px 32px rgba(0, 0, 0, .18);
  animation: gb-popup-scale-blur 1s both;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, .22);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background .2s, transform .2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .4);
  transform: rotate(90deg);
}

.modal-header {
  background: linear-gradient(135deg, #1a3a8f 0%, #1565C0 60%, #0288D1 100%);
  border-radius: 20px 20px 0 0;
  padding: 32px 40px 28px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.modal-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
}

.modal .modal-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 0;
  position: relative;
}

.modal-body {
  padding: 28px 40px 36px;
  flex: 1;
  overflow-y: auto;
}

.modal-product-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-prod-hero {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1a3a8f 0%, #1565C0 60%, #0288D1 100%);
  border-radius: 16px;
  padding: 20px 22px;
}

.modal-prod-ico {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
}

.modal-prod-info {
  flex: 1;
  min-width: 0;
}

.modal-prod-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.modal-prod-comp {
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 12px;
  line-height: 1.5;
}

.modal-prod-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-prod-meta .prod-tag {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 12px;
  padding: 4px 12px;
}

.modal-prod-meta .prod-tag.green {
  background: rgba(46, 213, 115, .25);
  color: #b8ffd2;
  border-color: rgba(46, 213, 115, .4);
}

.modal-prod-wa {
  margin-bottom: 22px;
}

.modal-prod-benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f7fbff;
  border: 1px solid #dfeafb;
  border-radius: 14px;
  padding: 12px 14px;
}

.modal-benefit i {
  font-size: 16px;
  color: #2E7D32;
  margin-top: 1px;
  flex-shrink: 0;
}

.modal-benefit span {
  font-size: 13px;
  line-height: 1.6;
  color: #24324a;
}

.modal-prod-desc {
  background: linear-gradient(135deg, #f0f6ff, #e8f0fe);
  border-left: 5px solid var(--blue);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin-bottom: 22px;
}

.modal-prod-desc-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue2);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-prod-desc-text {
  font-size: 14px;
  color: #334;
  line-height: 1.8;
}

.btn-wa-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
}

.btn-wa-quick:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.success-msg .si {
  font-size: 54px;
  margin-bottom: 12px;
}

.success-msg h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-msg p {
  font-size: 14px;
  color: var(--text2);
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
  cursor: pointer;
  z-index: 300;
  text-decoration: none;
  transition: transform .2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

/* =============================================
   MOBILE RESPONSIVE — FULL OPTIMISATION
   ============================================= */

/* ===== FIX background-attachment:fixed on mobile (lag & bugs on iOS) ===== */
@media(max-width:1024px) {

  .about-bg,
  .strengths-bg,
  .enquiry-cta-bg {
    background-attachment: scroll;
  }
}

/* ===== TABLET ≤ 900px ===== */
@media(max-width:900px) {

  /* Nav */
  .nav-links,
  .nav-enquire {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .topbar-left span:not(:first-child) {
    display: none;
  }

  /* Hero Slider */
  .hero-slider {
    height: 72vh;
    min-height: 480px;
  }

  .slider-title {
    font-size: clamp(1.4rem, 3.5vw, 1.75rem);
    line-height: 1.2;
  }

  .slider-sub {
    font-size: 13.5px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .hero-stat {
    padding: 14px 10px;
  }

  .hero-stat .n {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  /* Presence */
  .presence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pres-item:nth-child(4),
  .pres-item:nth-child(5) {
    display: none;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-visual {
    display: block;
  }

  .about-img-box {
    height: 260px;
  }

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

  /* Segments / Spec / Strength / Serve / Blog */
  .seg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  /* Contact / Footer / Product */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .product-inner {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

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

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

  /* Modal form row */
  .modal-body .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== TABLET 768px ===== */
@media(max-width:768px) {
  .hero-slider {
    height: 80svh;
    min-height: 460px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

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

  .product-inner {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

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

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

  /* Presence show all 5 in 3+2 layout */
  .presence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pres-item:nth-child(4),
  .pres-item:nth-child(5) {
    display: block;
  }

  .pres-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .pres-item:nth-child(3n) {
    border-right: none;
  }

  /* About badge */
  .about-badge-float {
    bottom: -10px;
    right: 8px;
  }

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

/* ===== LARGE PHONE ≤ 600px ===== */
@media(max-width:600px) {
  .container {
    padding: 0 16px;
  }

  /* Topbar — hide on small phones to save space */
  .topbar {
    display: none;
  }

  /* Nav — slightly shorter */
  .nav-inner {
    height: 58px;
  }

  .logo-wrap img {
    height: 40px;
  }

  /* Hero Slider */
  .hero-slider {
    height: 100svh;
    min-height: 540px;
    max-height: 100svh;
  }

  .slider-title {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
    line-height: 1.25;
  }

  .slider-sub {
    font-size: 13px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .slider-content .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .slider-dots {
    bottom: 20px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn,
  .hero-btns .btn-outline-light {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* General sections */
  .hero {
    padding: 40px 0 36px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .sec-title {
    font-size: clamp(1.15rem, 5vw, 1.35rem);
  }

  .sec-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .about-page-section,
  .segments,
  .specialities,
  .strengths,
  .we-serve,
  .blogs,
  .about,
  .contact {
    padding: 44px 0;
  }

  /* Presence */
  .presence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pres-item:nth-child(4),
  .pres-item:nth-child(5) {
    display: block;
  }

  .pres-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .pres-item .pn {
    font-size: 22px;
  }

  .pres-item .pl {
    font-size: 10px;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-img-box {
    height: 210px;
    min-height: 160px;
  }

  .about-badge-float {
    bottom: -10px;
    right: 0;
    padding: 10px 14px;
  }

  .about-badge-float .ab-n {
    font-size: 18px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ab-feat {
    padding: 10px;
  }

  /* Segments */
  .seg-grid {
    grid-template-columns: 1fr;
  }

  .seg-card-img {
    height: 160px;
  }

  /* Specialities */
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-card {
    padding: 16px 10px;
  }

  /* Strengths */
  .str-grid {
    grid-template-columns: 1fr;
  }

  .str-card {
    padding: 18px 16px;
    gap: 12px;
  }

  /* We Serve */
  .serve-grid {
    grid-template-columns: 1fr;
  }

  /* Blogs */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .enquiry-cta {
    padding: 40px 0;
  }

  .enquiry-cta h2 {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  .enquiry-cta p {
    font-size: 13.5px;
  }

  .enquiry-cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-white,
  .btn-white-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 44px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 22px 18px;
  }

  .contact-info h3 {
    font-size: 16px;
  }

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

  /* iframe map on mobile */
  .contact iframe {
    height: 220px !important;
  }

  /* Products */
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-page-hero {
    padding: 32px 0 22px;
  }

  .product-page-hero h1 {
    font-size: 22px;
  }

  .product-page-hero p {
    font-size: 13px;
  }

  .product-layout {
    padding: 24px 0 40px;
  }

  /* Filter sidebar mobile toggle */
  .filter-sidebar {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
  }

  .filter-sidebar.open {
    max-height: 600px;
    padding: 16px 20px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
  }

  .filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-bottom: 14px;
    justify-content: space-between;
    min-height: 44px;
  }

  .filter-toggle-btn .ftb-arrow {
    transition: transform 0.3s;
    font-style: normal;
  }

  .filter-toggle-btn.open .ftb-arrow {
    transform: rotate(180deg);
  }

  /* WhatsApp button */
  .whatsapp-btn {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  /* Modal — bottom sheet style on mobile */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 92svh;
    border-radius: 24px 24px 0 0;
    animation: mobileSheetIn 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  }

  @keyframes mobileSheetIn {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .modal-header {
    padding: 22px 24px 18px;
    border-radius: 24px 24px 0 0;
  }

  .modal-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    margin: -8px auto 0;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal .modal-sub {
    font-size: 13.5px;
  }

  .modal-body {
    padding: 20px 22px 28px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .modal-prod-hero {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 16px;
  }

  .modal-prod-ico:not(.modal-prod-ico-photo) {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .modal-prod-ico-photo {
    width: 200px;
    height: 200px;
    flex: 0 0 200px;
    min-width: 200px;
    min-height: 200px;
  }

  .modal-prod-name {
    font-size: 16px;
  }

  .modal-prod-comp {
    font-size: 13px;
  }

  .btn-wa-quick {
    font-size: 14px;
    padding: 14px 20px;
  }

  .modal-prod-desc {
    padding: 14px 16px;
  }

  .modal-prod-benefits {
    gap: 8px;
    margin-bottom: 18px;
  }

  .modal-benefit {
    padding: 10px 12px;
  }

  .modal-benefit span {
    font-size: 12.5px;
  }
}

/* ===== SMALL PHONE ≤ 420px ===== */
@media(max-width:420px) {
  .container {
    padding: 0 12px;
  }

  .slider-title {
    font-size: 1.25rem;
  }

  .nav-inner {
    height: 54px;
  }

  .logo-wrap img {
    height: 36px;
  }

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

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

  .pres-item .pn {
    font-size: 20px;
  }

  .hero-eyebrow .badge {
    font-size: 10px;
    padding: 3px 9px;
  }

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

  .modal-body {
    padding: 16px 18px 24px;
  }

  /* Footer bottom */
  .footer-bottom p {
    font-size: 10.5px;
  }
}

/* ===== VERY SMALL ≤ 360px ===== */
@media(max-width:360px) {
  .container {
    padding: 0 10px;
  }

  .slider-title {
    font-size: 1.15rem;
  }

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

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

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

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

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

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

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

/* ===== FILTER TOGGLE — hidden on desktop ===== */
.filter-toggle-btn {
  display: none;
}


/* === MANDRIC BIOCARE VISUAL REFRESH === */
:root {
  --blue-deep: #082f72;
  --blue-glow: rgba(21, 101, 192, .22);
  --orange-glow: rgba(232, 69, 10, .2);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --shadow-soft: 0 18px 50px rgba(13, 71, 161, .12);
  --shadow-hover: 0 26px 70px rgba(13, 71, 161, .2);
}

body {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 42%, #fff 100%);
}

::selection {
  background: var(--orange);
  color: #fff;
}

.topbar {
  background: linear-gradient(90deg, var(--blue2), var(--blue), var(--blue2));
  background-size: 200% 100%;
  animation: gradientShift 10s ease infinite;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 30px rgba(13,71,161,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-links a {
  position: relative;
  transition: color .22s var(--ease-out), transform .22s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: left .25s var(--ease-out), right .25s var(--ease-out);
}

.nav-links a:hover { transform: translateY(-2px); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 12%; right: 12%; }

.btn,
.nav-enquire,
.mobile-enquire,
.intro-skip {
  transition: transform .16s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out);
}

.btn:hover,
.nav-enquire:hover,
.mobile-enquire:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(13,71,161,.18); }
.btn:active,
.nav-enquire:active,
.mobile-enquire:active { transform: scale(.97); }

.hero-slider {
  isolation: isolate;
  overflow: hidden;
}

.hero-slider::before,
.hero-slider::after {
  content: '';
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-slider::before {
  width: 280px;
  height: 280px;
  top: 10%;
  right: 3%;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 68%);
}

.hero-slider::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: 30%;
  background: radial-gradient(circle, rgba(232,69,10,.2), transparent 68%);
  animation-delay: -3s;
}

.hero-text-col,
.hero-stats { position: relative; z-index: 4; }
.hero-text-col { animation: heroIn .85s var(--ease-out) both; }
.hero-stats { animation: heroIn .85s .15s var(--ease-out) both; }
.hero-stat {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 14px 34px rgba(3,33,88,.22);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.35), transparent 45%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease-in-out);
}
.hero-stat:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 22px 44px rgba(3,33,88,.3); }
.hero-stat:hover::before { transform: translateX(110%); }

.presence {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue2), var(--blue));
}
.presence::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}
.pres-item { position: relative; transition: transform .25s var(--ease-out); }
.pres-item:hover { transform: translateY(-5px); }
.pres-item .pn { text-shadow: 0 4px 16px rgba(0,0,0,.18); }

.about,
.segments,
.specialities,
.strengths,
.contact,
.blog { position: relative; }

.about::before,
.segments::before,
.specialities::before,
.strengths::before,
.blog::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(21,101,192,.1);
  border-radius: 42% 58% 65% 35%;
  transform: rotate(22deg);
  pointer-events: none;
}
.about::before { top: 10%; left: -90px; }
.segments::before { right: -80px; top: 18%; }
.specialities::before { left: -90px; bottom: 5%; }
.strengths::before { right: -90px; top: 12%; }
.blog::before { left: -90px; top: 20%; }

.about-img-box,
.seg-card,
.str-card,
.spec-card,
.blog-card,
.contact-info,
.contact-form {
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}

.about-img-box:hover,
.seg-card:hover,
.str-card:hover,
.spec-card:hover,
.blog-card:hover,
.contact-info:hover,
.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.seg-card,
.str-card,
.spec-card,
.blog-card { position: relative; overflow: hidden; }
.seg-card::after,
.str-card::after,
.spec-card::after,
.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.45), transparent 35%);
  opacity: 0;
  transition: opacity .3s ease;
}
.seg-card:hover::after,
.str-card:hover::after,
.spec-card:hover::after,
.blog-card:hover::after { opacity: 1; }

.seg-card:nth-child(2n) { transition-delay: 40ms; }
.seg-card:nth-child(3n) { transition-delay: 80ms; }

.sec-title { letter-spacing: -.03em; }
.sec-title::after {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.reveal,
.reveal-left,
.reveal-right {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal.visible { animation: revealUp .7s var(--ease-out) both; }
  .reveal-left.visible { animation: revealLeft .75s var(--ease-out) both; }
  .reveal-right.visible { animation: revealRight .75s var(--ease-out) both; }
  .delay-1 { animation-delay: 80ms; }
  .delay-2 { animation-delay: 150ms; }
  .delay-3 { animation-delay: 220ms; }
  .delay-4 { animation-delay: 290ms; }
  .about-badge-float { animation: floatBadge 4s ease-in-out infinite; }
  .whatsapp-btn { animation: pulseRing 2.8s ease-out infinite; }
}

.modal-overlay { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal { animation: modalIn .3s var(--ease-out) both; box-shadow: 0 30px 90px rgba(8,47,114,.28); }

@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revealRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes floatOrb { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-18px,18px,0) scale(1.08); } }
@keyframes floatBadge { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 700px) {
  .container { width: min(100%, 94%); padding: 0 12px; }
  .topbar-left { gap: 9px; font-size: 10px; }
  .hero-stat { border-radius: 14px; }
  .sec-desc { margin-bottom: 24px; }
  .about::before, .segments::before, .specialities::before, .strengths::before, .blog::before { opacity: .5; transform: scale(.7) rotate(22deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* === PREMIUM HOMEPAGE BRAND LAYER === */
.hero-slider {
  min-height: 690px;
  background: var(--blue2);
}

.hero-slider .slide-bg {
  transform: scale(1.04);
  filter: saturate(.92) contrast(1.04);
}

.hero-slider .slide.active .slide-bg {
  animation: premiumHeroZoom 12s ease-out both;
}

.hero-slider .slide-overlay {
  background: linear-gradient(105deg, rgba(4, 28, 76, .94) 0%, rgba(13, 71, 161, .79) 48%, rgba(21, 101, 192, .48) 100%) !important;
}

.slider-content {
  background: radial-gradient(circle at 83% 44%, rgba(255,255,255,.15), transparent 25%), linear-gradient(90deg, rgba(3,26,71,.12), transparent 70%);
}

.hero-inner {
  min-height: 690px;
  align-items: center;
  padding: 76px 0 92px;
}

.hero-text-col {
  max-width: 660px;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}

.hero-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.hero-brand-mark img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.hero-brand-kicker,
.hero-brand-note {
  display: block;
  color: #fff;
}

.hero-brand-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-brand-note {
  margin-top: 3px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: .04em;
}

.hero-eyebrow { margin-bottom: 14px; }
.hero-eyebrow .badge-light {
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.slider-title {
  max-width: 700px;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: .99;
  letter-spacing: -.075em;
  text-wrap: balance;
  text-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.slider-title .hl-blue {
  color: #b9ddff;
  position: relative;
}

.slider-title .hl-blue::after {
  content: '';
  position: absolute;
  left: 0;
  right: 8%;
  bottom: -.08em;
  height: 5px;
  border-radius: 10px;
  background: var(--orange);
  opacity: .9;
}

.slider-title .hl-orange { color: #ff9b71; }
.slider-sub {
  max-width: 570px;
  margin: 25px 0 28px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.85;
}

.hero-btns { gap: 12px; }
.hero-btns .btn-blue {
  background: linear-gradient(135deg, #f4511e, #e8450a);
  box-shadow: 0 12px 28px rgba(232,69,10,.3);
}
.hero-btns .btn-blue:hover { background: linear-gradient(135deg, #ff6331, #c93407); }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 25px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
}

.hero-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-row i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #ffc2a8;
  font-size: 11px;
  font-style: normal;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 14px;
  max-width: 430px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.hero-stats::before {
  content: 'OUR REACH';
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-stat {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(13,71,161,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
}
.hero-stat .n { font-size: 31px; letter-spacing: -.05em; }
.hero-stat .l { font-size: 11px; font-weight: 700; }
.hero-stat .ico { margin-bottom: 8px; font-size: 22px; }

.presence {
  box-shadow: 0 -10px 36px rgba(13,71,161,.1);
}
.presence-grid { position: relative; z-index: 1; }
.pres-item .pn { font-size: 29px; }
.pres-item .pl { color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.segments { background: linear-gradient(180deg, #f9fbff 0%, #fff 100%); }
.seg-card { border: 1px solid rgba(13,71,161,.1); border-radius: 22px; background: #fff; }
.seg-card-img { background: linear-gradient(135deg, #eff6ff, #fff7f2); }
.seg-card .btn-blue { box-shadow: 0 8px 18px rgba(21,101,192,.17); }

.about-badge-float {
  border: 4px solid rgba(255,255,255,.85);
  box-shadow: 0 14px 32px rgba(13,71,161,.22);
}

@media (max-width: 900px) {
  .hero-inner { padding-top: 58px; }
  .hero-stats { max-width: 390px; margin: 38px auto 0; }
}

@media (max-width: 600px) {
  .hero-slider, .hero-inner { min-height: 720px; }
  .hero-inner { padding: 42px 0 76px; }
  .hero-brand-lockup { margin-bottom: 18px; }
  .slider-title { font-size: clamp(2.45rem, 13vw, 4rem); }
  .slider-sub { font-size: 13px; line-height: 1.7; }
  .hero-trust-row { gap: 8px 12px; font-size: 10px; }
  .hero-stats { gap: 9px; padding: 13px; border-radius: 21px; }
  .hero-stat { min-height: 112px; }
  .hero-stat .n { font-size: 25px; }
  .hero-stat .l { font-size: 10px; }
}

@keyframes premiumHeroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}


/* === CROSS-PAGE PREMIUM STRUCTURE === */
.premium-page {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.premium-page .product-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #061f50 0%, #0d47a1 54%, #1565c0 100%);
}

.premium-page .product-page-hero::before,
.premium-page .product-page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.premium-page .product-page-hero::before {
  width: 480px;
  height: 480px;
  top: -270px;
  right: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 66%);
}

.premium-page .product-page-hero::after {
  width: 360px;
  height: 360px;
  bottom: -250px;
  left: -80px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 0 28px rgba(255,255,255,.03), 0 0 0 56px rgba(255,255,255,.02);
}

.premium-page .product-page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffb197;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.premium-page .product-page-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: -.06em;
  line-height: 1.02;
  text-wrap: balance;
}

.premium-page .product-page-hero p,
.page-hero-support {
  max-width: 650px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.75;
}

.page-hero-support { margin-bottom: 18px; }
.premium-page .breadcrumb { margin-bottom: 24px; color: rgba(255,255,255,.6); }
.premium-page .breadcrumb a { color: #fff; }

.premium-product-layout {
  position: relative;
  padding: 54px 0 90px;
  background: linear-gradient(180deg, #f6f9fe 0%, #fff 70%);
}

.premium-product-inner {
  align-items: start;
  gap: 34px;
}

.premium-filter-card {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(21,101,192,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 48px rgba(13,71,161,.1);
  backdrop-filter: blur(12px);
}

.premium-filter-card h3 {
  color: var(--blue-deep);
  letter-spacing: -.02em;
}

.premium-filter-card .filter-search {
  border: 1px solid rgba(21,101,192,.18);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(13,71,161,.05);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.premium-filter-card .filter-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
  outline: none;
}

.premium-count {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.premium-product-grid {
  align-items: stretch;
  gap: 18px;
}

.premium-product-grid .product-card,
.premium-product-grid > div {
  border: 1px solid rgba(21,101,192,.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(13,71,161,.08);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s ease;
}

.premium-product-grid .product-card:hover,
.premium-product-grid > div:hover {
  border-color: rgba(232,69,10,.26);
  box-shadow: 0 22px 48px rgba(13,71,161,.15);
  transform: translateY(-7px);
}

.premium-content-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #fff;
}

.premium-content-section.alt {
  background: linear-gradient(135deg, #f3f8ff, #fff7f2);
}

.premium-content-section .container {
  position: relative;
  z-index: 1;
}

.premium-content-section .sec-title {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  letter-spacing: -.06em;
}

.premium-content-section .sec-desc,
.premium-content-section p {
  max-width: 760px;
}

.premium-content-section .quote-block {
  position: relative;
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(90deg, var(--orange-light), rgba(255,243,238,.25));
  color: var(--blue-deep);
  box-shadow: 0 12px 26px rgba(232,69,10,.07);
}

.premium-content-section .timeline {
  margin-top: 38px;
  padding-left: 14px;
}

.premium-content-section .timeline-item {
  position: relative;
  padding: 0 0 30px 34px;
  border-left: 1px solid rgba(21,101,192,.2);
}

.premium-content-section .timeline-item:last-child { border-left-color: transparent; }
.premium-content-section .timeline-dot {
  position: absolute;
  top: 0;
  left: -7px;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,69,10,.15);
}

.premium-content-section .timeline-year {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.premium-content-section .timeline-title {
  margin: 7px 0;
  color: var(--blue-deep);
  font-size: 17px;
  font-weight: 800;
}

.premium-content-section .timeline-desc {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.7;
}

.premium-contact-section {
  padding: 76px 0 100px !important;
  background: linear-gradient(135deg, #f3f8ff, #fff 50%, #fff5f0);
}

.premium-contact-grid {
  gap: 28px;
  align-items: stretch;
}

.premium-contact-grid .contact-info,
.premium-contact-grid .contact-form {
  border: 1px solid rgba(21,101,192,.11);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 54px rgba(13,71,161,.11);
}

.premium-contact-grid .contact-form input,
.premium-contact-grid .contact-form textarea,
.premium-contact-grid .contact-form select {
  border-radius: 12px;
  border-color: rgba(21,101,192,.16);
  background: #fbfdff;
}

.premium-contact-grid .contact-form input:focus,
.premium-contact-grid .contact-form textarea:focus,
.premium-contact-grid .contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
  outline: none;
}

.premium-page footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061f50, #0d47a1);
}

.premium-page footer::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: -210px;
  right: -80px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.03), 0 0 0 56px rgba(255,255,255,.02);
}

.premium-page footer .container { position: relative; z-index: 1; }

@media (max-width: 800px) {
  .premium-page .product-page-hero { min-height: 270px; }
  .premium-page .product-page-hero .container { padding-top: 34px; padding-bottom: 34px; }
  .premium-product-layout { padding: 34px 0 64px; }
  .premium-filter-card { position: relative; top: auto; }
  .premium-content-section { padding: 58px 0; }
  .premium-contact-section { padding: 52px 0 70px !important; }
}

@media (prefers-reduced-motion: no-preference) {
  .premium-page .premium-page-hero .container { animation: innerPageIn .7s var(--ease-out) both; }
  .premium-product-grid > * { animation: cardRise .6s var(--ease-out) both; }
  .premium-product-grid > *:nth-child(2) { animation-delay: 60ms; }
  .premium-product-grid > *:nth-child(3) { animation-delay: 120ms; }
  .premium-product-grid > *:nth-child(4) { animation-delay: 180ms; }
}

@keyframes innerPageIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }


/* === PAGE-SPECIFIC DESIGN DIRECTIONS === */
.page-about .premium-page-hero {
  background: linear-gradient(120deg, #082b63 0%, #1565c0 58%, #5e9ee8 100%);
}

.page-about .premium-page-hero::after {
  width: 440px;
  height: 440px;
  left: auto;
  right: -100px;
  bottom: -300px;
  border-color: rgba(255,255,255,.2);
}

.page-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 11px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
}

.page-hero-facts strong { color: #fff; font-size: 17px; }
.page-hero-facts small { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.page-about .premium-content-section:first-of-type { background: radial-gradient(circle at 90% 20%, rgba(144,202,249,.24), transparent 24%), #fff; }
.page-about .premium-content-section.alt { background: linear-gradient(135deg, #edf6ff, #fff); }
.page-about .timeline-item { transition: transform .25s var(--ease-out); }
.page-about .timeline-item:hover { transform: translateX(7px); }

.page-contact .premium-page-hero {
  background: linear-gradient(120deg, #082b63 0%, #0d47a1 52%, #d84b18 150%);
}

.page-contact .premium-page-hero::before {
  right: -40px;
  top: -190px;
  background: radial-gradient(circle, rgba(232,69,10,.4), transparent 65%);
}

.page-hero-assurance {
  max-width: 500px;
  margin-top: 20px;
  padding-left: 13px;
  border-left: 3px solid var(--orange);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.6;
}

.page-contact .premium-contact-section {
  background: radial-gradient(circle at 12% 12%, rgba(21,101,192,.1), transparent 22%), linear-gradient(135deg, #f3f8ff, #fff 55%, #fff5f0);
}

.page-contact .contact-info::before,
.page-contact .contact-form::before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 17px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.page-contact .contact-form .btn { box-shadow: 0 14px 24px rgba(232,69,10,.18); }

.page-pharma .premium-page-hero { background: linear-gradient(120deg, #061f50, #0d47a1 58%, #2678d1); }
.page-surgical .premium-page-hero { background: linear-gradient(120deg, #071c48, #124a8e 58%, #138a96); }
.page-paediatric .premium-page-hero { background: linear-gradient(120deg, #092557, #1565c0 52%, #8b70cf); }
.page-ortho .premium-page-hero { background: linear-gradient(120deg, #081e4c, #0d47a1 52%, #0d8a83); }

.page-pharma .premium-page-hero::before { background: radial-gradient(circle, rgba(113,184,255,.35), transparent 65%); }
.page-surgical .premium-page-hero::before { background: radial-gradient(circle, rgba(62,214,212,.3), transparent 65%); }
.page-paediatric .premium-page-hero::before { background: radial-gradient(circle, rgba(228,191,255,.35), transparent 65%); }
.page-ortho .premium-page-hero::before { background: radial-gradient(circle, rgba(63,224,180,.28), transparent 65%); }

.page-pharma .premium-product-layout { background: linear-gradient(180deg, #f1f7ff, #fff); }
.page-surgical .premium-product-layout { background: linear-gradient(180deg, #f0fbfc, #fff); }
.page-paediatric .premium-product-layout { background: linear-gradient(180deg, #f8f5ff, #fff); }
.page-ortho .premium-product-layout { background: linear-gradient(180deg, #f0fbfa, #fff); }

.page-pharma .premium-filter-card { border-top: 4px solid #2678d1; }
.page-surgical .premium-filter-card { border-top: 4px solid #138a96; }
.page-paediatric .premium-filter-card { border-top: 4px solid #8b70cf; }
.page-ortho .premium-filter-card { border-top: 4px solid #0d8a83; }

.page-pharma .premium-product-grid .product-card:hover,
.page-pharma .premium-product-grid > div:hover { border-color: rgba(38,120,209,.42); }
.page-surgical .premium-product-grid .product-card:hover,
.page-surgical .premium-product-grid > div:hover { border-color: rgba(19,138,150,.42); }
.page-paediatric .premium-product-grid .product-card:hover,
.page-paediatric .premium-product-grid > div:hover { border-color: rgba(139,112,207,.42); }
.page-ortho .premium-product-grid .product-card:hover,
.page-ortho .premium-product-grid > div:hover { border-color: rgba(13,138,131,.42); }

.page-home .presence-grid,
.page-home .segments,
.page-home .about,
.page-home .specialities,
.page-home .strengths,
.page-home .blog { scroll-margin-top: 100px; }

@media (max-width: 640px) {
  .page-hero-facts { gap: 7px; }
  .page-hero-facts span { padding: 8px 9px; }
  .page-hero-facts strong { font-size: 15px; }
  .page-hero-facts small { font-size: 8px; }
}


/* === MODERN BRAND TYPOGRAPHY & PRODUCT VISIBILITY SYSTEM === */
:root {
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --ink: #10213f;
  --ink-soft: #52627a;
  --surface: #f6f9fd;
}

body,
.premium-page { font-family: var(--font-body); color: var(--ink); }

h1, h2, h3, h4, h5, h6,
.slider-title, .sec-title, .prod-name, .seg-title,
.nav-links a, .nav-enquire, .btn { font-family: var(--font-display); }

h1, h2, h3, h4, h5, h6 { letter-spacing: -.045em; }

.topbar, .nav-links, .footer-col, .footer-brand, .filter-sidebar,
.contact-info, .contact-form, .about-features, .timeline { font-family: var(--font-body); }

.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.nav-enquire, .btn { font-weight: 600; letter-spacing: -.02em; }

.premium-page .product-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
}

.page-hero-kicker,
.sec-label,
.badge,
.prod-tag,
.page-hero-facts small {
  font-family: var(--font-body);
}

.premium-product-layout {
  min-height: 600px;
}

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

.premium-product-grid .prod-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(21,101,192,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(13,71,161,.08);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .25s ease;
}

.premium-product-grid .prod-card:hover {
  border-color: rgba(232,69,10,.32);
  box-shadow: 0 24px 54px rgba(13,71,161,.16);
  transform: translateY(-8px);
}

.premium-product-grid .prod-card-top {
  min-height: 215px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #eef5ff, #fff9f5);
}

.premium-product-grid .prod-card-top img {
  width: min(100%, 190px);
  height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s var(--ease-out);
}

.premium-product-grid .prod-card:hover .prod-card-top img { transform: scale(1.07) rotate(1deg); }

.premium-product-grid .prod-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.premium-product-grid .prod-name {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.premium-product-grid .prod-comp {
  display: -webkit-box;
  min-height: 55px;
  margin-top: 9px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.premium-product-grid .prod-tags { margin-top: 14px; }
.premium-product-grid .prod-enquire {
  width: 100%;
  margin-top: auto;
  padding: 11px 14px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s ease, background .2s ease;
}

.premium-product-grid .prod-enquire:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 10px 22px rgba(232,69,10,.22);
  transform: translateY(-2px);
}

.premium-page .product-page-hero p,
.page-hero-support,
.hero-sub,
.slider-sub { font-family: var(--font-body); }

.page-home .segments .sec-title,
.page-home .about .sec-title,
.page-home .strengths .sec-title,
.page-home .blog .sec-title {
  font-family: var(--font-display);
  font-weight: 600;
}

.page-home .seg-title,
.page-home .blog-card h3 { font-family: var(--font-display); }

.footer-brand p,
.footer-col a,
.footer-bottom,
.contact-info p,
.contact-form label { font-family: var(--font-body); }

@media (max-width: 1000px) {
  .premium-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .premium-product-grid { grid-template-columns: 1fr; }
  .premium-product-grid .prod-card-top { min-height: 190px; }
  .premium-product-grid .prod-card-top img { height: 165px; }
  .premium-product-grid .prod-comp { min-height: auto; }
}


/* === COMPLETE HOMEPAGE REVAMP === */
.home-v2 { overflow: hidden; background: #fff; }
.home-v2 h1, .home-v2 h2, .home-v2 h3, .home-v2 strong { font-family: var(--font-display); }
.home-v2 .container { position: relative; z-index: 2; }
.home-v2 .section-kicker { display: block; margin-bottom: 15px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .19em; line-height: 1.3; text-transform: uppercase; }
.home-v2 h2 { color: var(--ink); font-size: clamp(2.1rem, 4.5vw, 4.4rem); font-weight: 600; letter-spacing: -.075em; line-height: .98; }
.home-v2 p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.home-v2 .btn { border-radius: 12px; }

.home-v2-hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; color: #fff; background: #061e4e; }
.home-v2-hero-bg { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(3,22,59,.97) 0%, rgba(7,47,111,.89) 44%, rgba(13,71,161,.6) 100%), url('hero-bg.webp') center/cover; transform: scale(1.04); }
.home-v2-hero-bg::after { content: ''; position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.home-v2-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 70px; width: 100%; padding: 96px 0 110px; }
.home-v2-copy { position: relative; z-index: 3; max-width: 660px; }
.home-v2-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(232,69,10,.18); }
.eyebrow-divider { width: 28px; height: 1px; background: rgba(255,255,255,.35); }
.home-v2-copy h1 { max-width: 710px; margin: 0; color: #fff; font-size: clamp(3.2rem, 7vw, 6.8rem); font-weight: 500; letter-spacing: -.095em; line-height: .88; }
.home-v2-copy h1 em { color: #ff9b71; font-style: normal; }
.home-v2-lead { max-width: 480px; margin: 30px 0 28px; color: rgba(255,255,255,.72) !important; font-size: 16px !important; line-height: 1.75 !important; }
.home-v2-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.home-v2-actions .btn-orange { padding: 14px 18px; background: var(--orange); box-shadow: 0 14px 30px rgba(232,69,10,.26); }
.home-v2-actions .btn-orange:hover { background: #ff6331; }
.home-v2-actions .btn-glass { padding: 14px 18px; border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.09); color: #fff; backdrop-filter: blur(12px); }
.home-v2-actions .btn-glass:hover { background: rgba(255,255,255,.17); }
.home-v2-actions .btn span { margin-left: 9px; font-size: 16px; }
.home-v2-assurance { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: rgba(255,255,255,.58); font-size: 11px; }
.home-v2-assurance span { display: inline-flex; align-items: center; gap: 6px; }
.home-v2-assurance span::first-letter { color: #ff9b71; }

.home-v2-visual { position: relative; min-height: 510px; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transform: rotate(-20deg); }
.orbit-one { width: 530px; height: 530px; top: -13px; left: 0; }
.orbit-two { width: 400px; height: 400px; top: 52px; left: 70px; border-color: rgba(255,155,113,.3); }
.hero-product-card { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.23); backdrop-filter: blur(14px); }
.hero-product-main { width: 240px; top: 78px; left: 72px; padding: 15px; border-radius: 22px; transform: rotate(-6deg); }
.hero-product-main .product-card-label { margin-bottom: 8px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-product-main img { width: 100%; height: 195px; object-fit: contain; mix-blend-mode: multiply; }
.hero-product-card strong, .hero-product-card small { display: block; }
.hero-product-card strong { font-size: 16px; }
.hero-product-card small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }
.hero-product-float { width: 150px; right: 17px; top: 230px; padding: 12px; border-radius: 18px; transform: rotate(8deg); }
.hero-product-float img { width: 100%; height: 92px; object-fit: contain; mix-blend-mode: multiply; }
.hero-product-float strong { font-size: 12px; }
.hero-product-float small { font-size: 9px; }
.hero-visual-panel { position: absolute; z-index: 2; right: 20px; bottom: 28px; width: 265px; padding: 25px 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(6,30,78,.55); box-shadow: 0 18px 50px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.panel-kicker { display: block; margin-bottom: 11px; color: #ffb197; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-visual-panel strong { display: block; color: #fff; font-size: 23px; font-weight: 500; letter-spacing: -.05em; line-height: 1.08; }
.panel-line { display: block; width: 44px; height: 3px; margin: 17px 0; border-radius: 10px; background: var(--orange); }
.hero-visual-panel small { display: block; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.55; }
.hero-seal { position: absolute; z-index: 4; top: 29px; right: 65px; display: grid; width: 76px; height: 76px; place-content: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; text-align: center; transform: rotate(8deg); backdrop-filter: blur(10px); }
.hero-seal span { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.hero-seal small { color: rgba(255,255,255,.65); font-size: 8px; line-height: 1.15; }
.home-v2-scroll { position: absolute; bottom: 22px; left: 50%; z-index: 3; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; transform: translateX(-50%); }
.home-v2-scroll span { color: #ff9b71; font-size: 17px; }

.home-v2-proof { position: relative; z-index: 4; margin-top: -1px; background: #fff; box-shadow: 0 -12px 30px rgba(0,0,0,.06); }
.home-v2-proof-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); align-items: center; min-height: 144px; }
.proof-intro { padding: 28px 32px 28px 0; }
.proof-intro .section-kicker { margin-bottom: 8px; }
.proof-intro strong { font-size: 16px; line-height: 1.08; }
.proof-stat { min-height: 80px; display: flex; flex-direction: column; justify-content: center; padding-left: 25px; border-left: 1px solid #e8edf4; }
.proof-stat strong { color: var(--blue); font-size: 31px; letter-spacing: -.07em; }
.proof-stat span { margin-top: 3px; color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.home-v2-intro { padding: 120px 0 105px; background: #fff; }
.home-v2-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.intro-heading h2 { max-width: 640px; }
.intro-body { max-width: 470px; padding-bottom: 4px; }
.intro-body p + p { margin-top: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--blue); font-family: var(--font-display); font-size: 13px; font-weight: 600; text-decoration: none; }
.text-link span { color: var(--orange); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.home-v2-segments { padding: 105px 0 125px; background: var(--surface); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 42px; }
.section-heading-row > p { max-width: 360px; margin: 0 0 3px; }
.home-v2-segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-v2-segment { position: relative; min-height: 425px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 22px; border-radius: 22px; color: #fff; text-decoration: none; transition: transform .35s var(--ease-out), box-shadow .35s ease; }
.home-v2-segment:hover { box-shadow: 0 26px 60px rgba(13,71,161,.2); transform: translateY(-10px); }
.home-v2-segment::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 16%, rgba(0,0,0,.65) 100%); }
.home-v2-segment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; opacity: .65; transition: transform .5s var(--ease-out), opacity .35s ease; }
.home-v2-segment:hover img { opacity: .83; transform: scale(1.08); }
.segment-blue { background: #0d47a1; }.segment-orange { background: #bd4a23; }.segment-purple { background: #65549e; }.segment-teal { background: #147c78; }
.segment-number, .segment-content { position: relative; z-index: 1; }
.segment-number { color: rgba(255,255,255,.65); font-family: var(--font-display); font-size: 13px; }
.segment-content span, .segment-content strong, .segment-content small { display: block; }
.segment-content span { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.segment-content strong { max-width: 190px; margin-top: 9px; color: #fff; font-size: 22px; font-weight: 500; letter-spacing: -.06em; line-height: 1.05; }
.segment-content small { display: flex; align-items: center; justify-content: space-between; margin-top: 25px; color: rgba(255,255,255,.76); font-size: 10px; }
.segment-content i { color: #fff; font-size: 19px; font-style: normal; }

.home-v2-spotlight { padding: 125px 0; background: #fff; }
.home-v2-spotlight-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.spotlight-copy h2 { margin-bottom: 23px; }
.spotlight-copy > p { max-width: 445px; }
.spotlight-list { display: grid; gap: 11px; margin: 27px 0 32px; }
.spotlight-list span { display: flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--font-display); font-size: 12px; font-weight: 600; }
.spotlight-list i { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--surface); color: var(--orange); font-size: 9px; font-style: normal; }
.spotlight-copy .btn-blue { background: var(--blue); box-shadow: 0 12px 25px rgba(21,101,192,.2); }
.spotlight-collage { position: relative; min-height: 500px; }
.collage-main { position: absolute; z-index: 2; top: 35px; left: 50px; width: 285px; overflow: hidden; border-radius: 22px; background: #eef5ff; box-shadow: 0 24px 50px rgba(13,71,161,.15); transform: rotate(-5deg); }
.collage-main img { width: 100%; height: 305px; object-fit: contain; mix-blend-mode: multiply; }
.collage-main div { padding: 16px 18px 19px; background: #fff; }.collage-main span, .collage-main small { display: block; }.collage-main span { color: var(--ink); font-family: var(--font-display); font-size: 16px; font-weight: 600; }.collage-main small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }
.collage-small { position: absolute; z-index: 3; display: grid; place-items: center; overflow: hidden; width: 160px; height: 170px; border-radius: 18px; background: #fff6f1; box-shadow: 0 18px 40px rgba(232,69,10,.14); }.collage-small img { width: 90%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }.collage-small-one { top: 0; right: 35px; transform: rotate(8deg); }.collage-small-two { right: 20px; bottom: 55px; background: #effaf9; transform: rotate(-7deg); }.collage-note { position: absolute; left: 0; bottom: 0; display: flex; align-items: center; gap: 11px; padding: 14px 17px; border-radius: 14px; background: var(--blue); color: #fff; box-shadow: 0 15px 32px rgba(21,101,192,.2); }.collage-note span { font-family: var(--font-display); font-size: 27px; }.collage-note small { color: rgba(255,255,255,.72); font-size: 9px; line-height: 1.25; }

.home-v2-values { padding: 115px 0; background: #f6f9fd; }
.home-v2-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.home-v2-value-grid article { position: relative; min-height: 250px; padding: 27px; overflow: hidden; border: 1px solid #e1e8f1; border-radius: 19px; background: #fff; transition: transform .3s var(--ease-out), box-shadow .3s ease; }.home-v2-value-grid article:hover { box-shadow: 0 20px 45px rgba(13,71,161,.11); transform: translateY(-7px); }.home-v2-value-grid article > span { color: #b4c0d0; font-family: var(--font-display); font-size: 11px; }.value-icon { margin: 28px 0 20px; color: var(--orange); font-size: 27px; }.home-v2-value-grid h3 { margin-bottom: 8px; color: var(--ink); font-size: 20px; font-weight: 600; }.home-v2-value-grid p { margin: 0; font-size: 12px; line-height: 1.65; }

.home-v2-insights { padding: 120px 0; background: #fff; }.home-v2-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }.home-v2-insight-grid article { overflow: hidden; border-radius: 18px; background: #f6f9fd; transition: transform .3s var(--ease-out), box-shadow .3s ease; }.home-v2-insight-grid article:hover { box-shadow: 0 20px 44px rgba(13,71,161,.13); transform: translateY(-7px); }.home-v2-insight-grid img { width: 100%; height: 205px; object-fit: cover; }.home-v2-insight-grid article > div { padding: 19px; }.home-v2-insight-grid span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }.home-v2-insight-grid h3 { min-height: 56px; margin: 9px 0 22px; color: var(--ink); font-size: 17px; font-weight: 600; line-height: 1.15; }.home-v2-insight-grid small { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 10px; }.home-v2-insight-grid b { color: var(--blue); font-size: 18px; }

.home-v2-cta { position: relative; overflow: hidden; padding: 100px 0; background: linear-gradient(110deg, #06235a, #0d47a1 62%, #1565c0); }.home-v2-cta::after { content: ''; position: absolute; width: 520px; height: 520px; top: -320px; right: -100px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.03), 0 0 0 60px rgba(255,255,255,.02); }.home-v2-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 60px; }.home-v2-cta h2 { color: #fff; }.home-v2-cta .section-kicker { color: #ffb197; }.home-v2-cta p { max-width: 390px; color: rgba(255,255,255,.7); }.home-v2-cta .btn-light { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; }.home-v2-cta .btn-light:hover { background: rgba(255,255,255,.18); }

@media (prefers-reduced-motion: no-preference) { .home-v2-copy, .home-v2-visual { animation: homeV2In .8s var(--ease-out) both; }.home-v2-visual { animation-delay: 100ms; }.home-v2-segment, .home-v2-value-grid article, .home-v2-insight-grid article { animation: homeV2Rise .7s var(--ease-out) both; }.home-v2-segment:nth-child(2), .home-v2-value-grid article:nth-child(2), .home-v2-insight-grid article:nth-child(2) { animation-delay: 80ms; }.home-v2-segment:nth-child(3), .home-v2-value-grid article:nth-child(3), .home-v2-insight-grid article:nth-child(3) { animation-delay: 160ms; }.home-v2-segment:nth-child(4) { animation-delay: 240ms; }.hero-product-main { animation: productFloat 6s ease-in-out infinite; }.hero-product-float { animation: productFloat 5s -1.5s ease-in-out infinite; } }
@keyframes homeV2In { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes homeV2Rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes productFloat { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }

@media (max-width: 980px) { .home-v2-hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 75px; }.home-v2-copy { max-width: 720px; }.home-v2-visual { max-width: 590px; width: 100%; margin: 0 auto; }.home-v2-segment-grid { grid-template-columns: repeat(2, 1fr); }.home-v2-proof-grid { grid-template-columns: repeat(4, 1fr); }.proof-intro { grid-column: 1/-1; padding: 25px 0 12px; }.home-v2-spotlight-grid { grid-template-columns: 1fr; }.spotlight-collage { max-width: 560px; width: 100%; margin: 0 auto; } }
@media (max-width: 680px) { .home-v2-hero { min-height: 870px; }.home-v2-hero-grid { padding: 65px 0 88px; }.home-v2-copy h1 { font-size: clamp(3.1rem, 15vw, 5rem); }.home-v2-lead { font-size: 14px !important; }.home-v2-visual { min-height: 390px; transform: scale(.86); transform-origin: top center; margin-bottom: -45px; }.home-v2-proof-grid { grid-template-columns: repeat(2, 1fr); padding-bottom: 25px; }.proof-intro { grid-column: 1/-1; }.proof-stat { padding: 16px 0 12px 15px; border-top: 1px solid #e8edf4; border-left: 0; }.home-v2-intro, .home-v2-spotlight, .home-v2-values, .home-v2-insights { padding: 75px 0; }.home-v2-intro-grid { grid-template-columns: 1fr; gap: 28px; }.section-heading-row { display: block; margin-bottom: 28px; }.section-heading-row > p { margin-top: 22px; }.home-v2-segment-grid, .home-v2-value-grid, .home-v2-insight-grid { grid-template-columns: 1fr; }.home-v2-segment { min-height: 330px; }.home-v2-insight-grid h3 { min-height: auto; }.home-v2-cta { padding: 75px 0; }.home-v2-cta-inner { display: block; }.home-v2-cta-inner > div + div { margin-top: 28px; }.collage-main { left: 25px; width: 240px; }.collage-main img { height: 260px; }.collage-small-one { right: 5px; }.collage-small-two { right: 0; }.home-v2-actions .btn { width: 100%; } }


/* === HOMEPAGE STABILIZATION / CLEAN COMPOSITION PASS === */
.home-v2-hero { min-height: 680px; }
.home-v2-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: 42px; padding-top: 78px; padding-bottom: 82px; }
.home-v2-copy h1 { max-width: 610px; font-size: clamp(3rem, 5.8vw, 5.7rem); line-height: .93; }
.home-v2-lead { max-width: 510px; margin-top: 24px; font-size: 15px !important; }
.home-v2-visual { min-height: 470px; }
.hero-orbit { opacity: .65; }
.orbit-one { width: 470px; height: 470px; top: 0; left: 15px; }
.orbit-two { width: 350px; height: 350px; top: 60px; left: 75px; }
.hero-product-main { width: 222px; top: 66px; left: 75px; }
.hero-product-main img { height: 170px; }
.hero-product-float { width: 135px; right: 28px; top: 198px; }
.hero-product-float img { height: 78px; }
.hero-visual-panel { right: 18px; bottom: 23px; width: 244px; padding: 21px; }
.hero-visual-panel strong { font-size: 20px; }
.hero-seal { top: 19px; right: 58px; width: 68px; height: 68px; }
.home-v2-proof-grid { min-height: 126px; }
.home-v2-segments, .home-v2-spotlight, .home-v2-values, .home-v2-insights { position: relative; }
.home-v2-segment { min-height: 390px; }
.home-v2-spotlight-grid { gap: 58px; }

@media (max-width: 980px) {
  .home-v2-hero { min-height: 840px; }
  .home-v2-hero-grid { grid-template-columns: 1fr; gap: 12px; padding-top: 65px; }
  .home-v2-copy h1 { max-width: 690px; }
  .home-v2-visual { min-height: 435px; max-width: 560px; }
}

@media (max-width: 680px) {
  .home-v2-hero { min-height: 805px; }
  .home-v2-hero-grid { padding-top: 52px; padding-bottom: 65px; }
  .home-v2-copy h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .home-v2-visual { min-height: 365px; transform: scale(.82); margin-bottom: -50px; }
  .home-v2-visual .orbit-one { left: 0; }
  .home-v2-visual .orbit-two { left: 55px; }
  .home-v2-visual .hero-product-main { left: 37px; }
  .home-v2-visual .hero-product-float { right: 5px; }
  .home-v2-visual .hero-visual-panel { right: 5px; bottom: 3px; }
  .home-v2-visual .hero-seal { right: 28px; }
}


/* === MODERN HOMEPAGE EXPANSION MODULES === */
.home-v2-marquee { overflow: hidden; border-top: 1px solid #e7edf5; border-bottom: 1px solid #e7edf5; background: #fff; }
.home-v2-marquee-track { display: flex; align-items: center; justify-content: space-around; min-width: max-content; gap: 32px; padding: 18px 0; color: #9aa9bc; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .17em; }
.home-v2-marquee-track i { color: var(--orange); font-size: 15px; font-style: normal; }

.home-v2-finder { padding: 112px 0 120px; background: #f6f9fd; }
.finder-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.finder-heading p { max-width: 350px; margin: 0 0 3px; }
.finder-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.finder-tab { padding: 10px 14px; border: 1px solid #dce5ef; border-radius: 999px; background: #fff; color: var(--ink-soft); font-family: var(--font-body); font-size: 11px; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.finder-tab:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.finder-tab.active { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(21,101,192,.2); }
.finder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.finder-card { overflow: hidden; border: 1px solid #e2e9f2; border-radius: 19px; background: #fff; box-shadow: 0 12px 30px rgba(13,71,161,.06); transition: transform .3s var(--ease-out), box-shadow .3s ease, opacity .25s ease; }
.finder-card:hover { box-shadow: 0 22px 44px rgba(13,71,161,.13); transform: translateY(-7px); }
.finder-card.is-hidden { display: none; }
.finder-image { display: grid; height: 220px; place-items: center; padding: 20px; background: linear-gradient(145deg, #eef5ff, #fff8f3); }
.finder-image img { width: 90%; height: 180px; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s var(--ease-out); }
.finder-card:hover .finder-image img { transform: scale(1.08); }
.finder-card-body { padding: 20px; }
.finder-card-body > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.finder-card-body h3 { margin: 8px 0 6px; color: var(--ink); font-size: 20px; font-weight: 600; letter-spacing: -.05em; }
.finder-card-body p { min-height: 46px; margin: 0; font-size: 12px; line-height: 1.55; }
.finder-card-body a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--blue); font-family: var(--font-display); font-size: 11px; font-weight: 600; text-decoration: none; }
.finder-card-body a b { color: var(--orange); font-size: 16px; }

.home-v2-network { padding: 120px 0; background: #fff; }
.home-v2-network-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 90px; }
.network-copy h2 { margin-bottom: 24px; }
.network-copy p { max-width: 480px; }
.network-map { position: relative; min-height: 420px; overflow: hidden; border-radius: 28px; background: radial-gradient(circle at 50% 48%, rgba(21,101,192,.16), transparent 30%), linear-gradient(135deg, #eef6ff, #fff8f2); }
.network-map::before { content: ''; position: absolute; inset: 20px; border: 1px dashed rgba(21,101,192,.22); border-radius: 22px; }
.map-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(21,101,192,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-a { width: 210px; height: 210px; }.ring-b { width: 350px; height: 350px; border-color: rgba(232,69,10,.17); }
.map-center { position: absolute; top: 50%; left: 50%; display: grid; width: 124px; height: 124px; place-content: center; border: 5px solid rgba(255,255,255,.8); border-radius: 50%; background: var(--blue); color: #fff; text-align: center; box-shadow: 0 18px 35px rgba(13,71,161,.23); transform: translate(-50%,-50%); }
.map-center strong { font-family: var(--font-display); font-size: 31px; letter-spacing: -.08em; }.map-center small { color: rgba(255,255,255,.7); font-size: 9px; text-transform: uppercase; }
.map-point { position: absolute; width: 11px; height: 11px; border: 3px solid #fff; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(232,69,10,.14); }.point-a { top: 24%; left: 26%; }.point-b { top: 22%; right: 23%; }.point-c { bottom: 24%; left: 21%; }.point-d { right: 18%; bottom: 28%; }
.map-caption { position: absolute; right: 22px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(21,101,192,.12); border-radius: 12px; background: rgba(255,255,255,.76); backdrop-filter: blur(10px); }.map-caption strong { color: var(--orange); font-family: var(--font-display); font-size: 25px; }.map-caption span { color: var(--ink-soft); font-size: 9px; line-height: 1.25; }

@media (prefers-reduced-motion: no-preference) { .home-v2-marquee-track { animation: marqueeSlide 32s linear infinite; }.map-ring { animation: mapPulse 5s ease-in-out infinite; }.map-point { animation: pointPulse 2.5s ease-in-out infinite; }.map-point:nth-of-type(2) { animation-delay: .45s; }.map-point:nth-of-type(3) { animation-delay: .9s; }.map-point:nth-of-type(4) { animation-delay: 1.35s; } }
@keyframes marqueeSlide { from { transform: translateX(0); } to { transform: translateX(-18%); } }
@keyframes mapPulse { 0%,100% { opacity: .72; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); } }
@keyframes pointPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.45); } }

@media (max-width: 800px) { .finder-heading, .home-v2-network-grid { display: block; }.finder-heading p { margin-top: 22px; }.finder-grid { grid-template-columns: repeat(2, 1fr); }.home-v2-network-grid { display: grid; grid-template-columns: 1fr; gap: 42px; }.network-map { min-height: 350px; } }
@media (max-width: 560px) { .home-v2-finder, .home-v2-network { padding: 76px 0; }.finder-grid { grid-template-columns: 1fr; }.finder-image { height: 190px; }.finder-image img { height: 150px; }.finder-tabs { gap: 6px; }.finder-tab { padding: 9px 11px; font-size: 10px; }.home-v2-marquee-track { gap: 20px; font-size: 9px; }.network-map { min-height: 310px; }.ring-b { width: 280px; height: 280px; }.ring-a { width: 170px; height: 170px; } }


/* === VISUAL LANGUAGE V3: EDITORIAL HEALTHCARE PREMIUM === */
:root {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --paper: #fbfaf7;
  --paper-blue: #f0f5fb;
  --ink: #16253e;
  --ink-soft: #617089;
  --line-soft: rgba(22,37,62,.12);
  --blue-deep: #092f66;
  --electric-blue: #1667c9;
  --orange: #eb5b2a;
  --orange-soft: #fff0e9;
}

body.visual-language-v3 { background: var(--paper); }
body.visual-language-v3::selection { background: var(--orange); color: #fff; }
.visual-language-v3 .visual-ambient { position: fixed; z-index: -1; inset: 0; pointer-events: none; overflow: hidden; background: radial-gradient(circle at 92% 7%, rgba(236,91,42,.07), transparent 19%), radial-gradient(circle at 6% 53%, rgba(22,103,201,.07), transparent 22%); }
.visual-language-v3 .visual-ambient::before, .visual-language-v3 .visual-ambient::after { content: ''; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(22,103,201,.08); border-radius: 50%; }
.visual-language-v3 .visual-ambient::before { top: 11%; right: -180px; box-shadow: 0 0 0 28px rgba(22,103,201,.025), 0 0 0 56px rgba(22,103,201,.018); }
.visual-language-v3 .visual-ambient::after { bottom: 8%; left: -200px; border-color: rgba(235,91,42,.08); }

.visual-language-v3 h1,
.visual-language-v3 h2,
.visual-language-v3 h3,
.visual-language-v3 h4,
.visual-language-v3 .sec-title,
.visual-language-v3 .prod-name,
.visual-language-v3 .seg-title,
.visual-language-v3 .slider-title { font-family: var(--font-display); font-weight: 400; letter-spacing: -.035em; }
.visual-language-v3 h1, .visual-language-v3 h2 { line-height: .98; }
.visual-language-v3 p { color: var(--ink-soft); }
.visual-language-v3 .topbar { background: var(--blue-deep); }
.visual-language-v3 nav { border-bottom: 1px solid rgba(22,37,62,.08); background: rgba(251,250,247,.92); box-shadow: 0 9px 30px rgba(9,47,102,.06); backdrop-filter: blur(16px); }
.visual-language-v3 .nav-links a { color: var(--ink); font-family: var(--font-body); font-weight: 700; }
.visual-language-v3 .nav-links a::after { background: var(--orange); }
.visual-language-v3 .nav-enquire { border-radius: 999px; background: var(--orange); box-shadow: 0 10px 22px rgba(235,91,42,.2); }
.visual-language-v3 .nav-enquire:hover { background: var(--blue-deep); }
.visual-language-v3 .product-page-hero { min-height: 360px; background: linear-gradient(118deg, #082a5c, #0c4d9f 62%, #2b79ce); }
.visual-language-v3 .product-page-hero .container { padding-top: 62px; padding-bottom: 62px; }
.visual-language-v3 .product-page-hero h1 { max-width: 760px; font-size: clamp(2.7rem, 5.4vw, 5rem); }
.visual-language-v3 .page-hero-kicker { padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.09); }
.visual-language-v3 .breadcrumb { opacity: .76; }
.visual-language-v3 .premium-product-layout { background: var(--paper-blue); }
.visual-language-v3 .premium-filter-card { border: 1px solid var(--line-soft); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 22px 50px rgba(9,47,102,.08); }
.visual-language-v3 .premium-product-grid .prod-card { border: 1px solid var(--line-soft); border-radius: 23px; background: var(--paper); box-shadow: 0 12px 30px rgba(9,47,102,.06); }
.visual-language-v3 .premium-product-grid .prod-card:hover { border-color: rgba(235,91,42,.45); box-shadow: 0 24px 50px rgba(9,47,102,.14); }
.visual-language-v3 .premium-product-grid .prod-card-top { background: linear-gradient(145deg, #edf4fb, #fff0e9); }
.visual-language-v3 .premium-product-grid .prod-name { font-size: 20px; }
.visual-language-v3 .premium-product-grid .prod-enquire { border-radius: 999px; background: var(--blue-deep); }
.visual-language-v3 .premium-product-grid .prod-enquire:hover { background: var(--orange); }
.visual-language-v3 .premium-content-section { background: var(--paper); }
.visual-language-v3 .premium-content-section.alt { background: var(--paper-blue); }
.visual-language-v3 .premium-content-section .sec-title { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.visual-language-v3 .premium-content-section .quote-block { border-left: 0; border-top: 1px solid var(--orange); border-radius: 0; background: transparent; color: var(--blue-deep); font-family: var(--font-display); font-size: 20px; line-height: 1.3; }
.visual-language-v3 .premium-contact-section { background: var(--paper); }
.visual-language-v3 .premium-contact-grid .contact-info, .visual-language-v3 .premium-contact-grid .contact-form { border: 1px solid var(--line-soft); border-radius: 25px; background: rgba(255,255,255,.78); box-shadow: 0 20px 50px rgba(9,47,102,.08); }
.visual-language-v3 footer { background: var(--blue-deep); }

/* Homepage: use the same editorial system without flattening its composition. */
.visual-language-v3 .home-v2 { background: var(--paper); }
.visual-language-v3 .home-v2 h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.visual-language-v3 .home-v2-intro, .visual-language-v3 .home-v2-spotlight, .visual-language-v3 .home-v2-insights { background: var(--paper); }
.visual-language-v3 .home-v2-segments, .visual-language-v3 .home-v2-finder, .visual-language-v3 .home-v2-values { background: var(--paper-blue); }
.visual-language-v3 .home-v2-proof { background: var(--paper); }
.visual-language-v3 .home-v2-segment { border-radius: 26px; }
.visual-language-v3 .home-v2-value-grid article, .visual-language-v3 .finder-card, .visual-language-v3 .home-v2-insight-grid article { border: 1px solid var(--line-soft); border-radius: 23px; background: var(--paper); }
.visual-language-v3 .finder-card-body h3, .visual-language-v3 .home-v2-insight-grid h3 { font-size: 22px; }
.visual-language-v3 .home-v2-cta { background: var(--blue-deep); }

@media (max-width: 680px) {
  .visual-language-v3 .product-page-hero { min-height: 330px; }
  .visual-language-v3 .product-page-hero h1 { font-size: 2.8rem; }
  .visual-language-v3 .premium-content-section .sec-title { font-size: 3rem; }
}


/* === PRODUCT DISCOVERY CONTROLS === */
.product-filter-heading { margin-top: 23px; margin-bottom: 10px; color: var(--ink); font-family: var(--font-display); font-size: 16px; }
.product-filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.product-filter-chips .filter-tag { padding: 7px 10px; border: 1px solid rgba(21,101,192,.14); border-radius: 999px; background: #fff; color: var(--ink-soft); font-family: var(--font-body); font-size: 10px; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.product-filter-chips .filter-tag:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.product-filter-chips .filter-tag.active { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 7px 14px rgba(21,101,192,.16); }
.product-sort-label { display: block; margin-top: 20px; margin-bottom: 7px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-sort { width: 100%; padding: 10px 12px; border: 1px solid rgba(21,101,192,.15); border-radius: 11px; background: #fff; color: var(--ink); font-family: var(--font-body); font-size: 11px; font-weight: 600; }
.product-sort:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,101,192,.1); outline: none; }
.premium-filter-card .filter-search { margin-bottom: 4px; }
@media (max-width: 800px) { .product-filter-chips { max-height: 140px; overflow: auto; padding-right: 3px; } }


/* === PRODUCT POPUP REDESIGN === */
.product-modal .modal { width: min(920px, calc(100vw - 32px)); max-width: 920px; max-height: min(900px, calc(100vh - 34px)); overflow: auto; border: 1px solid rgba(255,255,255,.5); border-radius: 30px; background: var(--paper); box-shadow: 0 35px 120px rgba(4,27,65,.35); }
.product-modal .modal-header { padding: 28px 34px 18px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(120deg, #f7fbff, #fff7f2); }
.product-modal .modal-header::before { width: 62px; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.product-modal .modal-header h2 { font-family: var(--font-display); font-size: 31px; font-weight: 400; letter-spacing: -.035em; }
.product-modal .modal-sub { max-width: 460px; color: var(--ink-soft); font-size: 12px; }
.product-modal .modal-body { padding: 24px 34px 32px; }
.product-modal .modal-close { top: 21px; right: 23px; z-index: 5; width: 35px; height: 35px; border: 1px solid var(--line-soft); border-radius: 50%; background: #fff; color: var(--ink); font-size: 14px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.product-modal .modal-close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }
.product-modal .modal-product-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-modal .modal-product-eyebrow i { color: var(--blue); font-style: normal; }
.product-modal .modal-prod-hero { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: center; padding: 18px; border: 1px solid var(--line-soft); border-radius: 24px; background: linear-gradient(135deg, #edf5ff, #fff5ee); }
.product-modal .modal-prod-visual { position: relative; min-height: 250px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: inset 0 0 0 1px rgba(21,101,192,.07); }
.product-modal .modal-prod-visual-glow { position: absolute; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, rgba(235,91,42,.2), transparent 66%); }
.product-modal .modal-prod-ico { position: relative; z-index: 1; display: grid; width: 210px; height: 210px; place-items: center; color: var(--blue); font-size: 70px; }
.product-modal .modal-prod-ico-photo { width: 210px !important; height: 210px !important; min-width: 0 !important; min-height: 0 !important; padding: 0 !important; }
.product-modal .modal-prod-ico img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-modal .modal-prod-visual-label { position: absolute; right: 13px; bottom: 12px; color: var(--ink-soft); font-family: var(--font-display); font-size: 10px; }
.product-modal .modal-prod-info { padding: 5px 15px 5px 0; }
.product-modal .modal-prod-overline { margin-bottom: 10px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-modal .modal-prod-name { max-width: 430px; color: var(--ink); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.product-modal .modal-prod-comp { max-width: 460px; margin-top: 14px; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.product-modal .modal-prod-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.product-modal .modal-prod-meta .prod-tag { border: 1px solid rgba(21,101,192,.16); border-radius: 999px; background: #fff; color: var(--blue); font-size: 9px; }
.product-modal .modal-prod-meta .prod-tag.green { border-color: rgba(25,135,92,.18); color: #147b55; }
.product-modal .modal-prod-prompt { max-width: 390px; margin-top: 22px; padding-top: 15px; border-top: 1px solid var(--line-soft); color: var(--ink); font-family: var(--font-display); font-size: 15px; line-height: 1.3; }
.product-modal .modal-prod-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 15px 0; }
.product-modal .modal-prod-detail-card { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: 14px; background: #fff; }
.product-modal .modal-detail-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-family: var(--font-display); font-size: 15px; }
.product-modal .modal-prod-detail-card small, .product-modal .modal-prod-detail-card strong { display: block; }.product-modal .modal-prod-detail-card small { color: var(--ink-soft); font-size: 9px; }.product-modal .modal-prod-detail-card strong { margin-top: 2px; color: var(--ink); font-family: var(--font-display); font-size: 12px; font-weight: 400; }
.product-modal .modal-prod-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; padding: 14px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.product-modal .modal-benefit { min-height: 53px; display: flex; align-items: flex-start; gap: 7px; padding: 10px; border-radius: 11px; background: var(--paper-blue); }
.product-modal .modal-benefit i { color: var(--orange); }.product-modal .modal-benefit span { color: var(--ink-soft); font-size: 10px; line-height: 1.45; }
.product-modal .modal-prod-desc { margin-top: 15px; padding: 17px 18px; border-radius: 16px; background: #fff; }
.product-modal .modal-prod-desc-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; color: var(--blue); font-family: var(--font-display); font-size: 15px; }.product-modal .modal-prod-desc-label i { color: var(--orange); font-family: var(--font-body); font-size: 9px; font-style: normal; letter-spacing: .14em; }.product-modal .modal-prod-desc-text { color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.product-modal .modal-prod-wa { margin-top: 16px; text-align: right; }.product-modal .btn-wa-quick { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; background: #128c55; box-shadow: 0 10px 20px rgba(18,140,85,.18); font-family: var(--font-body); font-size: 11px; font-weight: 800; }.product-modal .btn-wa-quick span { font-size: 16px; }
@media (max-width: 680px) { .product-modal .modal { width: calc(100vw - 18px); max-height: calc(100vh - 16px); border-radius: 23px; }.product-modal .modal-header { padding: 24px 21px 15px; }.product-modal .modal-header h2 { font-size: 27px; }.product-modal .modal-body { padding: 18px 16px 24px; }.product-modal .modal-prod-hero { grid-template-columns: 1fr; gap: 15px; padding: 12px; }.product-modal .modal-prod-visual { min-height: 205px; }.product-modal .modal-prod-ico, .product-modal .modal-prod-ico-photo { width: 180px !important; height: 180px !important; }.product-modal .modal-prod-info { padding: 4px 4px 12px; }.product-modal .modal-prod-name { font-size: 2.5rem; }.product-modal .modal-prod-detail-grid, .product-modal .modal-prod-benefits { grid-template-columns: 1fr; }.product-modal .modal-prod-wa { text-align: stretch; }.product-modal .btn-wa-quick { width: 100%; justify-content: center; } }


/* === PRODUCT POPUP V4: SPLIT SHOWCASE EXPERIENCE === */
.modal-v4 { width: min(1080px, calc(100vw - 28px)); max-width: 1080px; max-height: min(760px, calc(100vh - 28px)); overflow: hidden; border: 0; border-radius: 27px; background: #f8f6f1; box-shadow: 0 40px 140px rgba(3,24,58,.4); }
.modal-v4 .modal-close { top: 18px; right: 18px; z-index: 10; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: rgba(6,39,84,.42); color: #fff; font-size: 13px; backdrop-filter: blur(8px); }
.modal-v4 .modal-close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }
.modal-v4 .modal-split { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 650px; max-height: 760px; }
.modal-v4 .modal-showcase { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 29px 31px 26px; background: linear-gradient(145deg, #082955 0%, #0d4c9e 62%, #2b78cb 100%); color: #fff; }
.modal-v4 .modal-showcase::after { content: ''; position: absolute; right: -110px; bottom: -160px; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.03), 0 0 0 60px rgba(255,255,255,.02); }
.modal-v4 .modal-showcase-top, .modal-v4 .modal-showcase-bottom, .modal-v4 .modal-showcase-art { position: relative; z-index: 1; }.modal-v4 .modal-showcase-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.modal-v4 .modal-showcase-art { display: grid; min-height: 340px; place-items: center; }
.modal-v4 .showcase-grid { position: absolute; inset: 18% 0 10%; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(circle, #000 20%, transparent 72%); }
.modal-v4 .modal-showcase-image { position: relative; z-index: 2; display: grid; width: 258px; height: 258px; place-items: center; border: 10px solid rgba(255,255,255,.78); border-radius: 50%; background: #fff; box-shadow: 0 25px 50px rgba(0,20,61,.25), 0 0 0 17px rgba(255,255,255,.08); transform: rotate(-4deg); transition: transform .35s var(--ease-out); }.modal-v4 .modal-showcase-image:hover { transform: rotate(0deg) scale(1.035); }.modal-v4 .modal-showcase-image img { width: 83%; height: 83%; object-fit: contain; mix-blend-mode: multiply; }.modal-v4 .modal-showcase-image > span { color: var(--orange); font-family: var(--font-display); font-size: 86px; }
.modal-v4 .showcase-orbit { position: absolute; z-index: 1; width: 320px; height: 120px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; transform: rotate(-32deg); }.modal-v4 .orbit-left { left: 4%; top: 28%; }.modal-v4 .orbit-right { right: 4%; top: 40%; transform: rotate(48deg); border-color: rgba(235,91,42,.5); }
.modal-v4 .showcase-kicker { color: #ff9a72; font-size: 9px; font-weight: 800; letter-spacing: .15em; }.modal-v4 .modal-showcase-bottom h3 { max-width: 355px; margin: 9px 0 9px; color: #fff; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4.1rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }.modal-v4 .modal-showcase-bottom p { max-width: 350px; margin: 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.55; }.modal-v4 .showcase-signature { display: flex; justify-content: space-between; max-width: 360px; margin-top: 27px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .08em; }
.modal-v4 .modal-panel { overflow: auto; padding: 43px 44px 36px; background: #f8f6f1; }.modal-v4 .modal-panel-head { padding-right: 35px; }.modal-v4 .modal-panel-kicker { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .16em; }.modal-v4 .modal-panel-head h2 { max-width: 470px; margin: 9px 0 10px; color: var(--ink); font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .93; }.modal-v4 .modal-panel-head p { max-width: 430px; margin: 0 0 23px; font-size: 11px; line-height: 1.6; }
.modal-v4 #modalBadge { margin-bottom: 18px; }.modal-v4 .modal-summary-card { padding: 15px 17px; border: 1px solid rgba(21,101,192,.12); border-radius: 16px; background: #fff; }.modal-v4 .modal-summary-label { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.modal-v4 .modal-summary-name { margin-top: 5px; color: var(--ink); font-family: var(--font-display); font-size: 24px; }.modal-v4 .modal-summary-comp { margin-top: 4px; color: var(--ink-soft); font-size: 10px; line-height: 1.45; }.modal-v4 .modal-summary-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }.modal-v4 .modal-summary-meta .prod-tag { border-radius: 999px; background: var(--paper-blue); color: var(--blue); font-size: 8px; }.modal-v4 .modal-summary-meta .prod-tag.green { background: #edf8f3; color: #147b55; }
.modal-v4 .modal-mini-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 12px 0; }.modal-v4 .modal-mini-benefits > div { display: flex; gap: 5px; padding: 9px; border-radius: 10px; background: #eef4fa; }.modal-v4 .modal-mini-benefits i { color: var(--orange); font-size: 11px; font-style: normal; }.modal-v4 .modal-mini-benefits span { color: var(--ink-soft); font-size: 9px; line-height: 1.35; }.modal-v4 .modal-overview { padding: 14px 16px; border-top: 1px solid rgba(22,37,62,.1); border-bottom: 1px solid rgba(22,37,62,.1); }.modal-v4 .modal-overview > div { display: flex; justify-content: space-between; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; }.modal-v4 .modal-overview b { color: var(--orange); font-size: 9px; }.modal-v4 .modal-overview p { margin: 8px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }.modal-v4 .modal-prod-wa { margin: 13px 0 19px; }.modal-v4 .btn-wa-quick { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-radius: 12px; background: #138b58; box-shadow: 0 10px 22px rgba(19,139,88,.17); font-size: 11px; font-weight: 800; }.modal-v4 .btn-wa-quick span { font-size: 17px; }
.modal-v4 #enquiryForm { padding-top: 19px; border-top: 1px solid rgba(22,37,62,.1); }.modal-v4 #enquiryForm::before { content: 'Or send a detailed enquiry'; display: block; margin-bottom: 13px; color: var(--ink); font-family: var(--font-display); font-size: 19px; }.modal-v4 #enquiryForm .form-row { gap: 10px; }.modal-v4 #enquiryForm input, .modal-v4 #enquiryForm select, .modal-v4 #enquiryForm textarea { border: 1px solid rgba(22,37,62,.13); border-radius: 10px; background: #fff; }.modal-v4 #enquiryForm input:focus, .modal-v4 #enquiryForm select:focus, .modal-v4 #enquiryForm textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.1); }.modal-v4 #enquiryForm .btn-blue { border-radius: 11px !important; background: var(--blue-deep); }.modal-v4 #enquiryForm .btn-blue:hover { background: var(--orange); }
.modal-v4 .modal-panel::-webkit-scrollbar { width: 5px; }.modal-v4 .modal-panel::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(21,101,192,.25); }
@media (max-width: 780px) { .modal-v4 { width: calc(100vw - 16px); max-height: calc(100vh - 12px); border-radius: 22px; }.modal-v4 .modal-split { display: block; max-height: none; }.modal-v4 .modal-showcase { min-height: 340px; padding: 22px 21px 20px; }.modal-v4 .modal-showcase-art { min-height: 150px; }.modal-v4 .modal-showcase-image { width: 145px; height: 145px; border-width: 6px; }.modal-v4 .modal-showcase-bottom h3 { font-size: 2.6rem; }.modal-v4 .modal-showcase-bottom p { max-width: 300px; }.modal-v4 .showcase-signature { margin-top: 13px; }.modal-v4 .modal-panel { max-height: 500px; padding: 27px 20px 28px; }.modal-v4 .modal-panel-head h2 { font-size: 2.55rem; }.modal-v4 .modal-mini-benefits { grid-template-columns: 1fr; }.modal-v4 .modal-mini-benefits > div { align-items: center; }.modal-v4 .modal-close { top: 12px; right: 12px; } }


/* === FINAL SMOOTHNESS AND PRODUCTION POLISH === */
html { scroll-behavior: smooth; }
.modal-v4 .modal-panel { overscroll-behavior: contain; scrollbar-gutter: stable; }
.home-v2-intro, .home-v2-finder, .home-v2-segments, .home-v2-spotlight, .home-v2-values, .home-v2-network, .home-v2-insights, .premium-content-section, .premium-product-layout { contain: layout paint; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } }


/* Homepage hero featured medicine update */
.home-v2-visual .hero-product-main { width: 270px; top: 50px; left: 48px; padding: 16px 16px 17px; }
.home-v2-visual .hero-product-main img { height: 224px; }
.home-v2-visual .hero-product-main strong { font-size: 16px; }
.home-v2-visual .hero-product-float { width: 172px; right: 13px; top: 184px; padding: 12px 12px 14px; }
.home-v2-visual .hero-product-float img { height: 116px; }
.home-v2-visual .hero-product-float strong { font-size: 13px; }
@media (max-width: 980px) {
  .home-v2-visual .hero-product-main { left: 68px; }
  .home-v2-visual .hero-product-float { right: 38px; }
}
@media (max-width: 680px) {
  .home-v2-visual .hero-product-main { left: 27px; top: 42px; width: 238px; }
  .home-v2-visual .hero-product-main img { height: 196px; }
  .home-v2-visual .hero-product-float { right: 0; top: 171px; width: 146px; }
  .home-v2-visual .hero-product-float img { height: 98px; }
}


/* Homepage range finder update */
.home-v2-finder .finder-image { min-height: 270px; padding: 18px; }
.home-v2-finder .finder-image img { width: 100%; height: 245px; object-fit: contain; transform: scale(1.08); transition: transform .45s var(--ease-out); }
.home-v2-finder .finder-card:hover .finder-image img { transform: scale(1.16) translateY(-4px); }
.home-v2-finder .finder-card-body h3 { font-size: 25px; }
@media (max-width: 680px) {
  .home-v2-finder .finder-image { min-height: 220px; }
  .home-v2-finder .finder-image img { height: 198px; }
  .home-v2-finder .finder-card-body h3 { font-size: 23px; }
}


/* Product listing image presentation upgrade */
.visual-language-v3 .premium-product-grid .prod-card-top.prod-card-photo {
  min-height: 270px;
  height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(21,101,192,.08);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 30%, rgba(238,246,253,.82) 62%, rgba(255,237,227,.72) 100%),
    linear-gradient(145deg, #edf5fc, #fff1e9);
}
.visual-language-v3 .premium-product-grid .prod-card-top.prod-card-photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 22px 28px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(9,47,102,.14));
  transform: scale(1.08);
  transition: transform .5s var(--ease-out), filter .5s var(--ease-out);
}
.visual-language-v3 .premium-product-grid .prod-card:hover .prod-card-top.prod-card-photo img {
  transform: scale(1.18) translateY(-5px) rotate(1deg);
  filter: drop-shadow(0 22px 24px rgba(9,47,102,.2));
}
.visual-language-v3 .premium-product-grid .prod-card .prod-body { padding-top: 22px; }
@media (max-width: 760px) {
  .visual-language-v3 .premium-product-grid .prod-card-top.prod-card-photo {
    min-height: 230px;
    height: 230px;
  }
  .visual-language-v3 .premium-product-grid .prod-card-top.prod-card-photo img {
    padding: 18px 22px;
    transform: scale(1.06);
  }
  .visual-language-v3 .premium-product-grid .prod-card:hover .prod-card-top.prod-card-photo img {
    transform: scale(1.12) translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .visual-language-v3 .premium-product-grid .prod-card-top.prod-card-photo img,
  .visual-language-v3 .premium-product-grid .prod-card:hover .prod-card-top.prod-card-photo img {
    transform: none;
    transition: none;
  }
}


/* Popup product artwork visibility upgrade */
.modal-v4 .modal-showcase-art { min-height: 390px; }
.modal-v4 .modal-showcase-image {
  width: 330px;
  height: 330px;
  border-width: 11px;
  box-shadow: 0 30px 58px rgba(0,20,61,.28), 0 0 0 21px rgba(255,255,255,.09);
}
.modal-v4 .modal-showcase-image img {
  width: 92%;
  height: 92%;
  transform: scale(1.08);
}
.modal-v4 .modal-showcase-image:hover img { transform: scale(1.14); }
@media (max-width: 1100px) and (min-width: 781px) {
  .modal-v4 .modal-showcase-art { min-height: 365px; }
  .modal-v4 .modal-showcase-image { width: 285px; height: 285px; }
}
@media (max-width: 780px) {
  .modal-v4 .modal-showcase-art { min-height: 205px; }
  .modal-v4 .modal-showcase-image {
    width: 196px;
    height: 196px;
    border-width: 8px;
  }
  .modal-v4 .modal-showcase-image img { width: 93%; height: 93%; }
}


/* Clickable homepage featured products */
.home-v2-visual .hero-product-card.is-clickable { cursor: pointer; transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s ease; }
.home-v2-visual .hero-product-card.is-clickable:hover { border-color: rgba(255,255,255,.9); box-shadow: 0 34px 82px rgba(0,0,0,.3); }
.home-v2-visual .hero-product-main.is-clickable:hover { transform: rotate(-3deg) translateY(-8px); }
.home-v2-visual .hero-product-float.is-clickable:hover { transform: rotate(5deg) translateY(-8px); }
.home-v2-visual .hero-product-card.is-clickable:focus-visible { outline: 3px solid #ff9b71; outline-offset: 5px; }
.hero-product-action { display: block; margin-top: 10px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-product-action b { color: var(--orange); font-size: 13px; margin-left: 3px; }
@media (max-width: 680px) {
  .hero-product-action { margin-top: 8px; font-size: 8px; }
}


/* Homepage product popup layering and clean card affordance */
.modal-overlay { z-index: 2000; isolation: isolate; }
.modal-overlay.open { position: fixed; inset: 0; }
.modal-v4 { position: relative; z-index: 2001; }
.home-v2-visual .hero-product-card.is-clickable { cursor: pointer; }
.hero-product-action { display: none !important; }
@media (max-width: 780px) {
  .modal-overlay.open { align-items: center; padding: 8px; }
  .modal-v4 { max-height: calc(100svh - 16px); }
}


/* Global supporting-text readability upgrade: +2px */
.visual-language-v3 .page-hero-support,
.visual-language-v3 .hero-sub,
.visual-language-v3 .product-page-hero > .container > p,
.visual-language-v3 .finder-heading > p,
.visual-language-v3 .finder-card-body p,
.visual-language-v3 .home-v2-intro .intro-body p,
.visual-language-v3 .home-v2-spotlight p,
.visual-language-v3 .home-v2-values p,
.visual-language-v3 .home-v2-network p,
.visual-language-v3 .home-v2-insights p,
.visual-language-v3 .timeline-desc,
.visual-language-v3 .str-desc,
.visual-language-v3 .contact-info p,
.visual-language-v3 .contact-form p,
.visual-language-v3 .footer-brand p,
.visual-language-v3 .footer-bottom p {
  font-size: 15px;
}
.visual-language-v3 .premium-content-section > .container > p[style*="font-size"] {
  font-size: 17px !important;
}
.visual-language-v3 .premium-product-grid .prod-comp,
.visual-language-v3 .prod-comp { font-size: 14px; }
.visual-language-v3 .hero-product-card small { font-size: 11px; }
.visual-language-v3 .proof-stat span { font-size: 12px; }
.visual-language-v3 .home-v2-assurance span { font-size: 12px; }
.visual-language-v3 .hero-visual-panel small { font-size: 12px; }
.visual-language-v3 .map-center small,
.visual-language-v3 .map-caption span { font-size: 11px; }
.visual-language-v3 .modal-v4 .modal-panel-head p { font-size: 13px; }
.visual-language-v3 .modal-v4 .modal-summary-comp { font-size: 12px; }
.visual-language-v3 .modal-v4 .modal-mini-benefits span { font-size: 11px; }
.visual-language-v3 .modal-v4 .modal-overview p { font-size: 12px; }
.visual-language-v3 .product-modal .modal-prod-comp { font-size: 14px; }
@media (max-width: 680px) {
  .visual-language-v3 .page-hero-support,
  .visual-language-v3 .hero-sub,
  .visual-language-v3 .product-page-hero > .container > p,
  .visual-language-v3 .finder-heading > p,
  .visual-language-v3 .finder-card-body p,
  .visual-language-v3 .home-v2-intro .intro-body p,
  .visual-language-v3 .home-v2-spotlight p,
  .visual-language-v3 .home-v2-values p,
  .visual-language-v3 .home-v2-network p,
  .visual-language-v3 .home-v2-insights p,
  .visual-language-v3 .timeline-desc,
  .visual-language-v3 .str-desc,
  .visual-language-v3 .contact-info p,
  .visual-language-v3 .contact-form p,
  .visual-language-v3 .footer-brand p,
  .visual-language-v3 .footer-bottom p,
  .visual-language-v3 .premium-product-grid .prod-comp,
  .visual-language-v3 .prod-comp { font-size: 14px; }
  .visual-language-v3 .premium-content-section > .container > p[style*="font-size"] { font-size: 16px !important; }
}


/* Product popup supporting copy: additional +2px readability pass */
.modal-v4 .modal-showcase-top,
.modal-v4 .showcase-kicker,
.modal-v4 .showcase-signature,
.modal-v4 .modal-panel-kicker,
.modal-v4 .modal-summary-label,
.modal-v4 .modal-summary-meta .prod-tag,
.modal-v4 .modal-overview > div,
.modal-v4 .modal-overview > div b { font-size: 11px; }
.modal-v4 .modal-showcase-bottom p { font-size: 13px; }
.modal-v4 .modal-panel-head p { font-size: 15px; }
.modal-v4 .modal-summary-comp { font-size: 14px; }
.modal-v4 .modal-mini-benefits span { font-size: 13px; }
.modal-v4 .modal-overview p { font-size: 14px; }
.modal-v4 .btn-wa-quick { font-size: 13px; }
.modal-v4 #enquiryForm label { font-size: 14px; }
.modal-v4 #enquiryForm input,
.modal-v4 #enquiryForm select,
.modal-v4 #enquiryForm textarea { font-size: 14px; }
.modal-v4 .modal-prod-comp { font-size: 16px; }
@media (max-width: 780px) {
  .modal-v4 .modal-showcase-bottom p { font-size: 14px; }
  .modal-v4 .modal-panel-head p { font-size: 15px; }
  .modal-v4 .modal-summary-comp { font-size: 14px; }
  .modal-v4 .modal-mini-benefits span { font-size: 14px; }
  .modal-v4 .modal-overview p { font-size: 14px; }
  .modal-v4 #enquiryForm label,
  .modal-v4 #enquiryForm input,
  .modal-v4 #enquiryForm select,
  .modal-v4 #enquiryForm textarea { font-size: 14px; }
}


/* Popup visual cleanup: keep the product still and remove circular background decoration. */
.modal-v4 .modal-showcase::after,
.modal-v4 .showcase-orbit { display: none; }
.modal-v4 .modal-showcase-image {
  border-radius: 18px;
  transform: none;
  transition: box-shadow .35s var(--ease-out);
}
.modal-v4 .modal-showcase-image:hover {
  transform: none;
  box-shadow: 0 25px 50px rgba(0,20,61,.25), 0 0 0 17px rgba(255,255,255,.08);
}
.modal-v4 .modal-overview > div { justify-content: flex-start; }


/* Mobile hero CTA stability: prevent touch hover/tap states from appearing as a blink. */
@media (hover: none), (pointer: coarse) {
  .home-v2-actions .btn-glass {
    -webkit-tap-highlight-color: transparent;
    animation: none !important;
  }
  .home-v2-actions .btn-glass:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.09);
  }
  .home-v2-actions .btn-glass:active {
    transform: scale(.97);
    background: rgba(255,255,255,.12);
  }
  .home-v2-actions .btn-glass:focus:not(:focus-visible) {
    outline: none;
  }
  .home-v2-actions .btn-glass:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
}


/* Mobile product discovery: keep search immediately visible and make the input touch-friendly. */
@media (max-width: 800px) {
  .premium-product-inner { display: block; }
  .premium-product-inner > div:first-child { margin-bottom: 18px; }
  .premium-product-inner .filter-toggle-btn { margin-bottom: 10px; }
  .premium-filter-card {
    display: block;
    max-height: none;
    overflow: visible;
    padding: 16px;
    border: 1px solid rgba(21,101,192,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
  }
  .premium-filter-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .premium-filter-card .filter-search {
    display: block;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 13px 14px;
    font-size: 16px;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
  }
  .premium-filter-card:not(.open) .product-filter-heading,
  .premium-filter-card:not(.open) .product-filter-chips,
  .premium-filter-card:not(.open) .product-sort-label,
  .premium-filter-card:not(.open) .product-sort { display: none; }
  .premium-filter-card.open {
    max-height: 620px;
    overflow: visible;
    padding: 16px;
    border: 1px solid rgba(21,101,192,.18);
    border-radius: 18px;
    margin-bottom: 16px;
  }
  .premium-filter-card.open .product-filter-heading { display: block; }
  .premium-filter-card.open .product-filter-chips {
    display: flex;
    max-height: 150px;
    overflow-y: auto;
    padding: 2px 2px 5px;
    -webkit-overflow-scrolling: touch;
  }
  .premium-filter-card.open .product-filter-chips .filter-tag {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 11px;
  }
  .premium-filter-card.open .product-sort-label,
  .premium-filter-card.open .product-sort { display: block; }
  .premium-filter-card.open .product-sort { min-height: 46px; font-size: 16px; }
}


/* Care-segment marquee: faster circular orbit presentation. */
.home-v2-marquee {
  position: relative;
  display: grid;
  min-height: 168px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: linear-gradient(135deg, #f8fbff, #fff8f3);
}
.home-v2-marquee::before {
  content: '';
  position: absolute;
  width: min(76vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(21,101,192,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(21,101,192,.035), 0 0 0 42px rgba(235,91,42,.025);
}
.home-v2-marquee-track {
  position: relative;
  display: block;
  width: min(76vw, 760px);
  height: min(76vw, 760px);
  min-width: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: clamp(9px, 1.05vw, 12px);
  letter-spacing: .16em;
  animation: marqueeOrbit 13s linear infinite;
}
.home-v2-marquee-track span,
.home-v2-marquee-track i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 31%;
  height: 42px;
  margin: -21px -15.5%;
  white-space: nowrap;
}
.home-v2-marquee-track span:nth-of-type(1) { transform: rotate(0deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(0deg); }
.home-v2-marquee-track i:nth-of-type(1) { transform: rotate(45deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-45deg); }
.home-v2-marquee-track span:nth-of-type(2) { transform: rotate(90deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-90deg); }
.home-v2-marquee-track i:nth-of-type(2) { transform: rotate(135deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-135deg); }
.home-v2-marquee-track span:nth-of-type(3) { transform: rotate(180deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-180deg); }
.home-v2-marquee-track i:nth-of-type(3) { transform: rotate(225deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-225deg); }
.home-v2-marquee-track span:nth-of-type(4) { transform: rotate(270deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(90deg); }
.home-v2-marquee-track i:nth-of-type(4) { transform: rotate(315deg) translateY(calc(min(76vw, 760px) / -2 + 21px)) rotate(-315deg); }
.home-v2-marquee-track span { color: var(--ink-soft); font-family: var(--font-display); font-weight: 600; }
.home-v2-marquee-track i { width: auto; height: auto; margin: -8px; color: var(--orange); font-size: 17px; font-style: normal; }
@media (prefers-reduced-motion: no-preference) {
  .home-v2-marquee-track { animation: marqueeOrbit 13s linear infinite; }
}
@keyframes marqueeOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 560px) {
  .home-v2-marquee { min-height: 132px; }
  .home-v2-marquee::before { width: 92vw; }
  .home-v2-marquee-track { width: 92vw; height: 92vw; font-size: 8px; }
  .home-v2-marquee-track span,
  .home-v2-marquee-track i { height: 34px; margin-top: -17px; }
  .home-v2-marquee-track span:nth-of-type(1) { transform: rotate(0deg) translateY(calc(92vw / -2 + 17px)) rotate(0deg); }
  .home-v2-marquee-track i:nth-of-type(1) { transform: rotate(45deg) translateY(calc(92vw / -2 + 17px)) rotate(-45deg); }
  .home-v2-marquee-track span:nth-of-type(2) { transform: rotate(90deg) translateY(calc(92vw / -2 + 17px)) rotate(-90deg); }
  .home-v2-marquee-track i:nth-of-type(2) { transform: rotate(135deg) translateY(calc(92vw / -2 + 17px)) rotate(-135deg); }
  .home-v2-marquee-track span:nth-of-type(3) { transform: rotate(180deg) translateY(calc(92vw / -2 + 17px)) rotate(-180deg); }
  .home-v2-marquee-track i:nth-of-type(3) { transform: rotate(225deg) translateY(calc(92vw / -2 + 17px)) rotate(-225deg); }
  .home-v2-marquee-track span:nth-of-type(4) { transform: rotate(270deg) translateY(calc(92vw / -2 + 17px)) rotate(90deg); }
  .home-v2-marquee-track i:nth-of-type(4) { transform: rotate(315deg) translateY(calc(92vw / -2 + 17px)) rotate(-315deg); }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Pharma page: make the mobile search control especially prominent. */
@media (max-width: 800px) {
  .page-pharma .premium-filter-card .filter-search {
    min-height: 52px;
    border: 2px solid rgba(21,101,192,.28);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(13,71,161,.09);
    font-size: 16px;
  }
  .page-pharma .premium-filter-card .filter-search::placeholder { color: #71809a; opacity: 1; }
}


/* Visible circular marquee correction: compact orbit, upright labels, faster motion. */
.home-v2-marquee {
  --orbit-size: clamp(260px, 40vw, 360px);
  min-height: calc(var(--orbit-size) + 40px);
}
.home-v2-marquee::before {
  width: var(--orbit-size);
  box-shadow: 0 0 0 12px rgba(21,101,192,.035), 0 0 0 28px rgba(235,91,42,.025);
}
.home-v2-marquee-track {
  width: var(--orbit-size);
  height: var(--orbit-size);
  animation: marqueeOrbitFast 6s linear infinite !important;
}
.home-v2-marquee-track span,
.home-v2-marquee-track i { height: 42px; margin-top: -21px; }
.home-v2-marquee-track span:nth-of-type(1) { transform: rotate(0deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(0deg); }
.home-v2-marquee-track i:nth-of-type(1) { transform: rotate(45deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-45deg); }
.home-v2-marquee-track span:nth-of-type(2) { transform: rotate(90deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-90deg); }
.home-v2-marquee-track i:nth-of-type(2) { transform: rotate(135deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-135deg); }
.home-v2-marquee-track span:nth-of-type(3) { transform: rotate(180deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-180deg); }
.home-v2-marquee-track i:nth-of-type(3) { transform: rotate(225deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-225deg); }
.home-v2-marquee-track span:nth-of-type(4) { transform: rotate(270deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(90deg); }
.home-v2-marquee-track i:nth-of-type(4) { transform: rotate(315deg) translateY(calc(var(--orbit-size) / -2 + 21px)) rotate(-315deg); }
@keyframes marqueeOrbitFast { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 560px) {
  .home-v2-marquee { --orbit-size: min(78vw, 300px); min-height: calc(var(--orbit-size) + 32px); }
  .home-v2-marquee-track { font-size: 8px; }
  .home-v2-marquee-track span,
  .home-v2-marquee-track i { height: 34px; margin-top: -17px; }
  .home-v2-marquee-track span:nth-of-type(1) { transform: rotate(0deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(0deg); }
  .home-v2-marquee-track i:nth-of-type(1) { transform: rotate(45deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-45deg); }
  .home-v2-marquee-track span:nth-of-type(2) { transform: rotate(90deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-90deg); }
  .home-v2-marquee-track i:nth-of-type(2) { transform: rotate(135deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-135deg); }
  .home-v2-marquee-track span:nth-of-type(3) { transform: rotate(180deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-180deg); }
  .home-v2-marquee-track i:nth-of-type(3) { transform: rotate(225deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-225deg); }
  .home-v2-marquee-track span:nth-of-type(4) { transform: rotate(270deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(90deg); }
  .home-v2-marquee-track i:nth-of-type(4) { transform: rotate(315deg) translateY(calc(var(--orbit-size) / -2 + 17px)) rotate(-315deg); }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Linear repeating marquee correction: fast horizontal movement with rounded styling. */
.home-v2-marquee {
  min-height: 86px;
  padding: 14px 0;
  border-top: 1px solid rgba(21,101,192,.08);
  border-bottom: 1px solid rgba(21,101,192,.08);
  background: linear-gradient(90deg, #fbfdff, #fffaf7, #fbfdff);
}
.home-v2-marquee::before { display: none; }
.home-v2-marquee-track {
  display: flex;
  width: max-content;
  height: auto;
  min-width: 0;
  align-items: center;
  padding: 0;
  animation: marqueeLinearFast 9s linear infinite !important;
  will-change: transform;
}
.home-v2-marquee-track .marquee-set {
  display: flex;
  flex: none;
  align-items: center;
  gap: 26px;
  padding: 0 26px;
}
.home-v2-marquee-track span,
.home-v2-marquee-track i {
  position: static;
  display: inline-flex;
  width: auto;
  height: 42px;
  margin: 0;
  align-items: center;
  justify-content: center;
  transform: none !important;
  white-space: nowrap;
}
.home-v2-marquee-track span {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 600;
  letter-spacing: .16em;
}
.home-v2-marquee-track i {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232,69,10,.25);
  border-radius: 50%;
  background: rgba(232,69,10,.06);
  color: var(--orange);
  font-size: 15px;
  font-style: normal;
}
@keyframes marqueeLinearFast { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px) {
  .home-v2-marquee { min-height: 72px; padding: 10px 0; }
  .home-v2-marquee-track { animation-duration: 7s !important; }
  .home-v2-marquee-track .marquee-set { gap: 15px; padding: 0 15px; }
  .home-v2-marquee-track span { height: 34px; font-size: 8px; letter-spacing: .12em; }
  .home-v2-marquee-track i { width: 24px; height: 24px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Straight marquee finish: remove all circular treatment from the strip and separators. */
.home-v2-marquee {
  min-height: 78px;
  padding: 12px 0;
  border-radius: 0;
  background: #fff;
}
.home-v2-marquee-track {
  border-radius: 0;
  animation: marqueeLinearFast 9s linear infinite !important;
}
.home-v2-marquee-track .marquee-set { border-radius: 0; }
.home-v2-marquee-track i {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-size: 16px;
}
@media (max-width: 560px) {
  .home-v2-marquee { min-height: 68px; padding: 9px 0; border-radius: 0; }
  .home-v2-marquee-track { animation-duration: 7s !important; }
  .home-v2-marquee-track i { width: auto; height: auto; font-size: 13px; }
}


/* Infinite loop finish: two identical sets meet at the exact reset point. */
.home-v2-marquee-track {
  white-space: nowrap;
  animation: marqueeInfinite 9s linear 0s infinite normal none running !important;
  backface-visibility: hidden;
}
.home-v2-marquee-track .marquee-set { min-width: max-content; }
@keyframes marqueeInfinite {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 560px) {
  .home-v2-marquee-track { animation-duration: 7s !important; }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Seamless marquee loop: the second identical set occupies the exact reset distance. */
.home-v2-marquee {
  overflow: hidden;
  border-radius: 0;
}
.home-v2-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: max-content;
  gap: 0;
  transform: translate3d(0, 0, 0);
  animation: marqueeSeamlessLinear 10s linear infinite !important;
  will-change: transform;
}
.home-v2-marquee-track .marquee-set {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}
.home-v2-marquee-track span,
.home-v2-marquee-track i {
  position: static;
  transform: none !important;
}
@keyframes marqueeSeamlessLinear {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 560px) {
  .home-v2-marquee-track { animation-duration: 8s !important; }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Reference-style marquee: independent items on a continuous straight ticker. */
.home-v2-marquee {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 0;
  border: 0;
  background: var(--navy, #07192c);
  color: #fff;
  white-space: nowrap;
}
.home-v2-marquee::before {
  display: none;
}
.home-v2-marquee::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #07192c 0%, rgba(7,25,44,0) 12%, rgba(7,25,44,0) 88%, #07192c 100%);
}
.home-v2-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  height: 58px;
  gap: 0;
  animation: marqueeReferenceLoop 18s linear infinite !important;
  will-change: transform;
}
.home-v2-marquee-track .marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 0 1.25rem;
}
.home-v2-marquee-track span {
  display: inline-flex;
  align-items: center;
  color: #f8fbff;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: clamp(.72rem, 1vw, .9rem);
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  white-space: nowrap;
}
.home-v2-marquee-track i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 1.7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange, #e8450a);
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}
@keyframes marqueeReferenceLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 560px) {
  .home-v2-marquee,
  .home-v2-marquee-track { min-height: 52px; height: 52px; }
  .home-v2-marquee-track { animation-duration: 13s !important; }
  .home-v2-marquee-track .marquee-set { padding: 0 .85rem; }
  .home-v2-marquee-track span { font-size: .66rem; letter-spacing: .12em; }
  .home-v2-marquee-track i { margin: 0 1.05rem; font-size: .82rem; }
  .home-v2-marquee::after { background: linear-gradient(90deg, #07192c 0%, rgba(7,25,44,0) 9%, rgba(7,25,44,0) 91%, #07192c 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-marquee-track { animation: none !important; }
}


/* Partnership CTA contrast and mobile interaction pass */
.enquiry-cta {
  isolation: isolate;
  background: #0d4c9e;
}
.enquiry-cta-bg,
.enquiry-cta-overlay {
  pointer-events: none;
}
.enquiry-cta-bg {
  background-attachment: scroll;
}
.btn-white,
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-white {
  color: #0d4c9e;
  background: #fff;
  border: 1px solid #fff;
}
.btn-white:hover,
.btn-white:focus-visible {
  color: #082955;
  background: #ffe9df;
  border-color: #ffe9df;
}
.btn-white-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .04);
}
.btn-white-outline:hover,
.btn-white-outline:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
}

/* Keep the document fixed while the modal owns all touch scrolling. */
html.modal-open {
  overflow: hidden;
}
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 780px) {
  .enquiry-cta-bg {
    background-attachment: scroll;
  }
  .enquiry-cta-btns {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .modal-overlay.open {
    align-items: flex-start;
    justify-content: center;
    animation: none;
    opacity: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: max(12px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }
  .modal-v4,
  .product-modal .modal-v4 {
    width: min(100%, 620px);
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    max-height: none;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
  }
  .modal-v4 .modal-split {
    display: block;
    min-height: 0;
    max-height: none;
  }
  .modal-v4 .modal-showcase {
    min-height: 0;
    padding: 20px 18px 18px;
  }
  .modal-v4 .modal-showcase-art {
    min-height: 150px;
  }
  .modal-v4 .modal-showcase-image {
    width: 170px;
    height: 170px;
    border-width: 7px;
  }
  .modal-v4 .modal-showcase-bottom h3 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: .96;
  }
  .modal-v4 .modal-showcase-bottom p {
    max-width: 100%;
  }
  .modal-v4 .showcase-signature {
    margin-top: 14px;
  }
  .modal-v4 .modal-panel {
    max-height: none;
    overflow: visible;
    padding: 24px 18px 22px;
    scrollbar-gutter: auto;
  }
  .modal-v4 .modal-panel-head {
    padding-right: 30px;
  }
  .modal-v4 .modal-panel-head h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }
  .modal-v4 #enquiryForm .form-row {
    grid-template-columns: 1fr;
  }
  .modal-v4 #enquiryForm input,
  .modal-v4 #enquiryForm select,
  .modal-v4 #enquiryForm textarea {
    min-height: 46px;
  }
  .modal-v4 #enquiryForm textarea {
    min-height: 108px;
  }
  .modal-v4 .modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-cta-bg {
    background-attachment: scroll;
  }
}
