  :root{
    --ink:#101010;
    --ink-soft:#5A5A5A;
    --paper:#F7F7F7;
    --paper-alt:#EFEFEF;
    --card:#FFFFFF;
    --line:#b7b7b7;
    --brand:#E4202C;
    --brand-dark:#420004;
    --tube:#D6524A;
    --glass:#D79A2C;
    --pipette:#D79A2C;
    --bottle:#3B7EA1;
    --cell:#2A9D8F;
    --plates:#8B6BB0;
    --storage:#C17A4A;
    --general:#4A7C59;
    --other:#4A7C59;
    --radius:4px;
    --shadow:0 1px 2px rgba(16,16,16,0.06), 0 8px 24px -12px rgba(16,16,16,0.12);
    --font-display:"Poppins", arial;
    --font-heading:"Bebas Neue","Oswald","Barlow Condensed",sans-serif;
    --font-body:'Inter', "Poppins", arial;
    --font-mono:'IBM Plex Mono', monospace;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{
    scroll-behavior:smooth;
    scroll-padding-top:96px;
  }
  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--paper);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }
  .wrap{ max-width:1480px; margin:0 auto; padding:0 32px; }
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--brand);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:16px; height:1px;
    background:var(--brand);
  }

  h1,h2{
    font-family:var(--font-heading);
    font-weight:400;
    letter-spacing:.02em;
    text-transform:uppercase;
    color:var(--ink);
  }
  h3{
    font-family:var(--font-display);
    font-weight:600;
    letter-spacing:-.01em;
    color:var(--ink);
  }

  section{
    padding: 20px 0; 
  }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 24px;
    border-radius:var(--radius);
    font-weight:600; font-size:14.5px;
    border:1px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  }
  .btn-primary{ background:var(--brand); color:#fff; }
  .btn-primary:hover{ background:var(--brand-dark); transform:translateY(-1px); }
  .btn-ghost{ border-color:var(--line); color:var(--ink); background:transparent; }
  .btn-ghost:hover{ border-color:var(--brand); color:var(--brand); }
  .btn-whatsapp{ background:#25D366; color:#fff; }
  .btn-whatsapp:hover{ background:#1EBE5A; transform:translateY(-1px); }

  /* ===== Header (site chrome only — not nested panel headers) ===== */
  body > header{
    position:sticky; top:0; z-index:50;
    background:rgba(246,248,246,0.96);
    border-bottom:1px solid var(--line);
  }
  body > header .nav{
    display:flex; align-items:center; justify-content:space-between;
    gap:16px;
    height:76px;
  }
  .logo{
    display:flex; align-items:center; gap:8px;
    cursor:pointer; border:none; background:none; padding:0;
  }
  .logo img{
    height:90px; width:auto; display:block;
  }
  .nav-cta{ display:flex; align-items:center; gap:12px; flex-shrink:0; }

  /* Desktop: classic horizontal nav */
  .nav-toggle{ display:none; }
  .nav-panel-label{ display:none; }
  .nav-backdrop{ display:none; }
  .nav-links{
    display:flex; align-items:center; gap:36px;
  }
  .nav-links a{
    font-size:14.5px; font-weight:600; color:var(--ink-soft);
    transition:color .15s ease;
    position:relative;
  }
  .nav-links a:hover{ color:var(--brand); }

  /* Animated toggle + slide panel (mobile only — see @media below) */
  .nav-toggle{
    flex-direction:column; justify-content:center; align-items:center;
    gap:6px; flex-shrink:0;
    width:44px; height:44px; padding:0;
    border:1px solid var(--line); border-radius:12px;
    background:#fff; cursor:pointer;
    transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .nav-toggle:hover{
    border-color:rgba(228,32,44,.35);
    box-shadow:0 8px 20px rgba(19,43,70,.08);
  }
  .nav-toggle span{
    display:block; width:18px; height:2px;
    background:var(--ink); border-radius:2px;
    transform-origin:center;
    transition:transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease, width .28s ease;
  }
  .nav-toggle.active{
    border-color:var(--brand);
    background:#fff5f5;
  }
  .nav-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2){
    opacity:0; width:0;
  }
  .nav-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }
  body.nav-open{ overflow:hidden; }

  /* ===== Hero ===== */
  .hero{
    position:relative;
    overflow:hidden;
    padding:0px 0 0;
    background:
      radial-gradient(circle at 78% 16%, rgba(59,126,161,.12), transparent 30%),
      radial-gradient(circle at 24% 12%, rgba(228,32,44,.08), transparent 32%),
      linear-gradient(135deg,#fff 0%,#fbfcfe 55%,#eef5fb 100%);
    border-bottom:1px solid var(--line);
  }
  .hero::before{
    content:""; position:absolute; inset:0; pointer-events:none; opacity:.32;
    background-image:radial-gradient(circle,rgba(16,16,16,.10) 1px,transparent 1px);
    background-size:28px 28px;
    mask-image:linear-gradient(90deg,#000,transparent 50%);
  }
  /* EDIT: swap background-image URL to change the hero artwork.
     Image sits as a section background (right side), not an <img>. */
  .hero-grid{
    position:relative; z-index:1;
    display:grid; grid-template-columns:.92fr 1.08fr;
    gap:50px; align-items:center;
    min-height:520px;
    background-image:url("assets/hero/hero.png");
    background-repeat:no-repeat;
    background-position:right center;
    /* cover = stretch across the full hero width, no seam on the left */
    background-size:cover;
  }
  .hero-copy{ padding:34px 0 70px; position:relative; z-index:2; }
  .hero h1{
    font-size:clamp(48px,6vw,84px);
    line-height:.95;
    letter-spacing:.02em;
    margin:20px 0 24px;
    max-width:760px;
  }
  .hero h1 em{ font-style:normal; color:var(--brand); }
  .hero p.lead{
    font-size:17px; line-height:1.75; color:var(--ink-soft);
    max-width:620px; margin-bottom:30px;
  }
  .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
  .hero-actions .btn{ min-height:52px; padding:14px 26px; }

  .hero-visual{
    position:relative; z-index:2; min-width:0; min-height:420px;
    display:flex; align-items:flex-start; justify-content:flex-end;
  }
  .hero-highlights{
    position:relative; z-index:2; 
    margin-top:460px;
    margin-right:10px;
    display:grid; grid-template-columns:1fr 1fr; gap:6px 22px;
    padding:16px 20px;
    background:rgba(255,255,255,.72); backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.8); border-radius:16px;
    box-shadow:0 18px 45px rgba(31,55,75,.14);
  }
  .hero-highlight{ display:flex; gap:10px; align-items:center; }
  .hero-highlight .hl-icon{
    width:30px; height:30px; flex:0 0 30px; border-radius:8px;
    display:grid; place-items:center; color:var(--brand);
    background:#fff1f2;
  }
  .hero-highlight .hl-icon svg{ width:18px; height:18px; }
  .hero-highlight strong{ display:block; font-size:12.5px; line-height:1.25; }
  .hero-highlight small{ display:block; font-size:11px; color:var(--ink-soft); margin-top:1px; }

  .hero-proof-wrap{ position:relative; z-index:3; margin-top:-8px; transform:translateY(34px); }
  .hero-proof{
    display:grid; grid-template-columns:repeat(4,1fr);
    background:rgba(255,255,255,.95); border:1px solid rgba(226,226,226,.55);
    border-radius:16px; box-shadow:0 8px 24px rgba(16,16,16,.05);
    
  }
  .hero-proof div{ padding:4px 16px; border-right:1px solid rgba(226,226,226,.45); }
  .hero-proof div:last-child{ border-right:0; }
  .hero-proof strong{ display:block; font-family:var(--font-display); font-size:16px; letter-spacing:-.02em; }
  .hero-proof span{ display:block; color:var(--ink-soft); font-size:11px; margin-top:2px; }

  /* ===== Category strip ===== */
  .categories{ padding-top:10px; padding-bottom: 10px; }
  .section-head{ margin-bottom:15px; max-width:640px; }
  .section-head h2{ font-size:clamp(40px,3vw,55px); margin-top:5px; }
  .section-head h1{ font-size:clamp(40px,5vw,60px); margin-top:5px; }
  .section-head p{ color:var(--ink-soft); margin-top:5px; font-size:15.5px; }

  .cat-grid{
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
    gap:18px 12px;
    align-items:start;
  }
  .cat-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    text-align:center;
    text-decoration:none;
    color:var(--ink);
    padding:10px 6px;
    border-radius:12px;
    background:transparent;
    border:none;
    transition:transform .18s ease, background .18s ease;
  }
  .cat-btn:hover{ transform:translateY(-3px); background:rgba(255,255,255,.7); }
  .cat-btn-icon{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
  }
  .cat-btn-icon svg,
  .cat-btn-icon img{
    width:48px;
    height:48px;
    object-fit:contain;
    display:block;
  }
  .cat-btn-label{
    font-size:14px;
    font-weight:700;
    line-height:1.25;
    max-width:9.5em;
  }

  /* ===== Products ===== */
  .products{ background:var(--paper-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .filter-row{
    display:flex; gap:10px; margin-bottom:36px; flex-wrap:wrap;
  }
  .filter-btn{
    font-family:var(--font-mono); font-size:12px; letter-spacing:.04em;
    padding:9px 16px; border-radius:999px; border:1px solid var(--line);
    background:var(--card); color:var(--ink-soft);
    display:flex; align-items:center; gap:8px;
    transition:all .15s ease;
  }
  .filter-btn .dot{ width:8px; height:8px; border-radius:50%; }
  .filter-btn.active, .filter-btn:hover{ border-color:var(--ink); color:var(--ink); }

  .prod-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .prod-card{
    background:var(--card); border:1px solid var(--line); border-radius:6px;
    padding:20px 20px 18px; position:relative;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .prod-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:transparent; }
  .prod-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; }
  .prod-code{ font-family:var(--font-mono); font-size:11.5px; color:var(--ink-soft); letter-spacing:.02em; }
  .prod-dot{ width:10px; height:10px; border-radius:50%; margin-top:3px; flex-shrink:0; }

  .prod-body{ 
    display:grid;
    grid-template-columns:170px 1fr; 
    gap:20px; 
    align-items:start; 
    margin-bottom:16px; 
  }

  .prod-media{
    width:180px;
    height:180px; 
    max-width:100%;   
    overflow:hidden;   
  }

  .prod-media img{
    width:100%;
    height:100%;
    object-fit:contain; /* keeps full image visible */
    display:block;
  }


  .prod-content{ min-width:0; }
  .prod-card h4{ font-family:var(--font-display); font-size:16px; font-weight:600; margin-bottom:8px; }
  .prod-spec{ font-size:13px; color:var(--ink-soft); margin-bottom:0; min-height:34px; line-height:1.45; }
  .prod-foot{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:14px; border-top:1px dashed var(--line);
  }
  .prod-cat-label{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft); }
  .prod-enquire{ font-size:12.5px; font-weight:600; color:var(--brand); }

  /* ===== Trust band ===== */
  .trust{
    padding:20px 0;
    background:#fffdfd;
    border-top:1px solid rgba(0,0,0,.06);
    border-bottom:1px solid rgba(0,0,0,.06);
  }
  .trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  .trust-item{ display:flex; flex-direction:column; gap:12px; }
  .trust-item .num{ font-family:var(--font-mono); font-size:12px; color:var(--brand); }
  .trust-item h4{ font-family:var(--font-display); font-size:16.5px; font-weight:600; }
  .trust-item p{ font-size:13.5px; color:var(--ink-soft); }

  /* ===== About ===== */
  .about{
    background:linear-gradient(180deg, #fffcfc 0%, #f7f7f7 100%);
    color:var(--ink);
    border-top:1px solid rgba(228,32,44,.08);
    border-bottom:1px solid rgba(228,32,44,.08);
  }
  .about .eyebrow{ color:var(--brand); }
  .about .eyebrow::before{ background:var(--brand); }
  .about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
  .about h2{ color:var(--ink); font-size:clamp(26px,3vw,32px); margin:14px 0 18px; }
  .about p{ color:var(--ink-soft); font-size:15.5px; max-width:480px; }
  .about-list{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
  .about-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
  .about-list svg{ flex-shrink:0; margin-top:3px; }

  /* ===== Contact ===== */
  .contact-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:56px; align-items:start; }
  .contact-info{ display:flex; flex-direction:column; gap:18px; }
  .info-card{
    background:var(--card); border:1px solid var(--line); border-radius:8px;
    padding:20px 22px; display:flex; gap:16px; align-items:flex-start;
    transition:border-color .15s ease;
  }
  .info-card:hover{ border-color:var(--brand); }
  .info-icon{
    width:40px; height:40px; border-radius:8px; background:var(--paper-alt);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .info-card h4{ font-size:14.5px; margin-bottom:4px; }
  .info-card p{ font-size:14px; color:var(--ink-soft); }
  .info-card a.link-line{ font-size:14px; color:var(--brand); font-weight:600; }

  .form-card{
    background:var(--card); border:1px solid var(--line); border-radius:10px;
    padding:34px;
  }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
  .field{ display:flex; flex-direction:column; gap:7px; }
  .field.full{ grid-column:1 / -1; }
  .field label{ font-size:12.5px; font-weight:600; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; }
  .field input, .field select, .field textarea{
    font-family:var(--font-body); font-size:14.5px; color:var(--ink);
    padding:12px 14px; border:1px solid var(--line); border-radius:5px;
    background:var(--paper); transition:border-color .15s ease, background .15s ease;
    resize:vertical;
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    outline:none; border-color:var(--brand); background:#fff;
  }
  .phone-field{
    display:flex; align-items:stretch;
    border:1px solid var(--line); border-radius:5px; background:var(--paper);
    overflow:hidden; transition:border-color .15s ease, background .15s ease;
  }
  .phone-field:focus-within{ border-color:var(--brand); background:#fff; }
  .phone-prefix{
    flex:0 0 auto; display:flex; align-items:center;
    padding:0 12px; border-right:1px solid var(--line);
    font-size:14.5px; font-weight:600; color:var(--ink-soft); background:#f3f3f3;
    user-select:none;
  }
  .phone-field input{
    border:0; border-radius:0; background:transparent; flex:1; min-width:0;
    padding:12px 14px;
  }
  .phone-field input:focus{ outline:none; border:0; background:transparent; }
  .form-note{ font-size:12px; color:var(--ink-soft); margin-top:6px; margin-bottom:20px; }
  .form-success{
    display:none; align-items:center; gap:12px; background:#EAF4EC; border:1px solid #BFE0C6;
    color:#1F5C39; padding:14px 16px; border-radius:6px; font-size:14px; margin-bottom:18px;
    opacity:0; transition:opacity 60ms ease;
  }
  .form-success.show{ display:flex; opacity:1; }

  /* ===== Footer ===== */
  footer{ background:var(--ink); color:#B9C4C2; padding:56px 0 28px; }
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
  .foot-logo{ display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; color:#fff; font-size:18px; margin-bottom:14px; }
  .foot-logo .mark{ width:30px; height:30px; border-radius:7px; background:var(--brand); display:flex; align-items:center; justify-content:center; color:#fff; font-size:13px; }
  footer p.desc{ font-size:13.5px; max-width:260px; line-height:1.6; }
  footer h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; }
  footer ul li{ margin-bottom:10px; }
  footer ul li a{ font-size:14px; color:#B9C4C2; transition:color .15s ease; }
  footer ul li a:hover{ color:#fff; }
  .foot-bottom{
    border-top:1px solid rgba(255,255,255,0.1); padding-top:22px;
    display:flex; justify-content:space-between; align-items:center; font-size:12.5px;
    color:#8B9997; flex-wrap:wrap; gap:10px;
  }

  /* ===== Reveal animation ===== */
  .reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.visible{ opacity:1; transform:translateY(0); }

  /* ===== Responsive ===== */
  @media (max-width:960px){
    .hero-grid, .about-grid, .contact-grid{ grid-template-columns:1fr; }
    .hero-grid{
      gap:12px;
      min-height:560px;
      background-position:center 28%;
      background-size:cover;
      padding-bottom:5px;
    }
    /* Soft veil so headline/CTAs stay readable over the product photo */
    .hero-grid::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:0;
      pointer-events:none;
      background:linear-gradient(
        180deg,
        rgba(255,255,255,.88) 0%,
        rgba(255,255,255,.72) 42%,
        rgba(255,255,255,.45) 100%
      );
    }
    .hero-copy{ padding-bottom:20px; }
    .hero-visual{ min-height:0; justify-content:stretch; }
    .hero-highlights{ grid-template-columns:1fr 1fr; margin-top:8px; margin-right:0; width:100%; }
    .hero-proof{ grid-template-columns:repeat(2,1fr); }
    .hero-proof div:nth-child(2){ border-right:0; }
    .hero-proof div:nth-child(-n+2){ border-bottom:1px solid var(--line); padding-bottom:18px; margin-bottom:12px; }
    .cat-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); }
    .trust-grid{ grid-template-columns:repeat(2,1fr); }
    .prod-grid{ grid-template-columns:repeat(2,1fr); }
    .prod-body{ grid-template-columns:96px 1fr; gap:14px; }
    .prod-media{ min-height:96px; }
    .prod-media img{ max-width:78px; max-height:88px; }
    .foot-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:720px){
    .wrap{ padding:0 20px; }
    section{ padding:20px 0; }
    .nav-cta .btn-ghost{ display:none; }
    .logo{ margin-right:auto; }
    .logo img{
      height:70px;
      width:auto;
      max-height:70px;
      object-fit:contain;
    }

    /* Mobile: left animated toggle + slide-in panel */
    .nav-toggle{ display:inline-flex; order:-1; z-index:72; position:relative; }
    .nav-panel-label{
      display:block;
      margin:0 0 14px;
      font-size:11px; font-weight:600; letter-spacing:.14em;
      text-transform:uppercase; color:var(--ink-soft);
    }
    /* Keep the open header above the dim overlay so links stay sharp + clickable */
    body.nav-open > header{ z-index:70; }
    .nav-backdrop{
      display:block;
      position:fixed; inset:0; z-index:60;
      background:rgba(16,24,32,.45);
      opacity:0; visibility:hidden; pointer-events:none;
      transition:opacity .28s ease, visibility 0s .28s;
    }
    .nav-backdrop.active{
      opacity:1; visibility:visible; pointer-events:auto;
      transition:opacity .28s ease, visibility 0s;
    }
    .nav-links{
      position:fixed; top:0; left:0; bottom:0;
      z-index:71;
      width:min(320px, 86vw);
      flex-direction:column; align-items:stretch; gap:6px;
      padding:88px 28px 32px;
      background:#fff;
      border-right:1px solid var(--line);
      box-shadow:18px 0 48px rgba(19,43,70,.12);
      transform:translate3d(-105%,0,0);
      visibility:hidden;
      pointer-events:none;
      transition:transform .34s cubic-bezier(.4,0,.2,1), visibility 0s .34s;
    }
    .nav-links.active{
      transform:translate3d(0,0,0);
      visibility:visible;
      pointer-events:auto;
      transition:transform .34s cubic-bezier(.4,0,.2,1), visibility 0s;
    }
    .nav-links a{
      display:block;
      font-family:var(--font-heading);
      font-size:28px; font-weight:400; letter-spacing:.04em;
      text-transform:uppercase; color:var(--ink);
      padding:10px 4px;
      transition:color .18s ease, transform .18s ease;
    }
    .nav-links a:hover{
      color:var(--brand);
      transform:translateX(4px);
    }
    .nav-links a.active::after,
    .nav-links a[aria-current="page"]::after{
      left:4px; right:auto; bottom:8px; width:28px;
    }

    .cat-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px 10px; }
    .trust-grid{ grid-template-columns:1fr; }
    .prod-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .prod-card{ padding:14px 12px 12px; min-width:0; }
    .prod-top{ margin-bottom:10px; }
    .prod-code{ font-size:10px; }
    .prod-body{
      grid-template-columns:1fr;
      justify-items:stretch;
      gap:10px;
      margin-bottom:12px;
      text-align:left;
    }
    .prod-media{
      width:100%;
      height:110px;
      min-height:110px;
      max-width:none;
      margin:0;
    }
    .prod-media img{
      max-width:100%;
      max-height:110px;
      width:100%;
      height:100%;
      margin:0;
      object-fit:contain;
    }
    .prod-content{ width:100%; text-align:left; }
    .prod-card h4{ font-size:13.5px; margin-bottom:6px; text-align:left; line-height:1.25; }
    .prod-spec{
      display:block;
      font-size:11.5px;
      text-align:left;
      margin-left:0;
      margin-right:0;
      min-height:0;
      line-height:1.4;
    }
    .prod-foot{
      flex-wrap:wrap;
      gap:6px;
      padding-top:10px;
    }
    .prod-cat-label{ font-size:9.5px; letter-spacing:.06em; }
    .prod-enquire{ font-size:11.5px; }
    .form-row{ grid-template-columns:1fr; }
    .foot-grid{
      grid-template-columns:minmax(0,1fr) minmax(0,1fr);
      gap:28px 24px;
      align-items:start;
    }
    .foot-grid > div:first-child,
    .foot-grid > div:last-child{
      grid-column:1 / -1;
    }
    footer p.desc{ max-width:none; }
    footer ul li a{
      display:inline-block;
      max-width:100%;
      overflow-wrap:anywhere;
      word-break:break-word;
    }
    .foot-bottom{ align-items:flex-start; flex-direction:column; }
    .hero{ padding:15px 0 0; }
    .hero h1{ font-size:clamp(38px,12vw,54px); }
    .hero-copy{ padding:22px 0 16px; }
    .hero-grid{
      min-height:520px;
      background-position:center 22%;
      background-size:cover;
      padding-bottom:5px;
    }
    .hero-highlights{ display:none; }
    .hero-visual{ display:none; }
    .hero-proof-wrap{ transform:translateY(28px); }
    .hero-proof{ grid-template-columns:1fr 1fr; padding:15px 8px; }
    .hero-proof div{ padding:8px 12px; }
    .hero-proof strong{ font-size:17px; }
    .hero-proof span{ font-size:11px; }
  }

/* ===== Premium proof & institute band ===== */
.hero-proof-wrap{
  margin-top:-8px;
  transform:translateY(38px);
}
.hero-proof{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,.97);
  border:1px solid rgba(226,226,226,.55);
  border-radius:16px;
  box-shadow:0 8px 24px rgba(16,16,16,.05);
  padding:10px 8px;
}
.hero-proof .proof-item{
  min-height:52px;
  padding:4px 16px;
  border-right:1px solid rgba(226,226,226,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.hero-proof .proof-item:last-child{ border-right:0; }
.proof-icon{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  color:var(--brand);
}
.proof-icon svg{ width:26px; height:26px; }
.hero-proof .proof-item strong{
  display:block;
  font-family:var(--font-display);
  font-size:16px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.hero-proof .proof-item span:not(.proof-icon){
  display:block;
  color:var(--ink-soft);
  font-size:11px;
  line-height:1.3;
  margin-top:2px;
}

.institute-proof{
  position:relative;
  z-index:2;
  padding:10px 0 30px;
}
.institute-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom:22px;
}
.institute-title span{
  width:42px;
  height:1px;
  background:var(--brand);
  opacity:.7;
}
.institute-title p{
  font-family:var(--font-mono);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#4d5563;
  text-align:center;
}
.institute-marquee{
  overflow:hidden;
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.institute-track{
  width:max-content;
  display:flex;
  gap:12px;
  animation:institute-scroll 42s linear infinite;
  padding-bottom: 25px;
}
.institute-marquee:hover .institute-track{ animation-play-state:paused; }
@keyframes institute-scroll{ to{ transform:translateX(calc(-50% - 6px)); } }
.institute-card{
  flex:0 0 200px;
  width:200px;
  min-height:82px;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:12px 10px;
  box-shadow:0 7px 20px rgba(16,16,16,.035);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.institute-card:hover{
  transform:translateY(-3px);
  border-color:rgba(228,32,44,.35);
  box-shadow:0 12px 28px rgba(16,16,16,.08);
}
.institute-card img{
  width:40px;
  height:40px;
  object-fit:contain;
  filter:saturate(.92);
}
.institute-card span{
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  letter-spacing:-.02em;
}
.institute-more{
  flex-direction:column;
  gap:3px;
  text-align:center;
}
.institute-more strong{ font-size:13px; }
.institute-more small{ color:var(--ink-soft); font-size:9.5px; line-height:1.35; }
.logo-disclaimer{
  margin-top:12px;
  text-align:center;
  color:#8a8f98;
  font-size:10.5px;
}

@media (max-width:960px){
  .hero-proof{ grid-template-columns:repeat(2,1fr); }
  .hero-proof .proof-item:nth-child(2){ border-right:0; }
  .hero-proof .proof-item:nth-child(-n+2){ border-bottom:1px solid rgba(226,226,226,.45); }
}
@media (max-width:720px){
  .hero-proof-wrap{ transform:translateY(24px); }
  .hero-proof{ grid-template-columns:1fr; padding:8px 14px; }
  .hero-proof .proof-item{
    justify-content:flex-start;
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:15px 10px;
  }
  .hero-proof .proof-item:nth-child(2){ border-right:0; }
  .hero-proof .proof-item:nth-child(-n+2){ border-bottom:1px solid rgba(226,226,226,.45); }
  .hero-proof .proof-item:last-child{ border-bottom:0; }
  .institute-proof{ padding-top:5px; }
  .institute-title{ gap:10px; }
  .institute-title span{ width:18px; }
  .institute-title p{ font-size:9.5px; letter-spacing:.09em; }
  .institute-card{ flex:0 0 168px; width:168px; min-height:74px; }
}

/* ===== Premium expansion: brands, market solutions, testimonials, coverage ===== */
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.18;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='220' viewBox='0 0 320 220'%3E%3Cg fill='none' stroke='%23b7bec8' stroke-width='1'%3E%3Ccircle cx='42' cy='56' r='5'/%3E%3Ccircle cx='112' cy='28' r='4'/%3E%3Ccircle cx='168' cy='86' r='6'/%3E%3Ccircle cx='272' cy='48' r='5'/%3E%3Cpath d='M47 53 108 31M116 31l47 51M174 84l93-33M166 92l-28 63M138 155l-76 24'/%3E%3C/g%3E%3C/svg%3E");
  background-position:8% 12%; background-repeat:no-repeat;
}
.hero{ position:relative; overflow:hidden; }
.hero > *{ position:relative; z-index:1; }

.brand-marquee{ overflow:hidden; mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.brand-track{ width:max-content; display:flex; gap:16px; animation:brand-scroll 34s linear infinite; }
.brand-marquee:hover .brand-track{ animation-play-state:paused; }
.brand-chip{ width:220px; height:76px; display:grid; place-items:center; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 9px 24px rgba(16,16,16,.035); }
.brand-chip img{ width:100%; height:100%; object-fit:contain; }
@keyframes brand-scroll{ to{ transform:translateX(calc(-50% - 8px)); } }

.market-solutions{ background:linear-gradient(180deg,#f8f9fb 0%,#fff 100%); }
.solution-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.solution-card{ position:relative; min-height:260px; padding:28px 25px; background:rgba(255,255,255,.92); border:1px solid var(--line); border-radius:16px; overflow:hidden; box-shadow:0 14px 38px rgba(16,16,16,.04); transition:.22s ease; }
.solution-card::after{ content:""; position:absolute; width:130px; height:130px; border-radius:50%; background:rgba(228,32,44,.055); right:-48px; bottom:-54px; }
.solution-card:hover{ transform:translateY(-5px); border-color:rgba(228,32,44,.32); box-shadow:0 20px 44px rgba(16,16,16,.08); }
.solution-card > span{ font-family:var(--font-mono); color:var(--brand); font-size:12px; letter-spacing:.12em; }
.solution-card h3{ font-size:19px; margin:15px 0 10px; }
.solution-card p{ color:var(--ink-soft); font-size:14px; line-height:1.65; }

.testimonials{ background:#fff; }
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card{ margin:0; padding:30px; border:1px solid var(--line); border-radius:16px; background:linear-gradient(145deg,#fff,#fafafb); box-shadow:0 14px 36px rgba(16,16,16,.045); }
.testimonial-card::before{ content:"“"; display:block; color:var(--brand); font-family:Georgia,serif; font-size:48px; line-height:.7; margin-bottom:18px; }
.testimonial-card p{ font-size:16px; line-height:1.7; color:#34373c; min-height:108px; }
.testimonial-card footer{ background:none; padding:20px 0 0; margin-top:22px; border-top:1px solid var(--line); color:inherit; }
.testimonial-card footer strong,.testimonial-card footer span{ display:block; }
.testimonial-card footer strong{ font-size:13px; }
.testimonial-card footer span{ color:var(--ink-soft); font-size:11px; margin-top:3px; }

.india-coverage{ background:linear-gradient(135deg,#f4f6f9,#fff); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.coverage-grid{ display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; gap:70px; }
.coverage-copy h2{ font-size:clamp(30px,4vw,48px); line-height:1.12; margin:17px 0; }
.coverage-copy > p:not(.eyebrow){ color:var(--ink-soft); font-size:16px; max-width:550px; }
.coverage-tags{ display:flex; flex-wrap:wrap; gap:9px; margin:28px 0 34px; }
.coverage-tags span{ padding:8px 12px; border:1px solid #e1e4e9; border-radius:999px; background:#fff; color:#4c5159; font-size:12px; }
.india-map-card{ min-height:490px; border:1px solid rgba(218,221,227,.9); border-radius:28px; background:rgba(255,255,255,.8); display:grid; place-items:center; position:relative; box-shadow:0 30px 80px rgba(31,39,55,.1); overflow:hidden; }
.india-map-card::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 70% 20%,rgba(228,32,44,.09),transparent 35%); }
.india-map-card svg{ width:min(92%,520px); position:relative; }
.map-status{ position:absolute; left:28px; bottom:24px; display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.93); border:1px solid var(--line); box-shadow:0 12px 30px rgba(16,16,16,.09); padding:13px 16px; border-radius:12px; }
.map-status > span{ width:9px; height:9px; border-radius:50%; background:#20b15a; box-shadow:0 0 0 6px rgba(32,177,90,.12); }
.map-status strong,.map-status small{ display:block; }
.map-status strong{ font-size:12px; }.map-status small{ color:var(--ink-soft); font-size:10px; }

@media (max-width:1100px){
  .solution-grid{ grid-template-columns:repeat(2,1fr); }
  .coverage-grid{ gap:38px; }
}
@media (max-width:960px){
  .testimonial-grid{ grid-template-columns:1fr; }
  .testimonial-card p{ min-height:0; }
  .coverage-grid{ grid-template-columns:1fr; }
  .india-map-card{ min-height:430px; }
}
@media (max-width:720px){
  .brand-chip{ width:180px; height:66px; }
  .solution-grid{ grid-template-columns:1fr; }
  .solution-card{ min-height:220px; }
  .india-map-card{ min-height:360px; border-radius:20px; }
  .map-status{ left:16px; right:16px; bottom:14px; }
}
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .brand-track,
  .institute-track{ animation:none; }
}


/* Active navigation state — color/underline only (no weight change = no layout shift) */
.nav-links a.active,
.nav-links a[aria-current="page"]{
  color:var(--brand);
  font-weight:600;
}
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  border-radius:999px;
  background:var(--brand);
}

@media (prefers-reduced-motion:reduce){
  .nav-toggle span,
  .nav-links,
  .nav-backdrop,
  .nav-links a{
    transition:none;
  }
}

/* =========================================================
   WORKFLOW SECTION — merged from workflow.css
   Scoped to the embedded ".workflow-page" wrapper on the
   homepage so the workflows section keeps the exact styling
   and content of the original workflow page.
   ========================================================= */

:root {
  --molecular: #19723c;
  --rna: #138044;
  --protein: #1d4c91;
  --cell: #0c7b57;
  --nav-h: 76px;
  --font-heading: "Bebas Neue", "Oswald", "Barlow Condensed", sans-serif;
}

.workflow-page {
  background: #f4f7f9;
  overflow: hidden;
  --workflow-header-height: 76px;
}

/* Display headings — condensed uppercase stack */
.workflow-page h1,
.workflow-page h2,
.workflow-page .panel-header h2,
.workflow-page .workflow-cta h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Step cards are <section> elements; neutralize homepage section padding */
.workflow-page section.step-card {
  padding: 16px;
}

/* ----- Hero ----- */
.workflow-page .workflow-hero{
  padding:28px 0 96px;
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
  min-height:460px;
  /* EDIT: swap this URL to change the hero artwork */
  background-color:#fff;
  background-image:url("assets/workflows/hero-molecular-biology.webp");
  background-repeat:no-repeat;
  background-position:right center;
  background-size:cover;
}

.workflow-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle,rgba(20,72,108,.08) 1px,transparent 1px);
  background-size:30px 30px;
  mask-image:linear-gradient(90deg,transparent,#000 65%);
  pointer-events:none;
}

.workflow-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
  position:relative;
  z-index:1;
  min-height:495px; /*Background Image for workflows*/
}

.workflow-hero-copy{ min-width:0; position:relative; z-index:2; }

.workflow-hero .eyebrow{ margin:0; }

.workflow-hero h1{
  font-size:clamp(42px,5.2vw,72px);
  line-height:.92;
  letter-spacing:.02em;
  margin:10px 0 12px;
}

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

.workflow-hero p:not(.eyebrow){
  font-size:16px;
  line-height:1.65;
  color:var(--ink-soft);
  max-width:560px;
  margin:0;
}

.workflow-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* ----- Shell & intro ----- */
.workflow-shell {
  padding: 20px 0 20px;
}

.workflow-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 30px;
}

.workflow-intro h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 12px;
}

.workflow-intro > p {
  max-width: 520px;
  color: var(--ink-soft);
}

.workflow-intro code {
  font-family: var(--font-mono);
  color: var(--brand);
}

/* ----- Tabs (sticky below site header) ----- */
.workflow-tabs {
  position: sticky;
  top: calc(var(--workflow-header-height) + 12px);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  margin-bottom: 24px;
  background: rgba(244, 247, 249, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 226, 226, 0.8);
  border-radius: 18px;
}

.workflow-tab {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #3b424a;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-align: left;
  transition: 0.2s;
}

.workflow-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.workflow-tab.active {
  background: #102e50;
  color: #fff;
  border-color: #102e50;
}

.workflow-page .workflow-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 10px 26px rgba(228, 32, 44, 0.22);
}

.workflow-page .workflow-tab.active:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.tab-index {
  font: 500 11px var(--font-mono);
  opacity: 0.68;
}

/* ----- Panels ----- */
.workflow-panel {
  --theme: #19723c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16, 31, 50, 0.08);
}

.workflow-panel[hidden] {
  display: none;
}

.theme-molecular {
  --theme: var(--molecular);
}

.theme-rna {
  --theme: var(--rna);
}

.theme-protein {
  --theme: var(--protein);
}

.theme-cell {
  --theme: var(--cell);
}

.panel-header {
  position: relative;
  padding: 36px 40px;
  background: linear-gradient(115deg, var(--theme), #0f2f55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.panel-header p {
  font: 600 12px var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9f2d2;
}

.panel-header h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  color: #fff;
  margin: 8px 0;
}

.panel-header span {
  color: rgba(255, 255, 255, 0.76);
}

.panel-badge {
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 700;
}

/* ----- Step cards ----- */
.workflow-steps {
  display: grid;
  padding: 28px;
  gap: 16px;
  background: #f6f8fa;
}

.workflow-steps.five {
  grid-template-columns: repeat(5, 1fr);
}

.workflow-steps.six {
  grid-template-columns: repeat(6, 1fr);
}

.step-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid #dfe4e8;
  border-top: 4px solid var(--theme);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 26px rgba(26, 42, 60, 0.05);
}

.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 49%;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--theme);
  color: #fff;
  font-size: 11px;
}

.step-top {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 44px;
}

.step-top > span {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--theme);
  color: #fff;
  font: 700 12px var(--font-display);
}

.step-top h3 {
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.step-card img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  margin: 14px 0;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border-radius: 10px;
}

.step-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-card li {
  position: relative;
  padding-left: 12px;
  font-size: 11px;
  line-height: 1.45;
  color: #4c555e;
}

.step-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme);
}

/* ----- Range grid ----- */
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 28px 28px;
}

.range-grid.five-col {
  grid-template-columns: repeat(5, 1fr);
}

.range-grid.six-col {
  grid-template-columns: repeat(6, 1fr);
}

.range-grid > div {
  padding: 18px;
  border: 1px solid #e2e6e9;
  border-radius: 12px;
  background: #fff;
}

.range-grid h4 {
  font: 700 12px var(--font-display);
  color: var(--theme);
  text-transform: uppercase;
  margin-bottom: 7px;
}

.range-grid p {
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ----- Featured product ----- */
.featured-product {
  margin: 0 28px 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #fff);
  border: 1px solid color-mix(in srgb, var(--theme) 22%, #ddd);
  border-radius: 16px;
}

.featured-product img {
  width: 170px;
  height: 128px;
  object-fit: contain;
}

.featured-label {
  font: 600 11px var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--theme);
}

.featured-product h3 {
  font-size: 24px;
  margin: 5px 0 10px;
}

.featured-product ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 18px;
}

.featured-product li {
  font-size: 12px;
  color: #4a535c;
  position: relative;
  padding-left: 15px;
}

.featured-product li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--theme);
  font-weight: 700;
}

/* ----- Value band ----- */
.workflow-value-band {
  padding: 0 0 20px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.value-grid div {
  padding: 10px 24px;
  border-right: 1px solid var(--line);
}

.value-grid div:last-child {
  border: 0;
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid strong {
  font-size: 15px;
  color: #14395f;
}

.value-grid span {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ----- CTA ----- */
.workflow-cta {
  padding: 88px 0;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.workflow-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.workflow-cta h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  max-width: 780px;
  margin: 12px 0;
}

.workflow-cta p:not(.eyebrow) {
  color: var(--ink-soft);
}

.workflow-cta-inner > div:last-child {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.workflow-cta .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.workflow-cta .btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ----- Responsive ----- */
@media (max-width: 1280px) {
  .workflow-steps.six {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .step-card:nth-child(3n)::after {
    display: none;
  }

  .range-grid.six-col,
  .range-grid.five-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .workflow-page .workflow-hero {
    min-height: 560px;
    background-position: center 28%;
    background-size: cover;
    padding: 28px 0 36px;
  }

  .workflow-page .workflow-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 42%,
      rgba(255, 255, 255, 0.45) 100%
    );
  }

  .workflow-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .workflow-intro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .workflow-steps.five,
  .workflow-steps.six {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:nth-child(3n)::after {
    display: grid;
  }

  .step-card:nth-child(2n)::after {
    display: none;
  }

  .range-grid,
  .range-grid.five-col,
  .range-grid.six-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product {
    grid-template-columns: 140px 1fr;
  }

  .featured-product .btn {
    grid-column: 1 / -1;
    justify-content: center;
  }

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

  .value-grid div:nth-child(2) {
    border-right: 0;
  }

  .workflow-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 76px;
  }

  .workflow-page {
    --workflow-header-height: 76px;
  }

  .workflow-page .workflow-hero {
    min-height: 520px;
    padding: 22px 0 28px;
    background-position: center 22%;
    background-size: cover;
  }

  .workflow-hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    margin: 8px 0 10px;
  }

  .workflow-hero-actions {
    margin-top: 14px;
  }

  .workflow-page .workflow-tabs {
    top: calc(var(--workflow-header-height) + 6px);
    grid-template-columns: 1fr 1fr;
    padding: 7px;
  }

  .workflow-tab {
    padding: 11px 10px;
    font-size: 11px;
  }

  .workflow-tab .tab-index {
    display: none;
  }

  .panel-header {
    padding: 26px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-steps {
    padding: 16px;
  }

  .workflow-steps.five,
  .workflow-steps.six {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    display: none !important;
  }

  .step-card img {
    height: 150px;
  }

  .range-grid,
  .range-grid.five-col,
  .range-grid.six-col {
    grid-template-columns: 1fr;
    padding: 0 16px 16px;
  }

  .featured-product {
    margin: 0 16px 16px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .featured-product img {
    width: 100%;
    height: 160px;
  }

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

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

  .value-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-cta {
    padding: 68px 0;
  }

  .workflow-cta-inner > div:last-child {
    width: 100%;
  }

  .workflow-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
