/* ============================================================
   SECLIS PHARMACEUTICALS — MAIN STYLESHEET
   Warm Pearl Design System
   File: assets/main.css
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --blue:         #007AC2;
  --blue-dark:    #005a91;
  --blue-light:   #e8f4fc;
  --blue-mid:     #cce6f7;
  --pearl:        #f5f0eb;
  --pearl-dark:   #ede7df;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-light:   #5a6e7e;
  --border:       #e8e2da;
  --font:         'DM Sans', system-ui, sans-serif;
  --nav-h:        72px;
  --max:          1240px;
  --radius:       4px;
  --radius-lg:    10px;
}

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--pearl);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.sc-con {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.sc-topbar {
  background: var(--blue);
  height: 36px;
  display: flex;
  align-items: center;
}
.sc-topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
.sc-topbar a {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  transition: color 0.2s;
}
.sc-topbar a:hover { color: #fff; }
.sc-topbar-div {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.sc-nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 9999;
  transition: box-shadow 0.3s;
}
.sc-nav.sc-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.sc-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.sc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 48px;
  flex-shrink: 0;
  text-decoration: none;
}
.sc-logo img {
  height: 56px;
  width: auto;
}
.sc-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
}

/* Desktop nav links */
.sc-navmenu {
  display: flex;
  align-items: center;
  flex: 1;
  height: var(--nav-h);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-navitem {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.sc-navitem > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 0 16px;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.sc-navitem > a:hover,
.sc-navitem.sc-active > a,
.sc-navitem:hover > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.sc-nav-arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  display: inline-block;
  opacity: 0.5;
}
.sc-navitem:hover > a .sc-nav-arrow {
  transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown */
.sc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1000;
}
.sc-navitem:hover .sc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sc-dropdown a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
  text-decoration: none;
}
.sc-dropdown a:last-child { border-bottom: none; }
.sc-dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
  padding-left: 28px;
}

/* Parent nav items with submenus are not clickable */
.sc-navitem > a[href="#"] {
  cursor: default;
}

/* Multi-column dropdown for Therapies (large lists — 8+ items auto-detected) */
.sc-navitem .sc-dropdown:has(> a:nth-child(8)) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 780px;
  min-width: 780px;
  left: 0;
  right: auto;
  transform: translateY(-6px);
}
.sc-navitem:hover .sc-dropdown:has(> a:nth-child(8)) {
  transform: translateY(0);
}
.sc-navitem .sc-dropdown:has(> a:nth-child(8)) a {
  border-bottom: 1px solid var(--border);
  border-right: none;
}

/* Nav right CTA */
.sc-nav-right { margin-left: auto; }
.sc-nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  padding: 9px 22px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.sc-nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

/* Hamburger */
.sc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.sc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.sc-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sc-hamburger.open span:nth-child(2) { opacity: 0; }
.sc-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.sc-mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 99998;
}
.sc-mob-overlay.open { display: block; }
.sc-mob-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding-top: 72px;
}
.sc-mob-nav.open { right: 0; }
.sc-mob-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}
.sc-mob-item { border-bottom: 1px solid var(--border); }
.sc-mob-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 15px 24px;
  text-decoration: none;
  transition: color 0.2s;
}
.sc-mob-item > a:hover { color: var(--blue); }
.sc-mob-arr {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.sc-mob-item.sc-mob-open > a .sc-mob-arr { transform: rotate(-135deg); }
.sc-mob-sub {
  display: none;
  background: var(--pearl);
  padding: 6px 0;
}
.sc-mob-item.sc-mob-open .sc-mob-sub { display: block; }
.sc-mob-sub a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  padding: 10px 24px 10px 38px;
  text-decoration: none;
  transition: color 0.2s;
}
.sc-mob-sub a:hover { color: var(--blue); }
.sc-mob-cta {
  margin: 20px 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: block;
  text-decoration: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sc-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.sc-btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  color: var(--white);
}
.sc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  text-decoration: none;
}
.sc-btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.sc-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #1a7a40;
  border: 2px solid #25D366;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  text-decoration: none;
}
.sc-btn-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  transform: translateY(-1px);
}
.sc-btn-wa svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.sc-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  text-decoration: none;
}
.sc-btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  color: var(--blue);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.sc-section { padding: 96px 0; }
.sc-section-sm { padding: 64px 0; }
.sc-bg-white  { background: var(--white); }
.sc-bg-pearl  { background: var(--pearl); }
.sc-bg-blue   { background: var(--blue); }
.sc-bg-dark   { background: #111820; }

.sc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.sc-eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.sc-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.sc-h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.sc-h1 em { color: var(--blue); font-style: normal; }
.sc-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sc-h2 em { color: var(--blue); font-style: normal; }
.sc-h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sc-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 520px;
}
.sc-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}
.sc-center { text-align: center; }
.sc-center .sc-eyebrow { justify-content: center; }
.sc-center .sc-lead { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.sc-hero {
  background-color: var(--pearl);
  background-image: url('https://seclis.com/wp-content/uploads/2026/03/Copy-of-Product-Posters-Instagram-Post-45-1.png');
  background-size: 65%;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: calc(100vh - var(--nav-h) - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245,240,235,1)   0%,
    rgba(245,240,235,0.9) 25%,
    rgba(245,240,235,0.4) 45%,
    rgba(245,240,235,0)   55%
  );
  pointer-events: none;
  z-index: 1;
}
.sc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(245,240,235,1) 0%, rgba(245,240,235,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.sc-hero-left {
  padding: 96px 56px 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.sc-hero-right {
  background: var(--pearl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Left gradient — blends image into pearl background seamlessly */
.sc-hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, var(--pearl) 0%, rgba(245,240,235,0) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Bottom gradient — blends into next section */
.sc-hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--pearl) 0%, rgba(245,240,235,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.sc-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0; left: 0;
}
.sc-hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}
.sc-hero-ph-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-hero-ph-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}
.sc-hero-ph-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.sc-hero-ph-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.sc-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sc-hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  row-gap: 12px;
}
.sc-hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}
.sc-hero-badge:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.sc-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.sc-hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

/* ============================================================
   WHY SECLIS
   ============================================================ */
.sc-why-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.sc-why-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  transition: gap 0.2s;
  text-decoration: none;
}
.sc-why-link:hover { gap: 14px; }
.sc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sc-why-card {
  background: var(--white);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.sc-why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.sc-why-card:hover { background: var(--blue-light); }
.sc-why-card:hover::after { transform: scaleX(1); }
.sc-why-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.6;
}
.sc-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.sc-why-card:hover .sc-why-icon { background: rgba(0,122,194,0.2); }
.sc-why-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sc-why-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sc-why-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sc-why-p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.sc-stats-bar { background: var(--blue); }
.sc-stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sc-stat {
  padding: 52px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.sc-stat:last-child { border-right: none; }
.sc-stat-n {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.sc-stat-l {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.sc-about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 88px;
  align-items: center;
}
.sc-about-p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.sc-about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  margin-top: 10px;
  transition: gap 0.2s;
  text-decoration: none;
}
.sc-about-link:hover { gap: 14px; }
.sc-about-cards { display: flex; flex-direction: column; gap: 2px; }
.sc-about-card {
  background: var(--pearl);
  padding: 22px 28px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.sc-about-card:hover {
  border-left-color: var(--blue);
  background: var(--blue-light);
}
.sc-about-card-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.sc-about-card-txt {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   SERVICES
   ============================================================ */
.sc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  justify-items: center;
}
/* Center when only 2 cards exist — auto-fit collapses correctly */
.sc-services-grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
}
.sc-svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.sc-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height 0.3s;
}
.sc-svc-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,122,194,0.1);
}
.sc-svc-card:hover::before { height: 100%; }
.sc-svc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.sc-svc-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.sc-svc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sc-svc-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sc-svc-p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.sc-cta {
  background: var(--blue);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.sc-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.sc-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sc-cta-h {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sc-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
  max-width: 480px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.sc-page-hero {
  background: var(--pearl);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sc-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(0,122,194,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.sc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.sc-breadcrumb a {
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
  text-decoration: none;
}
.sc-breadcrumb a:hover { color: var(--blue); }
.sc-breadcrumb span { font-size: 13px; color: var(--text-light); }
.sc-breadcrumb-cur { font-size: 13px; color: var(--blue); font-weight: 600; }
.sc-page-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.sc-page-title em { color: var(--blue); font-style: normal; }
.sc-page-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRODUCTS ARCHIVE (listing page)
   ============================================================ */
.sc-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.sc-search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  max-width: 400px;
}
.sc-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}
.sc-search-box input::placeholder { color: #aab4bc; }
.sc-search-box button {
  background: var(--blue);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.sc-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sc-filter-tab {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  text-decoration: none;
}
.sc-filter-tab:hover,
.sc-filter-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.sc-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,122,194,0.1);
  border-color: var(--blue-mid);
}
.sc-product-card-img {
  aspect-ratio: 4/3;
  background: var(--pearl);
  overflow: hidden;
  position: relative;
}
.sc-product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sc-product-card:hover .sc-product-card-img img { transform: scale(1.04); }
.sc-product-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pearl);
}
.sc-product-card-img-placeholder svg {
  width: 48px; height: 48px;
  stroke: var(--blue-mid); fill: none; stroke-width: 1.5;
}
.sc-product-card-body { padding: 24px; }
.sc-product-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sc-product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sc-product-card-comp {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}
.sc-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sc-product-card-form {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--pearl);
  padding: 4px 10px;
  border-radius: 20px;
}
.sc-product-card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.sc-product-card:hover .sc-product-card-arrow { background: var(--blue); }
.sc-product-card-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--blue); fill: none; stroke-width: 2;
  transition: stroke 0.2s;
}
.sc-product-card:hover .sc-product-card-arrow svg { stroke: #fff; }
.sc-no-products {
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
  font-size: 16px;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.sc-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}
.sc-product-img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sc-product-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pearl);
  aspect-ratio: 4/3;
}
.sc-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sc-product-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px;
}
.sc-product-img-ph svg {
  width: 64px; height: 64px;
  stroke: var(--blue-mid); fill: none; stroke-width: 1.5;
}
.sc-product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-decoration: none;
}
.sc-product-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sc-product-composition {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.sc-product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.sc-product-meta-item {
  background: var(--pearl);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
}
.sc-product-meta-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.sc-product-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.sc-product-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sc-product-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sc-product-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sc-product-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.sc-product-content p:last-child { margin-bottom: 0; }
.sc-product-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}
.sc-product-storage {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
}
.sc-product-storage svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.sc-related-products {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.sc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.sc-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.sc-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border-left: 3px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sc-contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,122,194,0.08);
}
.sc-contact-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-contact-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 2;
}
.sc-contact-card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sc-contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.sc-contact-card-note { font-size: 13px; color: var(--text-light); }
.sc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  margin-bottom: 12px;
}
.sc-wa-btn:hover { background: #1da851; transform: translateY(-2px); color: var(--white); }
.sc-wa-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.sc-hours {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 24px;
}
.sc-hours-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.sc-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sc-hours-row:last-child { border-bottom: none; }
.sc-hours-day { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.sc-hours-time { font-size: 13px; color: var(--white); font-weight: 600; }
.sc-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.sc-form-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sc-form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
/* WPForms overrides */
.sc-form-wrap .wpforms-container { margin: 0 !important; }
.sc-form-wrap .wpforms-field input,
.sc-form-wrap .wpforms-field select,
.sc-form-wrap .wpforms-field textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font) !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  color: var(--text) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.sc-form-wrap .wpforms-field input:focus,
.sc-form-wrap .wpforms-field select:focus,
.sc-form-wrap .wpforms-field textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(0,122,194,0.1) !important;
  outline: none !important;
}
.sc-form-wrap .wpforms-field label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 6px !important;
}
.sc-form-wrap .wpforms-submit {
  background: var(--blue) !important;
  border-radius: var(--radius) !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  transition: background 0.2s !important;
  width: 100% !important;
}
.sc-form-wrap .wpforms-submit:hover { background: var(--blue-dark) !important; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.sc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sc-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pearl);
  cursor: pointer;
  position: relative;
}
.sc-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sc-gallery-item:hover img { transform: scale(1.05); }
.sc-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,122,194,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.sc-gallery-item:hover .sc-gallery-item-overlay { background: rgba(0,122,194,0.15); }

/* ============================================================
   BLOG
   ============================================================ */
.sc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sc-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sc-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.sc-blog-card-img {
  aspect-ratio: 16/9;
  background: var(--pearl);
  overflow: hidden;
}
.sc-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-blog-card-body { padding: 24px; }
.sc-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sc-blog-card-date { font-size: 12px; color: var(--text-light); }
.sc-blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sc-blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.sc-blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.sc-blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sc-footer {
  background: #111820;
  padding: 80px 0 0;
  position: relative;
}
.sc-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,122,194,0.08) 0%, transparent 100%);
  pointer-events: none;
}
.sc-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sc-ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.sc-ft-logo img { height: 76px; width: auto; }
.sc-ft-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.sc-ft-about {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  max-width: 290px;
  margin-bottom: 24px;
}
.sc-ft-social { display: flex; gap: 10px; }
.sc-ft-soc {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.sc-ft-soc:hover { border-color: var(--blue); background: var(--blue); }
.sc-ft-soc svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.55); transition: fill 0.2s; }
.sc-ft-soc:hover svg { fill: var(--white); }
.sc-ft-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.sc-ft-links { display: flex; flex-direction: column; gap: 11px; }
.sc-ft-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.sc-ft-links a:hover { color: var(--white); }
.sc-ft-contact-item {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.sc-ft-contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-ft-contact-icon svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 2;
}
.sc-ft-contact-txt { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.sc-ft-contact-txt strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.sc-footer-bottom {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sc-ft-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.sc-ft-bot-links { display: flex; gap: 24px; }
.sc-ft-bot-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  text-decoration: none;
}
.sc-ft-bot-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sc-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sc-anim.sc-in { opacity: 1; transform: translateY(0); }
.sc-d1 { transition-delay: 0.08s; }
.sc-d2 { transition-delay: 0.16s; }
.sc-d3 { transition-delay: 0.24s; }
.sc-d4 { transition-delay: 0.32s; }
.sc-d5 { transition-delay: 0.40s; }
.sc-d6 { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sc-con { padding: 0 32px; }
  .sc-topbar-inner { padding: 0 32px; }
  .sc-nav-inner { padding: 0 32px; }
  .sc-stats-grid { padding: 0 32px; }
  .sc-hero { grid-template-columns: 1fr; min-height: auto; background-size: 75%; background-position: center right; }
  .sc-hero-left { padding: 72px 32px 56px; max-width: 100%; margin-left: 0; }
  .sc-hero-right { min-height: 360px; }
  .sc-hero::after { display: none; }
  .sc-why-intro { grid-template-columns: 1fr; gap: 24px; }
  .sc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .sc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-product-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-product-img-wrap { position: static; }
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sc-navmenu { display: none; }
  .sc-nav-right { display: none; }
  .sc-hamburger { display: flex; }
  .sc-nav-inner { padding: 0 24px; }
  .sc-topbar { display: none; }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .sc-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 32px 20px; }
  .sc-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .sc-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .sc-con { padding: 0 18px; }
  .sc-section { padding: 64px 0; }
  .sc-hero-left { padding: 56px 18px 48px; }
  .sc-hero-btns { flex-direction: column; }
  .sc-btn-blue, .sc-btn-outline, .sc-btn-wa { justify-content: center; text-align: center; }
  .sc-hero-badges { flex-wrap: wrap; }
  .sc-hero-badge { border-right: none; padding-right: 0; margin-right: 0; }
  /* Hero — map sits below text on mobile */
  .sc-hero {
    background-size: 100%;
    background-position: bottom center;
    padding-bottom: 220px;
    min-height: auto;
    align-items: flex-start;
  }
  .sc-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(245,240,235,1)   0%,
      rgba(245,240,235,0.97) 50%,
      rgba(245,240,235,0.3)  80%,
      rgba(245,240,235,0)    100%
    );
  }
  /* Manufacturing policy cards — stack vertically */
  #manufacturing .sc-anim[style*="grid-template-columns:1fr 1fr"],
  #manufacturing div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Manufacturer logos — 2 columns on mobile */
  #manufacturing div[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sc-why-grid { grid-template-columns: 1fr; }
  .sc-why-card { padding: 32px 24px; }
  .sc-services-grid { grid-template-columns: 1fr; }
  .sc-products-grid { grid-template-columns: 1fr; }
  .sc-blog-grid { grid-template-columns: 1fr; }
  .sc-gallery-grid { grid-template-columns: 1fr 1fr; }
  .sc-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .sc-footer-bottom { flex-direction: column; text-align: center; }
  .sc-ft-bot-links { justify-content: center; flex-wrap: wrap; }
  .sc-cta-inner { flex-direction: column; text-align: center; }
  .sc-btn-white { width: 100%; justify-content: center; }
  .sc-form-wrap { padding: 24px 18px; }
  .sc-stats-grid { grid-template-columns: 1fr 1fr; }
  .sc-products-toolbar { flex-direction: column; align-items: stretch; }
  .sc-search-box { max-width: 100%; }
}
/* ============================================================
   THERAPY AREA ARCHIVE — Product Grid
   ============================================================ */

/* Header */
.sc-therapy-archive { background: var(--pearl); }

.sc-therapy-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 36px;
}
.sc-therapy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sc-therapy-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.sc-therapy-breadcrumb a:hover { color: var(--blue-dark); }
.sc-therapy-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 760px;
}
.sc-therapy-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.sc-therapy-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}
.sc-therapy-count span:first-child {
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 2px 10px;
  border-radius: 100px;
}

/* Product grid — 4 columns */
.sc-therapy-products { padding: 40px 0 56px; }
.sc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card */
.sc-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,122,194,0.12);
  border-color: var(--blue-mid);
}

/* Card image */
.sc-product-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dceef9 0%, #eaf4fb 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sc-product-card:hover .sc-product-card-img img { transform: scale(1.04); }
.sc-product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dosage form badge */
.sc-product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card body */
.sc-product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.sc-product-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.sc-product-card-comp {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card footer row */
.sc-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  gap: 8px;
}
.sc-product-card-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-product-card-pack {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
}
.sc-product-card-mrp {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.sc-product-card-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sc-product-card:hover .sc-product-card-cta {
  background: var(--blue);
  color: #fff;
}

/* Pagination */
.sc-therapy-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sc-therapy-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.sc-therapy-pagination .page-numbers.current,
.sc-therapy-pagination .page-numbers:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.sc-therapy-empty {
  color: var(--text-light);
  font-size: 16px;
  text-align: center;
  padding: 64px 0;
}

/* CTA Banner */
.sc-therapy-cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.sc-therapy-cta-banner::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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.sc-therapy-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.sc-therapy-cta-text { flex: 1; min-width: 280px; }
.sc-therapy-cta-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sc-therapy-cta-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.sc-therapy-cta-title em {
  font-style: normal;
  color: rgba(255,255,255,0.75);
}
.sc-therapy-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}
.sc-therapy-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.sc-therapy-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.sc-therapy-cta-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.sc-therapy-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.sc-therapy-cta-contact:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.sc-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}
.sc-product-img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sc-product-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pearl);
  aspect-ratio: 4/3;
}
.sc-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sc-product-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px;
}
.sc-product-img-ph svg {
  width: 64px; height: 64px;
  stroke: var(--blue-mid); fill: none; stroke-width: 1.5;
}
.sc-product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-decoration: none;
}
.sc-product-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sc-product-composition {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.sc-product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.sc-product-meta-item {
  background: var(--pearl);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
}
.sc-product-meta-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.sc-product-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.sc-product-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sc-product-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sc-product-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sc-product-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.sc-product-content p:last-child { margin-bottom: 0; }
.sc-product-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}
.sc-product-storage {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
}
.sc-product-storage svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.sc-related-products {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.sc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.sc-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.sc-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border-left: 3px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sc-contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,122,194,0.08);
}
.sc-contact-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-contact-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 2;
}
.sc-contact-card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sc-contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.sc-contact-card-note { font-size: 13px; color: var(--text-light); }
.sc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  margin-bottom: 12px;
}
.sc-wa-btn:hover { background: #1da851; transform: translateY(-2px); color: var(--white); }
.sc-wa-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.sc-hours {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 24px;
}
.sc-hours-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.sc-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sc-hours-row:last-child { border-bottom: none; }
.sc-hours-day { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.sc-hours-time { font-size: 13px; color: var(--white); font-weight: 600; }
.sc-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.sc-form-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sc-form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
/* WPForms overrides */
.sc-form-wrap .wpforms-container { margin: 0 !important; }
.sc-form-wrap .wpforms-field input,
.sc-form-wrap .wpforms-field select,
.sc-form-wrap .wpforms-field textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font) !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  color: var(--text) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.sc-form-wrap .wpforms-field input:focus,
.sc-form-wrap .wpforms-field select:focus,
.sc-form-wrap .wpforms-field textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(0,122,194,0.1) !important;
  outline: none !important;
}
.sc-form-wrap .wpforms-field label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 6px !important;
}
.sc-form-wrap .wpforms-submit {
  background: var(--blue) !important;
  border-radius: var(--radius) !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  transition: background 0.2s !important;
  width: 100% !important;
}
.sc-form-wrap .wpforms-submit:hover { background: var(--blue-dark) !important; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.sc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sc-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pearl);
  cursor: pointer;
  position: relative;
}
.sc-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sc-gallery-item:hover img { transform: scale(1.05); }
.sc-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,122,194,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.sc-gallery-item:hover .sc-gallery-item-overlay { background: rgba(0,122,194,0.15); }

/* ============================================================
   BLOG
   ============================================================ */
.sc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sc-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sc-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.sc-blog-card-img {
  aspect-ratio: 16/9;
  background: var(--pearl);
  overflow: hidden;
}
.sc-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-blog-card-body { padding: 24px; }
.sc-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sc-blog-card-date { font-size: 12px; color: var(--text-light); }
.sc-blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sc-blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.sc-blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.sc-blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sc-footer {
  background: #111820;
  padding: 80px 0 0;
  position: relative;
}
.sc-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,122,194,0.08) 0%, transparent 100%);
  pointer-events: none;
}
.sc-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sc-ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.sc-ft-logo img { height: 76px; width: auto; }
.sc-ft-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}
.sc-ft-about {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  max-width: 290px;
  margin-bottom: 24px;
}
.sc-ft-social { display: flex; gap: 10px; }
.sc-ft-soc {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.sc-ft-soc:hover { border-color: var(--blue); background: var(--blue); }
.sc-ft-soc svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.55); transition: fill 0.2s; }
.sc-ft-soc:hover svg { fill: var(--white); }
.sc-ft-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.sc-ft-links { display: flex; flex-direction: column; gap: 11px; }
.sc-ft-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.sc-ft-links a:hover { color: var(--white); }
.sc-ft-contact-item {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.sc-ft-contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-ft-contact-icon svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 2;
}
.sc-ft-contact-txt { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.sc-ft-contact-txt strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.sc-footer-bottom {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sc-ft-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.sc-ft-bot-links { display: flex; gap: 24px; }
.sc-ft-bot-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  text-decoration: none;
}
.sc-ft-bot-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sc-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sc-anim.sc-in { opacity: 1; transform: translateY(0); }
.sc-d1 { transition-delay: 0.08s; }
.sc-d2 { transition-delay: 0.16s; }
.sc-d3 { transition-delay: 0.24s; }
.sc-d4 { transition-delay: 0.32s; }
.sc-d5 { transition-delay: 0.40s; }
.sc-d6 { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sc-con { padding: 0 32px; }
  .sc-topbar-inner { padding: 0 32px; }
  .sc-nav-inner { padding: 0 32px; }
  .sc-stats-grid { padding: 0 32px; }
  .sc-hero { grid-template-columns: 1fr; min-height: auto; background-size: 75%; background-position: center right; }
  .sc-hero-left { padding: 72px 32px 56px; max-width: 100%; margin-left: 0; }
  .sc-hero-right { min-height: 360px; }
  .sc-hero::after { display: none; }
  .sc-why-intro { grid-template-columns: 1fr; gap: 24px; }
  .sc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .sc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-product-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-product-img-wrap { position: static; }
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sc-navmenu { display: none; }
  .sc-nav-right { display: none; }
  .sc-hamburger { display: flex; }
  .sc-nav-inner { padding: 0 24px; }
  .sc-topbar { display: none; }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .sc-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 32px 20px; }
  .sc-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .sc-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .sc-con { padding: 0 18px; }
  .sc-section { padding: 64px 0; }
  .sc-hero-left { padding: 56px 18px 48px; }
  .sc-hero-btns { flex-direction: column; }
  .sc-btn-blue, .sc-btn-outline, .sc-btn-wa { justify-content: center; text-align: center; }
  .sc-hero-badges { flex-wrap: wrap; }
  .sc-hero-badge { border-right: none; padding-right: 0; margin-right: 0; }
  /* Hero — map sits below text on mobile */
  .sc-hero {
    background-size: 100%;
    background-position: bottom center;
    padding-bottom: 220px;
    min-height: auto;
    align-items: flex-start;
  }
  .sc-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(245,240,235,1)   0%,
      rgba(245,240,235,0.97) 50%,
      rgba(245,240,235,0.3)  80%,
      rgba(245,240,235,0)    100%
    );
  }
  /* Manufacturing policy cards — stack vertically */
  #manufacturing .sc-anim[style*="grid-template-columns:1fr 1fr"],
  #manufacturing div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Manufacturer logos — 2 columns on mobile */
  #manufacturing div[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sc-why-grid { grid-template-columns: 1fr; }
  .sc-why-card { padding: 32px 24px; }
  .sc-services-grid { grid-template-columns: 1fr; }
  .sc-products-grid { grid-template-columns: 1fr; }
  .sc-blog-grid { grid-template-columns: 1fr; }
  .sc-gallery-grid { grid-template-columns: 1fr 1fr; }
  .sc-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .sc-footer-bottom { flex-direction: column; text-align: center; }
  .sc-ft-bot-links { justify-content: center; flex-wrap: wrap; }
  .sc-cta-inner { flex-direction: column; text-align: center; }
  .sc-btn-white { width: 100%; justify-content: center; }
  .sc-form-wrap { padding: 24px 18px; }
  .sc-stats-grid { grid-template-columns: 1fr 1fr; }
  .sc-products-toolbar { flex-direction: column; align-items: stretch; }
  .sc-search-box { max-width: 100%; }
}
/* ============================================================
   THERAPY AREA ARCHIVE — Product Grid
   ============================================================ */
.sc-therapy-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.sc-therapy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.sc-therapy-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.sc-therapy-breadcrumb a:hover { text-decoration: underline; }
.sc-therapy-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sc-therapy-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 10px;
}
.sc-therapy-count {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.sc-therapy-products { padding: 48px 0 64px; }

/* Product card grid */
.sc-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.sc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}
.sc-product-card-img {
  aspect-ratio: 4/3;
  background: var(--pearl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-product-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.sc-product-card-placeholder svg { width: 80px; height: 80px; }
.sc-product-card-form {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.sc-product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.sc-product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.sc-product-card-comp {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.sc-product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.sc-product-card-pack { font-size: 12px; color: var(--text-light); }
.sc-product-card-mrp {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.sc-product-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 8px;
}
.sc-therapy-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sc-therapy-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.sc-therapy-pagination .page-numbers.current,
.sc-therapy-pagination .page-numbers:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.sc-therapy-pagination .page-numbers.prev,
.sc-therapy-pagination .page-numbers.next { width: auto; padding: 0 16px; }
.sc-therapy-empty { color: var(--text-light); font-size: 16px; text-align: center; padding: 48px 0; }
.sc-therapy-cta {
  background: var(--blue);
  padding: 56px 0;
}
.sc-therapy-cta h3 { color: #fff; }
.sc-therapy-cta p { color: rgba(255,255,255,0.8); }

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.sc-product-page { background: var(--pearl); }

/* Breadcrumb */
.sc-product-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.sc-product-breadcrumb .sc-con {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.sc-product-breadcrumb a { color: var(--blue); text-decoration: none; }
.sc-product-breadcrumb a:hover { text-decoration: underline; }

/* Hero */
.sc-product-hero {
  background: var(--white);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}
.sc-product-hero-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.sc-product-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pearl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-product-img { width: 100%; height: 100%; object-fit: cover; }
.sc-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-product-img-placeholder svg { width: 120px; height: 120px; }
.sc-product-category-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 14px;
}
.sc-product-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}
.sc-product-composition {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.sc-product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.sc-product-spec {
  background: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sc-product-spec--full {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
}
.sc-spec-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.sc-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sc-product-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sc-product-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sc-product-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
.sc-product-section { padding: 56px 0; }
.sc-product-section:nth-child(even) { background: var(--white); }
.sc-product-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

/* Quick facts table */
.sc-facts-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  max-width: 640px;
}
.sc-fact-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.sc-fact-row:last-child { border-bottom: none; }
.sc-fact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  min-width: 180px;
  flex-shrink: 0;
}
.sc-fact-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* Key benefits */
.sc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sc-benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sc-benefit-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-mid);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.sc-benefit-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sc-benefit-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Long-form content sections */
.sc-product-content-wrap { max-width: 820px; }
.sc-product-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.sc-product-content p:last-child { margin-bottom: 0; }
.sc-product-content--why {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* CTA banner */
.sc-product-cta-banner {
  background: var(--blue);
  padding: 56px 0;
}
.sc-product-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sc-product-cta-inner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sc-product-cta-inner p { color: rgba(255,255,255,0.8); font-size: 15px; }
.sc-product-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.sc-btn-outline--white {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.sc-btn-outline--white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* Related products */
.sc-product-related-section { background: var(--pearl); }
.sc-product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sc-product-related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sc-product-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.sc-related-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sc-related-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--pearl);
}
.sc-related-card-body { padding: 14px; }
.sc-related-card-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sc-related-card-body p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 6px;
}
.sc-related-form {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ============================================================
   RESPONSIVE — Products
   ============================================================ */
@media (max-width: 1100px) {
  .sc-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .sc-product-hero-grid { grid-template-columns: 280px 1fr; gap: 36px; }
  .sc-product-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-product-hero-grid { grid-template-columns: 1fr; }
  .sc-product-image-wrap { max-width: 400px; }
  .sc-benefits-grid { grid-template-columns: 1fr; }
  .sc-therapy-cta-inner { flex-direction: column; }
  .sc-therapy-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .sc-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sc-product-specs { grid-template-columns: repeat(2, 1fr); }
  .sc-product-title { font-size: 24px; }
  .sc-therapy-title { font-size: 22px; }
  .sc-therapy-cta-title { font-size: 20px; }
  .sc-product-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-product-cta-inner { flex-direction: column; text-align: center; }
  .sc-product-cta-btns { justify-content: center; }
  .sc-therapy-cta-actions { flex-direction: column; }
  .sc-therapy-cta-wa, .sc-therapy-cta-contact { justify-content: center; }
}