  :root {
    --bg: #ffffff;
    --bg-soft: #F2F2F2;
    --bg-cream: #f8f9fb;
    --green: #0B8CBF;
    --green-dark: #0B7ABF;
    --green-deep: #064e80;
    --green-light: #ddeef9;
    --green-pale: #eef6fc;
    --green-bright: #04D9C4;
    --leaf: #0BADBF;
    --gold: #04D9C4;
    --gold-soft: #e0fbf9;
    --coral: #0BADBF;
    --ink: #06304a;
    --text: #0a3f5e;
    --text-soft: #4a6a80;
    --muted: #8aabb8;
    --line: #cce3f5;
    --line-soft: #e5f2fb;
    --display: 'Montserrat', sans-serif;
    --body: 'Inter', sans-serif;
    --alt: 'Poppins', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
  }

  body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ============ ANNOUNCEMENT BAR ============ */
  .announce {
    background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-dark) 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    overflow: hidden;
    position: relative;
  }
  .announce-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll-left 35s linear infinite;
    align-items: center;
    width: max-content;
  }
  .announce-item {
    font-family: var(--alt);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
  }
  .announce-item .accent {
    color: var(--gold);
    font-weight: 700;
  }
  .announce-item::after {
    content: '✦';
    color: var(--gold);
    margin-left: 60px;
  }
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ HEADER ============ */
  .header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    height: 104px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .logo {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
  }
  .logo-img {
    height: 72px;
    width: auto;
    max-height: 88px;
    display: block;
    object-fit: contain;
  }
  .main-nav { justify-self: end; }
  .header-cta { justify-self: end; }

  .main-nav {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
  }
  .main-nav > li { position: relative; }
  .main-nav > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--alt);
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
  }
  .main-nav > li > a:hover { color: var(--green); background: var(--green-pale); }
  .main-nav > li > a.nav-active {
    color: var(--green);
    background: var(--green-pale);
  }
  .main-nav > li > a svg { transition: transform 0.3s; }
  .main-nav > li:hover > a svg { transform: rotate(180deg); }
  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(6,48,74,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    list-style: none;
  }
  .main-nav > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown li a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 13.5px;
    font-family: var(--body);
    border-radius: 8px;
    transition: all 0.2s;
  }
  .dropdown li a:hover { background: var(--green-pale); color: var(--green); }

  .header-cta { display: flex; gap: 12px; align-items: center; }
  .header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
  }
  .header-phone-icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-phone-text { font-family: var(--alt); }
  .header-phone-text small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
  .header-phone-text strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700; }
  .btn-pill {
    padding: 12px 22px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(4,217,196,0.25);
  }
  .btn-pill:hover { background: var(--green-dark); transform: translateY(-2px); }

  /* ============ HERO with image background ============ */
  .hero {
    position: relative;
    min-height: calc(100vh - 104px);
    padding: 40px 0;
    color: #fff;
    overflow: hidden;
    background: var(--green-deep);
    display: flex;
    align-items: center;
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.5;
    z-index: 0;
  }
  /* Multiple factory images cycle as background — one visible at a time */
  .hero-bg-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  .hero-bg-slide.active {
    opacity: 0.5;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,140,191,0.55) 0%, rgba(11,173,191,0.50) 50%, rgba(4,217,196,0.40) 100%);
    z-index: 1;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
  }

  .hero-content {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 3;
    height: 100%;
  }
  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 980px;
    gap: 0;
  }
  .hero-content-center .hero-tag { margin-bottom: 28px; }
  .hero-content-center h1 { margin-bottom: 22px; }
  .hero-content-center .hero-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }
  .hero-content-center .hero-actions {
    justify-content: center;
    margin-bottom: 48px;
  }
  .hero-content-center .hero-trust {
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }
  .hero-content-center .hero-trust-text {
    font-size: 12px;
    letter-spacing: 0.22em;
  }
  .hero-content-center .nowrap { white-space: nowrap; }

  .hero-bg-caption {
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-family: var(--alt);
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-bg-caption-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
  }
  .hero-bg-caption-text { transition: opacity 0.4s ease; }
  @media (max-width: 640px) {
    .hero-bg-caption { left: 16px; bottom: 16px; font-size: 11px; padding: 6px 12px; }
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
  }
  .hero-tag .pulse {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .hero h1 {
    font-family: var(--display);
    font-size: clamp(38px, 3.8vw, 65px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
  }
  .hero h1 .gold { color: var(--gold); font-style: italic; font-weight: 700; }
  .hero h1 .marker { position: relative; display: inline-block; padding: 0 6px; }
  .hero h1 .marker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4,217,196,0.3);
    border-radius: 6px;
    transform: skewX(-6deg);
    z-index: -1;
  }
  .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.6;
  }
  .hero-search {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 560px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    margin-bottom: 32px;
  }
  .hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: var(--body);
    font-size: 15px;
    background: transparent;
    color: var(--ink);
  }
  .hero-search input::placeholder { color: var(--muted); }
  .hero-search button {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
  }
  .hero-search button:hover { background: var(--green-dark); }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
  }
  .hero-btn-primary {
    background: #fff;
    color: var(--green-deep);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
  .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    background: var(--gold);
    color: var(--green-deep);
  }
  .hero-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
  }
  .hero-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
    transform: translateY(-2px);
  }
  .hero-trust { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
  .hero-trust-text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-family: var(--alt);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hero-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
  .hero-trust-badges-img {
    align-items: center;
    gap: 14px;
  }
  .hero-cert-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s;
  }
  .hero-cert-img:hover {
    transform: translateY(-2px) scale(1.05);
  }
  @media (max-width: 520px) {
    .hero-cert-img { height: 54px; }
    .hero-trust-badges-img { gap: 10px; }
  }
  .hero-trust-badge {
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
  }

  /* Hero visual with real product image */
  .hero-visual {
    position: relative;
    aspect-ratio: 1.15;
    max-height: 78vh;
  }
  .hero-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
  }
  .hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--alt);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }
  .hero-card-top .sku {
    padding: 4px 12px;
    background: rgba(4,217,196,0.25);
    color: var(--gold);
    border-radius: 6px;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  /* Clean image card — no frame artifacts */
  .hero-img-wrap {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  }
  .hero-img-wrap img {
    border-radius: 18px;
  }

  /* Soft glow halo behind the image */
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    background: radial-gradient(circle at 30% 30%, rgba(4, 217, 196, 0.4) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
  }
  @keyframes heroGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  /* Bottom-right corner accent removed */
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-img-wrap .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
    z-index: 1;
  }
  .hero-img-wrap .hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }
  /* Bottom gradient overlay removed */
  .hero-card-bottom {
    padding-top: 4px;
  }
  .hero-card-bottom h4 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
  }
  .hero-card-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }

  /* Floating badges */
  /* Premium emblem badge with halo glow */
  /* Premium gradient badge with shield icon */
  .float-1 {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 110px;
    height: 110px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    background: linear-gradient(135deg, #04D9C4 0%, #0BADBF 50%, #0B8CBF 100%);
    border-radius: 24px;
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.15),
      0 18px 36px rgba(4, 217, 196, 0.42),
      inset 0 2px 0 rgba(255, 255, 255, 0.35);
    transform: rotate(-4deg);
    transition: transform 0.4s var(--ease);
    animation: bounce 4s ease-in-out infinite;
  }
  .float-1:hover { transform: rotate(0deg) scale(1.05); }
  .float-1 i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 4px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  }
  .float-1 strong {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .float-1 span {
    display: block;
    font-family: var(--alt);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 6px;
    padding: 0 4px;
  }

  /* Background shadow card — gives the image card depth */
  .hero-visual-shadow-card {
    position: absolute;
    inset: 16px -16px -16px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4, 217, 196, 0.20) 0%, rgba(11, 140, 191, 0.10) 100%);
    border: 1px solid rgba(4, 217, 196, 0.25);
    z-index: 0;
    transform: rotate(2deg);
    pointer-events: none;
  }

  /* 3×3 grid of decorative dots — top-left */
  .hero-visual-dots {
    position: absolute;
    top: -8px;
    left: -8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 36px;
    z-index: 5;
    pointer-events: none;
  }
  .hero-visual-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #04D9C4;
    opacity: 0.85;
    filter: drop-shadow(0 1px 4px rgba(4, 217, 196, 0.6));
  }

  /* Floating mini stat card — bottom-left */
  .hero-mini-stat {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    box-shadow:
      0 16px 32px rgba(4, 30, 50, 0.22),
      0 0 0 1px rgba(4, 217, 196, 0.18);
    animation: bounce 4s ease-in-out infinite reverse;
  }
  .hero-mini-stat i {
    font-size: 22px;
    color: var(--green);
    background: rgba(11, 140, 191, 0.10);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .hero-mini-stat strong {
    display: block;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .hero-mini-stat span {
    display: block;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    margin-top: 3px;
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .float-2 {
    position: absolute;
    bottom: 24px;
    left: -28px;
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    z-index: 3;
  }
  .float-2-icon {
    width: 44px; height: 44px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .float-2 strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
  }
  .float-2 small { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; font-family: var(--alt); }

  /* ============ TRUSTED ============ */
  .trusted-strip {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .trusted-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .trusted-content h6 {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.4;
    white-space: nowrap;
    padding-right: 36px;
    border-right: 1px solid var(--line);
    flex-shrink: 0;
  }
  .trusted-content h6 strong {
    display: inline;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
  }
  /* Desktop: marquee track behaves as a flex row, no animation, hide duplicates */
  .trusted-marquee-track {
    display: contents;
  }
  .trusted-logo[aria-hidden="true"] {
    display: none;
  }
  .trusted-logos {
    display: flex;
    align-items: center;
    flex: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 28px;
  }
  .trusted-logo {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    opacity: 0.9;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .trusted-logo:hover { opacity: 1; color: var(--green); }
  .trusted-logo small {
    display: inline;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* ============ COMMON ============ */
  .container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 12px;
  }
  .eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
  }
  .section-title {
    font-family: var(--display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.025em;
  }
  .section-title .green-text { color: var(--green); }
  .section-title .italic { font-style: italic; font-weight: 700; color: var(--gold); }
  .section-lead {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.65;
  }

  /* ============ HOME SLIDER ============ */
  .home-slider { background: #fff; padding: 60px 0; }
  .home-slider .container { line-height: 0; }
  .hs-track { position: relative; height: 500px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(6,48,74,0.14); }
  .hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
  }
  .hs-slide.active { opacity: 1; pointer-events: auto; }
  .hs-slide-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(6,48,74,0.85) 0%,
      rgba(6,48,74,0.55) 55%,
      rgba(6,48,74,0.1) 100%
    );
  }
  .hs-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    line-height: 1.5;
  }
  .hs-slide-content > * { max-width: 560px; }
  .hs-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    width: fit-content;
  }
  .hs-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: pulse 2s infinite;
  }
  .hs-title {
    font-family: var(--display);
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
  }
  .hs-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
  }
  .hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(11,140,191,0.4);
  }
  .hs-cta:hover { background: var(--green-dark); transform: translateY(-2px); }

  .hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 4;
  }
  .hs-arrow:hover { background: var(--green); border-color: var(--green); }
  .hs-arrow-prev { left: 24px; }
  .hs-arrow-next { right: 24px; }

  .hs-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 4;
  }
  .hs-dot-btn {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
  }
  .hs-dot-btn.active { width: 26px; border-radius: 6px; background: var(--gold); }

  @media (max-width: 900px) {
    .hs-track { height: 400px; }
    .hs-slide-overlay { background: rgba(6,48,74,0.65); }
    .hs-slide-content { padding: 0 32px; max-width: 100%; }
    .hs-title { font-size: 26px; }
  }
  @media (max-width: 640px) {
    .hs-track { height: 320px; }
    .hs-desc { display: none; }
    .hs-arrow { display: none; }
    .hs-slide-content { padding: 0 20px; }
  }

  /* ============ CATEGORIES with image cards ============ */
  .categories {
    padding: 100px 0;
    background: var(--bg-cream);
    position: relative;
  }
  .cat-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .cat-header-left { max-width: 600px; }
  .cat-header-left h2 { margin: 16px 0 0; }
  .cat-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }
  .cat-header-right p { max-width: 460px; text-align: right; }
  .cat-header-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .cat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }
  .cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 24px 50px rgba(4,217,196,0.15);
  }

  .cat-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: #fff;
  }
  .cat-card-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
  }
  /* Lifeclear + Classical Infusion sources are landscape — cover fills cleanly */
  .cat-card[href="/products/lifeclear"] .cat-card-img img,
  .cat-card[href="/products/classical-infusion"] .cat-card-img img {
    object-fit: cover;
  }
  .cat-card:hover .cat-card-img img { transform: scale(1.04); }
  .cat-card-count {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--green-dark);
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 12px;
    z-index: 2;
  }
  .cat-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cat-card-body h3 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .cat-card-body p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
  }
  .cat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .cat-footer span {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
  }
  .cat-arrow {
    width: 32px; height: 32px;
    background: var(--bg-soft);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
  }
  .cat-card:hover .cat-arrow {
    background: var(--green);
    color: #fff;
    transform: rotate(-45deg);
  }

  /* ============ LIFEFLEX PRODUCT PAGE ============ */
  .lfx-hero {
    padding: 70px 0;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--line-soft);
  }
  .lfx-hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .lfx-hero-text .eyebrow { margin-bottom: 16px; }
  .lfx-hero-title {
    font-family: var(--display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .lfx-hero-title .green-text { color: var(--green); }
  .lfx-hero-lead {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 580px;
  }
  .lfx-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .lfx-tag {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
  }
  .lfx-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .lfx-hero-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--green-light);
    box-shadow: 0 20px 50px rgba(11,140,191,0.15);
  }
  .lfx-hero-img img { width: 100%; height: 100%; object-fit: cover; }

  .lfx-catalog {
    padding: 70px 0 90px;
    background: #fff;
    scroll-margin-top: 120px;
  }
  .lfx-catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .lfx-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    min-width: 280px;
    transition: border-color 0.25s ease;
  }
  .lfx-search:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px rgba(11,140,191,0.08); }
  .lfx-search svg { color: var(--muted); flex-shrink: 0; }
  .lfx-search input {
    border: none;
    outline: none;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    background: transparent;
    width: 100%;
  }
  .lfx-search input::placeholder { color: var(--muted); }

  .lfx-product-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .lfx-product {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .lfx-product:hover {
    border-color: var(--green);
    box-shadow: 0 6px 24px rgba(11,140,191,0.1);
  }
  .lfx-product-img {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #f6f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lfx-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
  }
  .lfx-product-body { min-width: 0; }
  .lfx-product-body h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .lfx-comp-label {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .lfx-comp-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .lfx-comp-table-wrap {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
  }
  .lfx-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--body);
  }
  .lfx-comp-table tr { border-bottom: 1px solid var(--line-soft); }
  .lfx-comp-table tr:last-child { border-bottom: none; }
  .lfx-comp-table tr:nth-child(even) { background: var(--bg-soft); }
  .lfx-comp-table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--text);
  }
  .lfx-comp-table td:first-child {
    font-weight: 500;
    color: var(--ink);
    width: 60%;
  }
  .lfx-row-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 8px;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  /* ============ LIFEPORT — Showcase section (narrative + features grid) ============ */
  .web-showcase-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .web-showcase-section .section-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
  }

  /* LEFT: narrative — sticky like contact form */
  .showcase-narrative {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 124px;
    align-self: start;
  }
  .tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 12px;
  }
  .pill-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
  }
  .cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--green-bright);
  }
  .brand-heading {
    font-family: var(--display);
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
  }
  .brand-summary {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
  }
  .portfolio-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    border: 1px solid rgba(148,163,184,0.12);
    max-width: max-content;
  }
  .portfolio-icon {
    color: var(--green);
    background: rgba(11,140,191,0.06);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .portfolio-text h4 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
  }
  .portfolio-text p {
    font-family: var(--alt);
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 500;
    margin: 4px 0 0;
  }

  /* RIGHT: features */
  .showcase-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .features-header {
    border-bottom: 2px solid rgba(148,163,184,0.12);
    padding-bottom: 16px;
  }
  .features-header p {
    font-family: var(--alt);
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0 0 6px;
  }
  .features-header h2 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin: 0;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .feature-box {
    background: #fff;
    padding: 26px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  .feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(11,140,191,0.18);
    box-shadow: 0 20px 40px rgba(11,140,191,0.06);
  }
  .feature-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border: 2px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(11,140,191,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-box:hover .feature-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(11,140,191,0.18);
  }
  .feature-number {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-soft);
    opacity: 0.55;
    letter-spacing: 0.04em;
  }
  .feature-box h3 {
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.005em;
    margin: 0;
  }
  .feature-box h3 span {
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 400;
    color: var(--text-soft);
    display: block;
    margin-top: 2px;
  }
  @media (max-width: 1024px) {
    .web-showcase-section .section-wrapper {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .showcase-narrative { position: static; top: auto; }
  }
  @media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-box { padding: 22px; }
  }

  /* legacy lifeport styles (no longer rendered · kept for safety) */
  .lpt-section {
    margin-bottom: 80px;
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--bg-cream) 60%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .lpt-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(4,217,196,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .lpt-section > * { position: relative; z-index: 1; }
  .lpt-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
  }
  .lpt-intro-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 440px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--green-light);
    box-shadow: 0 18px 40px rgba(6,48,74,0.12);
  }
  .lpt-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lpt-intro-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,48,74,0.05) 0%, rgba(6,48,74,0.25) 100%);
  }
  .lpt-intro-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .lpt-intro-text .eyebrow { align-self: flex-start; }
  .lpt-intro-text h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.025em;
  }
  .lpt-intro-text h2 .green-text { color: var(--green); }
  .lpt-intro-text > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
  }
  .lpt-section-divider {
    text-align: center;
    margin-bottom: 40px;
  }
  .lpt-section-divider span {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  @media (max-width: 900px) {
    .lpt-section { padding: 32px 24px; }
    .lpt-intro { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============ LIFEPORT — Hero stats ============ */
  .lpt-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-top: 8px;
  }
  .lpt-stat {
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
  }
  .lpt-stat:last-child { border-right: none; }
  .lpt-stat strong {
    display: block;
    font-family: var(--display);
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .lpt-stat span {
    font-family: var(--alt);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }
  @media (max-width: 640px) {
    .lpt-hero-stats { grid-template-columns: 1fr; }
    .lpt-stat { border-right: none; border-bottom: 1px solid var(--line); }
    .lpt-stat:last-child { border-bottom: none; }
  }

  /* ============ LIFEPORT — Unique Features (circular images) ============ */
  .lpt-uf-wrap {
    margin-top: 48px;
    padding: 48px 0 0;
    background: transparent;
    border-radius: 0;
    border-top: 1px solid var(--line);
  }
  .lpt-uf-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
  }
  .lpt-uf-head .eyebrow { margin-bottom: 14px; }
  .lpt-uf-title { margin-bottom: 16px; }
  .lpt-uf-lead {
    font-family: var(--body);
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
  }
  .lpt-uf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
  }
  .lpt-uf-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .lpt-uf-card:hover .lpt-uf-card-img {
    transform: scale(1.05);
    box-shadow: 0 18px 36px rgba(11,140,191,0.25);
  }
  .lpt-uf-card-img {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-pale);
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(11,140,191,0.18);
    margin-bottom: 20px;
    transition: all 0.35s ease;
  }
  .lpt-uf-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lpt-uf-num {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(11,140,191,0.35);
    border: 2px solid #fff;
    letter-spacing: 0;
  }
  .lpt-uf-card h3 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.35;
    max-width: 200px;
  }
  @media (max-width: 900px) {
    .lpt-uf-wrap { padding: 56px 24px; }
    .lpt-uf-grid { grid-template-columns: 1fr 1fr; gap: 32px 18px; }
  }
  @media (max-width: 600px) {
    .lpt-uf-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ============ GERMKILL CARDS ============ */
  .gk-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }
  .gk-bullets li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
  }
  .gk-bullet-icon {
    margin-top: 3px;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .gk-bullets li > span:last-child {
    font-family: var(--body);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
  }
  .gk-packs {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    padding: 14px 18px;
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    border-radius: 0 10px 10px 0;
    margin-top: 8px;
  }
  .gk-packs-label {
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
  }
  .gk-packs-list {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }

  /* Lifeflow scoped table — overrides the right-aligned composition layout */
  .lfx-comp-table.lfw-table { table-layout: fixed; width: 100%; }
  .lfx-comp-table.lfw-table td.lfw-num-cell {
    width: 64px;
    padding: 14px 8px 14px 16px;
    text-align: left;
    border-right: none;
    background: transparent;
  }
  .lfx-comp-table.lfw-table td.lfw-bullet-cell,
  .lfx-comp-table.lfw-table td:nth-child(2) {
    text-align: left !important;
    padding: 14px 14px 14px 8px !important;
    line-height: 1.55;
    width: auto !important;
    border-left: none !important;
    border-right: none !important;
    font-family: var(--body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    letter-spacing: 0 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .lfx-comp-table td:nth-child(2) {
    text-align: center;
    width: 18%;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    border-left: 1px solid var(--line-soft);
    border-right: 1px solid var(--line-soft);
  }
  .lfx-comp-table td:last-child {
    text-align: right;
    font-family: var(--alt);
    font-weight: 700;
    color: var(--ink);
    width: 22%;
    white-space: nowrap;
  }
  .lfx-empty {
    text-align: center;
    color: var(--text-soft);
    padding: 40px;
    font-size: 15px;
  }
  @media (max-width: 900px) {
    .lfx-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .lfx-hero-img { order: -1; max-width: 360px; }
  }
  @media (max-width: 700px) {
    .lfx-product { grid-template-columns: 1fr; gap: 20px; }
    .lfx-product-img { max-width: 220px; margin: 0 auto; aspect-ratio: 4/3; }
    .lfx-product-body h3 { font-size: 20px; }
    .lfx-search { min-width: 100%; }
    .lfx-catalog-head { flex-direction: column; align-items: stretch; }
  }

  /* Lifeflex / Lifeclear full product table (reuses .pd-table / .pd-pagination) */
  .lfx-table-section {
    padding: 0 0 100px;
    background: #fff;
  }
  /* Match Ophthalmics spacing: 100px above hero, 80px between hero & catalog */
  .lfx-hero-section {
    padding: 100px 0 0 !important;
  }
  .lfx-hero-section .pd-hero {
    margin-bottom: 80px;
    align-items: stretch;
  }
  .lfx-hero-section .pd-image { min-height: 0; }
  /* Classical infusion table: Code · Content · Packs */
  .pd-table th.pd-table-code,
  .pd-table td.pd-table-code {
    width: 130px;
    white-space: nowrap;
  }
  .pd-table td.pd-table-code {
    font-family: var(--alt);
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.02em;
  }
  .pd-table th.pd-table-packs,
  .pd-table td.pd-table-packs {
    width: 140px;
  }
  .pd-table td.pd-table-packs {
    font-family: var(--alt);
    font-weight: 600;
    color: var(--green-dark);
    font-size: 13px;
  }
  .pd-table td.pd-table-packs .pd-pack-line { padding: 1px 0; }
  .pd-table td:first-child.pd-table-code { color: var(--green); }

  /* ============ PRODUCT DETAIL ============ */
  .product-detail {
    padding: 100px 0;
    background: #fff;
  }
  .pd-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
  }
  .pd-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--green-light);
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    align-self: start;
  }
  .pd-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pd-info > .eyebrow { align-self: flex-start; }
  .pd-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .pd-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,48,74,0.1) 0%, rgba(6,48,74,0.35) 100%);
  }
  .pd-badge-floating {
    position: absolute;
    top: 32px;
    right: 32px;
    background: var(--green);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(4,217,196,0.3);
  }
  .pd-spec-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
  }
  .pd-spec-card svg { width: 32px; height: 32px; color: var(--gold); }
  .pd-spec-card strong {
    display: block;
    font-family: var(--display);
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
  }
  .pd-spec-card small { font-size: 11px; color: var(--muted); font-family: var(--alt); }

  .pd-info .eyebrow { margin-bottom: 20px; }
  .pd-info h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
  }
  .pd-info h2 .green-text { color: var(--green); }
  .pd-info > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .pd-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .pd-feature {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: center;
    transition: all 0.3s;
  }
  .pd-feature:hover { background: #fff; border-color: var(--green); }
  .pd-feature-icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pd-feature h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .pd-feature p { font-size: 12px; color: var(--text-soft); line-height: 1.4; }
  .pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-green {
    padding: 14px 26px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(4,217,196,0.25);
  }
  .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
  .btn-outline-green {
    padding: 14px 26px;
    background: #fff;
    color: var(--green);
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    border: 1.5px solid var(--green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }
  .btn-outline-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

  /* ============ CATALOG ============ */
  .pd-catalog {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 60px;
  }
  .pd-catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .pd-catalog-header h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .pd-catalog-header h3 small {
    display: block;
    font-family: var(--body);
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0;
  }
  .catalog-filter { display: flex; gap: 6px; flex-wrap: wrap; }
  .catalog-tab {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .catalog-tab:hover, .catalog-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }
  .product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .pl-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 16px;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
  }
  .pl-item:hover {
    border-color: var(--green);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(4,217,196,0.08);
  }
  .pl-number {
    width: 56px; height: 56px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    flex-direction: column;
    text-align: center;
    line-height: 1;
  }
  .pl-number small {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 2px;
    text-transform: uppercase;
  }
  .pl-info h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .pl-info p {
    font-size: 11px;
    color: var(--text-soft);
    font-family: var(--alt);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .pl-arrow { color: var(--muted); transition: all 0.3s; }
  .pl-item:hover .pl-arrow { color: var(--green); transform: translateX(4px); }

  /* Catalog table toolbar */
  .pd-table-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .pd-table-toolbar.pd-table-toolbar-right {
    justify-content: flex-end;
  }
  .pd-table-toolbar .pd-pagesize {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--alt);
    font-size: 13px;
    color: var(--text-soft);
  }
  .pd-search {
    position: relative;
    display: flex;
    align-items: center;
  }
  .pd-search svg {
    position: absolute;
    left: 14px;
    color: var(--muted);
    pointer-events: none;
  }
  .pd-search input {
    padding: 10px 16px 10px 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink);
    min-width: 260px;
    outline: none;
    transition: all 0.2s ease;
  }
  .pd-search input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(11,140,191,0.1);
  }
  .pd-search input::placeholder { color: var(--muted); }

  /* Catalog table layout */
  .pd-table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }
  .pd-table th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
  }
  .pd-table th.sortable:hover { background: var(--green-light); }
  .sort-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    color: var(--green);
    vertical-align: middle;
  }
  .sort-icon.active { color: var(--green-dark); }
  .pd-table-empty {
    text-align: center;
    padding: 40px 20px !important;
    color: var(--muted) !important;
    font-family: var(--alt) !important;
    font-style: italic;
    font-weight: 500 !important;
  }

  /* ============ LIFEFLOW FEATURE CARDS ============ */
  .lfw-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .lfw-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
  }
  .lfw-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(11,140,191,0.10);
  }
  .lfw-card-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--green-pale);
  }
  .lfw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .lfw-card:hover .lfw-card-img img {
    transform: scale(1.05);
  }
  .lfw-card-body h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .lfw-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lfw-bullets li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
  }
  .lfw-bullet-icon {
    margin-top: 2px;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .lfw-bullets li > span:last-child {
    font-family: var(--body);
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.55;
  }
  @media (max-width: 768px) {
    .lfw-card {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .lfw-card-img {
      max-width: 260px;
      margin: 0 auto;
    }
    .lfw-card-body h3 { font-size: 18px; }
  }

  .pd-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--body);
  }
  .pd-table thead {
    background: var(--green-pale);
  }
  .pd-table thead th {
    text-align: left;
    padding: 16px 20px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
  }
  .pd-table tbody tr {
    transition: background 0.2s;
  }
  .pd-table tbody tr:nth-child(even) {
    background: var(--bg-soft);
  }
  .pd-table tbody tr:hover {
    background: var(--green-light);
  }
  .pd-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--line-soft);
  }
  .pd-table tbody tr:last-child td {
    border-bottom: none;
  }
  .pd-table tbody td:first-child {
    font-family: var(--alt);
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    font-size: 13px;
    white-space: nowrap;
  }
  .pd-table tbody td:nth-child(2) {
    font-weight: 500;
    color: var(--ink);
  }
  .pd-table .pd-table-sno {
    width: 80px;
    text-align: left;
  }
  .pd-table .pd-table-strength {
    width: 220px;
    text-align: left;
    white-space: nowrap;
  }
  .pd-table tbody td.pd-table-strength {
    font-family: var(--alt);
    font-weight: 600;
    color: var(--green-dark);
    font-size: 13px;
  }

  /* Pagination */
  .pd-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .pd-pagination-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .pd-pagesize {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--alt);
    font-size: 13px;
    color: var(--text-soft);
  }
  .pd-pagesize select {
    padding: 6px 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
  }
  .pd-pagesize select:hover,
  .pd-pagesize select:focus {
    border-color: var(--green);
  }
  .pd-pagination-info {
    font-family: var(--alt);
    font-size: 13px;
    color: var(--text-soft);
  }
  .pd-pagination-info strong {
    color: var(--ink);
    font-weight: 700;
  }
  .pd-pagination-controls {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .pd-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .pd-page-btn:hover:not(:disabled):not(.active) {
    border-color: var(--green);
    color: var(--green);
  }
  .pd-page-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }
  .pd-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  @media (max-width: 768px) {
    .pd-table-wrap { overflow-x: auto; }
    .pd-table { min-width: 640px; }
  }

  /* ============ COMPOSITION ============ */
  .composition {
    background: var(--green-deep);
    color: #fff;
    border-radius: 12px;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .composition::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(4,217,196,0.2) 0%, transparent 60%);
    border-radius: 50%;
  }
  .comp-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    align-items: end;
  }
  .comp-header .eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
  }
  .comp-header .eyebrow::before { background: var(--gold); }
  .comp-header h3 {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-top: 16px;
  }
  .comp-header h3 .gold { color: var(--gold); font-style: italic; }
  .comp-header p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; }
  .comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .comp-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px;
  }
  .comp-card h4 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
  }
  .comp-card .vol {
    font-family: var(--alt);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .comp-table { width: 100%; border-collapse: collapse; }
  .comp-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .comp-table tr:last-child { border-bottom: none; }
  .comp-table td {
    padding: 12px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-family: var(--body);
  }
  .comp-table td:first-child { font-weight: 500; color: #fff; }
  .comp-table td:nth-child(2) {
    text-align: center;
    color: var(--gold);
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
  }
  .comp-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
    font-family: var(--alt);
  }

  /* ============ ABOUT WITH IMAGE ============ */
  .about-mod {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
  }
  .about-mod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-mod-img {
    position: relative;
    aspect-ratio: 1;
  }
  .about-mod-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  .about-mod-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-mod-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,140,191,0.85) 0%, rgba(4,217,196,0.5) 100%);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .ami-top span {
    font-family: var(--alt);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .ami-top h3 {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .ami-bottom .big-year {
    font-family: var(--display);
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .ami-bottom .big-year .gold { color: var(--gold); font-style: italic; }
  .ami-bottom span {
    display: block;
    font-family: var(--alt);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .about-mod-img-card {
    position: absolute;
    right: -32px;
    bottom: 32px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(6,48,74,0.2);
    border: 1px solid var(--line);
    z-index: 3;
    max-width: 240px;
  }
  .ami-card-icon {
    width: 48px; height: 48px;
    background: var(--gold-soft);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .about-mod-img-card h5 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .about-mod-img-card p { font-size: 12px; color: var(--text-soft); line-height: 1.5; }

  .about-mod-text .eyebrow { margin-bottom: 16px; }
  .about-mod-text h2 { margin-bottom: 24px; }
  .about-mod-text > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .check-list { list-style: none; margin-bottom: 32px; }
  .check-list li {
    display: flex;
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .check-list li:last-child { border-bottom: none; }
  .check-list-icon {
    width: 28px; height: 28px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .check-list h4 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .check-list p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }

  /* ============ ABOUT INTRO ============ */
  .about-intro {
    padding: 100px 0 80px;
    background: var(--bg-cream);
  }
  .about-intro-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
  }
  .about-intro-head .eyebrow { margin-bottom: 16px; }
  .about-intro-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 20px;
  }
  .about-intro-text p:last-child { margin-bottom: 0; }
  .about-intro-text strong { color: var(--ink); font-weight: 700; }
  .about-intro-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 124px;
    box-shadow: 0 10px 30px rgba(6,48,74,0.04);
  }
  .about-intro-card-top {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
  }
  .about-intro-card-top span {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .about-intro-card-top h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .about-intro-card-list { list-style: none; }
  .about-intro-card-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .about-intro-card-list li:last-child { border-bottom: none; }
  .about-intro-card-list strong {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.01em;
  }
  .about-intro-card-list span {
    font-family: var(--alt);
    font-size: 13px;
    color: var(--text-soft);
    text-align: right;
  }

  /* ============ TIMELINE ============ */
  .timeline-section {
    padding: 100px 0;
    background: var(--bg-cream);
  }
  .timeline-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
  }
  .timeline-head .eyebrow { margin-bottom: 16px; }
  .timeline-head h2 { margin-bottom: 16px; }
  .timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
  }
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green-light) 0%, var(--green) 30%, var(--green) 70%, var(--green-light) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
  }
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 16px 56px;
    box-sizing: border-box;
  }
  .timeline-item.left {
    left: 0;
    text-align: right;
  }
  .timeline-item.right {
    left: 50%;
    text-align: left;
  }
  .timeline-dot {
    position: absolute;
    top: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(4,217,196,0.25);
    z-index: 2;
  }
  .timeline-item.left .timeline-dot { right: -22px; }
  .timeline-item.right .timeline-dot { left: -22px; }
  .timeline-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 6px 20px rgba(6,48,74,0.05);
    position: relative;
    transition: all 0.3s;
  }
  .timeline-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(4,217,196,0.15);
  }
  .timeline-card h4 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .timeline-card p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
  }
  /* arrow pointing to dot */
  .timeline-card::after {
    content: '';
    position: absolute;
    top: 22px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid var(--line);
    transform: rotate(45deg);
  }
  .timeline-item.left .timeline-card::after {
    right: -7px;
    border-left: none;
    border-bottom: none;
  }
  .timeline-item.right .timeline-card::after {
    left: -7px;
    border-right: none;
    border-top: none;
  }
  @media (max-width: 768px) {
    .timeline-line { left: 22px; }
    .timeline-item, .timeline-item.left, .timeline-item.right {
      width: 100%;
      left: 0;
      text-align: left;
      padding: 12px 0 12px 60px;
    }
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
      left: 0;
      right: auto;
    }
    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
      left: -7px;
      right: auto;
      border-right: none;
      border-top: none;
      border-left: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
  }
  @media (max-width: 900px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-card { position: static; }
  }

  /* ============ MANAGEMENT TEAM ============ */
  .team-section {
    padding: 100px 0;
    background: #fff;
  }
  .team-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
  }
  .team-head .eyebrow { margin-bottom: 16px; }
  .team-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .team-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 44px;
    align-items: center;
  }
  .team-row.reverse {
    grid-template-columns: 1fr 280px;
  }
  .team-row.reverse .team-photo { order: 2; }
  .team-row.reverse .team-info { order: 1; text-align: right; }
  .team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--green-light);
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(6,48,74,0.08);
  }
  .team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-info {
    display: flex;
    flex-direction: column;
  }
  .team-role {
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .team-info h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .team-info p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
  }
  @media (max-width: 768px) {
    .team-row, .team-row.reverse {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .team-row.reverse .team-photo { order: 1; }
    .team-row.reverse .team-info { order: 2; text-align: left; }
    .team-photo { max-width: 320px; }
    .team-info h3 { font-size: 22px; }
  }

  /* ============ MARKETING (dark) ============ */
  .marketing-section {
    padding: 100px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .marketing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(4,217,196,0.18) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(4,217,196,0.12) 0%, transparent 55%);
    pointer-events: none;
  }
  .marketing-section .container { position: relative; z-index: 1; }
  .marketing-head { margin-bottom: 40px; }
  .marketing-head .eyebrow-on-dark {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
  }
  .marketing-head .eyebrow-on-dark::before { background: var(--gold); }
  .marketing-head h2 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 16px;
  }
  .marketing-head h2 .gold { color: var(--gold); font-style: italic; }
  .marketing-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
  }
  .marketing-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .marketing-bullet {
    margin-top: 7px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 14px rgba(4,217,196,0.5);
  }
  .marketing-list p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
  }
  @media (max-width: 768px) {
    .marketing-list { grid-template-columns: 1fr; gap: 6px; }
  }

  /* ============ BROCHURE DOWNLOAD ============ */
  .brochure-section {
    padding: 48px 0;
    background: #fff;
  }
  .brochure-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .brochure-icon { display: none; }
  .brochure-eyebrow { display: none; }
  .brochure-text h3 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 0;
  }
  .brochure-text p { display: none; }
  .brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 13px;
    border-radius: 12px;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .brochure-btn:hover { background: var(--green-dark); }
  @media (max-width: 640px) {
    .brochure-section { padding: 36px 0; }
    .brochure-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
      padding: 28px 24px;
    }
    .brochure-text h3 {
      font-size: 16px;
      line-height: 1.45;
      max-width: 280px;
      margin: 0 auto;
    }
    .brochure-btn {
      width: 100%;
      max-width: 280px;
      justify-content: center;
      padding: 12px 18px;
      font-size: 14px;
    }
  }

  /* ============ ACQUISITION ============ */
  .acquisition-section {
    padding: 100px 0;
    background: #fff;
  }
  .acquisition-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .acquisition-text .eyebrow { margin-bottom: 16px; }
  .acquisition-text h2 { margin-bottom: 28px; }
  .acquisition-text p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .acquisition-quote {
    border-left: 4px solid var(--green);
    padding: 18px 0 18px 24px;
    margin: 0 0 28px;
    background: var(--green-pale);
    border-radius: 0 12px 12px 0;
  }
  .acquisition-quote p {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 8px;
  }
  .acquisition-quote cite {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-style: normal;
  }
  .acquisition-aside {
    position: sticky;
    top: 124px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .acquisition-logo-card {
    background: linear-gradient(180deg, var(--green-pale) 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(4,217,196,0.08);
  }
  .acquisition-logo-card img {
    height: 64px;
    width: auto;
    margin: 0 auto 12px;
  }
  .acquisition-logo-card span {
    display: block;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .acquisition-stats {
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }
  .acquisition-stats li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line-soft);
  }
  .acquisition-stats li:last-child { border-bottom: none; }
  .acquisition-stats strong {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.01em;
  }
  .acquisition-stats span {
    font-family: var(--alt);
    font-size: 12px;
    color: var(--text-soft);
    text-align: right;
  }
  @media (max-width: 900px) {
    .acquisition-grid { grid-template-columns: 1fr; gap: 32px; }
    .acquisition-aside { position: static; }
  }
  @media (max-width: 640px) {
    .acquisition-text { text-align: center; }
    .acquisition-text .eyebrow { align-self: center; }
    .acquisition-text .acquisition-quote {
      text-align: left;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }
  }

  /* ============ STATS ============ */
  .stats-big {
    padding: 80px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .stats-big-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.18;
    z-index: 0;
  }
  .stats-big::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,140,191,0.85) 0%, rgba(11,173,191,0.9) 100%);
    z-index: 1;
  }
  .stats-big-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  .stat-big-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .stat-big-item:last-child { border-right: none; }
  .stat-big-num {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }
  .stat-big-num .gold { color: var(--gold); font-style: italic; font-weight: 700; }
  .stat-big-label {
    font-family: var(--alt);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
  }

  /* ============ HOME GLOBAL ============ */
  .home-global {
    padding: 100px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 120px;
  }
  .home-global-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: center;
  }
  .home-global-text .eyebrow { margin-bottom: 0; }
  .home-global-text .section-lead {
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 380px;
  }
  .home-global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
  }
  .hg-stat {
    padding: 18px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all 0.25s ease;
  }
  .hg-stat:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11,140,191,0.08);
  }
  .hg-stat strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .hg-stat span {
    font-family: var(--alt);
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.3;
    display: block;
  }
  .home-global-map {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
  }
  .home-global-map img {
    width: 110%;
    max-width: none;
    margin-left: -10%;
    margin-right: 40px;
    display: block;
    object-fit: contain;
  }
  @media (max-width: 960px) {
    .home-global-inner { grid-template-columns: 1fr; gap: 36px; }
    .home-global-text {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .home-global-text .eyebrow { align-self: center; }
    .home-global-text .section-lead { max-width: 100%; }
    .home-global-map img { width: 100%; margin-left: 0; }
  }
  @media (max-width: 640px) {
    .home-global { padding: 60px 0; }
    .home-global-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      max-width: 100%;
    }
    .hg-stat { padding: 16px 8px; }
    .hg-stat strong { font-size: 22px; }
    .hg-stat span { font-size: 9.5px; letter-spacing: 0.06em; }
  }

  /* ============ QUALITY PAGE ============ */
  .quality-sec-head { margin-bottom: 36px; }
  .quality-sec-head .eyebrow { margin-bottom: 16px; }
  .quality-sec-head .section-title {
    font-size: clamp(28px, 3.6vw, 44px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  /* ============ Stringent Quality Control — Narrative + Certificate Showcase ============ */
  .quality-control-section {
    background-color: var(--bg-cream);
    padding: 100px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .section-max-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 72px;
    align-items: center;
  }

  /* LEFT: narrative panel — uses project .eyebrow and .section-title */
  .quality-narrative-panel {
    display: flex;
    flex-direction: column;
  }
  .quality-narrative-panel > .eyebrow {
    align-self: flex-start;
    margin-bottom: 18px;
  }
  .quality-narrative-panel > .section-title {
    margin: 0 0 28px;
  }
  .lead-statement {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    font-weight: 500;
    margin: 0 0 36px;
    padding-left: 22px;
    border-left: 3px solid var(--green);
  }

  /* Pillar cards */
  .framework-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pillar-card {
    background: #fff;
    padding: 22px 24px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.05);
    border: 1px solid rgba(148,163,184,0.12);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .pillar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11,140,191,0.22);
    box-shadow: 0 26px 56px rgba(11,140,191,0.08);
  }
  .pillar-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .pillar-text h3 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.3;
    letter-spacing: -0.005em;
  }
  .pillar-text p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0;
  }

  /* RIGHT: certificate panel */
  .certificate-display-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .certificate-display-panel::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(11,140,191,0.10) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
  }
  .document-glass-frame {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(15,23,42,0.10);
    border: 1px solid rgba(255,255,255,0.8);
    width: 100%;
    max-width: 420px;
  }
  .inner-preview-wrap {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    position: relative;
  }
  .inner-preview-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Vertical / portrait variant — used for the Analytics Laboratory image */
  .qa-vertical-frame .inner-preview-wrap {
    aspect-ratio: 2 / 3;
  }
  .qa-vertical-frame .inner-preview-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .badge-overlay-label {
    position: absolute;
    bottom: -14px;
    right: 22px;
    background: var(--ink);
    color: #fff;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .badge-overlay-label svg { color: var(--gold); }

  @media (max-width: 1024px) {
    .section-max-wrapper {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .certificate-display-panel { order: 2; }
    .quality-narrative-panel { order: 1; }
    .document-glass-frame { max-width: 460px; }
  }
  @media (max-width: 640px) {
    .quality-control-section { padding: 56px 16px 72px; }
    .main-section-title { font-size: 32px; }
    .lead-statement { font-size: 15px; }
    .pillar-card { flex-direction: column; gap: 14px; padding: 20px; }
  }
  .qc-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
  }
  .qc-pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 24px 26px;
    position: relative;
    transition: all 0.3s ease;
  }
  .qc-pillar:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 18px 40px rgba(11,140,191,0.10);
  }
  .qc-pillar-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--display);
    font-size: 28px;
    font-weight: 800;
    color: var(--green-pale);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .qc-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .qc-pillar:hover .qc-pillar-icon {
    background: var(--green);
    color: #fff;
  }
  .qc-pillar h3 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.005em;
  }
  .qc-pillar p {
    font-family: var(--body);
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
  }

  /* QC Banner with stats */
  .qc-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    background: var(--green-deep);
    box-shadow: 0 24px 60px rgba(6,48,74,0.18);
  }
  .qc-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
  }
  .qc-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,140,191,0.92) 0%, rgba(6,48,74,0.92) 100%);
  }
  .qc-banner-content {
    position: relative;
    z-index: 2;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    color: #fff;
  }
  .qc-banner-eyebrow {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--gold);
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .qc-banner-text h3 {
    font-family: var(--display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .qc-banner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .qc-banner-stats > div {
    text-align: left;
  }
  .qc-banner-stats strong {
    display: block;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .qc-banner-stats span {
    font-family: var(--alt);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }

  @media (max-width: 1000px) {
    .qc-pillars { grid-template-columns: 1fr 1fr; gap: 20px; }
    .qc-banner-content { grid-template-columns: 1fr; padding: 36px 32px; gap: 32px; }
  }
  @media (max-width: 600px) {
    .qc-section { padding: 60px 0; }
    .qc-pillars { grid-template-columns: 1fr; gap: 16px; }
    .qc-banner-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  }

  /* Legacy Stringent Quality Control (no longer rendered) */
  .quality-control-sec {
    padding: 80px 0;
    background: #fff;
  }
  .quality-control-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .quality-control-text p {
    font-size: 15.5px;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 18px;
  }
  .quality-control-text p:last-child { margin-bottom: 0; }
  .quality-control-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 50px rgba(6,48,74,0.12);
  }
  .quality-control-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Quality Policy certificate card */
  .quality-cert {
    position: sticky;
    top: 120px;
    background: linear-gradient(180deg, var(--green-pale) 0%, #fff 30%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(6,48,74,0.08);
  }
  .quality-cert-inner {
    border: 1.5px solid var(--green-light);
    border-radius: 10px;
    padding: 28px 26px;
    text-align: center;
  }
  .quality-cert-logo { height: 46px; width: auto; margin: 0 auto 20px; }
  .quality-cert-head {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-light);
  }
  .quality-cert-quote {
    font-family: var(--body);
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 22px;
  }
  .quality-cert-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
  }
  .quality-cert-list li {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
  }
  .quality-cert-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
  }
  .quality-cert-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
  }
  .quality-cert-foot > span {
    font-family: var(--alt);
    font-size: 11px;
    color: var(--muted);
  }
  .quality-cert-sign { text-align: right; }
  .quality-cert-sign strong {
    display: block;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }
  .quality-cert-sign small {
    font-family: var(--alt);
    font-size: 10px;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Stringent Quality Assurance */
  .quality-assurance {
    padding: 80px 0;
    background: var(--bg-cream);
  }
  .qa-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .qa-text p {
    font-size: 15.5px;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 16px;
  }
  .qa-text p:last-child { margin-bottom: 0; }
  .qa-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(6,48,74,0.1);
  }
  .qa-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

  /* QC SECTIONS */
  .quality-qc {
    padding: 80px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .quality-qc::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 5% 50%, rgba(4,217,196,0.12) 0%, transparent 45%),
      radial-gradient(circle at 95% 50%, rgba(11,140,191,0.15) 0%, transparent 45%);
    pointer-events: none;
  }
  .quality-qc .container { position: relative; z-index: 1; }
  .quality-qc-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
  }
  .quality-qc-head .eyebrow-on-dark {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    margin-bottom: 14px;
  }
  .quality-qc-head .eyebrow-on-dark::before { background: var(--gold); }
  .quality-qc-head h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .quality-qc-head h2 .gold { color: var(--gold); font-style: italic; }
  .quality-qc-head p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }
  .quality-qc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .quality-qc-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(6px);
    transition: border-color 0.3s, transform 0.3s;
  }
  .quality-qc-card:hover {
    border-color: rgba(4,217,196,0.5);
    transform: translateY(-4px);
  }
  .qc-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .qc-card-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: rgba(4,217,196,0.14);
    border: 1px solid rgba(4,217,196,0.3);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .qc-card-head h3 {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .qc-card-count {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
  }
  .quality-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .quality-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    padding: 9px 10px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .quality-list li:hover { background: rgba(255,255,255,0.05); }
  .quality-check {
    flex-shrink: 0;
    margin-top: 1px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(4,217,196,0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .quality-check svg { width: 13px; height: 13px; }

  /* CERTS STRIP */
  .quality-certs {
    padding: 40px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }
  .quality-certs-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .quality-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.3s;
  }
  .quality-cert-pill svg { color: var(--green); }
  .quality-cert-pill:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
  }
  .quality-cert-pill:hover svg { color: #fff; }

  @media (max-width: 900px) {
    .quality-control-grid { grid-template-columns: 1fr; gap: 32px; }
    .quality-control-img { max-width: 520px; }
    .qa-grid { grid-template-columns: 1fr; gap: 32px; }
    .qa-image { max-width: 520px; }
    .quality-qc-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .quality-control-sec, .quality-assurance, .quality-qc { padding: 56px 0; }
    .quality-qc-card { padding: 22px; }
    .quality-qc-card h3 { font-size: 18px; }
  }

  /* ============ MANUFACTURING PAGE ============ */
  .mfg-page-heading {
    padding: 100px 0 80px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--line);
  }

  .mfg-banner {
    background: var(--ink);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
  }
  .mfg-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-bright) 50%, var(--green) 100%);
  }
  .mfg-banner .eyebrow-on-dark { background: rgba(255,255,255,0.08); color: var(--gold); margin-bottom: 18px; }
  .mfg-banner .eyebrow-on-dark::before { background: var(--gold); }
  .mfg-banner-h1 {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .mfg-banner-h1 .gold { color: var(--gold); font-style: italic; }
  .mfg-banner-pills { display: flex; gap: 8px; flex-wrap: wrap; }
  .mfg-banner-pills span {
    padding: 7px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }
  .mfg-unit-block {
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .mfg-unit-block:nth-child(even) { background: var(--bg-soft); }
  .mfg-unit-ghost { display: none; }
  .mfg-unit-head {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 28px;
  }
  .mfg-unit-head-img { border-radius: 12px; overflow: hidden; aspect-ratio: 3/2; }
  .mfg-unit-head-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mfg-unit-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  .mfg-unit-head h2 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .mfg-unit-addr {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .mfg-cats-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .mfg-cat-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
  }
  .mfg-unit-block:nth-child(even) .mfg-cat-block { background: var(--bg-soft); }
  .mfg-cat-name {
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .mfg-cat-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
  .mfg-cat-list li {
    font-size: 13px;
    color: var(--text-soft);
    padding-left: 12px;
    position: relative;
  }
  .mfg-cat-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 4px; height: 4px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.5;
  }
  .mfg-unit-para { font-size: 14px; color: var(--text-soft); line-height: 1.75; }
  .mfg-cert-bar { padding: 72px 0; background: #fff; }
  .mfg-cert-bar-head { text-align: center; margin-bottom: 40px; }
  .mfg-cert-bar-head .eyebrow { margin-bottom: 12px; }
  .mfg-cert-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .mfg-cert-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .mfg-cert-card:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,140,191,0.2); }
  .mfg-cert-card svg { color: var(--green); transition: color 0.3s; }
  .mfg-cert-card:hover svg { color: #fff; }
  .mfg-cert-card strong { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink); transition: color 0.3s; }
  .mfg-cert-card:hover strong { color: #fff; }
  .mfg-cert-card span { font-family: var(--alt); font-size: 10px; color: var(--muted); transition: color 0.3s; }
  .mfg-cert-card:hover span { color: rgba(255,255,255,0.8); }

  @media (max-width: 860px) {
    .mfg-unit-head { grid-template-columns: 1fr; gap: 20px; }
    .mfg-unit-head-img { max-width: 380px; }
    .mfg-cert-cards { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 540px) {
    .mfg-cats-row { grid-template-columns: 1fr 1fr; }
    .mfg-cert-cards { grid-template-columns: repeat(2, 1fr); }
    .mfg-unit-block { padding: 40px 0; }
  }

  /* ============ OLD MFG PAGE HERO (unused) ============ */
  .mfg-page-hero {
    padding: 80px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .mfg-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 50%, rgba(4,217,196,0.15) 0%, transparent 50%),
      radial-gradient(circle at 90% 30%, rgba(11,140,191,0.2) 0%, transparent 50%);
    pointer-events: none;
  }
  .mfg-page-hero .container { position: relative; z-index: 1; }
  .mfg-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }
  .mfg-page-hero-text .eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    margin-bottom: 20px;
  }
  .mfg-page-hero-text .eyebrow::before { background: var(--gold); }
  .mfg-page-hero-text .section-title { color: #fff; margin-bottom: 16px; }
  .mfg-page-hero-text .section-lead { color: rgba(255,255,255,0.85); max-width: 540px; }
  .mfg-page-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 280px;
  }
  .mfg-hero-stat {
    padding: 22px 24px;
    background: rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
  }
  .mfg-hero-stat:hover { background: rgba(255,255,255,0.12); }
  .mfg-hero-stat strong {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .mfg-hero-stat span {
    font-family: var(--alt);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
  }

  /* UNITS */
  .mfg-units-section { padding: 80px 0; background: #fff; }
  .mfg-unit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--line);
  }
  .mfg-unit-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .mfg-unit-row.reverse .mfg-unit-img-wrap { order: 2; }
  .mfg-unit-row.reverse .mfg-unit-info { order: 1; }
  .mfg-unit-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.2;
  }
  .mfg-unit-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mfg-unit-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,48,74,0.6) 100%);
  }
  .mfg-unit-num {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: var(--display);
    font-size: 72px;
    font-weight: 800;
    color: rgba(255,255,255,0.18);
    line-height: 1;
    letter-spacing: -0.04em;
    z-index: 2;
  }
  .mfg-unit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    color: var(--green);
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 12px;
    z-index: 3;
  }
  .mfg-unit-label {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .mfg-unit-title {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.1;
  }
  .mfg-unit-addr {
    display: flex;
    align-items: start;
    gap: 7px;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 28px;
    font-family: var(--body);
    line-height: 1.5;
  }
  .mfg-unit-addr svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
  .mfg-unit-cats { display: flex; flex-direction: column; gap: 20px; }
  .mfg-unit-cat h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .mfg-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .mfg-chip {
    padding: 5px 12px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid var(--green-light);
    transition: all 0.2s;
  }
  .mfg-chip:hover { background: var(--green); color: #fff; border-color: var(--green); }
  .mfg-unit-desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.75;
  }

  /* CERTIFICATIONS */
  .mfg-certs-section {
    padding: 80px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .mfg-certs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(4,217,196,0.15) 0%, transparent 55%);
    pointer-events: none;
  }
  .mfg-certs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .mfg-certs-text .eyebrow-on-dark {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    margin-bottom: 20px;
  }
  .mfg-certs-text .eyebrow-on-dark::before { background: var(--gold); }
  .mfg-certs-text h2 {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .mfg-certs-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
  }
  .mfg-certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .mfg-cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    transition: background 0.2s;
  }
  .mfg-cert-item:hover { background: rgba(255,255,255,0.13); }
  .mfg-cert-item svg { color: var(--gold); flex-shrink: 0; }
  .mfg-cert-item span {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
  }

  @media (max-width: 900px) {
    .mfg-page-hero-inner { grid-template-columns: 1fr; }
    .mfg-page-hero-stats { min-width: unset; max-width: 400px; }
    .mfg-unit-row, .mfg-unit-row.reverse { grid-template-columns: 1fr; gap: 28px; }
    .mfg-unit-row.reverse .mfg-unit-img-wrap { order: 1; }
    .mfg-unit-row.reverse .mfg-unit-info { order: 2; }
    .mfg-certs-inner { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 640px) {
    .mfg-page-hero { padding: 60px 0; }
    .mfg-unit-title { font-size: 26px; }
    .mfg-certs-grid { grid-template-columns: 1fr; }
    .mfg-page-hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  }

  /* ============ MANUFACTURING STRENGTHS ============ */
  .mfg-strength-wrap {
    margin-bottom: 60px;
  }
  .mfg-strength-title {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .mfg-strength-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .mfg-sidebar {
    background: var(--bg-soft);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .mfg-tab {
    padding: 16px 20px;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid var(--line);
    font-family: var(--body);
    font-size: 13.5px;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .mfg-tab:last-child { border-bottom: none; }
  .mfg-tab:hover { background: var(--green-pale); color: var(--green); }
  .mfg-tab.active {
    background: #fff;
    color: var(--green);
    font-weight: 600;
    border-left: 3px solid var(--green);
  }
  .mfg-panel {
    padding: 32px 36px;
  }
  .mfg-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .mfg-panel-title svg { color: var(--green); flex-shrink: 0; }
  .mfg-panel-address {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 28px;
  }
  .mfg-panel-address svg { color: var(--green); flex-shrink: 0; }
  .mfg-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
  }
  .mfg-product-cat h5 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--green-light);
  }
  .mfg-product-cat ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mfg-product-cat ul.mfg-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }
  .mfg-product-cat li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--text-soft);
  }
  .mfg-product-cat li svg { color: var(--green); flex-shrink: 0; }
  .mfg-plant-single {
    border-radius: 12px;
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto;
  }
  .mfg-plant-single img { width: 100%; display: block; }
  .mfg-plant-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  .mfg-plant-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .mfg-plant-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mfg-panel-desc { display: flex; flex-direction: column; gap: 12px; }
  .mfg-panel-desc p { font-size: 14px; color: var(--text-soft); line-height: 1.75; }
  @media (max-width: 768px) {
    .mfg-strength-layout { grid-template-columns: 1fr; }
    .mfg-sidebar { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
    .mfg-tab { white-space: nowrap; border-bottom: none; border-right: 1px solid var(--line); }
    .mfg-tab.active { border-left: none; border-bottom: 3px solid var(--green); }
    .mfg-panel { padding: 24px 20px; }
    .mfg-products-grid { grid-template-columns: 1fr 1fr; }
    .mfg-plant-images { grid-template-columns: 1fr; }
  }
  @media (max-width: 500px) {
    .mfg-products-grid { grid-template-columns: 1fr; }
  }

  /* ============ MANUFACTURING with real images ============ */
  .manufacturing {
    padding: 100px 0;
    background: #fff;
  }
  .mfg-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }
  .mfg-header h2 { margin-top: 16px; margin-bottom: 16px; }
  .mfg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  .mfg-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
  }
  .mfg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(4,217,196,0.12);
    border-color: var(--green);
  }
  .mfg-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
  }
  .mfg-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .mfg-card:hover .mfg-card-img img { transform: scale(1.08); }
  .mfg-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,140,191,0.3) 0%, rgba(11,140,191,0.7) 100%);
  }
  .mfg-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--gold);
    color: var(--green-deep);
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 12px;
    z-index: 3;
  }
  .mfg-status-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .mfg-status-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 8px #4caf50;
  }
  .mfg-card-num {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--display);
    font-size: 64px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    line-height: 1;
    letter-spacing: -0.04em;
    z-index: 3;
  }
  .mfg-card-body { padding: 28px; }
  .mfg-card-body h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .mfg-card-body address {
    font-style: normal;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .mfg-card-body ul {
    list-style: none;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
  }
  .mfg-card-body ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    font-family: var(--alt);
  }
  .mfg-card-body ul li svg { color: var(--green); flex-shrink: 0; }
  .certs-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cert-pill {
    padding: 12px 22px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .cert-pill:hover { background: var(--green); color: #fff; border-color: var(--green); }
  .cert-pill svg { color: var(--green); }
  .cert-pill:hover svg { color: var(--gold); }

  /* ============ GLOBAL ============ */
  .global {
    padding: 100px 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
  }
  .global-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  .global-text .eyebrow { margin-bottom: 16px; }
  .global-text h2 { margin-bottom: 20px; }
  .global-text > p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .region-list { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
  .region-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    transition: all 0.3s;
  }
  .region-list li:hover {
    border-color: var(--green);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(4,217,196,0.08);
  }
  .region-flag {
    width: 36px; height: 36px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
  }
  .region-name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }
  .region-name small {
    display: block;
    font-family: var(--body);
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 400;
    margin-top: 2px;
  }
  .region-count {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.01em;
  }
  .map-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    aspect-ratio: 1.4;
  }
  .map-stat-card {
    position: absolute;
    top: 28px;
    right: 28px;
    background: var(--green-deep);
    color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    z-index: 3;
  }
  .map-stat-card .n {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .map-stat-card .n .gold { color: var(--gold); }
  .map-stat-card .l {
    font-family: var(--alt);
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .map-wrap svg { width: 100%; height: 100%; }
  .map-marker { fill: var(--green); animation: marker-pulse 2s infinite; }
  .map-marker.hq { fill: var(--gold); }
  @keyframes marker-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ============ TESTIMONIALS with avatars ============ */
  .testimonials {
    padding: 100px 0 80px;
    background: #fff;
  }
  .test-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
  }
  .test-header h2 { margin: 14px 0 16px; }
  .test-header .section-lead { margin: 0; }

  /* Slider viewport — clips overflow */
  .test-slider-vp {
    overflow: hidden;
    position: relative;
  }
  .test-slider-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    will-change: transform;
  }

  /* Card */
  .test-card {
    flex-shrink: 0;
    background: #f5f9fd;
    border: 1px solid #d6eaf7;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
    min-height: 300px;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  }
  .test-card:hover {
    box-shadow: 0 16px 40px rgba(6,48,74,0.10);
    border-color: var(--green);
    background: #fff;
  }
  .test-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .test-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--green);
    box-shadow: 0 0 0 4px rgba(11,140,191,0.10);
  }
  .test-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .test-avatar-fallback {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddeef9;
    color: var(--green);
  }
  .test-rating { display: flex; gap: 3px; color: #f59e0b; }
  .test-text {
    font-family: var(--alt);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    flex: 1;
    margin: 0;
  }
  .test-author {
    padding-top: 18px;
    border-top: 1px solid #d6eaf7;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
  }
  .test-author h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
  }
  .test-author p {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin: 0;
  }
  .test-author span { font-size: 11.5px; color: var(--text-soft); }

  /* Empty state */
  .test-empty-state {
    text-align: center;
    padding: 48px 24px;
    border: 1.5px dashed #d6eaf7;
    border-radius: 16px;
    background: #f8fbff;
    max-width: 560px;
    margin: 0 auto;
  }
  .test-empty-icon {
    font-size: 36px;
    color: #b8d4e8;
    margin-bottom: 14px;
  }
  .test-empty-state h3 {
    font-family: var(--display);
    font-size: 18px;
    color: var(--ink);
    margin: 0 0 6px;
    font-weight: 700;
  }
  .test-empty-state p {
    font-size: 13.5px;
    color: var(--text-soft);
    margin: 0;
  }
  .test-loading-placeholder { min-height: 200px; }

  /* Dot indicators */
  .test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }
  .test-dot {
    width: 8px; height: 8px;
    border-radius: 99px;
    border: none;
    background: #c8dff0;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .test-dot.active {
    width: 28px;
    background: var(--green);
  }

  /* ============ CTA ============ */
  .cta {
    padding: 100px 0;
    background: #fff;
  }
  .cta-box {
    background: var(--green-deep);
    border-radius: 12px;
    padding: 80px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6,48,74,0.25);
  }
  .cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,140,191,0.95) 0%, rgba(4,217,196,0.85) 100%);
    z-index: 1;
  }
  .cta-box::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(4,217,196,0.3) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
  }
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
  }
  .cta-content .eyebrow {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 24px;
  }
  .cta-content .eyebrow::before { background: #fff; }
  .cta-content h2 {
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 20px;
  }
  .cta-content h2 .gold { color: var(--gold); font-style: italic; }
  .cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.6;
  }
  .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-white {
    padding: 16px 32px;
    background: #fff;
    color: var(--green);
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .btn-white:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-2px); }
  .btn-white-outline {
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }
  .btn-white-outline:hover {
    background: #fff;
    color: var(--green);
    border-color: #fff;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--green-deep);
    color: #fff;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-brand .logo {
    align-self: flex-start;
    height: auto;
    margin: 0;
  }
  .footer-brand .logo-img {
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 88px;
    width: auto;
  }
  .footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 360px;
  }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social a:hover {
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-2px);
  }
  .footer-col h4 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-family: var(--body);
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
  }
  .footer-col a:hover { color: var(--gold); transform: translateX(4px); }
  .footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: start;
  }
  .footer-contact-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .footer-contact-item small {
    font-family: var(--alt);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
  }
  .footer-contact-item p { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.5; }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.8); }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
  }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* ============ ANIMATIONS ============ */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============ RESPONSIVE ============ */
  /* ============ HAMBURGER ============ */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.3s;
  }
  .hamburger:hover { border-color: var(--green); }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ============ MOBILE DRAWER — CLEAN & RESPONSIVE ============ */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(6,48,74,0.65);
    z-index: 9998;
  }
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.25);
  }
  .mobile-drawer.open { transform: translateX(0); }

  /* Head */
  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .mobile-drawer-logo img {
    height: 36px;
    width: auto;
    display: block;
  }
  .mobile-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-drawer-close:hover,
  .mobile-drawer-close:active { background: var(--bg-cream); }

  /* Nav list */
  .mobile-nav {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    flex: 0 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav > li + li {
    border-top: 1px solid var(--line-soft);
  }
  .mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    color: var(--ink);
    font-family: var(--alt);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }
  .mobile-nav-item:focus,
  .mobile-nav-item:focus-visible { outline: none; box-shadow: none; }
  .mobile-nav-item:active { background: rgba(11,140,191,0.06); }

  /* Row with link + separate toggle button */
  .mobile-nav-row {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  .mobile-nav-row .mobile-nav-link {
    flex: 1;
    justify-content: flex-start;
  }
  .mobile-nav-toggle {
    flex-shrink: 0;
    width: 48px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--line-soft);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .mobile-nav-toggle:active { background: rgba(11,140,191,0.06); }
  .mobile-nav-toggle.open { color: var(--green); }
  .mobile-nav-toggle.open .mobile-chevron { transform: rotate(180deg); }
  .mobile-nav-row.open .mobile-nav-link { color: var(--green); }

  /* Active route: green text + soft background + left accent bar */
  .mobile-nav-item.active {
    color: var(--green);
    font-weight: 700;
    background: var(--green-pale);
  }
  .mobile-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--green);
    border-radius: 0 4px 4px 0;
  }
  .mobile-nav-item.active .mobile-chevron { color: var(--green); }
  /* Submenu item active state */
  .mobile-sub-item.active {
    color: var(--green);
    background: var(--green-pale);
    font-weight: 600;
  }

  /* Submenu open state: only green text, no full background */
  .mobile-nav-item.open {
    color: var(--green);
  }
  .mobile-chevron {
    transition: transform 0.3s ease;
    color: var(--muted);
    flex-shrink: 0;
  }
  .mobile-nav-item.open .mobile-chevron {
    transform: rotate(180deg);
    color: var(--green);
  }

  /* Submenu — soft gray panel */
  .mobile-sub {
    list-style: none;
    padding: 4px 0 6px;
    margin: 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--line-soft);
  }
  .mobile-sub-item {
    display: block;
    min-height: 40px;
    padding: 10px 20px 10px 36px;
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 13.5px;
    text-decoration: none;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-sub-item:active { background: rgba(11,140,191,0.05); }
  .mobile-sub-item:hover { color: var(--green); }

  /* Footer */
  .mobile-drawer-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    background: var(--bg-cream);
  }
  .mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    color: var(--ink);
    font-family: var(--alt);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-phone svg { color: var(--green); flex-shrink: 0; }
  .mobile-cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* Very small screens — full-width drawer */
  @media (max-width: 480px) {
    .mobile-drawer { width: 100vw; max-width: 100vw; }
    .mobile-drawer-head { padding: 12px 16px; }
    .mobile-nav-item { padding: 12px 18px; font-size: 14.5px; }
    .mobile-sub-item { padding-left: 32px; font-size: 13.5px; }
  }

  /* ============ TABLET (≤1100px) ============ */
  @media (max-width: 1100px) {
    .header-content { grid-template-columns: auto 1fr auto; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero-content, .pd-hero, .about-mod-grid, .global-grid, .cat-header { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 1; max-width: 500px; margin: 0 auto; }
    .cat-grid, .mfg-cards { grid-template-columns: repeat(2, 1fr); }
    .product-list { grid-template-columns: repeat(2, 1fr); }
    .stats-big-content { grid-template-columns: repeat(2, 1fr); }
    .pd-features, .comp-grid { grid-template-columns: 1fr; }
    .test-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .header-phone { display: none; }
    .cat-header { text-align: left; }
    .cat-header-left { margin: 0; }
    .cat-header-left .eyebrow { display: inline-flex; }
    .cat-header-right p { text-align: left; max-width: 100%; }
    .cat-header-right { align-items: flex-start; }
    .cat-header-ctas { justify-content: flex-start; }
    .comp-header { grid-template-columns: 1fr; gap: 20px; }
    .about-mod-img-card { right: 16px; max-width: 200px; padding: 18px; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .acquisition-grid { grid-template-columns: 1fr; gap: 36px; }
    .acquisition-aside { position: static; }
    .marketing-list { grid-template-columns: 1fr; }
    .team-row, .team-row.reverse { grid-template-columns: 280px 1fr; }
    .team-row.reverse .team-photo { order: 1; }
    .team-row.reverse .team-info { order: 2; text-align: left; }
    .brochure-card { grid-template-columns: 60px 1fr auto; gap: 20px; padding: 20px 24px; }
  }

  /* ============ MOBILE (≤640px) ============ */
  @media (max-width: 640px) {
    /* global */
    .header-content { padding: 0 16px; }
    .container { padding: 0 16px; }
    .logo-img { height: 52px; }

    /* hero */
    .hero { padding: 48px 0 60px; min-height: auto; }
    .hero-content { padding: 0 16px; gap: 32px; }
    .hero h1 { font-size: 36px; }
    .hero-desc { font-size: 15px; }
    .hero-search { flex-direction: column; border-radius: 12px; padding: 12px; }
    .hero-search input { padding: 10px 14px; }
    .hero-search button { width: 100%; justify-content: center; border-radius: 12px; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-visual { display: none; }
    .float-1, .float-2 { display: none; }

    /* trusted strip — marquee mode on mobile */
    .trusted-content { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 16px; }
    .trusted-content h6 { border-right: none; padding-right: 0; }
    .trusted-logos {
      width: 100%;
      overflow: hidden;
      position: relative;
      gap: 0;
      mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    }
    .trusted-marquee-track {
      display: flex !important;
      gap: 32px;
      width: max-content;
      animation: trusted-marquee 22s linear infinite;
      align-items: center;
    }
    .trusted-logo { flex-shrink: 0; white-space: nowrap; }
    .trusted-logo[aria-hidden="true"] { display: inline-flex; }
    @keyframes trusted-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* sections */
    .categories, .product-detail, .about-mod, .stats-big, .manufacturing, .global, .testimonials, .cta,
    .about-intro, .timeline-section, .team-section, .marketing-section, .acquisition-section, .brochure-section {
      padding: 60px 0;
    }

    /* categories */
    .cat-header { gap: 20px; }
    .section-title { font-size: 28px; }
    .cat-grid, .mfg-cards, .product-list { grid-template-columns: 1fr; }

    /* stats */
    .stats-big-content { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 24px; }
    .stat-big-item { border-right: none; border-bottom: none; padding: 0; }
    .stat-big-num { font-size: 48px; }

    /* product detail — tight mobile spacing */
    .product-detail { padding: 20px 0 32px !important; }
    .lfx-hero-section { padding: 20px 0 0 !important; }
    .lfx-hero-section .pd-hero { margin-bottom: 28px !important; }
    .pd-hero {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 24px;
    }
    .pd-info { display: contents; }
    .pd-info > .eyebrow { order: 1; margin-bottom: 8px !important; }
    .pd-info > h2 {
      order: 2;
      margin: 0 0 6px !important;
      font-size: 22px !important;
      line-height: 1.15 !important;
    }
    .pd-info > p {
      order: 3;
      margin: 0 0 12px !important;
      font-size: 14px !important;
      line-height: 1.55 !important;
    }
    .pd-image { order: 4; min-height: 200px; margin-bottom: 12px; }
    .pd-features { order: 5; margin-bottom: 0 !important; gap: 8px; }
    .pd-catalog, .composition { padding: 20px; }
    .pd-pagination { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pd-pagination-left { flex-direction: column; gap: 8px; }
    .product-list { grid-template-columns: 1fr; }

    /* about */
    .about-intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-intro-card { position: static; padding: 20px; }
    .about-intro-card-top h3 { font-size: 18px; }
    .timeline-item, .timeline-item.left, .timeline-item.right {
      width: 100%; left: 0; padding: 12px 0 12px 52px; text-align: left;
    }
    .timeline-line { left: 18px; }
    .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: 0; right: auto; }
    .timeline-item.left .timeline-card::after, .timeline-item.right .timeline-card::after {
      left: -7px; right: auto;
      border-right: none; border-top: none;
      border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
    }
    .team-row, .team-row.reverse { grid-template-columns: 1fr; gap: 20px; }
    .team-row.reverse .team-photo { order: 1; }
    .team-row.reverse .team-info { order: 2; text-align: left; }
    .team-photo { max-width: 100%; aspect-ratio: 1.2; }
    .team-info h3 { font-size: 20px; }
    .marketing-list { grid-template-columns: 1fr; gap: 0; }
    .acquisition-grid { grid-template-columns: 1fr; gap: 28px; }
    .acquisition-aside { position: static; }
    .acquisition-quote p { font-size: 16px; }
    .brochure-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }

    /* global */
    .global-grid { grid-template-columns: 1fr; gap: 28px; }
    .map-wrap { padding: 20px; }

    /* testimonials */
    .test-grid { grid-template-columns: 1fr; }
    .test-card { padding: 24px; }
    .test-card-inner { padding: 22px 20px; }
    .test-text { font-size: 14px; line-height: 1.65; }

    /* cta */
    .cta-box { padding: 48px 20px; }
    .cta-content h2 { font-size: 32px; }
    .cta-actions { flex-direction: column; gap: 10px; }
    .btn-white, .btn-white-outline { width: 100%; justify-content: center; }

    /* footer */
    .footer-grid { gap: 28px; padding: 0 16px 40px; }
    .footer-bottom { padding: 20px 16px 0; flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-social { flex-wrap: wrap; }
  }

  /* ============ NUTRITION & DRUGS PAGE ============ */
  .nd-intro {
    padding: 80px 0 20px;
    background: #fff;
    text-align: left;
  }
  .nd-intro .eyebrow { margin-bottom: 16px; }
  .nd-intro-title {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  .nd-intro-title .green-text { color: var(--green); }
  .nd-intro-desc {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
  }

  /* Product sections */
  .nd-product { padding: 70px 0; background: #fff; }
  .nd-product-alt { background: var(--bg-cream); }
  .nd-prod-media { position: relative; }
  .nd-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
  }
  .nd-prod-grid-reverse { grid-template-columns: 1.15fr 1fr; }
  .nd-prod-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--green-light);
    box-shadow: 0 16px 40px rgba(6,48,74,0.1);
  }
  .nd-prod-img img { width: 100%; height: 100%; object-fit: cover; }
  .nd-prod-body .eyebrow { margin-bottom: 16px; }
  .nd-prod-title {
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .nd-prod-title .green-text { color: var(--green); }
  .nd-prod-sub {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .nd-prod-desc {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .nd-block { margin-top: 4px; }
  .nd-block-head {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .nd-block-head .green-text { color: var(--green); }

  /* theme pills */
  .nd-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .nd-pill {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
  }
  .nd-product-alt .nd-pill:not(.nd-pill-solid) { background: var(--green-pale); border-color: var(--green-light); }
  .nd-pill-solid,
  .nd-product-alt .nd-pill-solid {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }

  /* spec table (ingredients) */
  .nd-spec-table {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    max-width: 460px;
    background: #fff;
  }
  .nd-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nd-spec-row:last-child { border-bottom: none; }
  .nd-spec-row:nth-child(even) { background: var(--bg-soft); }
  .nd-spec-name {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
  }
  .nd-spec-val {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
  }

  /* Eurozold detail two-column */
  .nd-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .nd-section-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .nd-section-head .eyebrow { margin-bottom: 12px; }

  /* Ingredients box */
  .nd-ing-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 20px;
    max-width: 440px;
  }
  .nd-ing-heading {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .nd-ing-sub {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 10px;
  }
  .nd-ing-line {
    font-family: var(--alt);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nd-ing-line:last-child { border-bottom: none; }

  .nd-packs-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: 10px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
  }
  .nd-packs-row svg { color: var(--green); }

  /* Detail columns / bullet lists */
  .nd-detail-col .nd-block-head { margin-bottom: 16px; }
  .nd-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .nd-bullet-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .nd-bullet-list li svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .nd-bullet-list li span {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.7;
  }

  /* Composition table section */
  .nd-table-section {
    padding: 80px 0 100px;
    background: #fff;
  }
  .nd-table-section .pd-catalog { margin-bottom: 0; }

  /* CTA */
  .nd-cta {
    padding: 80px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .nd-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(4,217,196,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .nd-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .nd-cta-inner h2 {
    font-family: var(--display);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .nd-cta-inner h2 .gold { color: var(--gold); font-style: italic; }
  .nd-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
  }
  .nd-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  @media (max-width: 960px) {
    .nd-prod-grid, .nd-prod-grid-reverse { grid-template-columns: 1fr; gap: 32px; }
    .nd-prod-grid-reverse .nd-prod-media { order: -1; }
    .nd-prod-media { max-width: 520px; }
    .nd-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .nd-cta-inner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 640px) {
    .nd-intro { padding: 60px 0 16px; }
    .nd-product { padding: 48px 0; }
  }

  /* ============ CONTACT PAGE ============ */
  .contact-hero {
    padding: 80px 0 60px;
    background: var(--bg-cream);
    text-align: center;
  }
  .contact-hero .eyebrow { margin-bottom: 16px; }
  .contact-hero-title {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero-title .green-text { color: var(--green); }
  .contact-hero-lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
  }

  .contact-main {
    padding: 40px 0 100px;
    background: var(--bg-cream);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-section-head { margin-bottom: 32px; }
  .contact-section-head .eyebrow { margin-bottom: 0; }

  .corp-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11,140,191,0.25);
  }
  .corp-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(4,217,196,0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  .corp-card-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .corp-card h3 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .corp-row {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
  }
  .corp-row-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .corp-row strong {
    display: block;
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .corp-row p,
  .corp-row a {
    font-family: var(--body);
    font-size: 14px;
    color: #fff;
    line-height: 1.55;
    text-decoration: none;
  }
  .corp-row a:hover { color: var(--gold); }

  .corp-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
  .corp-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #fff;
    border: none;
    border-radius: 10px;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .corp-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }
  .corp-social-btn.linkedin svg { color: #0A66C2; }
  .corp-social-btn.twitter svg { color: #000; }
  .corp-social-btn.instagram svg { color: #E1306C; }

  .locations-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .loc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s ease;
  }
  .loc-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(11,140,191,0.12);
  }
  .loc-card-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
  }
  .loc-icon {
    width: 36px;
    height: 36px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .loc-card h5 {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
  }
  .loc-city {
    font-family: var(--alt);
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .loc-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55;
  }

  /* Contact form */
  .contact-right { position: sticky; top: 120px; }
  .form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 16px 40px rgba(6,48,74,0.06);
  }
  .form-card-head { margin-bottom: 28px; }
  .form-card-head .eyebrow { margin-bottom: 12px; }
  .form-card-head h2 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .form-card-head h2 .green-text { color: var(--green); }
  .form-card-head p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .form-field label span { color: var(--coral); }
  .form-field > input,
  .form-field textarea,
  .phone-input-row > input {
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    transition: all 0.25s ease;
    outline: none;
    resize: vertical;
  }
  .form-field > input::placeholder,
  .form-field textarea::placeholder,
  .phone-input-row > input::placeholder { color: var(--muted); }
  .form-field > input:focus,
  .form-field textarea:focus,
  .phone-input-row > input:focus {
    background: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(11,140,191,0.1);
  }
  .form-submit {
    margin-top: 6px;
    padding: 14px 26px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--alt);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(11,140,191,0.25);
  }
  .form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11,140,191,0.35);
  }
  .form-success {
    background: var(--gold-soft);
    color: var(--green-deep);
    border: 1px solid var(--gold);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--alt);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .form-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--alt);
    font-weight: 600;
    margin-bottom: 20px;
  }

  /* Phone input with country code picker */
  .phone-input-row {
    display: flex;
    gap: 0;
  }
  .phone-input-row input {
    flex: 1;
    border-radius: 0 10px 10px 0 !important;
  }
  .has-error .cc-picker-trigger {
    border-color: #ef4444;
    background: #fef2f2;
  }

  /* Custom country code picker */
  .cc-picker {
    position: relative;
    flex-shrink: 0;
  }
  .cc-picker-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 10px 12px 14px;
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.25s ease;
    height: 100%;
    white-space: nowrap;
  }
  .cc-picker-trigger:hover { background: var(--line-soft); }
  .cc-picker.is-open .cc-picker-trigger {
    background: #fff;
    border-color: var(--green);
  }
  .cc-flag-img {
    display: block;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }
  .cc-code { font-weight: 600; font-size: 13px; }
  .cc-chevron {
    color: var(--muted);
    transition: transform 0.2s ease;
    margin-left: 2px;
  }
  .cc-picker.is-open .cc-chevron { transform: rotate(180deg); }

  /* Dropdown */
  .cc-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(6,48,74,0.12);
    z-index: 50;
    overflow: hidden;
    animation: ccSlide 0.15s ease;
  }
  @keyframes ccSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .cc-search-wrap {
    padding: 10px 10px 8px;
    border-bottom: 1px solid var(--line-soft);
  }
  .cc-search {
    width: 100%;
    padding: 9px 14px;
    border: 1.5px solid var(--line);
    border-radius: 20px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink);
    outline: none;
    background: var(--bg-soft);
    transition: all 0.2s ease;
  }
  .cc-search:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11,140,191,0.08);
  }
  .cc-search::placeholder { color: var(--muted); }
  .cc-list {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 6px;
  }
  .cc-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 13.5px;
  }
  .cc-option:hover { background: var(--bg-soft); }
  .cc-option.active { background: var(--green-pale); color: var(--green); }
  .cc-option .cc-flag-img { width: 22px; height: 16px; }
  .cc-option-name { flex: 1; font-weight: 500; color: var(--ink); }
  .cc-option.active .cc-option-name { color: var(--green); font-weight: 600; }
  .cc-option-code { font-size: 12.5px; color: var(--muted); font-weight: 600; }
  .cc-no-result { color: var(--muted); justify-content: center; cursor: default; }
  .cc-no-result:hover { background: transparent; }

  /* Field-level validation errors */
  .form-field.has-error > input,
  .form-field.has-error textarea,
  .has-error .phone-input-row > input {
    border-color: #ef4444;
    background: #fef2f2;
  }
  .form-field.has-error > input:focus,
  .form-field.has-error textarea:focus,
  .has-error .phone-input-row > input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
  }
  .form-field.has-error label { color: #dc2626; }
  .field-error {
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 500;
    color: #dc2626;
    margin-top: -2px;
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  @media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-right { position: static; }
    .locations-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .contact-hero { padding: 60px 0 40px; }
    .contact-main { padding: 50px 0 70px; }
    .corp-card { padding: 24px; }
    .form-card { padding: 24px; }
    .locations-grid { grid-template-columns: 1fr; }
    .cc-picker-trigger { padding: 10px 8px 10px 10px; }
    .cc-code { font-size: 12px; }
    .cc-flag-img { width: 20px !important; height: 15px !important; }
    .cc-dropdown { width: 240px; }
    .phone-input-row input { font-size: 13px; }
    .contact-right { margin-top: 0; }
  }

  /* ============ REGULATORY PAGE ============ */
  .reg-hero {
    padding: 80px 0 70px;
    background: var(--bg-cream);
    text-align: center;
  }
  .reg-hero .eyebrow { margin-bottom: 16px; }
  .reg-hero-title {
    font-family: var(--display);
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .reg-hero-title .green-text { color: var(--green); }
  .reg-hero-lead {
    max-width: 740px;
    margin: 0 auto 32px;
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
  }
  .reg-hero-lead strong { color: var(--ink); font-weight: 700; }
  .reg-hero-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .reg-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    transition: all 0.3s ease;
  }
  .reg-pill:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    box-shadow: 0 8px 18px rgba(11,140,191,0.12);
  }
  .reg-pill svg { color: var(--green); }

  .reg-certs {
    padding: 90px 0;
    background: #fff;
  }
  .reg-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
  }
  .reg-section-head .eyebrow { margin-bottom: 16px; }
  .reg-section-head h2 { margin-bottom: 18px; }
  @media (max-width: 640px) {
    .reg-section-head {
      text-align: left;
      margin: 0 0 32px;
      max-width: 100%;
    }
    .reg-section-head .eyebrow { align-self: flex-start; }
    .reg-section-head h2 { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
    .reg-section-head .section-lead { font-size: 14.5px; line-height: 1.55; }
  }
  .reg-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .reg-cert-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .reg-cert-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    opacity: 0.08;
    transition: all 0.4s ease;
  }
  .reg-cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(11,140,191,0.14);
  }
  .reg-cert-card:hover::before { opacity: 0.18; }
  .reg-cert-gold::before { background: var(--gold); }
  .reg-cert-green::before { background: var(--green); }
  .reg-cert-teal::before { background: var(--green-bright); }

  .reg-cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }
  .reg-cert-gold .reg-cert-icon { background: var(--gold-soft); color: var(--gold); }
  .reg-cert-green .reg-cert-icon { background: var(--green-light); color: var(--green); }
  .reg-cert-teal .reg-cert-icon { background: rgba(4,217,196,0.12); color: var(--green-bright); }

  .reg-cert-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .reg-cert-issuer {
    font-family: var(--alt);
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  .reg-cert-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .reg-cert-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(4,217,196,0.1);
    color: var(--green);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    align-self: flex-start;
  }
  .reg-cert-check svg { color: var(--green); }

  /* Gallery */
  .reg-gallery {
    padding: 90px 0;
    background: var(--bg-cream);
  }
  .reg-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .reg-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-soft);
    font-family: var(--alt);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .reg-tab:hover { color: var(--green); }
  .reg-tab.active {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 14px rgba(11,140,191,0.25);
  }
  .reg-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(11,140,191,0.1);
    color: var(--green-dark);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
  }
  .reg-tab.active .reg-tab-count {
    background: rgba(255,255,255,0.22);
    color: #fff;
  }

  /* Image-focused certificate gallery */
  .reg-cert-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .reg-doc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
  }
  .reg-doc-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 22px 44px rgba(11,140,191,0.14);
  }
  .reg-doc-preview {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f6f8fa;
  }

  /* Stylized "certificate paper" preview */
  .reg-doc-paper {
    position: absolute;
    inset: 16px;
    background: #fff;
    border-radius: 6px;
    padding: 22px 18px;
    box-shadow: 0 6px 16px rgba(6,48,74,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.5s ease;
  }
  .reg-doc-card:hover .reg-doc-paper { transform: scale(1.03); }
  .reg-doc-blue .reg-doc-paper { background: linear-gradient(180deg, #f0f7fc 0%, #fff 70%); border-top: 4px solid var(--green); }
  .reg-doc-cream .reg-doc-paper { background: linear-gradient(180deg, #fff8e6 0%, #fff 70%); border-top: 4px solid #d4a017; }
  .reg-doc-green .reg-doc-paper { background: linear-gradient(180deg, #e8f7e8 0%, #fff 70%); border-top: 4px solid #4caf50; }
  .reg-doc-navy  .reg-doc-paper { background: linear-gradient(180deg, #eef2f7 0%, #fff 70%); border-top: 4px solid var(--ink); }

  /* When admin uploads an actual cert image, swap fake "paper" for the photo */
  .reg-doc-paper-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
  }
  .reg-doc-paper-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .reg-doc-paper-image .reg-doc-paper-stamp {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  /* Higher specificity (.reg-modal-paper.reg-modal-paper-image) to beat
     the base .reg-modal-paper { min-height: 600px } defined further down */
  .reg-modal-paper.reg-modal-paper-image {
    padding: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
    gap: 12px;
  }
  .reg-modal-paper.reg-modal-paper-image img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 6px;
  }
  .reg-modal-paper.reg-modal-paper-pdf {
    padding: 0;
    min-height: 0;
    overflow: hidden;
  }
  .reg-modal-pdf-link {
    margin: 14px auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    font-family: var(--alt);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .reg-modal-pdf-link:hover { background: var(--green-deep); transform: translateY(-1px); }

  /* PDF preview inside the card */
  .reg-doc-paper-pdf {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
  }
  .reg-doc-paper-pdf-embed {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* let the "View Certificate" overlay handle clicks */
  }
  .reg-doc-paper-pdf-fallback {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--green);
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    padding: 30px;
    text-align: center;
  }
  .reg-doc-paper-pdf-fallback strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
  }
  .reg-doc-paper-pdf-fallback small { font-size: 12px; color: var(--text-soft); }

  /* PDF preview inside the modal — large iframe + open-in-tab button */
  .reg-modal-paper-pdf {
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 540px;
  }
  .reg-modal-pdf-frame {
    flex: 1;
    width: 100%;
    min-height: 80vh;
    border: none;
    background: #f4f6f8;
  }

  .reg-doc-paper-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(6,48,74,0.15);
  }
  .reg-doc-paper-logo {
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.18em;
  }
  .reg-doc-paper-stamp {
    padding: 3px 8px;
    border: 1.5px solid currentColor;
    border-radius: 4px;
    font-family: var(--alt);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    transform: rotate(-4deg);
  }
  .reg-doc-blue .reg-doc-paper-stamp { color: var(--green); }
  .reg-doc-cream .reg-doc-paper-stamp { color: #d4a017; }
  .reg-doc-green .reg-doc-paper-stamp { color: #4caf50; }

  .reg-doc-paper-title {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .reg-doc-paper-issuer {
    font-family: var(--alt);
    font-size: 9px;
    color: var(--text-soft);
    letter-spacing: 0.06em;
  }
  .reg-doc-paper-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 6px 0;
  }
  .reg-doc-paper-lines span {
    height: 4px;
    background: rgba(6,48,74,0.08);
    border-radius: 2px;
  }
  .reg-doc-paper-lines span:nth-child(2) { width: 92%; }
  .reg-doc-paper-lines span:nth-child(3) { width: 78%; }
  .reg-doc-paper-lines span:nth-child(4) { width: 88%; }
  .reg-doc-paper-no {
    margin-top: auto;
    font-family: var(--alt);
    font-size: 8px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    word-break: break-all;
    line-height: 1.4;
  }
  .reg-doc-paper-no small {
    display: block;
    font-size: 7px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
  }
  .reg-doc-paper-seal {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    opacity: 0.45;
  }
  .reg-doc-blue .reg-doc-paper-seal { color: var(--green); }
  .reg-doc-cream .reg-doc-paper-seal { color: #d4a017; }
  .reg-doc-green .reg-doc-paper-seal { color: #4caf50; }
  .reg-doc-paper-seal svg { width: 22px; height: 22px; }

  .reg-doc-unit-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: rgba(6,48,74,0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 8px;
    font-family: var(--alt);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 3;
  }

  .reg-doc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,48,74,0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  .reg-doc-card:hover .reg-doc-overlay { opacity: 1; }
  .reg-doc-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    background: #fff;
    color: var(--green-deep);
    border: none;
    border-radius: 8px;
    font-family: var(--alt);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .reg-doc-view:hover {
    background: var(--gold);
  }
  .reg-doc-download-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  .reg-doc-download-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
  }

  .reg-doc-info {
    padding: 14px 18px;
    border-top: 1px solid var(--line-soft);
    text-align: center;
  }
  .reg-doc-info h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
  }

  /* Certificate modal */
  .reg-modal {
    position: fixed;
    inset: 0;
    background: rgba(6,48,74,0.78);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: regFadeIn 0.25s ease;
    overscroll-behavior: contain;
    overflow: hidden;
  }
  @keyframes regFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .reg-modal-inner {
    position: relative;
    max-width: 540px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: regScaleIn 0.3s ease;
  }
  /* Wider modal when showing an image cert or PDF preview */
  .reg-modal-inner:has(.reg-modal-paper-image),
  .reg-modal-inner:has(.reg-modal-paper-pdf) {
    max-width: 880px;
  }
  @keyframes regScaleIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .reg-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.25s ease;
  }
  .reg-modal-close:hover {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    transform: rotate(90deg);
  }
  .reg-modal-paper {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 48px 44px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .reg-modal-paper.reg-doc-blue { border-top: 6px solid var(--green); background: linear-gradient(180deg, #f0f7fc 0%, #fff 40%); }
  .reg-modal-paper.reg-doc-cream { border-top: 6px solid #d4a017; background: linear-gradient(180deg, #fff8e6 0%, #fff 40%); }
  .reg-modal-paper.reg-doc-green { border-top: 6px solid #4caf50; background: linear-gradient(180deg, #e8f7e8 0%, #fff 40%); }
  .reg-modal-paper-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(6,48,74,0.12);
  }
  .reg-modal-logo {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.18em;
  }
  .reg-modal-paper .reg-doc-paper-stamp {
    padding: 6px 14px;
    font-size: 14px;
    letter-spacing: 0.18em;
    border-width: 2.5px;
  }
  .reg-modal-title {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
    margin-top: 12px;
  }
  .reg-modal-issuer {
    font-family: var(--alt);
    font-size: 14px;
    color: var(--text-soft);
    text-align: center;
    letter-spacing: 0.04em;
  }
  .reg-modal-issuer strong { color: var(--ink); font-weight: 700; }
  .reg-modal-lines {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 20px 0 28px;
  }
  .reg-modal-lines span {
    height: 7px;
    background: rgba(6,48,74,0.07);
    border-radius: 3px;
  }
  .reg-modal-lines span:nth-child(2) { width: 95%; }
  .reg-modal-lines span:nth-child(3) { width: 82%; }
  .reg-modal-lines span:nth-child(4) { width: 90%; }
  .reg-modal-lines span:nth-child(5) { width: 76%; }
  .reg-modal-lines span:nth-child(6) { width: 60%; }

  .reg-modal-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    padding-top: 22px;
    border-top: 2px dashed rgba(6,48,74,0.12);
  }
  .reg-modal-footer small {
    display: block;
    font-family: var(--alt);
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .reg-modal-footer strong {
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    word-break: break-all;
  }
  .reg-modal-seal {
    position: absolute;
    right: 36px;
    bottom: 24px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    opacity: 0.32;
    pointer-events: none;
  }
  .reg-modal-paper.reg-doc-blue .reg-modal-seal { color: var(--green); }
  .reg-modal-paper.reg-doc-cream .reg-modal-seal { color: #d4a017; }
  .reg-modal-paper.reg-doc-green .reg-modal-seal { color: #4caf50; }
  .reg-modal-seal svg { width: 48px; height: 48px; }

  .reg-modal-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }
  .reg-modal-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--green-deep);
    border: none;
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 12px 28px rgba(4,217,196,0.4);
  }
  .reg-modal-download:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255,255,255,0.3);
  }

  @media (max-width: 640px) {
    .reg-modal-paper { padding: 36px 24px; min-height: 500px; }
    .reg-modal-title { font-size: 22px; }
    .reg-modal-footer { grid-template-columns: 1fr; gap: 12px; }
    .reg-modal-seal { width: 70px; height: 70px; right: 20px; bottom: 16px; }
  }

  /* Country approvals */
  .reg-countries {
    padding: 100px 0;
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .reg-countries::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 30%, rgba(4,217,196,0.2) 0%, transparent 50%),
      radial-gradient(circle at 88% 70%, rgba(11,140,191,0.25) 0%, transparent 55%);
    pointer-events: none;
  }
  .reg-countries-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .reg-countries-text .eyebrow-on-dark {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    margin-bottom: 18px;
  }
  .reg-countries-text .eyebrow-on-dark::before { background: var(--gold); }
  .reg-countries-text h2 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .reg-countries-text h2 .gold { color: var(--gold); font-style: italic; }
  .reg-countries-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
  }
  .reg-countries-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .reg-countries-stats > div {
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }
  .reg-countries-stats strong {
    display: block;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }
  .reg-countries-stats span {
    font-family: var(--alt);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .reg-countries-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .reg-country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-family: var(--alt);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  .reg-country-tag:hover {
    background: rgba(4,217,196,0.18);
    border-color: var(--gold);
    transform: translateY(-2px);
  }
  .reg-country-tag svg { color: var(--gold); }
  .reg-country-more {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
    font-weight: 700;
  }
  .reg-country-more:hover {
    background: #fff;
    border-color: #fff;
  }

  @media (max-width: 1100px) {
    .reg-cert-gallery { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 960px) {
    .reg-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .reg-certs-grid { grid-template-columns: 1fr; }
    .reg-cert-gallery { grid-template-columns: repeat(2, 1fr); }
    .reg-countries-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    .reg-hero { padding: 60px 0 30px; }
    .reg-certs, .reg-gallery, .reg-countries { padding: 60px 0; }
    .reg-cert-gallery { grid-template-columns: 1fr; gap: 18px; }
    .reg-tabs { width: 100%; overflow-x: auto; justify-content: flex-start; }
  }

  /* ============================================================ */
  /* ========= GLOBAL MOBILE RESPONSIVENESS — SITE-WIDE ========= */
  /* ============================================================ */

  /* TABLET 1024px and below */
  @media (max-width: 1024px) {
    .container, .header-content, .hero-content, .stats-big-content {
      padding-left: 24px;
      padding-right: 24px;
    }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }

    /* Bigger hero copy on tablet — left column gets full width so we can scale up */
    .hero h1 { font-size: clamp(48px, 6vw, 64px); line-height: 1.05; }
    .hero-desc { font-size: 17px; line-height: 1.65; max-width: 720px; }
    .hero-tag { font-size: 13.5px; padding: 9px 18px; }
    .hero-btn-primary,
    .hero-btn-secondary { padding: 15px 28px; font-size: 15px; }
    .hero-actions { gap: 16px; }
    .hero-cert-img { height: 72px; }
    .hero-trust-badges-img { gap: 18px; }
    .pd-hero { grid-template-columns: 1fr; gap: 32px; }
    .pd-image { max-width: 560px; margin: 0 auto; }
    .pd-info { text-align: left; }
    .pd-features { grid-template-columns: 1fr 1fr; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-header { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .cat-header-left { margin: 0; }
    .cat-header-left .eyebrow { display: inline-flex; }
    .cat-header-right { align-items: flex-start; }
    .cat-header-right p { text-align: left; max-width: 100%; }
    .cat-header-ctas { justify-content: flex-start; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-intro-card, .about-intro-aside { position: static; }
    .acquisition-grid { grid-template-columns: 1fr; gap: 36px; }
    .acquisition-aside { position: static; }
    .home-global-inner { grid-template-columns: 1fr; gap: 36px; }
    .marketing-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-right { position: static; }
    .qc-grid { grid-template-columns: 1fr; gap: 36px; }
    .qc-certificate { position: static; max-width: 480px; margin: 0 auto; }
    .pd-catalog { padding: 32px 24px; }
  }

  /* TABLET PORTRAIT 768px and below */
  @media (max-width: 768px) {
    /* Hero & headings */
    .hero { padding: 60px 0; min-height: auto; }
    .hero h1 {
      font-size: clamp(32px, 8vw, 44px);
      line-height: 1.25;
      word-spacing: 0.05em;
    }
    .hero h1 .marker { padding: 0 6px; }
    .hero-desc { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
    .hero-tag { font-size: 12px; }
    .hero-bg-img { object-position: center; }

    /* Section padding compaction */
    .categories, .product-detail, .about-mod, .stats-big,
    .home-global, .testimonials, .cta, .about-intro,
    .timeline-section, .team-section, .marketing-section,
    .acquisition-section, .brochure-section, .quality-control-section,
    .quality-qc, .lfx-catalog, .lfx-table-section, .lfx-hero-section,
    .qc-section, .contact-hero, .contact-main, .nd-page { padding: 48px 0; }

    .section-title { font-size: 26px; }

    /* Header */
    .header-content { height: 76px; padding: 0 20px; gap: 16px; grid-template-columns: 1fr auto; }
    .logo-img { height: 56px; max-height: 64px; }
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    /* Cards & grids */
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cat-card-body { padding: 18px; }
    .cat-card-body h3 { font-size: 17px; }

    /* Pd hero stack */
    .pd-image { max-width: 100%; }
    .pd-features { grid-template-columns: 1fr; }
    .pd-info h2 { font-size: 28px; }
    .pd-spec-card { bottom: 16px; left: 16px; padding: 12px 14px; }
    .pd-badge-floating { top: 16px; right: 16px; padding: 8px 12px; font-size: 11px; }
    .pd-catalog-header { flex-direction: column; align-items: stretch; gap: 16px; }
    .pd-catalog-header h3 { font-size: 22px; }
    .pd-search input { min-width: 0; width: 100%; }

    /* Tables — horizontal scroll wrapper */
    .pd-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .pd-table { min-width: 560px; }
    .pd-table th, .pd-table td { padding: 12px 14px; font-size: 13px; }
    .pd-pagination { flex-direction: column; align-items: stretch; gap: 16px; }
    .pd-pagination-left, .pd-pagination-controls { justify-content: center; flex-wrap: wrap; }
    .pd-page-btn { min-width: 32px; height: 32px; font-size: 12px; }

    /* About page */
    .timeline-line { left: 22px; }
    .timeline-item, .timeline-item.left, .timeline-item.right {
      width: 100%; left: 0; text-align: left; padding: 12px 0 12px 60px;
    }
    .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
      left: 0; right: auto;
    }
    .team-row, .team-row.reverse { grid-template-columns: 1fr; gap: 20px; text-align: left; }
    .team-row.reverse .team-photo { order: 1; }
    .team-row.reverse .team-info { order: 2; text-align: left; }
    .team-photo { max-width: 280px; margin: 0 auto; }

    /* Stats big */
    .stats-big-content { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-big-item { border-right: none; padding: 16px 0; }
    .stat-big-num { font-size: 40px; }

    /* Home global stats */
    .home-global-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hg-stat { padding: 14px 6px; }

    /* Marketing list */
    .marketing-list { gap: 8px; }

    /* Brochure card */
    .brochure-card { flex-direction: column; text-align: center; padding: 24px; gap: 14px; }

    /* Acquisition */
    .acquisition-quote { padding: 16px; font-size: 16px; }

    /* Contact */
    .contact-hero-title { font-size: 28px; }
    .contact-hero-lead { font-size: 14px; }
    .corp-card { padding: 24px; }
    .corp-card h3 { font-size: 20px; }
    .locations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-card { padding: 24px; }
    .form-card-head h2 { font-size: 22px; }

    /* Quality showcase */
    .section-max-wrapper { grid-template-columns: 1fr; gap: 0; display: flex; flex-direction: column; align-items: stretch; }
    .quality-control-section { padding: 32px 16px 56px; }
    .quality-narrative-panel { display: contents; }
    .quality-narrative-panel > .eyebrow { order: 1; margin: 0 0 12px; align-self: flex-start; }
    .quality-narrative-panel > .section-title {
      order: 2;
      margin: 0 0 14px !important;
      font-size: 26px !important;
      line-height: 1.15 !important;
      text-align: left;
    }
    .lead-statement {
      order: 3;
      margin: 0 0 24px !important;
      padding-left: 14px !important;
      font-size: 14.5px !important;
      line-height: 1.6 !important;
      border-left-width: 3px;
    }
    .certificate-display-panel { order: 4; margin-bottom: 28px; }
    .framework-pillars-grid { order: 5; }
    .document-glass-frame { max-width: 100%; padding: 14px; }
    .pillar-card { flex-direction: column; gap: 12px; padding: 20px; }
    .lead-statement { font-size: 15px; padding-left: 16px; }
    .quality-qc-grid { grid-template-columns: 1fr; gap: 20px; }
    .quality-qc-card { padding: 24px; }

    /* Lifeport showcase */
    .web-showcase-section .section-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .showcase-narrative { position: static; top: auto; }
    .brand-heading { font-size: 42px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature-box { padding: 20px; }

    /* Lifeflex / Lifeclear product cards */
    .lfx-product { grid-template-columns: 1fr; gap: 18px; }
    .lfx-product-img { max-width: 240px; margin: 0 auto; aspect-ratio: 1; }
    .lfx-product-body h3 { font-size: 19px; }
    .lfx-catalog-head { flex-direction: column; align-items: stretch; gap: 20px; }
    .lfx-search { min-width: 100%; }

    /* Germkill cards */
    .lfx-comp-table.lfw-table td { padding: 10px 12px; font-size: 13px; }

    /* Nutrition & Drugs */
    .nd-top { grid-template-columns: 1fr; gap: 20px; }
    .nd-img { max-width: 240px; margin: 0 auto; }
    .nd-indications-grid { grid-template-columns: 1fr; gap: 20px; }
    .nd-card, .nd-section { padding: 20px; }
    .nd-comp-table-wrap { overflow-x: auto; }

    /* Mobile drawer footer phone */
    .mobile-phone { font-size: 13px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 16px 36px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 20px 16px 0; }

    /* Manufacturing & Quality additional */
    .qa-grid { grid-template-columns: 1fr; gap: 28px; }
    .mfg-cards { grid-template-columns: 1fr; gap: 18px; }
    .reg-cert-gallery { grid-template-columns: 1fr; gap: 14px; }

    /* Announcement */
    .announce { font-size: 12px; }
    .announce-item { gap: 8px; }
    .announce-item::after { margin-left: 28px; }
  }

  /* SMALL MOBILE 600px and below */
  @media (max-width: 600px) {
    .container, .header-content, .hero-content, .stats-big-content {
      padding-left: 16px;
      padding-right: 16px;
    }
    .hero h1 { font-size: 30px; }
    .hero-desc { font-size: 14px; }
    .section-title { font-size: 22px; }
    .cat-grid { grid-template-columns: 1fr; gap: 14px; }
    .cat-card-body h3 { font-size: 18px; }
    .locations-grid { grid-template-columns: 1fr; }
    .stats-big-content { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 16px; }
    .stats-big { padding: 50px 0; }
    .stat-big-item { border-right: none !important; padding: 18px 8px; }
    .stat-big-num { font-size: 36px !important; margin-bottom: 6px; }
    .stat-big-label { font-size: 11px; letter-spacing: 0.06em; }
    .features-grid { grid-template-columns: 1fr; }
    .pd-features { grid-template-columns: 1fr; }
    .pd-info h2 { font-size: 24px; }
    .contact-hero-title { font-size: 24px; }
    .brand-heading { font-size: 36px; }
    .corp-card h3 { font-size: 18px; }
    .form-card-head h2 { font-size: 20px; }
    .pd-catalog { padding: 24px 16px; }
    .pd-table { min-width: 480px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .qc-banner-stats { grid-template-columns: 1fr 1fr; }
    .reg-cert-gallery { grid-template-columns: 1fr; }
    .timeline-card { padding: 16px 18px; }
    .timeline-card h4 { font-size: 16px; }
    .timeline-card p { font-size: 13px; }
    .lpt-uf-grid { grid-template-columns: 1fr; }
    .lpt-feat-grid { grid-template-columns: 1fr 1fr; }
    .acquisition-stats li { padding: 12px 16px; }
    .acquisition-stats strong { font-size: 18px; }
    .about-intro-card-list strong, .about-intro-stats strong { font-size: 18px; }

    /* Touch-friendly tap targets */
    .pd-page-btn, .hamburger { min-width: 40px; min-height: 40px; }
    .form-submit, .btn-pill, .btn-green, .hero-btn-primary, .hero-btn-secondary,
    .btn-outline-green { padding: 14px 22px; font-size: 14px; }

    /* Mobile drawer */
    .mobile-drawer { width: 100%; max-width: 360px; }
    .mobile-nav-item { padding: 14px 18px; font-size: 15px; }
  }

  /* X-SMALL 400px and below */
  @media (max-width: 400px) {
    .hero h1 { font-size: 26px; }
    .section-title { font-size: 20px; }
    .pd-info h2 { font-size: 22px; }
    .brand-heading { font-size: 30px; }
    .contact-hero-title { font-size: 22px; }
    .logo-img { height: 48px; }
    .header-content { height: 68px; }
    .lpt-feat-grid { grid-template-columns: 1fr; }
    .pd-table { min-width: 380px; }
    .pd-table th, .pd-table td { padding: 10px 8px; font-size: 12px; }
    .pillar-card, .feature-box, .form-card, .corp-card { padding: 18px; }
    .nd-img { max-width: 200px; }
    .stats-big-content { gap: 16px; }
    .stat-big-num { font-size: 32px; }
    .hs-tag { font-size: 11px; padding: 5px 10px; }
  }

/* ════════════════════════════════════════════════════════════
   Google Translate widget — hide all default UI artefacts
   ════════════════════════════════════════════════════════════ */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}
body { top: 0 !important; }                /* Google pushes body down — undo */
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style*="background-color: rgb(204, 232, 207)"] { background: transparent !important; }

/* ════════════════════════════════════════════════════════════
   Custom language switcher
   ════════════════════════════════════════════════════════════ */
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--line, #e1ecf3);
  border-radius: 12px;
  font-family: var(--alt, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #042a42);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lang-switcher-trigger:hover {
  border-color: var(--green, #0B8CBF);
  box-shadow: 0 4px 12px rgba(11,140,191,0.12);
}
.lang-globe { color: var(--green, #0B8CBF); flex-shrink: 0; }
.lang-switcher-trigger .lang-label { letter-spacing: 0.04em; }
.lang-chevron { transition: transform 0.2s; color: var(--text-soft, #355971); }
.lang-chevron.open { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--line, #e1ecf3);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(6,48,74,0.12);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 1000;
  animation: langFade 0.15s ease;
}
@keyframes langFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--alt, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #042a42);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.lang-option:hover { background: #f4f8fc; }
.lang-option.active {
  background: #eef6fc;
  color: var(--green, #0B8CBF);
  font-weight: 700;
}
.lang-option .lang-flag { font-size: 17px; line-height: 1; }
.lang-option .lang-name { flex: 1; }
.lang-check { color: var(--green, #0B8CBF); }

/* Mobile drawer footer: stack switcher + CTA */
.mobile-drawer-footer .lang-switcher {
  width: 100%;
  margin-bottom: 12px;
}
.mobile-drawer-footer .lang-switcher-trigger {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 14px;
}
.mobile-drawer-footer .lang-dropdown {
  left: 0;
  right: 0;
  min-width: 0;
}

/* ════════════════════════════════════════════════════════════
   PRODUCT MINI SHOWCASE — 8 compact cards with small images
   ════════════════════════════════════════════════════════════ */
/* Featured catalog intro — white panel above the teal strip */
/* Featured catalog intro — uses the site's standard eyebrow / section-title / section-lead */
.mini-intro {
  padding: 70px 0 36px;
  background: #fff;
}
.mini-intro .eyebrow { margin-bottom: 14px; }
.mini-intro .section-title {
  margin: 0 0 14px;
  max-width: 720px;
}
.mini-intro .section-lead {
  margin: 0;
  max-width: 640px;
}
@media (max-width: 640px) {
  .mini-intro { padding: 36px 0 20px; }
  .mini-intro .section-title { font-size: 24px; line-height: 1.18; margin-bottom: 10px; }
  .mini-intro .section-lead { font-size: 14px; }
}

/* Strip — brand-gradient band (sits directly under the intro) */
.mini-showcase {
  padding: 50px 0;
  background:
    linear-gradient(180deg, rgba(11,140,191,0.92) 0%, rgba(11,173,191,0.95) 100%),
    var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 6 columns × 2 rows = 12 products on wide screens */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 8px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 4px;
  transition: transform 0.25s var(--ease);
}
.mini-card:hover {
  transform: translateY(-3px);
}

.mini-card-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
  perspective: 1000px;
  box-shadow: 0 6px 18px rgba(4, 30, 50, 0.22);
}
.mini-card:hover .mini-card-img {
  border-color: #fff;
  box-shadow: 0 14px 30px rgba(4, 30, 50, 0.35);
}

/* Flip inner — rotates on hover */
.mini-card-flip {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}
.mini-card:hover .mini-card-flip,
.mini-card:focus-visible .mini-card-flip {
  transform: rotateY(180deg);
}

.mini-card-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Front face — fills the circular .mini-card-face via inherited
   absolute positioning. DO NOT set position:relative here — it would
   override the inset:0 from .mini-card-face and the image would escape. */
.mini-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 30%, #ffffff 0%, #eef6fb 70%, #d8e7f0 100%);
  box-sizing: border-box;
}
.mini-card-front::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 80%, rgba(4, 217, 196, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.mini-card-front img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.mini-card:hover .mini-card-front img {
  transform: scale(1.07);
}

/* Back — deep navy panel with product name (contrasts with teal strip bg) */
.mini-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #04253D 0%, #064e80 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}
.mini-card-back-name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
}

/* .mini-card-name removed — name now appears on flip back */

/* Responsive */
@media (max-width: 1180px) {
  .mini-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .mini-showcase { padding: 36px 0; }
  .mini-grid { grid-template-columns: repeat(3, 1fr); gap: 14px 10px; }
  .mini-card-img { width: 100px; height: 100px; border-width: 2px; }
  .mini-card-back-name { font-size: 11.5px; }
}
@media (max-width: 520px) {
  .mini-showcase { padding: 28px 0; }
  .mini-grid { grid-template-columns: repeat(3, 1fr); gap: 10px 8px; }
  .mini-card-img { width: 88px; height: 88px; }
  .mini-card-back-name { font-size: 10.5px; }
}
@media (max-width: 380px) {
  .mini-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
  .mini-card-img { width: 110px; height: 110px; }
}

/* ════════════════════════════════════════════════════════════
   EXPORT COUNTRIES MARQUEE — inline inside Global Presence
   ════════════════════════════════════════════════════════════ */
/* Wrapper — tight equal breathing room above and below */
.exp-marquee-inline {
  margin-top: 40px;
  margin-bottom: -60px;  /* compensates for section's 100px bottom padding */
}

/* Marquee — constrained to container width, overflow hidden */
.exp-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.exp-marquee::before,
.exp-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 4;
  pointer-events: none;
}
.exp-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft) 0%, transparent 100%);
}
.exp-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-soft) 0%, transparent 100%);
}

.exp-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 16px 0;
}
.exp-track-left  { animation: expScrollLeft  55s linear infinite; }
.exp-track-right { animation: expScrollRight 55s linear infinite; margin-top: 4px; }

@keyframes expScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes expScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.exp-marquee:hover .exp-track { animation-play-state: paused; }

/* Chip wrap = chip + connector line */
.exp-chip-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.exp-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.exp-chip:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-2px);
}

.exp-chip-flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-pale);
  border: 1px solid var(--line);
}
.exp-chip-flag img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.exp-chip-name {
  font-family: var(--alt);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.exp-connector {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--line);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .exp-marquee-inline { margin-top: 28px; margin-bottom: -32px; }
  .exp-track-left, .exp-track-right { animation-duration: 45s; }
  .exp-marquee::before, .exp-marquee::after { width: 80px; }
  .exp-connector { width: 24px; }
  .exp-chip { padding: 10px 14px; }
  .exp-chip-name { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════
   HERO — Vertical Stacked (dramatic centered cinematic)
   ════════════════════════════════════════════════════════════ */
.hero-stack {
  position: relative;
  min-height: calc(100vh - 144px);
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #04253D 0%, #064e80 50%, #0B8CBF 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stack-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}
.hero-stack-bg.active { opacity: 0.35; }
.hero-stack-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.20) 100%);
  z-index: 1;
}

/* Decorative floating shapes */
.hero-stack-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-stack-shape-1 {
  width: 460px;
  height: 460px;
  background: rgba(4, 217, 196, 0.30);
  top: -180px;
  left: -120px;
  animation: stackFloat 14s ease-in-out infinite;
}
.hero-stack-shape-2 {
  width: 380px;
  height: 380px;
  background: rgba(11, 140, 191, 0.30);
  bottom: -160px;
  right: -100px;
  animation: stackFloat 16s ease-in-out infinite reverse;
}
@keyframes stackFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -22px); }
}

/* Main content stack — centered vertical column */
.hero-stack-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Eyebrow tag */
.hero-stack-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #04D9C4;
  background: rgba(4, 217, 196, 0.14);
  border: 1px solid rgba(4, 217, 196, 0.35);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.hero-stack-tag-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #04D9C4;
}
.hero-stack-tag-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #04D9C4;
  opacity: 0.4;
  animation: hsPulse 1.8s ease-in-out infinite;
}
@keyframes hsPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(2.6); opacity: 0; }
}

/* Old-style title — same size as hero-stack but with marker + gold spans */
.hero-stack-h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}
/* Gold italic accent — re-applied since old .hero h1 scope is gone */
.hero-stack-h1 .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
/* Teal marker highlight behind text */
.hero-stack-h1 .marker {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.hero-stack-h1 .marker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 217, 196, 0.3);
  border-radius: 6px;
  transform: skewX(-6deg);
  z-index: -1;
}

/* Old-style hero tag glass pill — re-applied for stacked hero context */
.hero-stack-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-family: var(--alt);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-stack-content .hero-tag .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-mid, #04D9C4);
  box-shadow: 0 0 0 4px rgba(4, 217, 196, 0.25);
  animation: hsPulse 1.8s ease-in-out infinite;
}

/* Description */
.hero-stack-desc {
  font-family: var(--alt);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 38px;
  max-width: 720px;
}
.hero-stack-desc strong { color: #04D9C4; font-weight: 700; }

/* CTAs */
.hero-stack-actions {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stack-btn-primary,
.hero-stack-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--alt);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.hero-stack-btn-primary {
  background: linear-gradient(135deg, #04D9C4 0%, #0BADBF 100%);
  color: #04253D;
  box-shadow: 0 14px 32px rgba(4, 217, 196, 0.34);
}
.hero-stack-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(4, 217, 196, 0.45);
}
.hero-stack-btn-primary svg { transition: transform 0.3s; }
.hero-stack-btn-primary:hover svg { transform: translateX(4px); }
.hero-stack-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}
.hero-stack-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
}

/* Inline stats strip — glass row */
.hero-stack-stats {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 22px 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  margin-bottom: 42px;
}
.hero-stack-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero-stack-stat strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.hero-stack-stat strong span { color: #04D9C4; }
.hero-stack-stat small {
  font-family: var(--alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-stack-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.22);
}

/* Cert strip */
.hero-stack-certs {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-stack-certs-label {
  font-family: var(--alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-stack-certs-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.hero-stack-certs-row img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2));
}
.hero-stack-certs-row img:hover {
  transform: translateY(-3px) scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stack { padding: 50px 0 70px; min-height: auto; }
  .hero-stack-content { padding: 0 18px; }
  .hero-stack-tag { font-size: 10.5px; padding: 7px 14px; margin-bottom: 22px; }
  .hero-stack-title { font-size: clamp(32px, 9vw, 50px); margin-bottom: 18px; }
  .hero-stack-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-stack-actions { gap: 10px; margin-bottom: 32px; flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-stack-btn-primary, .hero-stack-btn-ghost { justify-content: center; padding: 14px 22px; font-size: 14px; }
  .hero-stack-stats { padding: 16px 20px; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
  .hero-stack-stat strong { font-size: 24px; }
  .hero-stack-stat-sep { display: none; }
  .hero-stack-certs-row { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stack-certs-row img { height: 42px; }
  .hero-stack-shape-1, .hero-stack-shape-2 { width: 280px; height: 280px; }
}

/* ════════════════════════════════════════════════════════════
   HERO — Bento Grid (legacy)
   ════════════════════════════════════════════════════════════ */
.hero-bento {
  position: relative;
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #04253D 0%, #064e80 50%, #0B8CBF 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bento-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(4, 217, 196, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(11, 140, 191, 0.20) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bento-wrap {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(70px, auto);
  gap: 14px;
}

/* Shared tile */
.bento-tile {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.bento-tile:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(4, 217, 196, 0.35);
  transform: translateY(-4px);
}

/* MAIN TITLE TILE — top half, centered content */
.bento-main {
  grid-column: 1 / 8;
  grid-row: 1 / 5;
  background:
    radial-gradient(circle at 0% 100%, rgba(4, 217, 196, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(11, 173, 191, 0.18) 0%, transparent 50%),
    rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 56px;
}
.bento-main .bento-desc { margin-left: auto; margin-right: auto; }
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--alt);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #04D9C4;
  background: rgba(4, 217, 196, 0.12);
  border: 1px solid rgba(4, 217, 196, 0.32);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  align-self: flex-start;
}
.bento-tag-dot {
  position: relative;
  width: 7px; height: 7px;
  background: #04D9C4;
  border-radius: 50%;
}
.bento-tag-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #04D9C4;
  opacity: 0.35;
  animation: bentoPulse 1.8s ease-in-out infinite;
}
@keyframes bentoPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%      { transform: scale(2.4); opacity: 0; }
}
.bento-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: #fff;
}
.bento-title-teal {
  background: linear-gradient(90deg, #04D9C4 0%, #99fff0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento-title-italic {
  font-style: italic;
  background: linear-gradient(135deg, #ffd166 0%, #ff9e3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento-desc {
  font-family: var(--alt);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 30px;
  max-width: 560px;
}
.bento-desc strong { color: #04D9C4; font-weight: 700; }
.bento-actions {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.bento-btn-primary,
.bento-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--alt);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.bento-btn-primary {
  background: linear-gradient(135deg, #04D9C4 0%, #0BADBF 100%);
  color: #04253D;
  box-shadow: 0 10px 24px rgba(4, 217, 196, 0.32);
}
.bento-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(4, 217, 196, 0.42);
}
.bento-btn-primary svg { transition: transform 0.25s; }
.bento-btn-primary:hover svg { transform: translateX(3px); }
.bento-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.bento-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

/* IMAGE TILE — top right, big square 5 cols × 4 rows */
.bento-image {
  grid-column: 8 / 13;
  grid-row: 1 / 5;
  padding: 0;
  background: #04253D;
}
.bento-image-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.bento-image-slide.active { opacity: 1; }
.bento-image-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(4, 30, 50, 0.85) 100%);
  pointer-events: none;
}
.bento-image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.bento-image-label span {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.bento-image-label small {
  display: block;
  font-family: var(--alt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(4, 217, 196, 0.95);
  margin-top: 4px;
}

/* 25+ YEARS TILE — bottom row, equal width */
.bento-years {
  grid-column: 1 / 4;
  grid-row: 5 / 7;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 217, 196, 0.25) 0%, transparent 60%),
    rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bento-years-bar { margin-left: auto; margin-right: auto; }
.bento-years-num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.bento-years-num span { color: #04D9C4; }
.bento-years-label {
  font-family: var(--alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}
.bento-years-bar {
  margin-top: 18px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  max-width: 120px;
}
.bento-years-bar span {
  display: block;
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, #04D9C4 0%, #0BADBF 100%);
  border-radius: 99px;
}

/* STAT TILES — bottom row, equal width, centered */
.bento-countries {
  grid-column: 4 / 7;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bento-products {
  grid-column: 7 / 10;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bento-icon {
  font-size: 22px;
  color: #04D9C4;
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 217, 196, 0.15);
  border-radius: 12px;
}
.bento-stat-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.bento-stat-num span { color: #04D9C4; }
.bento-stat-label {
  font-family: var(--alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* CERTS TILE — right of bottom row, equal width */
.bento-certs {
  grid-column: 10 / 13;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
}
.bento-certs-label {
  font-family: var(--alt);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.bento-certs-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bento-certs-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.bento-certs-row img:hover {
  transform: translateY(-3px) scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-bento-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-main { grid-column: span 4; grid-row: span 3; }
  .bento-image { grid-column: span 4; grid-row: span 2; min-height: 280px; }
  .bento-years,
  .bento-countries,
  .bento-products { grid-column: span 4; grid-row: span 1; }
  .bento-certs { grid-column: span 4; padding: 18px 24px; }
}

@media (max-width: 640px) {
  .hero-bento { padding: 24px 0 40px; }
  .hero-bento-wrap { padding: 0 16px; gap: 12px; }
  .bento-main { padding: 30px 26px; }
  .bento-title { font-size: clamp(28px, 8vw, 40px); }
  .bento-desc { font-size: 14px; }
  .bento-actions { flex-direction: column; align-items: stretch; }
  .bento-btn-primary, .bento-btn-ghost { justify-content: center; }
  .bento-years-num { font-size: 56px; }
  .bento-stat-num { font-size: 36px; }
  .bento-certs { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bento-certs-row { gap: 18px; flex-wrap: wrap; }
  .bento-certs-row img { height: 40px; }
  .bento-image { min-height: 220px; }
}

/* ════════════════════════════════════════════════════════════
   Short-viewport tuning — fits hero into laptops with low height
   (e.g., 1440×723, 1366×768)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 769px) and (max-height: 820px) {
  .hero {
    min-height: calc(100vh - 104px);
    padding: 24px 0;
    display: flex;
    align-items: center;
  }
  .hero-content { gap: 36px; align-items: center; }
  .hero h1 { font-size: clamp(34px, 3vw, 50px); margin-bottom: 14px; }
  .hero-desc { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
  .hero-actions { gap: 12px; margin-bottom: 20px; }
  .hero-btn-primary, .hero-btn-secondary { padding: 11px 22px; font-size: 14px; }
  .hero-tag { padding: 6px 14px; font-size: 12px; margin-bottom: 16px; }
  .hero-trust { gap: 14px; margin-top: 4px; }
  .hero-cert-img { height: 56px; }
  .hero-visual {
    aspect-ratio: 0.92;
    max-height: calc(100vh - 180px);
  }
  .hero-image-card { padding: 18px 18px 22px; }
  .float-1, .float-2 {
    transform: scale(0.88);
    transform-origin: center;
  }
}

/* Even tighter for 1440×720 and below */
@media (min-width: 769px) and (max-height: 720px) {
  .hero { padding: 18px 0; }
  .hero h1 { font-size: clamp(30px, 2.6vw, 42px); margin-bottom: 12px; }
  .hero-desc { font-size: 13.5px; margin-bottom: 14px; }
  .hero-actions { margin-bottom: 16px; }
  .hero-tag { margin-bottom: 14px; }
  .hero-cert-img { height: 48px; }
  .hero-trust { gap: 12px; }
  .hero-visual {
    aspect-ratio: 1;
    max-height: calc(100vh - 160px);
  }
  .hero-image-card { padding: 14px 14px 18px; gap: 14px; }
  .float-1, .float-2 { transform: scale(0.78); }
}
