  :root {
    --navy: #11314f;
    --navy-deep: #0c2742;
    --teal: #1d8a93;
    --teal-dark: #157079;
    --teal-head: #2a7e88;
    --page-bg: #e7e9f0;
    --card: #ffffff;
    --line: #d7dce3;
    --text: #2b3742;
    --muted: #6b7682;
    --gold: #f4a72c;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { overflow-x: hidden; }
  body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: #c8ccd6;
    line-height: 1.4;
  }
  .page {
    width: 100%;
    margin: 0 auto;
    background: var(--page-bg);
    box-shadow: 0 0 40px rgba(0,0,0,.25);
    overflow: hidden;
  }
  img { max-width: 100%; }

  /* ============ TOP / HERO ============ */
  .top {
    position: relative;
    background: #ffffff;
    overflow: hidden;
  }
  /* navy diagonal corner */
  .top::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 62%; height: 100%;
    background: linear-gradient(180deg, #143a5e, #0d2a47);
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 8% 100%);
    z-index: 0;
  }
  /* hero glassware photo cropped from the catalog */
  .hero-photo {
    position: absolute;
    top: 92px; right: 0;
    width: 56%; height: 250px;
    background: url("images/hero.png") no-repeat;
    background-size: cover;
    background-position: center right;
    z-index: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%);
            mask-image: linear-gradient(90deg, transparent, #000 14%);
  }

  .head-row {
    position: relative; z-index: 2;
    display: flex; align-items: flex-start;
    padding: 18px 26px 6px;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo svg { width: 60px; height: 60px; flex-shrink: 0; }
  /* mobile-only icon + text name (hidden on desktop, shown < 520px) */
  .logo-icon, .logo-name { display: none; }
  .logo .name { line-height: 1; }
  .logo .name h1 {
    font-size: 42.5px; letter-spacing: 4px; color: #16385a; font-weight: 800;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  }
  .logo .name .sub {
    font-size: 12.5px; letter-spacing: 3.5px; color: #5d6a76; font-weight: 700;
    margin-top: 3px;
  }
  .logo .name .sub b { color: var(--teal-dark); }

  .tagline {
    margin-left: auto;
    color: #fff;
    text-align: center;
    padding-top: 6px; max-width: 300px;
    position: relative;
  }
  .tagline .tl-lead {
    display: block;
    font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,.72);
    margin-bottom: 8px;
  }
  .tagline b {
    display: block;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 22px; font-weight: 800; line-height: 1.3;
    color: var(--gold); letter-spacing: .3px;
  }
  /* gold accent rule under the headline */
  .tagline::after {
    content: ""; display: block;
    width: 54px; height: 3px; border-radius: 2px;
    background: var(--gold); margin: 10px auto 0;
  }

  .gstin {
    position: relative; z-index: 2;
    padding: 14px 26px 10px 26px;
    font-size: 18.5px; font-weight: 700; color: #16385a; letter-spacing: .5px;
  }
  .gstin::after {
    content: ""; display: block; height: 2px; background: #16385a;
    width: 230px; margin-top: 5px; opacity: .85;
  }

  .catalog {
    position: relative; z-index: 2;
    padding: 6px 26px 14px 26px;
  }
  .catalog h2 {
    font-size: 58px; line-height: .92; color: #16385a; font-weight: 800;
    letter-spacing: 1px;
  }
  .catalog p {
    margin-top: 12px; color: var(--teal-dark); font-weight: 700;
    font-size: 18px; max-width: 330px;
  }

  /* ============ BADGES ============ */
  .badges {
    position: relative; z-index: 2;
    display: flex; gap: 16px;
    padding: 6px 26px 24px;
  }
  .badge {
    text-align: center; width: 150px;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 18px 10px 16px; box-shadow: 0 2px 6px rgba(17,49,79,.12);
  }
  .badge .ico {
    width: 56px; height: 64px; margin: 0 auto 10px;
    background: var(--navy);
    -webkit-clip-path: polygon(50% 0, 100% 22%, 100% 70%, 50% 100%, 0 70%, 0 22%);
            clip-path: polygon(50% 0, 100% 22%, 100% 70%, 50% 100%, 0 70%, 0 22%);
    color: #fff; font-size: 28px;
    display: flex; align-items: center; justify-content: center;
  }
  .badge p { font-size: 13.5px; font-weight: 800; color: var(--navy); letter-spacing: .4px; }

  /* ============ SECTION HEAD ============ */
  .section-head {
    background: var(--navy);
    color: #fff; text-align: center;
    padding: 8px; margin: 0 22px;
    font-size: 17px; font-weight: 700; letter-spacing: 2px;
    border-radius: 2px;
  }

  /* ============ PRODUCT GRID ============ */
  .grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; padding: 18px 22px;
  }
  .pcard {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 1px 3px rgba(17,49,79,.08);
  }
  a.pcard { text-decoration: none; color: inherit; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
  a.pcard:hover { transform: translateY(-4px); border-color: var(--teal);
    box-shadow: 0 12px 26px rgba(17,49,79,.16); }
  a.pcard:hover h3 { background: var(--teal-dark); }

  /* image panel */
  .pcard .thumb {
    order: 2; height: 158px;
    background: linear-gradient(180deg, #f8fafc, #eef2f6);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    padding: 16px; overflow: hidden;
  }
  .pcard .thumb img {
    max-width: 100%; max-height: 100%; width: auto; height: auto;
    object-fit: contain; display: block;
    filter: drop-shadow(0 3px 6px rgba(17,49,79,.14));
    transition: transform .18s ease;
  }
  a.pcard:hover .thumb img { transform: scale(1.04); }

  /* title bar on top */
  .pcard h3 {
    order: 1; background: var(--teal-head); color: #fff;
    font-size: 13.5px; font-weight: 800; text-align: center;
    letter-spacing: .3px; line-height: 1.3;
    padding: 10px 12px; text-transform: uppercase;
    min-height: 46px; display: flex; align-items: center; justify-content: center;
    transition: background .18s ease;
  }
  /* feature list */
  .pcard ul { order: 3; list-style: none; padding: 2px 14px 12px; flex: 1; font-size: 12.5px; }
  .pcard li { padding-left: 16px; position: relative; margin-bottom: 6px; color: var(--muted); line-height: 1.4; }
  .pcard li::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  }
  .pcard li.more { color: var(--teal-dark); font-weight: 600; }
  .pcard li.more::before { background: var(--gold); }

  /* footer HSN bar */
  .hsn {
    order: 4; background: var(--navy); color: #fff; text-align: center;
    font-size: 11px; font-weight: 700; padding: 6px; letter-spacing: .4px;
  }

  /* ============ BRANDS ============ */
  .deals { text-align: center; font-weight: 800; color: var(--navy); letter-spacing: 2px; font-size: 15.5px; padding: 4px 0 8px; }
  .deals span { color: var(--teal); }
  .brands {
    display: flex; justify-content: space-around; align-items: center;
    gap: 12px; background: #fff; margin: 0 22px;
    padding: 16px; border-radius: 6px; border: 1px solid var(--line);
  }
  .brands b { font-size: 26px; font-weight: 800; letter-spacing: 1px; }
  .brands b sup { font-size: 12.5px; }
  .b1 { color: #c0392b; }       /* ROCOMED  */
  .b2 { color: #157079; }       /* HUGEMED  */
  .b3 { color: #16385a; }       /* RADEVIC  */
  .b4 { color: #2e8b57; }       /* SCHOLLY  */

  /* ============ APPLICATIONS ============ */
  .apps { display: flex; margin: 16px 22px 34px; }
  .apps .tab {
    background: var(--navy); color: #fff; font-weight: 700; letter-spacing: 1px;
    display: flex; align-items: center; padding: 0 26px 0 16px; font-size: 15.5px;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
    border-radius: 4px 0 0 4px;
  }
  .apps .items {
    flex: 1; display: flex; background: #fff;
    border: 1px solid var(--line); border-left: none; border-radius: 0 4px 4px 0;
  }
  .apps .item { flex: 1; text-align: center; padding: 12px 6px; border-left: 1px solid var(--line); }
  .apps .item:first-child { border-left: none; }
  .apps .item .ico {
    width: 38px; height: 38px; margin: 0 auto 6px; border-radius: 50%;
    border: 2px solid var(--teal); color: var(--teal);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .apps .item p { font-size: 10.5px; font-weight: 800; color: var(--navy); }

  /* ============ CONTACT ============ */
  .contact {
    margin-top: 16px; background: var(--navy); color: #fff;
    display: flex; align-items: center; gap: 24px; padding: 20px 26px;
  }
  .contact .col { display: flex; align-items: center; gap: 11px; }
  .contact .cico {
    width: 38px; height: 38px; border-radius: 50%; background: var(--teal);
    display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
  }
  .contact h4 { font-size: 14.5px; letter-spacing: 1px; margin-bottom: 3px; }
  .contact p { font-size: 14px; line-height: 1.5; }
  .contact .qr { margin-left: auto; text-align: center; }
  .qr .box {
    width: 64px; height: 64px; background: #fff; border-radius: 4px; padding: 5px;
    display: grid; grid-template-columns: repeat(7,1fr); grid-template-rows: repeat(7,1fr); gap: 1px;
  }
  .qr .box i { background: #fff; }
  .qr small { display: block; font-size: 10.5px; margin-top: 5px; letter-spacing: 1px; }

  .footer {
    background: var(--navy-deep); color: #c2cdd9; text-align: center;
    padding: 11px; font-size: 13px; letter-spacing: 1.5px; font-weight: 700;
  }
  .dev-credit {
    background: var(--navy-deep); color: #8696a8; text-align: center;
    padding: 0 11px 11px; font-size: 11px; letter-spacing: 1px; font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ============ MULTI-PAGE ADDITIONS ============ */
  .page + .page { margin-top: 26px; }

  .logo-img { display: block; width: 310px; height: 75px; object-fit: cover; object-position: center; }

  .page-head {
    background: #fff; border-bottom: 3px solid var(--teal);
    display: flex; align-items: center; gap: 12px; padding: 12px 26px;
  }
  .page-head .logo-img { width: 310px; height: 75px; }
  .page-head .pg { margin-left: auto; font-size: 13.5px; font-weight: 700; letter-spacing: 2px; color: var(--navy); text-align: right; }

  .ptitle { padding: 20px 26px 0; }
  .ptitle h2 { font-size: 38px; color: var(--navy); font-weight: 800; letter-spacing: .5px; }
  .ptitle .rule { height: 4px; width: 64px; background: var(--gold); margin-top: 8px; border-radius: 2px; }
  .ptitle p { margin-top: 10px; color: var(--muted); font-size: 14.5px; max-width: 780px; }

  .lead { padding: 14px 26px 4px; font-size: 15px; color: var(--text); line-height: 1.65; }
  .lead p { margin-bottom: 10px; }

  .dirmsg {
    position: relative; margin: 4px 26px 6px; background: var(--card);
    border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 6px;
    padding: 22px 26px 20px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
    font-size: 15px; color: var(--text); line-height: 1.7;
  }
  .dirmsg .quote-mark {
    position: absolute; top: 4px; right: 18px; font-size: 64px; line-height: 1;
    color: var(--teal); opacity: .18; font-family: Georgia, "Times New Roman", serif;
  }
  .dirmsg p { margin-bottom: 12px; position: relative; }
  .dirmsg .dirsign {
    margin-top: 6px; font-weight: 700; color: var(--navy); letter-spacing: .3px; font-size: 14.5px;
  }

  .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 10px 26px; }
  .icard { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 16px 18px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
  .icard .ih { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .icard .ic { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .icard h3 { font-size: 15.5px; color: var(--navy); letter-spacing: .5px; }
  .icard p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
  .icard ul { list-style: none; margin-top: 6px; }
  .icard li { font-size: 13.5px; padding-left: 15px; position: relative; margin-bottom: 4px; color: var(--text); }
  .icard li::before { content: "\2714"; position: absolute; left: 0; color: var(--teal); font-weight: 800; font-size: 11px; }

  .feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 12px 26px; }
  .fcard { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 16px 14px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
  .fcard .fi { width: 46px; height: 52px; margin: 0 auto 10px; background: var(--navy); color: #fff; font-size: 22.5px;
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(50% 0, 100% 22%, 100% 70%, 50% 100%, 0 70%, 0 22%); }
  .fcard h4 { font-size: 14px; color: var(--navy); letter-spacing: .4px; margin-bottom: 5px; }
  .fcard p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

  .clientgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 12px 26px; }
  .clcard {
    display: flex; align-items: center; gap: 12px; background: var(--card);
    border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 6px;
    padding: 14px 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
  }
  .clcard .cli {
    width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .clcard h4 { font-size: 14.5px; color: var(--navy); letter-spacing: .3px; margin-bottom: 2px; }
  .clcard span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

  .stats { display: flex; background: var(--navy); color: #fff; margin: 16px 22px; border-radius: 6px; overflow: hidden; }
  .stats .s { flex: 1; text-align: center; padding: 18px 8px; border-left: 1px solid rgba(255,255,255,.12); }
  .stats .s:first-child { border-left: none; }
  .stats .s b { display: block; font-size: 29px; color: var(--gold); font-weight: 800; }
  .stats .s span { font-size: 12px; letter-spacing: .6px; }

  .prow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 10px 26px; }
  .pitem { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 14px 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
  .pitem h3 { font-size: 13.5px; color: #fff; background: var(--teal-head); display: inline-block; padding: 4px 10px; border-radius: 3px; letter-spacing: .4px; margin-bottom: 8px; }
  .pitem p { font-size: 13px; color: var(--muted); line-height: 1.55; }

  .steps { display: flex; gap: 10px; padding: 14px 26px; }
  .step { flex: 1; text-align: center; }
  .step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
  .step h4 { font-size: 13.5px; color: var(--navy); margin-bottom: 4px; letter-spacing: .3px; }
  .step p { font-size: 12px; color: var(--muted); line-height: 1.45; }

  .cta { margin: 18px 22px; background: linear-gradient(180deg, #1d8a93, #157079); color: #fff; border-radius: 8px; padding: 24px 26px; text-align: center; }
  .cta h3 { font-size: 23.5px; letter-spacing: .5px; margin-bottom: 6px; }
  .cta p { font-size: 14.5px; opacity: .95; margin-bottom: 14px; }
  .cta .row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: 14.5px; font-weight: 700; }
  .cta .row b { color: var(--gold); }

  @media print {
    body { background: #fff; }
    .page { box-shadow: none; page-break-after: always; }
    .page:last-child { page-break-after: auto; }
  }

  @media (max-width: 860px) {
    .duo, .prow { grid-template-columns: 1fr; }
    .feat { grid-template-columns: repeat(2, 1fr); }
    .clientgrid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-wrap: wrap; }
    .step { flex: 1 1 40%; }
    .stats { flex-wrap: wrap; }
    .stats .s { flex: 1 1 50%; }
    .brands { flex-wrap: wrap; row-gap: 14px; }
    .page-head .pg { display: none; }
  }

  @media (max-width: 860px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .catalog h2 { font-size: 40px; }
    .hero-photo, .top::before { display: none; }
    /* badges wrap so they never overflow */
    .badges { flex-wrap: wrap; justify-content: center; }
    .tagline { color: #16385a; }
    .tagline .tl-lead { color: rgba(22,56,90,.7); }
    .tagline b { color: var(--teal-dark); }
    /* diagonal hidden -> tagline back to dark, left aligned, in flow */
    .hero-tagline { position: static; text-align: left; margin-left: 0; max-width: none; padding: 10px 26px; }
    .hero-tagline .tl-lead { color: var(--teal-dark); }
    .hero-tagline b { color: var(--navy); }
  }
  @media (max-width: 520px) {
    .grid { grid-template-columns: 1fr; }
    .head-row { flex-direction: column; gap: 10px; }
    .tagline { margin-left: 0; text-align: center; max-width: none; }
    .tagline::after { margin-left: auto; margin-right: auto; }

    /* keep the full logo image at a consistent size on mobile */
    .logo { width: 100%; gap: 10px; justify-content: center; }
    .logo-icon, .logo-name { display: none; }

    /* center the GSTIN line and its underline */
    .gstin { padding-left: 26px; text-align: center; font-size: 13px; }
    .gstin::after { margin-left: auto; margin-right: auto; }

    /* applications: stack tab on top, items in a 2-up grid */
    .apps { flex-direction: column; margin-top: 16px; }
    .apps .tab {
      clip-path: none; border-radius: 4px 4px 0 0;
      justify-content: center; padding: 10px; width: 100%;
    }
    .apps .items {
      flex-wrap: wrap; border-left: 1px solid var(--line);
      border-top: none; border-radius: 0 0 4px 4px;
    }
    .apps .item { flex: 1 1 50%; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
    .apps .item:nth-child(odd) { border-left: none; }

    /* contact: stack rows, bring QR inline */
    .contact { flex-wrap: wrap; gap: 16px; }
    .contact .qr { margin-left: 0; }

    /* brands wrap to a 2x2 grid, smaller text */
    .brands { flex-wrap: wrap; gap: 14px 18px; }
    .brands b { font-size: 18px; flex: 0 0 auto; }

    /* stats 2x2 */
    .stats .s { flex: 1 1 50%; }

    /* tighter side padding to reclaim width */
    .ptitle, .lead, .duo, .feat, .prow, .steps, .clientgrid { padding-left: 16px; padding-right: 16px; }
    .dirmsg { margin-left: 16px; margin-right: 16px; }
    .clientgrid { grid-template-columns: 1fr; }
    .feat { gap: 10px; }
    .cta, .stats { margin-left: 16px; margin-right: 16px; }
    .cta .row { gap: 14px; }
    .cta .row span { word-break: break-word; }

    /* align header items to the same left edge */
    .head-row, .catalog { padding-left: 26px; padding-right: 26px; }
    .gstin { padding-left: 26px; }

    /* badges wrap to a 2x2 grid */
    .badges { flex-wrap: wrap; justify-content: center; gap: 10px; padding-left: 16px; padding-right: 16px; }
    .badge { width: 46%; max-width: 150px; }

    /* logo / page header sizing */
    .logo-img { width: 200px; height: 50px; }
    .page-head { padding: 12px 16px; justify-content: center; }
    .page-head .logo-img { width: 200px; height: 50px; }
    .ptitle h2 { font-size: 28px; }
  }

  /* ============ NAVBAR ============ */
  html { scroll-behavior: smooth; scroll-padding-top: 76px; }
  .navbar {
    position: relative; z-index: 100;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 18px;
    padding: 10px 26px;
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { height: 46px; width: auto; display: block; }
  .nav-links { margin-left: 0; display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    color: #eaf1f6; text-decoration: none;
    font-size: 14px; font-weight: 700; letter-spacing: .6px;
    padding: 9px 15px; border-radius: 6px;
    transition: background .15s ease, color .15s ease;
  }
  .nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
  .nav-links a.cta-link { background: var(--gold); color: var(--navy); }
  .nav-links a.cta-link:hover { background: #ffb949; color: var(--navy); }

  .nav-call {
    margin-left: auto; display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: #fff;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    padding: 7px 15px; border-radius: 8px; transition: background .15s ease, color .15s ease;
  }
  .nav-call:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .nav-call .ci { font-size: 20px; color: var(--gold); line-height: 1; }
  .nav-call:hover .ci { color: var(--navy); }
  .nav-call .ct { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-call .ct small { font-size: 9.5px; letter-spacing: 1.5px; opacity: .85; font-weight: 700; }
  .nav-call .ct b { font-size: 15px; font-weight: 800; letter-spacing: .3px; }

  .nav-toggle {
    display: none; margin-left: auto;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 38px; padding: 8px; cursor: pointer;
    background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 6px;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 820px) {
    .nav-inner { padding: 10px 18px; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: none; margin-left: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: var(--navy-deep); padding: 6px 12px 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,.25);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { margin-left: 12px; }
    .nav-call { padding: 6px 11px; }
    .nav-call .ct small { display: none; }
    .nav-call .ct b { font-size: 13.5px; }
    .nav-links a { padding: 13px 12px; border-radius: 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a.cta-link { margin-top: 8px; text-align: center; }
  }

  /* ============ HOME HEADER (inline menu) ============ */
  .head-nav { align-items: center; padding: 12px 26px 8px; background: #fff; position: relative; z-index: 100; border-bottom: 1px solid var(--line); }
  .head-nav .nav-links { margin-left: auto; }
  .head-nav .nav-call { margin-left: 16px; }
  .head-nav .nav-toggle { border-color: rgba(17,49,79,.3); }
  .head-nav .nav-toggle span { background: var(--navy); }

  .hero-tagline {
    position: absolute; z-index: 2; text-align: right;
    top: 14px; right: 26px; max-width: 560px;
  }
  .hero-tagline .tl-lead {
    display: block; font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 8px;
  }
  .hero-tagline b {
    display: block; font-family: "Trebuchet MS","Segoe UI",sans-serif;
    font-size: 26px; font-weight: 800; color: #fff;
    letter-spacing: .3px; line-height: 1.3;
  }

  @media (max-width: 820px) {
    .top { overflow: visible; }               /* let the mobile menu dropdown show */
    .head-nav .nav-links { margin-left: 0; }
    .head-nav .nav-mail { display: none; }    /* email button too wide for compact header */
    .head-nav .nav-call { margin-left: auto; }
  }
  @media (max-width: 520px) {
    .head-nav { flex-direction: row; align-items: center; gap: 10px; }
    .head-nav .logo { width: auto; justify-content: flex-start; }
    .head-nav .nav-call { display: none; }
    .head-nav .nav-toggle { margin-left: auto; }
    .hero-tagline b { font-size: 21px; }
  }

  /* header menu now sits on white (navy diagonal starts below it) */
  @media (min-width: 821px) {
    .head-nav .nav-links a { color: var(--navy); }
    .head-nav .nav-links a:hover, .head-nav .nav-links a.active { background: rgba(17,49,79,.08); color: var(--navy); }
    .head-nav .nav-call { color: var(--navy); border-color: rgba(17,49,79,.25); background: #fff; }
    .head-nav .nav-call .ci { color: var(--teal-dark); }
    .head-nav .nav-call:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .head-nav .nav-call:hover .ci { color: var(--navy); }
  }

/* ============ CONTACT / OFFICE BAND (pre-footer) ============ */
.prefoot {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  border-top: 3px solid var(--gold);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 28px 30px;
}
.prefoot .pf-col {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 16px 16px;
  transition: background .15s ease, transform .15s ease;
}
.prefoot .pf-col:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.prefoot .pf-ic {
  width: 42px; height: 42px; border-radius: 10px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy); flex-shrink: 0;
}
.prefoot h5 { color: #fff; font-size: 12.5px; letter-spacing: 1.4px; margin-bottom: 5px; text-transform: uppercase; }
.prefoot p { color: #dbe3ec; font-size: 13.5px; line-height: 1.55; }
.prefoot a { color: #dbe3ec; text-decoration: none; transition: color .15s ease; }
.prefoot a:hover { color: var(--gold); }
@media (max-width: 820px) { .prefoot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .prefoot { grid-template-columns: 1fr; gap: 14px; padding: 22px; } }

/* ============ SITE FOOTER (product links) ============ */
.site-footer { background: var(--navy-deep); color: #c2cdd9; }
.foot-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 28px; padding: 38px 30px 30px; }
.foot-cols h5 { color: #fff; font-size: 13px; letter-spacing: 1.4px; margin-bottom: 14px; text-transform: uppercase; }
.foot-cols h5.mt { margin-top: 18px; }
.foot-cols p { font-size: 14px; line-height: 1.65; margin-bottom: 8px; color: #aeb9c6; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: 9px; }
.foot-cols a { color: #c2cdd9; text-decoration: none; font-size: 14.5px; transition: color .15s ease; }
.foot-cols a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); text-align: center; padding: 14px; font-size: 11.5px; letter-spacing: 1.2px; font-weight: 700; color: #8ea0b0; }
.foot-bottom .dev { display: block; margin-top: 5px; font-size: 10px; font-weight: 600; color: #70808f; letter-spacing: 1px; }
@media (max-width: 820px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr; gap: 22px; padding: 28px 22px 24px; } }

/* ============ FLOATING QUICK-CONTACT (mobile) ============ */
.fab { display: none; }
@media (max-width: 820px) {
  .fab {
    display: flex; flex-direction: column; gap: 12px;
    position: fixed; right: 16px; bottom: 18px; z-index: 900;
  }
  .fab-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; font-size: 24px; line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,.32);
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .fab-btn span { display: block; }
  .fab-call { background: var(--teal); }
  .fab-mail { background: var(--navy); }
  .fab-btn:active { transform: scale(.92); }
}

.foot-logo { display: block; width: 310px; height: 75px; max-width: 100%; object-fit: cover; object-position: center; margin-bottom: 14px; }
