/* =============================================
   Viroc Healthcare LLP — Premium Redesign
   Creative Editorial Pharmaceutical Website
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  --white: #FFFFFF;
  --bg-soft: #F8FBFD;
  --bg-warm: #FAFCFE;
  --navy: #102033;
  --text-primary: #1A2D3D;
  --text-body: #5B6B7A;
  --text-muted: #8A97A4;
  --blue: #0066B3;
  --blue-dark: #004D87;
  --blue-light: #EBF5FF;
  --blue-glow: rgba(0, 102, 179, 0.08);
  --teal: #00A6A6;
  --teal-dark: #008585;
  --teal-light: #E6F8F8;
  --green: #2FBF71;
  --green-light: #EAF9F0;
  --border: #E6EEF4;
  --border-light: #F0F5F9;
  --shadow-sm: 0 1px 3px rgba(16,32,51,0.04), 0 1px 2px rgba(16,32,51,0.06);
  --shadow-md: 0 4px 12px rgba(16,32,51,0.06), 0 2px 4px rgba(16,32,51,0.04);
  --shadow-lg: 0 12px 40px rgba(16,32,51,0.08), 0 4px 12px rgba(16,32,51,0.04);
  --shadow-xl: 0 20px 60px rgba(16,32,51,0.1), 0 8px 20px rgba(16,32,51,0.05);
  --shadow-image: 0 16px 48px rgba(16,32,51,0.12);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1220px;
  --header-h: 88px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }

p { color: var(--text-body); line-height: 1.8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
}

.product-span{
  font-size: 18px !important;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.wrap--wide { max-width: 1400px; }
.wrap--narrow { max-width: 780px; }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,102,179,0.3);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(0,102,179,0.35);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,166,166,0.3);
}
.btn--teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(0,166,166,0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.btn--link {
  padding: 0;
  color: var(--blue);
  font-weight: 600;
  background: none;
  border: none;
  box-shadow: none;
}
.btn--link:hover { color: var(--blue-dark); transform: none; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header Redesign (Novartis-Inspired) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(16, 24, 32, 0.04);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(16, 24, 32, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  padding: 0 0 0 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo__icon { width: 44px; height: 44px; }
.logo__img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.logo__suffix {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Header Right Actions */
.header__actions {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 100%;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #101820;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.header__action-btn svg {
  width: 18px;
  height: 18px;
  color: #101820;
  transition: color 0.2s var(--ease);
}

.header__action-btn:hover {
  color: var(--blue);
}

.header__action-btn:hover svg {
  color: var(--blue);
}

/* Language Selector */
.header__lang-selector {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.header__lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  min-width: 170px;
  padding: 8px 0;
  z-index: 1010;
}

.header__lang-selector.open .header__lang-dropdown {
  display: block;
}

.lang-option {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #101820;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-option:hover, .lang-option.active {
  background: var(--bg-soft);
  color: var(--blue);
}

/* Rightmost Menu Button Block (Novartis Style) */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 0 32px;
  background: #F4F5F6;
  border: none;
  border-left: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #101820;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.header__menu-btn:hover,
.header__menu-btn.active {
  background: #E8EAEB;
  color: var(--blue);
}

.menu-btn__icon {
  display: flex;
  align-items: center;
}

.menu-btn__icon svg {
  width: 20px;
  height: 20px;
}

/* Search Bar Overlay */
.header__search-overlay {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 1005;
  align-items: center;
  padding: 0 40px;
}

.header__search-overlay.open {
  display: flex;
}

.search-overlay__input-box {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.search-overlay__input-box svg {
  width: 22px;
  height: 22px;
  color: var(--text-body);
}

.search-overlay__input-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: #101820;
  background: transparent;
}

.search-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-body);
  transition: color 0.2s var(--ease);
}

.search-overlay__close:hover {
  color: #101820;
}

.search-overlay__close svg {
  width: 22px;
  height: 22px;
}

/* Mega Menu Dropdown Panel */
.mega-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  height: calc(100vh - var(--header-h));
  max-height: 620px;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(16, 24, 32, 0.14);
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 999;
  overflow: hidden;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Left Column (~50%) */
.mega-menu__left {
  width: 50%;
  background: var(--white);
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}

.mega-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 24px;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: #101820;
  text-decoration: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.mega-menu__indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  border-radius: 4px;
  transition: transform 0.25s var(--ease);
}

.mega-menu__link:hover,
.mega-menu__link.active {
  color: var(--blue);
  transform: translateX(4px);
}

.mega-menu__link:hover .mega-menu__indicator,
.mega-menu__link.active .mega-menu__indicator {
  transform: translateY(-50%) scaleY(1);
}

.mega-menu__mobile-actions {
  display: none;
}

/* Right Column (~50%) */
.mega-menu__right {
  width: 50%;
  background: #F4F5F6;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu__feature-card {
  width: 100%;
  max-width: 500px;
}

.mega-menu__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(16, 24, 32, 0.08);
  background: #EAECEE;
  margin-bottom: 24px;
}

.mega-menu__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}

.mega-menu__feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #101820;
  letter-spacing: -0.01em;
}

/* ---------- Page Content ---------- */
#page-content { margin-top: var(--header-h); min-height: 100vh; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 100px;
  background: var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { max-width: 540px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: var(--blue-light);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 24px; height: 24px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
}

.hero__badge-dot svg { width: 14px; height: 14px; color: var(--white); }

.hero h1 { margin-bottom: 20px; color: var(--navy); }
.hero h1 em { font-style: normal; color: var(--blue); }

.hero__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero .btn-row { margin-bottom: 40px; }

/* Trust row */
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__trust-check {
  width: 22px; height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero__trust-check svg { width: 13px; height: 13px; color: var(--green); }

/* Hero Visual — Editorial Composition */
.hero__visual { position: relative; }

.hero__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-image);
  position: relative;
  z-index: 2;
}

.hero__img-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(0,102,179,0.1) 0%, rgba(0,166,166,0.06) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(20px);
}

.hero__float-img {
  position: absolute;
  bottom: -20px; left: -32px;
  width: 200px; height: 140px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 3;
}

.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__float-card svg { width: 22px; height: 22px; flex-shrink: 0; }

.hero__fc-1 { top: 20px; right: -16px; }
.hero__fc-2 { bottom: 80px; right: -24px; }

.hero__fc-1 svg { color: var(--blue); }
.hero__fc-2 svg { color: var(--teal); }

/* Subtle medical pattern overlay */
.hero__pattern {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ---------- BRAND STATEMENT ---------- */
.brand-statement {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.brand-statement::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,102,179,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.brand-statement h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
}

.brand-statement p {
  font-size: 1.1875rem;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-body);
  position: relative;
}

.brand-statement__line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 3px;
  margin: 0 auto 24px;
}

/* ---------- ABOUT PREVIEW (Editorial Overlap) ---------- */
.about-preview {
  padding: 100px 0;
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__visual { position: relative; }

.about-preview__img {
  width: 100%;
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-image);
}

.about-preview__overlap-card {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  max-width: 260px;
  z-index: 2;
}

.about-preview__overlap-card .stat {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}

.about-preview__overlap-card .stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
}

.about-preview__accent-line {
  position: absolute;
  top: 24px; left: -16px;
  width: 4px; height: 80px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  border-radius: 4px;
}

.about-preview__content h2 { margin-bottom: 20px; }
.about-preview__content p {
  font-size: 1.0625rem;
  margin-bottom: 28px;
  line-height: 1.85;
}

/* ---------- PRODUCT GRID (Creative Mixed Layout) ---------- */
.products-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.products-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-section .section-header p {
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 12px auto 0;
}

.products-creative-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.prod-card:hover::after { transform: scaleX(1); }

/* Creative grid sizing */
.prod-card--wide { grid-column: span 4; }
.prod-card--normal { grid-column: span 4; }
.prod-card--large { grid-column: span 6; }
.prod-card--medium { grid-column: span 6; }

.prod-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}

.prod-card__icon svg { width: 26px; height: 26px; }

.prod-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.prod-card__icon--teal { background: var(--teal-light); color: var(--teal); }
.prod-card__icon--green { background: var(--green-light); color: var(--green); }

.prod-card:hover .prod-card__icon--blue { background: var(--blue); color: var(--white); }
.prod-card:hover .prod-card__icon--teal { background: var(--teal); color: var(--white); }
.prod-card:hover .prod-card__icon--green { background: var(--green); color: var(--white); }

.prod-card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.prod-card p { font-size: 0.9375rem; line-height: 1.65; flex: 1; }

.prod-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

.prod-card__link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.prod-card:hover .prod-card__link svg { transform: translateX(4px); }

/* ---------- WHY CHOOSE US (Image + Features Editorial) ---------- */
.why-section {
  padding: 100px 0;
}

.why-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.why-section__visual { position: relative; }

.why-section__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-image);
}

.why-section__accent {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, rgba(0,102,179,0.08), rgba(0,166,166,0.08));
  border-radius: var(--radius-lg);
  z-index: -1;
}

.why-section__content h2 { margin-bottom: 12px; }
.why-section__content > p { margin-bottom: 36px; }

.why-features { display: flex; flex-direction: column; gap: 20px; }

.why-feat {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.why-feat:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-feat__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.why-feat__icon svg { width: 22px; height: 22px; }
.why-feat__icon--blue { background: var(--blue-light); color: var(--blue); }
.why-feat__icon--teal { background: var(--teal-light); color: var(--teal); }
.why-feat__icon--green { background: var(--green-light); color: var(--green); }

.why-feat h4 { margin-bottom: 4px; font-size: 1rem; }
.why-feat p { font-size: 0.875rem; line-height: 1.65; }

/* ---------- QUALITY (Image + Checklist Editorial) ---------- */
.quality-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.quality-section__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.quality-section__visual { position: relative; }

.quality-section__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-image);
}

.quality-section__badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  z-index: 2;
}

.quality-section__badge svg { width: 24px; height: 24px; color: var(--blue); }

.quality-section__content h2 { margin-bottom: 16px; }
.quality-section__content > p { font-size: 1.0625rem; margin-bottom: 32px; }

.quality-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.quality-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s var(--ease);
}

.quality-check-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateX(4px);
}

.quality-check-item svg {
  width: 20px; height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ---------- HEALTHCARE SOLUTIONS ---------- */
.solutions-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.solutions-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
}

.solutions-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-section .wrap { position: relative; z-index: 1; }

.solutions-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solutions-section__content h2 { margin-bottom: 16px; }
.solutions-section__content > p { font-size: 1.0625rem; margin-bottom: 28px; }

.solution-points { display: flex; flex-direction: column; gap: 16px; }

.solution-point {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease);
}

.solution-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.solution-point h4 { margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.solution-point h4 svg { width: 20px; height: 20px; color: var(--teal); }
.solution-point p { font-size: 0.875rem; }

.solutions-section__visual { position: relative; }

.solutions-section__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-image);
}

/* ---------- CTA SECTION (Premium) ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0B2A4A 0%, var(--blue-dark) 40%, #003562 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,166,166,0.12) 0%, transparent 60%);
}

.cta-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; margin-bottom: 28px; }

.cta-section__img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.product-hero p{
  max-width: 800px !important;
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.125rem; max-width: 560px; margin: 0 auto; }

/* ---------- Content Sections (Inner Pages) ---------- */
.content-section { padding: 72px 0; }
.content-section.bg-soft { background: var(--bg-soft); }
.content-section + .content-section { border-top: 1px solid var(--border-light); }

.content-block { max-width: 740px; margin: 0 auto; }
.content-block h2 { margin-bottom: 16px; font-size: 1.75rem; }
.content-block h3 { margin-bottom: 12px; color: var(--blue); }
.content-block p { margin-bottom: 20px; font-size: 1.0625rem; }
.content-block p:last-child { margin-bottom: 0; }

/* Vision/Mission Side-by-Side */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.vm-card h3 { display: flex; align-items: center; gap: 10px; }
.vm-card h3 svg { width: 24px; height: 24px; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card svg { width: 36px; height: 36px; margin: 0 auto 12px; }
.value-card:nth-child(1) svg, .value-card:nth-child(4) svg { color: var(--blue); }
.value-card:nth-child(2) svg, .value-card:nth-child(5) svg { color: var(--teal); }
.value-card:nth-child(3) svg, .value-card:nth-child(6) svg { color: var(--green); }
.value-card h4 { font-size: 0.9375rem; }

/* ---------- Large Pillars Grid (Quality Page) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.pillar-card {
  text-align: center;
  padding: 32px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(0, 102, 179, 0.12);
}

.pillar-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
  transition: all 0.35s var(--ease);
}

.pillar-card:hover .pillar-card__icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

.pillar-card__icon svg {
  width: 36px;
  height: 36px;
}

.pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Solutions Page Cards */
.solutions-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sol-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.sol-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.sol-card h3 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.sol-card h3 svg { width: 22px; height: 22px; color: var(--teal); }
.sol-card p { font-size: 0.9375rem; }

/* Careers Benefits */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.career-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.career-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.career-card svg { width: 40px; height: 40px; margin: 0 auto 16px; }
.career-card:nth-child(1) svg { color: var(--blue); }
.career-card:nth-child(2) svg { color: var(--teal); }
.career-card:nth-child(3) svg { color: var(--green); }
.career-card h4 { margin-bottom: 6px; }
.career-card p { font-size: 0.875rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 { margin-bottom: 28px; }

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text-primary);
  transition: all 0.2s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,102,179,0.08);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.contact-form-card .btn { width: 100%; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.contact-info-card h4 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
}

.contact-info-card h4 svg { width: 18px; height: 18px; color: var(--blue); }
.contact-info-card p { font-size: 0.875rem; }
.contact-info-card a { color: var(--blue); font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }

.map-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-soft), var(--blue-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  gap: 8px;
}

/* Disclaimer */
.disclaimer {
  padding: 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 40px;
}

.disclaimer p { font-size: 0.8125rem; color: var(--text-muted); }
.disclaimer strong { color: var(--text-body); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0A1929;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer__brand .logo { margin-bottom: 20px; }
.footer__brand .logo__img {
  height: 52px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.footer__brand > p { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul li { margin-bottom: 8px; }

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s var(--ease);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.footer__contact-item svg {
  width: 16px; height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer__copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.5s; }

.page-enter { opacity: 0; animation: pageEnter 0.5s var(--ease-out) forwards; }

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Zigzag Products Section ---------- */
.zigzag-products {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.zigzag-item:nth-child(even) .zigzag-item__visual {
  order: 2;
}

.zigzag-item:nth-child(even) .zigzag-item__content {
  order: 1;
}

.zigzag-item__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.zigzag-item__visual:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.zigzag-item__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.zigzag-item__visual:hover .zigzag-item__img {
  transform: scale(1.04);
}

.zigzag-item__tag-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(16, 32, 51, 0.78);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.zigzag-item__tag-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
}

.zigzag-item__num {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.zigzag-item__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.zigzag-item__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.zigzag-item__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 32px;
}

.zigzag-item__hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.zigzag-item__hl-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zigzag-item__hl-icon svg {
  width: 14px;
  height: 14px;
}

/* Responsive for Zigzag */
@media (max-width: 991px) {
  .zigzag-products { gap: 64px; }
  .zigzag-item { grid-template-columns: 1fr; gap: 32px; }
  .zigzag-item:nth-child(even) .zigzag-item__visual { order: initial; }
  .zigzag-item:nth-child(even) .zigzag-item__content { order: initial; }
  .zigzag-item__img { height: 280px; }
}

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

/* ---------- Founders Section ---------- */
.founders-section {
  padding: 80px 0;
  background: var(--white);
}

.founders-grid {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.founder-card {
  max-width: 640px;
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.founder-card__img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  overflow: hidden;
}

.founder-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.founder-card:hover .founder-card__img {
  transform: scale(1.04);
}

.founder-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.founder-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.founder-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.founder-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.founder-card__linkedin:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 179, 0.3);
}

.founder-card__linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.founder-card__motto {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--blue-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.founder-card__motto-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.founder-card__motto-label svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.founder-card__motto-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.founder-card__journey-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-card__journey-title svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.founder-card__bio {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- Philosophy Wide Rectangle Paragraph Box ---------- */
.philosophy-text-box {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 48px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.philosophy-text-box:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.philosophy-text-box p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-primary);
  text-align: left;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .header__inner {
    padding: 0 0 0 20px;
  }
  
  .header__action-btn span {
    display: none;
  }

  .header__action-btn {
    padding: 0 10px;
  }

  .header__lang-btn span {
    display: none;
  }

  .header__menu-btn {
    padding: 0 20px;
  }

  .mega-menu {
    max-height: none;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .mega-menu__inner {
    flex-direction: column;
    height: auto;
  }

  .mega-menu__left {
    width: 100%;
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .mega-menu__right {
    width: 100%;
    padding: 32px 24px;
  }

  .mega-menu__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .mobile-lang-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #101820;
  }

  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__desc { margin: 0 auto 32px; }
  .hero .btn-row { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__float-img { left: -16px; bottom: -12px; width: 160px; height: 110px; }
  .hero__fc-1 { right: -8px; }
  .hero__fc-2 { right: -12px; }

  .about-preview__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-preview__visual { order: -1; max-width: 560px; margin: 0 auto; }

  .products-creative-grid { grid-template-columns: repeat(6, 1fr); }
  .prod-card--wide, .prod-card--normal { grid-column: span 3; }
  .prod-card--large, .prod-card--medium { grid-column: span 3; }

  .why-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .why-section__visual { max-width: 480px; margin: 0 auto; order: -1; }

  .quality-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .quality-section__visual { max-width: 520px; margin: 0 auto; }

  .solutions-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .solutions-section__visual { max-width: 520px; margin: 0 auto; order: -1; }

  .cta-section__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .cta-section .btn-row { justify-content: center; }
  .cta-section__img { max-width: 520px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  .hero { padding: 48px 0 64px; }
  .hero__float-card { display: none; }
  .hero__float-img { display: none; }

  .brand-statement { padding: 56px 0; }
  .about-preview { padding: 64px 0; }
  .products-section { padding: 64px 0; }
  .why-section { padding: 64px 0; }
  .quality-section { padding: 64px 0; }
  .solutions-section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }

  .products-creative-grid { grid-template-columns: 1fr; }
  .prod-card--wide, .prod-card--normal, .prod-card--large, .prod-card--medium { grid-column: span 1; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: 1fr; }
  .solutions-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__disclaimer { max-width: 100%; }

  .about-preview__overlap-card { position: static; max-width: 100%; margin-top: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }

  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .btn { padding: 12px 22px; font-size: 0.875rem; }

  .values-grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; align-items: center; }
}
