:root {
      --navy:      #062B4F;   /* Navy Blue */
      --navy2:     #0a3a66;   /* navy hover */
      --teal:      #0FA7A0;   /* Teal */
      --teal2:     #0c8a84;   /* teal hover */
      --light-teal:#5FD3CC;   /* Light Teal */
      --charcoal:  #1A1F2B;   /* Charcoal */
      --teal-dim:  rgba(15,167,160,0.12);
      --white:     #ffffff;
      --light:     #F5F7FA;   /* Light Gray */
      --light2:    #eaf1f6;
      --text:      #1A1F2B;   /* body text = charcoal */
      --text-muted:#5a7080;
      --border:    #dce8ef;
      --card:      #ffffff;
      /* legacy aliases */
      --cyan:      #0FA7A0;
      --cyan2:     #0c8a84;
      --cyan-dim:  rgba(15,167,160,0.12);
      --offwhite:  #5a7080;
      --muted:     #7a9aaa;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; max-width: 100%; }
    body { overflow-wrap: break-word; word-wrap: break-word; }
    img, video { max-width: 100%; height: auto; }
    .nav-links a, .lang-toggle span { -webkit-tap-highlight-color: transparent; }
    html { scroll-behavior: smooth; }
    section[id], [id] { scroll-margin-top: 80px; }
    .faq-item, .species-tab, .lang-toggle span { cursor: pointer; touch-action: manipulation; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
    }
    h1, h2, h3, .section-title, .service-name, .service-price, .hero-h1,
    .stat-num, .tech-feature-title, .step-title, .footer-brand {
      font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
    }

    /* ── NAVBAR ─────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 68px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(13,30,53,0.06);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo-img { height: 46px; width: auto; display: block; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--text); text-decoration: none;
      font-size: 0.875rem; font-weight: 500; transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 9px; margin-left: .25rem; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .22s, opacity .22s; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-check { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
    #nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
    #nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-cta-mobile { display: none; }
    .lang-toggle { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; }
    .lang-toggle span { color: var(--text-muted); cursor: pointer; transition: color .2s; }
    .lang-toggle span.active { color: var(--teal); }
    .lang-toggle .sep { color: var(--border); }

    .btn {
      display: inline-block; padding: .55rem 1.4rem;
      border-radius: 6px; font-size: .875rem; font-weight: 700;
      cursor: pointer; text-decoration: none; border: 2px solid transparent;
      transition: all .2s; letter-spacing: .02em;
    }
    .btn-primary { background: var(--teal); color: #fff; }
    .btn-primary:hover { background: var(--teal2); }
    .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: #fff; }
    .btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

    /* ── HERO (stays dark) ──────────────────────── */
    #hero {
      margin-top: 68px;
      background:
        radial-gradient(120% 90% at 50% 0%, rgba(15,167,160,0.16), transparent 60%),
        linear-gradient(180deg, var(--light2) 0%, #e6eef4 100%);
      padding: 3.5rem clamp(1rem, 5vw, 4rem) 4rem;
    }
    #hero img.hero-bg {
      display: block; width: 100%; max-width: 1180px; height: auto;
      margin: 0 auto; border-radius: 18px;
      box-shadow: 0 24px 60px rgba(6,43,79,0.22);
    }
    /* headline / CTAs / badges now live in a band BELOW the hero image */
    #hero-intro {
      background:
        radial-gradient(130% 100% at 82% 28%, rgba(15,167,160,0.18), transparent 58%),
        linear-gradient(135deg, #073761 0%, #062B4F 52%, #04203b 100%);
      padding: 4.5rem 8% 5rem; text-align: center;
    }
    #hero-intro .hero-content { max-width: 860px; margin: 0 auto; }
    #hero-intro .hero-ctas, #hero-intro .hero-badges { justify-content: center; }
    #hero-intro .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-logo {
      display: block; height: clamp(132px, 17vw, 236px); width: auto;
      background: #fff; padding: 18px 26px; border-radius: 20px;
      box-shadow: 0 16px 44px rgba(0,0,0,0.34);
      margin-bottom: 2.2rem; align-self: flex-start;
    }
    .hero-eyebrow {
      font-size: .75rem; font-weight: 700; letter-spacing: .15em;
      color: var(--teal); text-transform: uppercase; margin-bottom: 1.2rem;
    }
    .hero-h1 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
      color: #fff; margin-bottom: 1.4rem;
    }
    .hero-h1 em { color: var(--teal); font-style: normal; }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,0.7);
      max-width: 480px; margin-bottom: 2.2rem;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .hero-badges { display: flex; gap: 1.6rem; flex-wrap: wrap; }
    .hero-pro-line { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: .9rem; color: rgba(255,255,255,0.7); }
    .hero-pro-line a { color: var(--light-teal); font-weight: 600; text-decoration: none; white-space: nowrap; }
    .hero-pro-line a:hover { color: #fff; text-decoration: underline; }
    .badge { display: flex; flex-direction: column; align-items: center; gap: .4rem; text-align: center; }
    .badge-icon {
      width: 44px; height: 44px; border: 1.5px solid var(--teal);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .badge-icon svg { width: 20px; height: 20px; }
    .badge-label { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
    .hero-visual svg { width: 100%; max-width: 520px; height: auto; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.35)); }
    .hero-visual img { width: 100%; max-width: 520px; height: auto; border-radius: 16px; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.45)); }

    /* ── SECTION SHARED ─────────────────────────── */
    section { padding: 90px 8%; }
    .section-label {
      font-size: .72rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal); margin-bottom: .8rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
      letter-spacing: -.02em; color: var(--navy); margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1rem; color: var(--text-muted);
      max-width: 600px; margin-bottom: 3rem;
    }

    /* ── SERVICES (light) ───────────────────────── */
    #services { background: var(--light); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .service-card {
      background: #fff; border: 2px solid var(--border);
      border-radius: 14px; padding: 2rem;
      transition: border-color .25s, box-shadow .25s, transform .25s;
      position: relative; overflow: hidden;
    }
    .service-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,167,160,0.12); }
    .service-card.featured { border-color: var(--teal); box-shadow: 0 8px 32px rgba(15,167,160,0.15); }
    .service-card.featured::before {
      content: 'MOST POPULAR'; position: absolute; top: 0; right: 0;
      background: var(--teal); color: #fff;
      font-size: .6rem; font-weight: 800; letter-spacing: .1em;
      padding: .3rem .8rem; border-bottom-left-radius: 8px;
    }
    .service-tier { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
    .service-name { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
    .service-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.2rem; }
    .service-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
    .service-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.6rem; }
    .service-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--text-muted); }
    .service-features li::before {
      content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
      background: var(--teal);
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
      mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    }
    .service-note { font-size: .78rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 1rem; margin-bottom: 1.2rem; }

    /* ── PRICE REVEAL ───────────────────────────── */
    .price-toggle {
      background: none; border: 1px solid var(--border);
      border-radius: 6px; padding: .35rem 1rem;
      font-size: .82rem; font-weight: 600; color: var(--text-muted);
      cursor: pointer; margin-bottom: 1.2rem; transition: all .2s;
      display: flex; align-items: center; gap: .4rem; font-family: inherit;
    }
    .price-toggle::after { content: '▾'; font-size: .9rem; transition: transform .2s; }
    .price-toggle:hover, .price-toggle.open { border-color: var(--teal); color: var(--teal); }
    .price-toggle.open::after { transform: rotate(180deg); }
    .price-reveal { display: none; }
    .price-reveal.open { display: block; }

    /* ── PROCESS (white) ────────────────────────── */
    #process {
      background:
        radial-gradient(120% 90% at 50% 0%, rgba(15,167,160,0.16), transparent 60%),
        linear-gradient(180deg, var(--light2) 0%, #e6eef4 100%);
    }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
    .step { display: flex; flex-direction: column; text-align: left; }
    .step .illus { width: 100%; margin-bottom: 1rem; }
    .step-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .45rem; }
    .step-num {
      width: 30px; height: 30px; flex: none; border: 2px solid var(--teal);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: .92rem; font-weight: 800; color: var(--teal); background: #fff;
    }
    .step-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
    .step-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

    /* ── TECHNOLOGY (dark navy — lab background accent) ─ */
    #technology {
      background:
        linear-gradient(rgba(6,43,79,0.88), rgba(6,43,79,0.94)),
        url('images/lab-bg.jpg') center / cover no-repeat;
    }
    #technology .section-label { color: var(--light-teal); }
    #technology .section-title { color: #fff; }
    #technology .section-sub { color: rgba(255,255,255,0.72); }
    .mycoscan-lockup {
      max-width: 360px; margin: .6rem 0 1.4rem; overflow: hidden;
      border-radius: 16px; border: 1px solid rgba(95,211,204,0.28);
      box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    }
    .mycoscan-lockup img { display: block; width: 100%; height: auto; }
    .tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3.5rem; }
    .tech-feature { display: flex; gap: 1rem; margin-bottom: 2rem; }
    .tech-icon {
      flex-shrink: 0; width: 48px; height: 48px;
      background: rgba(15,167,160,0.15); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .tech-icon svg { width: 22px; height: 22px; }
    .tech-feature-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
    .tech-feature-desc { font-size: .875rem; color: rgba(255,255,255,0.65); }
    .tech-visual { position: relative; }
    .tech-scope { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
    .tech-scope::before { content:""; position:absolute; width:78%; height:66%; left:11%; top:16%; border-radius:50%;
      background: radial-gradient(circle, rgba(15,167,160,0.20), transparent 66%); filter: blur(6px); }
    .tech-scope-img { position: relative; z-index:1; width:auto; height:auto; max-height:460px; max-width:74%;
      filter: drop-shadow(0 12px 34px rgba(0,0,0,0.45)); }
    .mycoscan-chip { position:absolute; z-index:2; top:2%; left:0; width:40%; max-width:172px; height:auto;
      filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }
    @media (max-width: 560px){ .mycoscan-chip{ width:46%; } .tech-scope-img{ max-width:80%; } }
    .tech-visual svg { width: 100%; height: auto; }

    /* ── ABOUT (light) ──────────────────────────── */

    /* ── MOLD SPECIES ── */
    #species {
      background:
        radial-gradient(120% 90% at 50% 0%, rgba(15,167,160,0.16), transparent 60%),
        linear-gradient(180deg, var(--light2) 0%, #e6eef4 100%);
    }
    .species-tabs { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin:2.2rem auto 2.6rem; max-width:760px; }
    .species-tab { font-family:inherit; font-size:.88rem; font-weight:600; padding:.6rem 1.15rem; border-radius:999px;
      border:1.5px solid var(--border); background:#fff; color:var(--navy); cursor:pointer; transition:all .15s; }
    .species-tab:hover { border-color:var(--teal); color:var(--teal2); }
    .species-tab.active { background:var(--navy); color:#fff; border-color:var(--navy); }
    .species-panels { max-width:920px; margin:0 auto; }
    .species-panel { display:none; grid-template-columns:300px 1fr; gap:2.6rem; align-items:center; }
    .species-panel.active { display:grid; animation:spFade .25s ease; }
    @keyframes spFade { from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;} }
    .species-illus { width:100%; border-radius:16px; overflow:hidden; border:1px solid var(--border);
      background:linear-gradient(160deg,#0a3358,#06233d); box-shadow:0 12px 30px rgba(6,43,79,0.14); }
    .species-illus svg { display:block; width:100%; height:auto; }
    .species-name { font-family:'Montserrat',sans-serif; font-size:1.55rem; font-weight:800; color:var(--navy); margin:0 0 .25rem; }
    .species-tag { color:var(--teal2); font-weight:600; font-size:.95rem; margin:0 0 1.1rem; }
    .species-facts p { margin:.55rem 0; color:#3c5267; line-height:1.55; font-size:.96rem; }
    .species-facts b { color:var(--navy); }
    .species-disclaimer { text-align:center; font-size:.8rem; color:var(--text-muted); margin:2.6rem auto 0; max-width:680px; }
    @media (max-width:680px){ .species-panel.active{ grid-template-columns:1fr; } .species-illus{ max-width:300px; margin:0 auto; } }


    /* ── EXPERTISE ── */
    #expertise { background: var(--navy); }
    #expertise .section-label { color: var(--teal); }
    #expertise .section-title { color: #fff; }
    #expertise .section-sub { color: rgba(255,255,255,0.72); }
    .exp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; max-width:980px; margin:2.6rem auto 0; }
    .exp-card { background:rgba(255,255,255,0.04); border:1px solid rgba(95,211,204,0.22); border-radius:14px; padding:1.5rem 1.4rem; transition:border-color .15s, transform .15s; }
    .exp-card:hover { border-color:var(--teal); transform:translateY(-3px); }
    .exp-icon { width:44px; height:44px; border:1.5px solid var(--teal); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--teal); margin-bottom:1rem; }
    .exp-icon svg { width:24px; height:24px; }
    .exp-title { font-family:'Montserrat',sans-serif; font-size:1.08rem; font-weight:700; color:#fff; margin:0 0 .7rem; }
    .exp-list { list-style:none; margin:0; padding:0; }
    .exp-list li { font-size:.92rem; color:rgba(255,255,255,0.72); padding:.3rem 0 .3rem 1.1rem; position:relative; }
    .exp-list li::before { content:''; position:absolute; left:0; top:.85rem; width:6px; height:6px; border-radius:50%; background:var(--teal); }
    @media (max-width:880px){ .exp-grid{ grid-template-columns:repeat(2,1fr); } }
    @media (max-width:560px){ .exp-grid{ grid-template-columns:1fr; } }


    /* ── SAMPLE REPORT ── */
    #sample-report {
      background:
        radial-gradient(120% 90% at 50% 0%, rgba(15,167,160,0.16), transparent 60%),
        linear-gradient(180deg, var(--light2) 0%, #e6eef4 100%);
      text-align:center;
    }
    .report-cta { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin:2.2rem 0 1rem; }
    .btn-outline { background:transparent; color:var(--navy); border:1.5px solid var(--navy); }
    .btn-outline:hover { background:var(--navy); color:#fff; }
    .report-note { font-size:.8rem; color:var(--text-muted); }

    #about {
      background:
        linear-gradient(rgba(6,43,79,0.90), rgba(6,43,79,0.95)),
        url('images/lab-bg.jpg') center / cover no-repeat;
    }
    #about .section-label { color: var(--light-teal); }
    #about .section-title { color: #fff; }
    #about .about-text p { color: rgba(255,255,255,0.78); }
    #about .cred-tag {
      background: rgba(15,167,160,0.18); border-color: rgba(95,211,204,0.45); color: var(--light-teal);
    }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-visual {
      background: rgba(4,20,36,0.55); border: 1px solid rgba(95,211,204,0.22);
      border-radius: 16px; padding: 2.5rem; backdrop-filter: blur(2px);
      display: flex; flex-direction: column; gap: 1.5rem;
    }
    .about-stat { display: flex; flex-direction: column; gap: .2rem; }
    .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; }
    .stat-label { font-size: .85rem; color: rgba(255,255,255,0.65); }
    .stat-divider { height: 1px; background: rgba(255,255,255,0.08); }
    .about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }
    .about-credentials { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
    .cred-tag {
      background: var(--teal-dim); border: 1px solid rgba(15,167,160,0.3); color: var(--teal2);
      font-size: .75rem; font-weight: 600; letter-spacing: .04em; padding: .3rem .8rem; border-radius: 20px;
    }

    /* ── FAQ (white) ────────────────────────────── */
    #faq {
      background:
        radial-gradient(120% 90% at 50% 0%, rgba(15,167,160,0.16), transparent 60%),
        linear-gradient(180deg, var(--light2) 0%, #e6eef4 100%);
    }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .faq-item {
      background: var(--light); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.4rem 1.6rem; cursor: pointer; transition: border-color .2s;
    }
    .faq-item:hover { border-color: var(--teal); }
    .faq-q { font-size: .95rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
    .faq-q::after { content: '+'; color: var(--teal); font-size: 1.3rem; flex-shrink: 0; }
    .faq-a { display: none; font-size: .85rem; color: var(--text-muted); margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--border); }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-q::after { content: '−'; }

    /* ── CONTACT (light) ────────────────────────── */
    #contact { background: var(--light); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); }
    .form-group input, .form-group select, .form-group textarea {
      background: #fff; border: 1.5px solid var(--border);
      border-radius: 8px; padding: .7rem 1rem;
      color: var(--text); font-size: .9rem; font-family: inherit;
      outline: none; transition: border-color .2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-hint { font-size: .8rem; color: var(--text-muted); line-height: 1.5; margin-top: -.2rem; }
    .form-hint a { color: var(--teal); text-decoration: none; }
    .contact-info { display: flex; flex-direction: column; gap: 2rem; padding-top: .5rem; }
    .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
    .contact-item-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--teal-dim); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; color: var(--teal);
    }
    .contact-item-icon svg { width: 20px; height: 20px; }
    .contact-item-title { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
    .contact-item-value { font-size: .88rem; color: var(--text-muted); }

    /* ── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--navy); padding: 2.5rem 8%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
      border-top: 3px solid var(--teal);
    }
    .footer-brand { font-size: .95rem; font-weight: 700; color: #fff; }
    .footer-legal { font-size: .78rem; color: rgba(255,255,255,0.4); text-align: center; }
    .footer-links { display: flex; gap: 1.5rem; list-style: none; }
    .footer-links a { font-size: .8rem; color: rgba(255,255,255,0.5); text-decoration: none; }
    .footer-links a:hover { color: var(--teal); }

    /* ── IMAGE PLACEHOLDERS (swap-ready) ────────── */
    /* Drop a real photo with the matching filename into this folder and it
       auto-replaces the placeholder (same onload trick used by the logo). */
    .img-ph {
      position: relative; overflow: hidden; border-radius: 12px;
      aspect-ratio: 4 / 3; display: flex; align-items: flex-end;
      background:
        radial-gradient(120% 120% at 30% 20%, rgba(15,167,160,0.10), transparent 60%),
        linear-gradient(150deg, var(--light2) 0%, #d6e4ed 100%);
      border: 1px solid var(--border);
    }
    .img-ph::before {
      content: ''; position: absolute; top: 50%; left: 50%;
      width: 38px; height: 38px; transform: translate(-50%, -60%);
      opacity: .28;
      background: var(--navy);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='15' rx='2'/%3E%3Ccircle cx='9' cy='9.5' r='1.6'/%3E%3Cpath d='M3 16l5-4 4 3 3-3 6 5'/%3E%3C/svg%3E") no-repeat center / contain;
              mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='15' rx='2'/%3E%3Ccircle cx='9' cy='9.5' r='1.6'/%3E%3Cpath d='M3 16l5-4 4 3 3-3 6 5'/%3E%3C/svg%3E") no-repeat center / contain;
    }
    .img-ph img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 0; transition: opacity .35s;
    }
    .img-ph.has-img::before { display: none; }
    .img-ph.has-img img { opacity: 1; }
    .img-ph-label {
      position: relative; z-index: 1; width: 100%;
      font-size: .72rem; font-weight: 600; letter-spacing: .04em;
      text-transform: uppercase; color: #43607a; padding: .7rem .9rem;
    }
    .img-ph.has-img .img-ph-label {
      color: #fff; background: linear-gradient(transparent, rgba(6,43,79,0.72));
    }
    .img-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem; margin-top: 3rem;
    }
    .about-photo { aspect-ratio: 5 / 4; margin-bottom: 1.5rem; }
    @media (max-width: 900px) { .img-strip { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .img-strip { grid-template-columns: 1fr; } }

    /* ── BRAND SVG ILLUSTRATIONS (replace photo placeholders) ──── */
    .illus {
      position: relative; overflow: hidden; border-radius: 12px;
      aspect-ratio: 4 / 3; display: flex; align-items: flex-end;
      border: 1px solid var(--border);
      background:
        linear-gradient(rgba(15,167,160,0.06) 1px, transparent 1px) 0 0 / 26px 26px,
        linear-gradient(90deg, rgba(15,167,160,0.06) 1px, transparent 1px) 0 0 / 26px 26px,
        linear-gradient(160deg, #0a3358 0%, #06233d 100%);
    }
    .illus > svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
    .illus .img-ph-label { color: #d4efeb; background: linear-gradient(transparent, rgba(4,20,36,0.82)); }
    .illus.about-photo { aspect-ratio: 5 / 4; }
    .illus.about-photo { position: relative; }
    .bench-svg { position:absolute; inset:0; width:100%; height:100%; }
    .bench-scope { position:absolute; z-index:2; left:7%; bottom:13.5%; height:62%; width:auto;
      filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45)); }

    /* ── SERVICES: analysis-type layout ───────────── */
    .analysis-grid { grid-template-columns: repeat(2, 1fr); max-width: 940px; margin: 0 auto; }
    .service-portion { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; line-height: 1.45; }
    .includes-strip { max-width: 940px; margin: 2.6rem auto 0; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem 2rem; }
    .includes-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
    .includes-list { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; }
    .includes-list li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--text-muted); }
    .includes-list li::before {
      content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background: var(--teal);
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
              mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    }
    .pro-panel { max-width: 940px; margin: 2.6rem auto 0; background: linear-gradient(160deg, #073761 0%, #062B4F 100%); border-radius: 16px; padding: 2.6rem; }
    .pro-panel .section-label { color: var(--light-teal); }
    .pro-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .8rem; letter-spacing: -.01em; }
    .pro-sub { font-size: .96rem; color: rgba(255,255,255,0.78); margin-bottom: 1.4rem; max-width: 72ch; }
    .pro-list { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.6rem; }
    .pro-list li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: rgba(255,255,255,0.85); }
    .pro-list li::before {
      content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; background: var(--light-teal);
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
              mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    }
    /* "What the standard should have been" statement */
    .tech-standard { max-width: 800px; margin: 1.4rem auto 0; text-align: center; font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.82); }
    .tech-standard em { font-style: normal; font-weight: 700; color: var(--light-teal); }

    /* Plain-language MycoScan comparison (sits inside the dark #technology section) */
    .compare { max-width: 940px; margin: 2.4rem auto 0; text-align: center; }
    .compare-eyebrow { justify-content: center; color: var(--light-teal); }
    .compare-title { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 1.6rem; }
    .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; text-align: left; align-items: stretch; }
    .compare-card { position: relative; border-radius: 16px; padding: 1.8rem 1.6rem; }
    .compare-old { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); }
    .compare-new { background: linear-gradient(160deg, rgba(15,167,160,0.20) 0%, rgba(15,167,160,0.06) 100%); border: 1px solid rgba(95,211,204,0.55); box-shadow: 0 14px 34px rgba(4,20,36,0.35); }
    .compare-card-tag { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 1rem; }
    .compare-old .compare-card-tag { color: rgba(255,255,255,0.65); }
    .compare-new .compare-card-tag { color: #fff; }
    .compare-newhead { display: flex; justify-content: space-between; align-items: center; gap: .6rem .9rem; flex-wrap: wrap; margin-bottom: 1rem; }
    .compare-newhead .compare-card-tag { margin-bottom: 0; }
    .compare-badge { flex: none; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); background: var(--light-teal); border-radius: 999px; padding: .28rem .7rem; white-space: nowrap; }
    .compare-list { list-style: none; display: grid; gap: .7rem; margin: 0; padding: 0; }
    .compare-list li { position: relative; padding-left: 1.7rem; font-size: .92rem; line-height: 1.5; }
    .compare-old .compare-list li { color: rgba(255,255,255,0.62); }
    .compare-new .compare-list li { color: rgba(255,255,255,0.92); }
    .compare-old .compare-list li::before { content: '—'; position: absolute; left: 0; top: 0; color: rgba(255,255,255,0.4); font-weight: 700; }
    .compare-new .compare-list li::before {
      content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background: var(--light-teal);
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
              mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    }
    .compare-foot { margin: 1.6rem auto 0; max-width: 70ch; font-size: 1.22rem; font-weight: 600; line-height: 1.5; color: #fff; }
    @media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }

    .roadmap-note { max-width: 940px; margin: 1.6rem auto 0; background: var(--teal-dim); border: 1px dashed rgba(15,167,160,0.4); border-radius: 12px; padding: 1.2rem 1.5rem; }
    .roadmap-note p { font-size: .86rem; color: var(--text); line-height: 1.6; }
    .roadmap-note a { color: var(--teal2); font-weight: 600; text-decoration: none; }
    @media (max-width: 760px) { .analysis-grid { grid-template-columns: 1fr; } .pro-panel, .includes-strip { padding: 1.6rem 1.4rem; } }
    /* center a lone trailing card when the count is odd (desktop only) */
    @media (min-width: 761px) { .analysis-grid > .service-card:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: calc(50% - 0.75rem); } }

    /* ── HOME: B2B band ────────────────────────────── */
    #b2b, #who { background: var(--navy); }
    #b2b .section-label, #who .section-label { color: var(--light-teal); }
    #b2b .section-title, #who .section-title { color: #fff; }
    #b2b .section-sub, #who .section-sub { color: rgba(255,255,255,0.75); }
    .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2.6rem; }
    .audience-grid .b2b-card { padding: 1.8rem 1.7rem; }
    .b2b-card-link { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--teal); text-decoration: none; }
    .b2b-card-link:hover { color: var(--light-teal); }
    @media (max-width: 640px) { .audience-grid { grid-template-columns: 1fr; } }
    .b2b-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.4rem; }
    .b2b-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(95,211,204,0.22); border-radius: 14px; padding: 1.5rem 1.3rem; transition: border-color .15s, transform .15s; }
    .b2b-card:hover { border-color: var(--teal); transform: translateY(-3px); }
    .b2b-icon { width: 44px; height: 44px; border: 1.5px solid var(--teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 1rem; }
    .b2b-icon svg { width: 22px; height: 22px; }
    .b2b-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
    .b2b-card p { font-size: .86rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
    .b2b-steps { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: stretch; margin-bottom: 2.2rem; }
    .b2b-step { flex: 1 1 200px; background: rgba(4,20,36,0.4); border: 1px solid rgba(95,211,204,0.18); border-radius: 12px; padding: 1.3rem 1.4rem; }
    .b2b-step-num { display: inline-flex; width: 30px; height: 30px; border: 2px solid var(--teal); border-radius: 50%; align-items: center; justify-content: center; font-weight: 800; color: var(--teal); margin-bottom: .7rem; font-size: .9rem; }
    .b2b-step h4 { font-family: 'Montserrat', sans-serif; font-size: .98rem; color: #fff; margin-bottom: .3rem; }
    .b2b-step p { font-size: .85rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
    .b2b-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
    @media (max-width: 900px) { .b2b-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .b2b-grid { grid-template-columns: 1fr; } }

    /* ── Scroll reveal ─────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
    .reveal.in-view { opacity: 1; transform: none; }
    .reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
    .reveal-stagger.in-view > * { opacity: 1; transform: none; }
    .reveal-stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
    .reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
    .reveal-stagger.in-view > *:nth-child(4) { transition-delay: .24s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ── SCROLLBAR ──────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--light); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

    /* ── RESPONSIVE ─────────────────────────────── */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; padding-top: 90px; }
      .hero-visual { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .tech-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }

      /* mobile navigation */
      .nav-toggle { display: flex; }
      .nav-right > .btn { display: none; }            /* CTA moves into the menu */
      .nav-links {
        position: fixed; top: 68px; left: 0; right: 0;
        flex-direction: column; gap: 0; align-items: stretch;
        background: #fff; border-top: 1px solid var(--border);
        box-shadow: 0 14px 26px rgba(13,30,53,0.12);
        padding: .4rem 0 1rem; margin: 0;
        max-height: calc(100vh - 68px); overflow-y: auto;
        transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
      }
      .nav-links.open,
      #nav-check:checked ~ .nav-links { transform: none; opacity: 1; pointer-events: auto; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: .95rem 8%; font-size: 1.02rem; border-bottom: 1px solid var(--light2); }
      .nav-cta-mobile { display: block; padding: 1rem 8% 0 !important; border-bottom: 0 !important; }
      .nav-cta-mobile .btn { display: block; text-align: center; }
      section { padding: 64px 7%; }
      .section-title { font-size: 1.7rem; }
    }
    @media (max-width: 480px) {
      nav { padding: 0 5%; }
      .hero-intro, #hero-intro { padding-left: 6%; padding-right: 6%; }
      .report-cta .btn { width: 100%; }
    }
