/* ==========================================================================
   CTPL · dir/products/deconti.css
   DECONTI overview: dark hero, manifesto, quote band, QMS & outsourcing.

   Sits beside deconti.html and is loaded only by it.

   Cascade order for this page:
     1. ../../css/global.css      tokens, base elements, site chrome, RFQ band
     2. ../../css/components.css  cross-page patterns + the range grid
     3. this file                 everything unique to the page

   Loaded last, so any rule here of equal specificity wins without !important.
   ========================================================================== */

  /* DECONTI Hero - High-Impact Dark MedTech Showcase */
  .dec-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #040a1d 0%, #071233 45%, #0e245a 100%);
    color: #fff;
    padding: 84px 0 96px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  /* Texture line colour comes from .grid-tex--dark (components.css) */
  .dec-hero .grid-tex {
    background-size: 36px 36px;
    -webkit-mask-image: radial-gradient(120% 120% at 75% 10%, #000 30%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 75% 10%, #000 30%, transparent 80%);
  }
  .dec-hero .hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,90,214,.32), rgba(46,158,138,.12) 50%, transparent 70%);
    top: -180px;
    right: -100px;
    pointer-events: none;
    filter: blur(40px);
  }
  .dec-hero .wrap {
    position: relative;
    z-index: 2;
  }
  .dec-hero .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .dec-hero .eyebrow {
    color: var(--mint);
    letter-spacing: .2em;
  }
  .dec-hero .eyebrow::before {
    background: var(--mint);
  }
  .dec-hero h1 {
    color: #fff;
    font-size: 3.15rem;
    font-weight: 700;
    margin: 1.1rem 0 1.2rem;
    letter-spacing: -.03em;
    line-height: 1.12;
  }
  /* Dark hero: gradient-filled text, no underline
     (overrides .hl in components.css) */
  .dec-hero h1 .hl {
    background: linear-gradient(120deg, #9fd2c6 0%, #ffffff 50%, #5892ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }
  .dec-hero h1 .hl::after { content: none; }
  .dec-hero p.lead {
    font-size: 1.14rem;
    color: #c4d3f2;
    line-height: 1.68;
    margin-bottom: 2rem;
  }
  .dec-hero p.lead b {
    color: #fff;
  }
  /* .tag-row, .tag-pill, .hero-actions and .btn-line-white are shared dark-hero
     pieces and now live in components.css, so the DECONTI product pages inherit
     exactly this treatment. */

  /* Hero Showcase Display Stage Card */
  .hero-stage-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    overflow: hidden;
  }
  .hero-stage-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(159,210,198,0.08), transparent 60%);
    pointer-events: none;
  }
  .hero-stage-card .stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  .hero-stage-card .live-pill {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mint);
    display: flex;
    align-items: center;
    gap: .4rem;
  }
  .hero-stage-card .live-pill .pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px var(--mint);
    animation: pulseGlow 1.8s infinite ease-in-out;
  }
  @keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
  }
  .hero-stage-card .stage-title {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
  }
  .hero-stage-card .stage-note {
    display: block;
    margin-top: 5px;
    font-family: var(--fm);
    font-weight: 400;
    font-size: .64rem;
    letter-spacing: .03em;
    color: rgba(255,255,255,0.55);
  }
  
  /* Sterilizer Visual Gauge Display */
  .sterilizer-display {
    background: rgba(11, 28, 72, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 18px;
  }
  .gauge-readout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .gauge-item .g-label {
    font-family: var(--fm);
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #92a4cf;
    display: block;
    margin-bottom: 2px;
  }
  .gauge-item .g-val {
    font-family: var(--fd);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .gauge-item .g-unit {
    font-size: .8rem;
    color: var(--mint);
    margin-left: 2px;
  }

  /* SVG Equipment Diagram */
  .eq-svg-wrap {
    width: 100%;
    height: 130px;
    display: grid;
    place-items: center;
    margin: 8px 0;
  }
  .eq-svg-wrap svg {
    width: 100%;
    height: 100%;
    max-height: 125px;
  }

  /* Status Bar */
  .status-progress {
    background: rgba(255,255,255,0.08);
    height: 6px;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 14px;
  }
  .status-progress .bar-fill {
    width: 86%;
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    border-radius: 99px;
    box-shadow: 0 0 12px var(--mint);
  }
  .stage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--fm);
    font-size: .7rem;
    color: #a7b8e0;
  }

  /* Manifesto Pillars ("The New Reality") */
  .dec-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  .manifesto-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    overflow: hidden;
  }
  .manifesto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .manifesto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #c4d5f2;
  }
  .manifesto-card:hover::before {
    transform: scaleX(1);
  }
  .manifesto-card .m-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mint-soft);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin-bottom: 1.3rem;
  }
  .manifesto-card .m-ic svg {
    width: 26px;
    height: 26px;
  }
  .manifesto-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--ink);
  }
  .manifesto-card p {
    font-size: .89rem;
    color: var(--ink-soft);
    line-height: 1.58;
  }

  /* QMS & Outsourcing Grid */
  .qms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .qms-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .25s var(--ease), border-color .25s var(--ease);
  }
  .qms-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
  }
  .qms-card .qms-role {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
  }
  .qms-card .qms-role::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
  }
  .qms-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--ink);
  }
  .qms-card p {
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.58;
  }

  /* RFQ CTA band: fully defined in global.css, injected by js/ui/rfq.js.
     This page uses the navy theme with a right-hand watermark. */

  /* ── Responsive Breakpoints ────────────────────────────────────────── */

  /* Tablet: 601px – 1024px */
  @media(min-width: 601px) and (max-width: 1024px) {
    .dec-hero .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .dec-hero h1 { font-size: 2.4rem; }
    .dec-manifesto-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .qms-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  }

  /* Phone: ≤ 600px — everything single column, no exceptions */
  @media(max-width: 600px) {

    /* Hero */
    .dec-hero { padding: 52px 0 56px; }
    .dec-hero .hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .dec-hero h1 { font-size: 1.75rem; line-height: 1.2; }
    .dec-hero p.lead { font-size: .98rem; }
    .dec-hero .tag-row { gap: .4rem; }
    .dec-hero .tag-pill { font-size: .66rem; padding: .34rem .62rem; }
    .dec-hero .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
    .dec-hero .hero-actions .btn,
    .dec-hero .hero-actions .btn-line-white { width: 100%; justify-content: center; text-align: center; }

    /* Stage card */
    .hero-stage-card { padding: 16px 14px; border-radius: 14px; }
    .hero-stage-card .stage-header { flex-direction: column; align-items: flex-start; gap: .4rem; }
    .hero-stage-card .stage-title { font-size: .85rem; }
    .sterilizer-display { padding: 12px; }
    .gauge-readout { flex-direction: column; gap: 8px; }
    .gauge-item .g-label { font-size: .6rem; }
    .gauge-item .g-val { font-size: 1.4rem; }
    .stage-footer { flex-direction: column; gap: .3rem; font-size: .64rem; text-align: center; }

    /* Section headings */
    .sec-head h2 { font-size: 1.6rem; }
    .sec-head p { font-size: .93rem; }

    /* Manifesto: SINGLE column */
    .dec-manifesto-grid { grid-template-columns: 1fr; gap: 14px; }
    .manifesto-card { padding: 20px 16px; }

    /* QMS: SINGLE column */
    .qms-grid { grid-template-columns: 1fr; gap: 14px; }
    .qms-card { padding: 18px 16px; border-radius: 16px; }
  }

  /* QMS section: the Q-Suite hand-off, centred under the role grid */
  .qms-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
