/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.nav-tool {
  background: rgb(0,0,0,0.85); /* ribbon colour */
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}

.nav-tool:hover {
  background: rgba(17,183,205); /* slightly darker on hover */
  color: #fff;
}

.logo {
  height: 40px;
}

.nav-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: rgb(17,183,205);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* dropdown box */
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 999;
}

/* links inside dropdown */
.nav-dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s;
}

/* hover effect using your ribbon colour */
.nav-dropdown-content a:hover {
  background: rgb(17,183,205);
  opacity: 1;
}

/* show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}




/* =========================
   HERO (MARKETING PAGES)
========================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ensure overlay sits above image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 20, 0.65);
  z-index: 1;
}

/* content stays on top */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.2s;
}

.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.2s;
  background: rgb(17,183,205);
  color: #000;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.2s;
  border: 1px solid rgb(17,183,205);
  color: rgb(17,183,205);
}

.btn-secondary:hover {
  background: rgba(17,183,205,0.1);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 0;
}

.section.dark {
  background: #111;
}

/* =========================
   GRID + CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #0b0b0b;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.2s;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgb(17,183,205);
}

/* =========================
   CTA
========================= */
.cta {
  text-align: center;
  padding: 80px 0;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #031b33;
  color: rgba(255,255,255,0.72);
  padding-top: 60px;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: #11b7cd;
}

.footer-contact li {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}


/* =========================
   SUB FOOTER
========================= */

.footer-bottom {
  background: #031b33;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.68);
  margin-left: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}

.footer-legal a:hover {
  color: #11b7cd;
}

/* =========================
   STL VIEWER TOOL
========================= */

.viewer-section {
  padding: 60px 0;
}

/* DROP ZONE */
.drop-zone {
  border: 2px dashed rgb(17,183,205);
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #0b0b0b;
  cursor: pointer;
  transition: 0.25s ease;
  position: relative;
}

.drop-zone:hover {
  border-color: #fff;
  transform: scale(1.01);
}

.drop-zone p {
  opacity: 0.8;
}

/* VIEWER CANVAS */
.viewer {
  width: 100%;
  height: 520px;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

/* subtle label */
.viewer::after {
  content: "3D VIEWPORT";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 2px;
}

/* VIEWER CONTROLS */
.viewer-controls {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.viewer-controls button {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.viewer-controls button:hover {
  border-color: rgb(17,183,205);
  color: rgb(17,183,205);
  transform: translateY(-2px);
}

/* PRIMARY CTA BUTTON */
.viewer-controls .cta-btn {
  background: rgb(17,183,205);
  color: #000;
  font-weight: bold;
}

.viewer-controls .cta-btn:hover {
  opacity: 0.9;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}

/* =========================
   MODERN CONTACT FORM (NEW UI)
========================= */

.contact-hero {
  background: rgb(17,183,205);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.contact-container {
  max-width: 900px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-hero p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.modern-form {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  color: #111;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.modern-form input,
.modern-form textarea,
.modern-form select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.modern-form textarea {
  margin-top: 15px;
  resize: vertical;
}

.file-upload {
  margin: 15px 0;
}

.consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  margin: 15px 0;
  align-items: flex-start;
  color: #333;
}

.modern-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: rgb(17,183,205);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.modern-form button:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   STEP / STL VIEWER (3D APP LAYOUT)
   EXTENSION FOR THREE.JS VIEWER PAGES
========================= */

/* Full-screen viewer layout (used by stl-viewer + step-viewer) */
.app {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  height: 100vh;
  background: #000;
}

/* Left + right panels (matches your existing dark theme) */
.panel {
  background: #0b0b0b;
  padding: 16px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.panel:last-child {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.05);
}

/* Panel headings */
.panel h3 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* File info blocks */
.info {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* File input styling (consistent with your UI system) */
.panel input[type="file"] {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* Viewer canvas container */
#viewer {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
  position: relative;
  overflow: hidden;
}

/* subtle label overlay */
#viewer::after {
  content: "3D CAD VIEWPORT";
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.25;
  pointer-events: none;
}

/* Drop zone overlay (STL + STEP drag/drop) */
#dropZone {

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(15,23,42,0.85);

    opacity:0;
    pointer-events:none;

    z-index:10;

    transition:opacity 0.2s ease;

}

/* highlight animation for drop */
#dropZone.active {
  border: 2px dashed rgb(17,183,205);
}

/* Responsive behaviour */
@media (max-width: 900px) {
  .app {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .panel {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  #viewer {
    height: 60vh;
  }
}

.video-header {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Video fills background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for readability */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6); /* adjust darkness here */
  z-index: 1;
}

/* Text sits above video */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-content p {
  opacity: 0.85;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .carousel-btn {
    display: none; /* swipe instead */
  }
}

/* =========================
   CORE CAPABILITIES CAROUSEL (FULL WIDTH)
========================= */

.capabilities-full {
  background: #050505;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Break out of container */
.capabilities-full .carousel-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 40px;
  position: relative;
}

/* Horizontal scrolling row */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

/* Hide scrollbar */
.carousel::-webkit-scrollbar {
  display: none;
}

/* Card sizing */
.carousel .card {
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 auto;
  text-align: left;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: rgb(17,183,205);
  color: #000;
}

/* Arrow positions */
.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* Prevent page horizontal scroll */
body {
  overflow-x: hidden;
}

.viewer-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1e293b;
    padding: 12px;
    border-radius: 8px;
    color: #e2e8f0;
    font-family: sans-serif;
    width: 220px;
}

.control-group {
    margin-bottom: 12px;
}

.control-group label {
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}

.button-group button {
    margin: 2px;
    padding: 4px 8px;
    background: #334155;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-group button:hover {
    background: #475569;
}

#layerSlider {
    width: 100%;
}

/* ANALYSIS CONFIDENCE */

.confidence {

    text-align:center;
    font-size:28px;
    font-weight:bold;
    color:#11b7cd;
    padding:10px;

}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */

.light-section {
  padding: 40px 0 56px;
  background: #f4f7fa;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid #dbe3ea;
  border-radius: 4px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: #0b1c34;
  font-size: 20px;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: #0b1c34;
  font-size: 16px;
  line-height: 1.35;
}

.legal-content p {
  margin: 0 0 14px;
  color: #415168;
  font-size: 14px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 8px;
  color: #415168;
  font-size: 14px;
  line-height: 1.65;
}

.legal-content a {
  color: #078fab;
  font-weight: 700;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-updated {
  margin-top: 36px !important;
  padding-top: 18px;
  border-top: 1px solid #dbe3ea;
  color: #6b7c8f !important;
  font-size: 12px !important;
}


/* ==========================================================
   LEGAL PAGE INTRO
   ========================================================== */

.white-section .compact-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.white-section .compact-heading h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #0b1c34;
  font-size: 30px;
  line-height: 1.2;
}

.white-section .compact-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76px;
  height: 2px;
  transform: translateX(-50%);
  background: #11b7cd;
}

.white-section .compact-heading p {
  margin: 0;
  color: #415168;
  font-size: 15px;
  line-height: 1.65;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

  .light-section {
    padding: 28px 0 40px;
  }

  .legal-content {
    padding: 24px 20px;
  }

  .legal-content h2 {
    font-size: 18px;
  }

  .legal-content h3 {
    font-size: 15px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 13px;
  }

  .white-section .compact-heading h1 {
    font-size: 25px;
  }

}

/* ============================================
   EXPLODED ASSEMBLY CONTROLS
============================================ */

.explode-controls {
    margin-top: 10px;
    padding: 10px 12px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 8px;
}


.explode-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 8px;

    font-size: 12px;

    color: rgba(255,255,255,0.75);
}


#explodeValue {
    color: #11b7cd;
    font-weight: 600;
}


#explodeSlider {
    width: 100%;

    cursor: pointer;

    accent-color: #11b7cd;
}


#explodeBtn.active {
    border-color: #11b7cd;

    background: rgba(17,183,205,0.12);

    color: #11b7cd;
}

/* ============================================
   TOOL PANEL SECTIONS
============================================ */

.tool-section {
    margin-top: 18px;
}


.tool-section:first-child {
    margin-top: 0;
}


.tool-section-title {
    margin-bottom: 8px;
    padding-bottom: 6px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;

    color: rgba(255,255,255,0.45);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* NS3D Materials page — loaded after Style.css and homepage.css */

.materials-hero,
.materials-hero .hero-layout { min-height: 600px; }
.materials-hero .hero-layout { padding-bottom: 150px; }
.materials-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(3,22,43,.97) 0%, rgba(3,22,43,.82) 48%, rgba(3,22,43,.28) 100%);
}

.materials-intro { padding: 82px 0 72px; }
.material-intro-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.materials-kicker { margin:0 0 12px; color:var(--home-cyan); font-size:12px; font-weight:800; letter-spacing:.15em; }
.material-intro-copy { color:var(--text); font-size:17px; line-height:1.8; }
.material-intro-copy p:first-child { margin-top:0; }

.materials-section { padding:84px 0 92px; }
.materials-section-soft { background:var(--soft); }
.materials-section-dark { background:linear-gradient(135deg, var(--home-navy-deep), var(--home-navy)); color:#fff; }
.material-heading { position:relative; padding-left:88px; }
.material-heading .section-intro { max-width:760px; }
.material-heading-light h2 { color:#fff; }
.material-heading-light .section-intro { color:rgba(255,255,255,.72); }
.process-badge { position:absolute; left:0; top:0; display:grid; place-items:center; width:64px; height:64px; color:#fff; background:var(--home-cyan); font-size:14px; font-weight:900; letter-spacing:.08em; box-shadow:0 12px 28px rgba(5,169,204,.25); }

.material-card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:38px; }
.material-card { position:relative; min-height:250px; padding:32px 26px 26px; overflow:hidden; background:#fff; border:1px solid #dfe7ed; box-shadow:0 8px 24px rgba(3,27,51,.07); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.material-card:hover { transform:translateY(-5px); border-color:rgba(5,169,204,.6); box-shadow:0 18px 38px rgba(3,27,51,.13); }
.material-code { display:inline-grid; place-items:center; min-width:52px; height:42px; padding:0 10px; margin-bottom:24px; color:#fff; background:var(--home-cyan); font-size:12px; font-weight:900; letter-spacing:.06em; }
.material-card h3 { margin:0 0 12px; color:var(--ink); font-size:21px; }
.material-card p { margin:0 0 20px; color:#526579; font-size:14px; line-height:1.65; }
.material-card strong { display:block; margin-top:auto; color:var(--blue-dark); font-size:12px; line-height:1.5; }
.material-card-enquire { color:#fff; background:linear-gradient(145deg, #052743, #03182e); border-color:#0b4164; }
.material-card-enquire h3 { color:#fff; }
.material-card-enquire p { color:rgba(255,255,255,.72); }
.material-card-enquire a { color:var(--home-cyan-bright); font-size:13px; font-weight:800; }

.resin-groups { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:40px; }
.resin-group { display:grid; grid-template-columns:64px 1fr; gap:24px; padding:30px; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.11); transition:background .2s ease, transform .2s ease; }
.resin-group:hover { transform:translateY(-3px); background:rgba(255,255,255,.085); }
.resin-group-icon { display:grid; place-items:center; width:58px; height:58px; color:#fff; background:var(--home-cyan); font-size:27px; }
.resin-group h3 { margin:0 0 8px; color:#fff; font-size:21px; }
.resin-group p { margin:0 0 14px; color:rgba(255,255,255,.68); font-size:14px; line-height:1.6; }
.resin-group ul { display:flex; flex-wrap:wrap; gap:7px; margin:0; padding:0; list-style:none; }
.resin-group li { padding:6px 9px; color:#d9f7fb; background:rgba(5,169,204,.13); border:1px solid rgba(5,169,204,.24); font-size:11px; font-weight:700; }
.availability-note { max-width:940px; margin:34px auto 0; color:rgba(255,255,255,.58); font-size:12px; line-height:1.7; text-align:center; }

.selection-section { padding:86px 0; }
.selection-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:40px; background:#dbe4eb; border:1px solid #dbe4eb; }
.selection-grid article { position:relative; min-height:185px; padding:32px; background:#fff; }
.selection-grid span { display:block; margin-bottom:20px; color:var(--home-cyan); font-size:12px; font-weight:900; letter-spacing:.12em; }
.selection-grid h3 { margin:0 0 10px; color:var(--ink); font-size:18px; }
.selection-grid p { margin:0; color:#617286; font-size:14px; line-height:1.6; }

.materials-faq { padding:88px 0; background:#eef3f6; }
.faq-layout { display:grid; grid-template-columns:.85fr 1.35fr; gap:76px; }
.faq-layout .left-heading > p:last-child { color:#607287; line-height:1.7; }
.faq-list { display:grid; gap:12px; }
.faq-list details { background:#fff; border:1px solid #dbe4eb; }
.faq-list summary { position:relative; padding:21px 58px 21px 24px; color:var(--ink); font-weight:800; cursor:pointer; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:22px; top:50%; transform:translateY(-50%); color:var(--home-cyan); font-size:24px; font-weight:400; }
.faq-list details[open] summary::after { content:'−'; }
.faq-list details p { margin:0; padding:0 24px 22px; color:#607287; font-size:14px; line-height:1.7; }
.materials-cta-section { padding-top:82px; }

@media (max-width:1050px) {
  .material-card-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:820px) {
  .materials-hero, .materials-hero .hero-layout { min-height:650px; }
  .materials-hero .hero-layout { padding-bottom:180px; }
  .material-intro-grid, .faq-layout { grid-template-columns:1fr; gap:30px; }
  .material-card-grid { grid-template-columns:repeat(2,1fr); }
  .resin-groups { grid-template-columns:1fr; }
  .selection-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px) {
  .materials-hero, .materials-hero .hero-layout { min-height:780px; }
  .materials-hero .hero-layout { padding-bottom:280px; }
  .materials-intro, .materials-section, .selection-section, .materials-faq { padding-block:64px; }
  .material-heading { padding-left:0; padding-top:78px; }
  .process-badge { top:0; }
  .material-card-grid, .selection-grid { grid-template-columns:1fr; }
  .material-card { min-height:0; }
  .resin-group { grid-template-columns:1fr; padding:24px; }
}

/* NS3D Industries page — append to Style.css */
.industries-hero,.industries-hero .hero-layout{min-height:600px}.industries-hero .hero-layout{padding-bottom:150px}.industries-hero .hero-overlay{background:linear-gradient(90deg,rgba(3,22,43,.97) 0%,rgba(3,22,43,.82) 48%,rgba(3,22,43,.28) 100%)}
.industries-intro{padding:82px 0 72px}.industry-intro-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px;align-items:start}.industries-kicker{margin:0 0 12px;color:var(--home-cyan);font-size:12px;font-weight:800;letter-spacing:.15em}.industry-intro-copy{color:var(--text);font-size:17px;line-height:1.8}.industry-intro-copy p:first-child{margin-top:0}
.industry-detail-section{padding:84px 0 92px;background:var(--soft)}.industry-detail-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:40px}.industry-detail-card{display:grid;grid-template-columns:42% 58%;min-height:340px;overflow:hidden;background:#fff;border:1px solid #dfe7ed;box-shadow:0 8px 24px rgba(3,27,51,.07);transition:transform .2s ease,box-shadow .2s ease}.industry-detail-card:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(3,27,51,.13)}.industry-detail-image{position:relative;min-height:100%;overflow:hidden}.industry-detail-image>img:first-child{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.industry-detail-card:hover .industry-detail-image>img:first-child{transform:scale(1.04)}.industry-detail-image>span{position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,27,51,.08),rgba(3,27,51,.72))}.industry-detail-icon{position:absolute;left:24px;bottom:24px;width:46px;height:46px;object-fit:contain;filter:brightness(0) invert(1)}.industry-detail-body{padding:30px 28px}.industry-number{margin:0 0 13px!important;color:var(--home-cyan)!important;font-size:11px!important;font-weight:900;letter-spacing:.15em}.industry-detail-body h3{margin:0 0 12px;color:var(--ink);font-size:21px;line-height:1.25}.industry-detail-body>p{margin:0 0 18px;color:#566a7e;font-size:14px;line-height:1.65}.industry-detail-body ul{margin:0;padding:0;list-style:none}.industry-detail-body li{position:relative;margin:8px 0;padding-left:18px;color:#344b61;font-size:12px;font-weight:700;line-height:1.45}.industry-detail-body li::before{content:'✓';position:absolute;left:0;color:var(--home-cyan);font-weight:900}.industry-compliance-note{max-width:980px;margin:34px auto 0;color:#6a7b8c;font-size:12px;line-height:1.7;text-align:center}
.industry-support-section{padding:88px 0;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy));color:#fff}.industry-heading-light h2{color:#fff}.industry-heading-light .section-intro{color:rgba(255,255,255,.7)}.industry-support-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-top:40px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.industry-support-grid article{min-height:210px;padding:32px;background:rgba(3,27,51,.92)}.industry-support-grid span{display:block;margin-bottom:22px;color:var(--home-cyan-bright);font-size:12px;font-weight:900;letter-spacing:.15em}.industry-support-grid h3{margin:0 0 11px;color:#fff;font-size:19px}.industry-support-grid p{margin:0;color:rgba(255,255,255,.66);font-size:14px;line-height:1.65}
.industries-faq{padding:88px 0;background:#eef3f6}.industries-faq .faq-layout{display:grid;grid-template-columns:.85fr 1.35fr;gap:76px}.industries-faq .left-heading>p:last-child{color:#607287;line-height:1.7}.industries-faq .faq-list{display:grid;gap:12px}.industries-faq details{background:#fff;border:1px solid #dbe4eb}.industries-faq summary{position:relative;padding:21px 58px 21px 24px;color:var(--ink);font-weight:800;cursor:pointer;list-style:none}.industries-faq summary::-webkit-details-marker{display:none}.industries-faq summary::after{content:'+';position:absolute;right:22px;top:50%;transform:translateY(-50%);color:var(--home-cyan);font-size:24px}.industries-faq details[open] summary::after{content:'−'}.industries-faq details p{margin:0;padding:0 24px 22px;color:#607287;font-size:14px;line-height:1.7}.industries-cta-section{padding-top:82px}
@media(max-width:1050px){.industry-detail-card{grid-template-columns:1fr}.industry-detail-image{min-height:220px}.industry-support-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.industries-hero,.industries-hero .hero-layout{min-height:650px}.industries-hero .hero-layout{padding-bottom:180px}.industry-intro-grid,.industries-faq .faq-layout{grid-template-columns:1fr;gap:30px}.industry-detail-grid{grid-template-columns:1fr}}
@media(max-width:560px){.industries-hero,.industries-hero .hero-layout{min-height:780px}.industries-hero .hero-layout{padding-bottom:280px}.industries-intro,.industry-detail-section,.industry-support-section,.industries-faq{padding-block:64px}.industry-support-grid{grid-template-columns:1fr}.industry-detail-image{min-height:200px}}

/* NS3D About page — append to Style.css */
.about-hero,.about-hero .hero-layout{min-height:620px}.about-hero .hero-layout{padding-bottom:150px}.about-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.about-hero .hero-overlay{background:linear-gradient(90deg,rgba(3,22,43,.97) 0%,rgba(3,22,43,.81) 48%,rgba(3,22,43,.3) 100%)}.about-hero .benefit-icon{width:48px;flex-basis:48px;font-size:10px;letter-spacing:-.02em}
.about-intro{padding:86px 0 76px}.about-intro-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:76px;align-items:start}.about-kicker{margin:0 0 12px;color:var(--home-cyan);font-size:12px;font-weight:800;letter-spacing:.15em}.about-intro-copy{color:var(--text);font-size:17px;line-height:1.82}.about-intro-copy p:first-child{margin-top:0}.about-intro-copy strong{color:var(--ink)}
.about-timeline-section{padding:88px 0;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy));color:#fff}.about-heading-light h2{color:#fff}.about-heading-light .section-intro{color:rgba(255,255,255,.68)}.about-timeline{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:44px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.13)}.about-timeline article{min-height:280px;padding:34px 28px;background:rgba(3,27,51,.94)}.timeline-year{display:block;margin-bottom:34px;color:var(--home-cyan-bright);font-size:15px;font-weight:900;letter-spacing:.12em}.about-timeline h3{margin:0 0 12px;color:#fff;font-size:19px}.about-timeline p{margin:0;color:rgba(255,255,255,.65);font-size:14px;line-height:1.7}
.engineering-background-section{padding:92px 0}.engineering-background-grid{display:grid;grid-template-columns:1.18fr .82fr;gap:72px;align-items:center}.engineering-background-copy h2{margin:0 0 24px;color:var(--ink);font-size:clamp(32px,4vw,48px);line-height:1.08}.engineering-background-copy>p:not(.about-kicker){color:#506579;font-size:16px;line-height:1.8}.about-check-list{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 24px;margin:28px 0 0;padding:0;list-style:none}.about-check-list li{position:relative;padding-left:24px;color:#263e54;font-size:13px;font-weight:700;line-height:1.5}.about-check-list li::before{content:'✓';position:absolute;left:0;color:var(--home-cyan);font-weight:900}.about-stat-panel{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;padding:1px;background:#dce5ec;box-shadow:0 18px 45px rgba(3,27,51,.12)}.about-stat-panel div{min-height:170px;padding:28px;background:#fff}.about-stat-panel strong{display:block;margin-bottom:13px;color:var(--home-cyan);font-size:30px;line-height:1}.about-stat-panel span{color:#4f6377;font-size:13px;font-weight:700;line-height:1.5}
.about-focus-section{padding:88px 0;background:var(--soft)}.about-focus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}.about-focus-grid article{padding:34px 30px;background:#fff;border:1px solid #dfe7ed;box-shadow:0 8px 24px rgba(3,27,51,.06)}.about-focus-icon{display:grid;place-items:center;width:58px;height:58px;margin-bottom:26px;background:var(--home-cyan)}.about-focus-icon img{width:30px;height:30px;filter:brightness(0) invert(1)}.about-focus-grid h3{margin:0 0 12px;color:var(--ink);font-size:20px}.about-focus-grid p{margin:0;color:#5c7084;font-size:14px;line-height:1.7}
.about-values-section{padding:88px 0;background:var(--home-navy-deep);color:#fff}.about-values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:40px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.about-values-grid article{min-height:225px;padding:32px 28px;background:#031b33}.about-values-grid span{display:block;margin-bottom:24px;color:var(--home-cyan-bright);font-size:12px;font-weight:900;letter-spacing:.14em}.about-values-grid h3{margin:0 0 11px;color:#fff;font-size:18px}.about-values-grid p{margin:0;color:rgba(255,255,255,.64);font-size:14px;line-height:1.65}
.about-location-section{padding:92px 0;background:#fff}.about-location-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:76px}.about-location-copy{color:#52677b;font-size:16px;line-height:1.8}.about-location-copy p:first-child{margin-top:0}.about-text-link{display:inline-flex;gap:12px;margin-top:12px;color:var(--blue-dark);font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.about-cta-section{padding-top:82px}
@media(max-width:1050px){.about-timeline{grid-template-columns:repeat(2,1fr)}.about-values-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.about-hero,.about-hero .hero-layout{min-height:660px}.about-hero .hero-layout{padding-bottom:180px}.about-intro-grid,.engineering-background-grid,.about-location-grid{grid-template-columns:1fr;gap:34px}.about-focus-grid{grid-template-columns:1fr}.about-stat-panel{max-width:600px}}
@media(max-width:560px){.about-hero,.about-hero .hero-layout{min-height:790px}.about-hero .hero-layout{padding-bottom:280px}.about-intro,.about-timeline-section,.engineering-background-section,.about-focus-section,.about-values-section,.about-location-section{padding-block:64px}.about-timeline,.about-values-grid,.about-stat-panel,.about-check-list{grid-template-columns:1fr}.about-timeline article{min-height:0}.about-stat-panel div{min-height:130px}}

/* NS3D Contact page — append to Style.css */

.contact-page-hero,.contact-page-hero .hero-layout{min-height:600px}.contact-page-hero .hero-layout{padding-bottom:150px}.contact-page-hero .hero-overlay{background:linear-gradient(90deg,rgba(3,22,43,.97) 0%,rgba(3,22,43,.82) 48%,rgba(3,22,43,.28) 100%)}

.contact-main-section{padding:92px 0;background:var(--soft);scroll-margin-top:90px}.contact-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:56px;align-items:start}.contact-information{position:sticky;top:125px}.contact-kicker{margin:0 0 12px;color:var(--home-cyan);font-size:12px;font-weight:800;letter-spacing:.15em}.contact-information>h2{margin:0 0 20px;color:var(--ink);font-size:clamp(34px,4vw,48px);line-height:1.08}.contact-intro{margin:0 0 30px;color:#556a7e;font-size:16px;line-height:1.75}.contact-methods{display:grid;gap:1px;margin-bottom:28px;background:#d9e3ea;border:1px solid #d9e3ea}.contact-methods>a,.contact-methods>div{display:flex;gap:16px;align-items:center;padding:20px;background:#fff}.contact-method-icon{display:grid;place-items:center;width:42px;height:42px;flex:0 0 42px;color:#fff;background:var(--home-cyan);font-size:18px}.contact-methods small,.contact-methods strong{display:block}.contact-methods small{margin-bottom:3px;color:#82909e;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}.contact-methods strong{color:#243b51;font-size:13px;line-height:1.45}.quote-checklist{padding:26px;background:#fff;border:1px solid #dce5ec}.quote-checklist h3{margin:0 0 16px;color:var(--ink);font-size:17px}.quote-checklist ul{margin:0;padding:0;list-style:none}.quote-checklist li{position:relative;margin:9px 0;padding-left:22px;color:#4f6478;font-size:13px;line-height:1.5}.quote-checklist li::before{content:'✓';position:absolute;left:0;color:var(--home-cyan);font-weight:900}.confidentiality-note{margin-top:22px;padding:20px 22px;color:#d9f7fb;background:var(--home-navy);border-left:4px solid var(--home-cyan)}.confidentiality-note strong{font-size:13px}.confidentiality-note p{margin:6px 0 0;color:rgba(255,255,255,.68);font-size:12px;line-height:1.6}

.quote-form-card{overflow:hidden;background:#fff;border:1px solid #dce5ec;box-shadow:0 18px 48px rgba(3,27,51,.12)}.quote-form-heading{padding:34px 38px;color:#fff;background:linear-gradient(120deg,var(--home-navy),#073450)}.quote-form-heading span{display:block;margin-bottom:8px;color:var(--home-cyan-bright);font-size:10px;font-weight:900;letter-spacing:.15em}.quote-form-heading h2{margin:0 0 7px;color:#fff;font-size:32px}.quote-form-heading p{margin:0;color:rgba(255,255,255,.65);font-size:12px}.ns3d-quote-form{padding:38px}.ns3d-quote-form fieldset{margin:0 0 34px;padding:0;border:0}.ns3d-quote-form legend{width:100%;margin:0 0 20px;padding:0 0 11px;color:var(--ink);border-bottom:1px solid #dfe7ed;font-size:14px;font-weight:900}.contact-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.ns3d-quote-form label>span:first-child{display:block;margin-bottom:7px;color:#344b61;font-size:11px;font-weight:800}.ns3d-quote-form input:not([type="checkbox"]):not([type="file"]),.ns3d-quote-form select,.ns3d-quote-form textarea{width:100%;padding:13px 14px;color:#152b40;background:#f8fafb;border:1px solid #d5e0e7;border-radius:0;font:inherit;font-size:14px;outline:0;transition:border-color .2s,box-shadow .2s,background .2s}.ns3d-quote-form input:not([type="checkbox"]):not([type="file"]),.ns3d-quote-form select{height:48px}.ns3d-quote-form textarea{min-height:150px;resize:vertical}.ns3d-quote-form input:focus,.ns3d-quote-form select:focus,.ns3d-quote-form textarea:focus{background:#fff;border-color:var(--home-cyan);box-shadow:0 0 0 3px rgba(5,169,204,.12)}.contact-full-field{display:block;margin-top:18px}.contact-file-upload{position:relative;display:flex;gap:17px;align-items:center;padding:22px;color:#40566b;background:#f7fafb;border:2px dashed #b8c8d3;cursor:pointer;transition:border-color .2s,background .2s}.contact-file-upload:hover{background:#f1fbfd;border-color:var(--home-cyan)}.contact-file-upload input{position:absolute;width:1px;height:1px;opacity:0}.upload-symbol{display:grid!important;place-items:center;width:44px;height:44px;flex:0 0 44px;margin:0!important;color:#fff!important;background:var(--home-cyan);font-size:25px!important}.contact-file-upload strong,.contact-file-upload small{display:block}.contact-file-upload strong{margin-bottom:4px;color:var(--ink);font-size:14px}.contact-file-upload small{color:#708294;font-size:11px}.upload-caution{margin:11px 0 0;color:#7b6a51;font-size:10px;line-height:1.5}.contact-consent{display:flex;gap:12px;align-items:flex-start;margin:0 0 24px;color:#5d7083;font-size:12px;line-height:1.55}.contact-consent input{width:17px;height:17px;flex:0 0 17px;margin-top:1px;accent-color:var(--home-cyan)}.contact-consent a{color:var(--blue-dark);font-weight:800}.contact-submit{display:inline-flex;justify-content:center;align-items:center;gap:24px;min-height:51px;padding:0 25px;color:#fff;background:var(--home-cyan);border:0;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.04em;cursor:pointer;transition:background .2s,transform .2s}.contact-submit:hover{background:var(--blue-dark);transform:translateY(-2px)}.form-response-note{margin:14px 0 0;color:#83909d;font-size:10px}.contact-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}

.contact-process-section{padding:88px 0;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy));color:#fff}.contact-heading-light h2{color:#fff}.contact-heading-light .section-intro{color:rgba(255,255,255,.68)}.contact-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:40px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.contact-process-grid article{min-height:225px;padding:32px 28px;background:rgba(3,27,51,.94)}.contact-process-grid span{display:block;margin-bottom:24px;color:var(--home-cyan-bright);font-size:12px;font-weight:900;letter-spacing:.14em}.contact-process-grid h3{margin:0 0 11px;color:#fff;font-size:18px}.contact-process-grid p{margin:0;color:rgba(255,255,255,.64);font-size:14px;line-height:1.65}

.contact-faq-section{padding:88px 0;background:#eef3f6}.contact-faq-layout{display:grid;grid-template-columns:.85fr 1.35fr;gap:76px}.contact-faq-layout .left-heading>p:last-child{color:#607287;line-height:1.7}.contact-faq-list{display:grid;gap:12px}.contact-faq-list details{background:#fff;border:1px solid #dbe4eb}.contact-faq-list summary{position:relative;padding:21px 58px 21px 24px;color:var(--ink);font-weight:800;cursor:pointer;list-style:none}.contact-faq-list summary::-webkit-details-marker{display:none}.contact-faq-list summary::after{content:'+';position:absolute;right:22px;top:50%;transform:translateY(-50%);color:var(--home-cyan);font-size:24px}.contact-faq-list details[open] summary::after{content:'−'}.contact-faq-list details p{margin:0;padding:0 24px 22px;color:#607287;font-size:14px;line-height:1.7}

@media(max-width:1050px){.contact-layout{grid-template-columns:.8fr 1.2fr;gap:34px}.contact-process-grid{grid-template-columns:repeat(2,1fr)}.ns3d-quote-form{padding:30px}}
@media(max-width:820px){.contact-page-hero,.contact-page-hero .hero-layout{min-height:650px}.contact-page-hero .hero-layout{padding-bottom:180px}.contact-layout,.contact-faq-layout{grid-template-columns:1fr}.contact-information{position:static}.contact-information{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}.contact-information>.contact-kicker,.contact-information>h2,.contact-information>.contact-intro{grid-column:1/-1}.confidentiality-note{margin-top:0}}
@media(max-width:560px){.contact-page-hero,.contact-page-hero .hero-layout{min-height:780px}.contact-page-hero .hero-layout{padding-bottom:280px}.contact-main-section,.contact-process-section,.contact-faq-section{padding-block:64px}.contact-information,.contact-form-grid,.contact-process-grid{grid-template-columns:1fr}.quote-form-heading,.ns3d-quote-form{padding:26px 22px}.contact-file-upload{align-items:flex-start}.contact-submit{width:100%}}

/* NS3D Case Study page — append to Style.css */
.case-study-hero{position:relative;min-height:650px;overflow:hidden;color:#fff}.case-study-hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.case-study-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,19,38,.98) 0%,rgba(3,28,51,.88) 48%,rgba(3,28,51,.34) 100%)}.case-study-hero-content{position:relative;z-index:2;display:flex;min-height:650px;flex-direction:column;justify-content:center;padding-block:55px 70px}.case-breadcrumbs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px;color:rgba(255,255,255,.55);font-size:11px}.case-breadcrumbs a:hover{color:var(--home-cyan-bright)}.case-kicker{margin:0 0 14px;color:var(--home-cyan-bright);font-size:11px;font-weight:900;letter-spacing:.16em}.case-study-hero h1{max-width:850px;margin:0;color:#fff;font-size:clamp(45px,6vw,76px);line-height:.98;letter-spacing:-.035em}.case-hero-lead{max-width:690px;margin:24px 0 0;color:rgba(255,255,255,.78);font-size:18px;line-height:1.65}.case-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.case-facts-strip{position:relative;z-index:3;background:var(--home-cyan)}.case-facts-grid{display:grid;grid-template-columns:repeat(6,1fr)}.case-facts-grid div{min-height:92px;padding:20px 17px;border-right:1px solid rgba(3,27,51,.16)}.case-facts-grid div:last-child{border:0}.case-facts-grid small,.case-facts-grid strong{display:block}.case-facts-grid small{margin-bottom:7px;color:rgba(3,27,51,.62);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.case-facts-grid strong{color:var(--home-navy);font-size:13px;line-height:1.35}
.case-study-intro,.case-solution-section{padding:92px 0;background:#fff}.case-study-intro-grid,.case-two-column{display:grid;grid-template-columns:.78fr 1.22fr;gap:80px}.case-section-heading span{display:block;margin-bottom:18px;color:var(--home-cyan);font-size:12px;font-weight:900;letter-spacing:.15em}.case-section-heading>p{margin:0 0 12px;color:#768697;font-size:10px;font-weight:900;letter-spacing:.15em}.case-section-heading h2{margin:0;color:var(--ink);font-size:clamp(32px,4vw,49px);line-height:1.08}.case-study-copy{color:#52677b;font-size:16px;line-height:1.8}.case-study-copy p:first-child{margin-top:0}.case-lead{color:#263e54;font-size:19px!important;line-height:1.65!important}.case-external-link{display:inline-flex;gap:12px;margin-top:12px;color:var(--blue-dark);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.case-external-link:hover{color:var(--home-cyan)}
.case-image-break{padding:0 0 92px;background:#fff}.case-image-break-grid{display:grid;grid-template-columns:1.55fr .75fr;gap:18px}.case-image-break figure,.case-context-section figure{margin:0}.case-main-figure img{width:100%;height:590px;object-fit:cover}.case-image-stack{display:grid;grid-template-rows:repeat(2,1fr);gap:18px}.case-image-stack figure{display:flex;min-height:0;flex-direction:column}.case-image-stack img{width:100%;min-height:0;flex:1;object-fit:cover}.case-image-break figcaption,.case-context-section figcaption{padding:12px 14px;color:#738292;background:#f1f5f7;font-size:10px;line-height:1.5}
.case-challenge-section,.case-learning-section{padding:92px 0;color:#fff;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy))}.case-heading-light h2{color:#fff}.case-heading-light>p{color:rgba(255,255,255,.48)}.case-light-lead{margin:0 0 30px;color:rgba(255,255,255,.76);font-size:18px;line-height:1.65}.case-requirement-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.case-requirement-grid article{min-height:195px;padding:27px;background:rgba(3,27,51,.94)}.case-requirement-grid strong{color:var(--home-cyan-bright);font-size:10px;letter-spacing:.14em}.case-requirement-grid h3{margin:20px 0 9px;color:#fff;font-size:17px}.case-requirement-grid p{margin:0;color:rgba(255,255,255,.62);font-size:13px;line-height:1.6}
.case-solution-points{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:28px 0}.case-solution-points>div{display:flex;gap:12px;padding:18px;background:var(--soft);border:1px solid #dce5eb}.case-solution-points span{color:var(--home-cyan);font-weight:900}.case-solution-points p{margin:0;color:#53687b;font-size:12px;line-height:1.55}.case-solution-points strong{color:var(--ink)}.case-callout{margin-top:28px;padding:24px;color:#fff;background:var(--home-navy);border-left:4px solid var(--home-cyan)}.case-callout strong{font-size:14px}.case-callout p{margin:7px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.65}
.case-result-section{padding:92px 0;background:var(--soft)}.case-result-heading{text-align:left}.case-result-heading .section-intro{max-width:780px;margin-left:0}.case-result-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}.case-result-grid article{padding:30px 25px;background:#fff;border:1px solid #dce5eb;box-shadow:0 8px 24px rgba(3,27,51,.06)}.case-result-grid span{display:grid;place-items:center;width:40px;height:40px;margin-bottom:22px;color:#fff;background:var(--home-cyan);font-weight:900}.case-result-grid h3{margin:0 0 10px;color:var(--ink);font-size:17px}.case-result-grid p{margin:0;color:#607487;font-size:13px;line-height:1.6}
.case-context-section{padding:92px 0;background:#fff}.case-context-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}.case-context-section figure img{width:100%;height:500px;object-fit:cover}.case-context-copy h2{margin:0 0 24px;color:var(--ink);font-size:clamp(32px,4vw,48px);line-height:1.08}.case-context-copy>p:not(.case-kicker){color:#52677b;font-size:16px;line-height:1.8}.case-application-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:25px}.case-application-tags span{padding:8px 11px;color:#17516a;background:#edf9fb;border:1px solid #c9edf2;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.case-learning-copy blockquote{margin:0 0 26px;padding:0 0 0 24px;color:#fff;border-left:4px solid var(--home-cyan);font-size:23px;font-weight:700;line-height:1.5}.case-learning-copy p{color:rgba(255,255,255,.65);font-size:15px;line-height:1.8}.case-cta-section{padding-top:82px}
@media(max-width:1050px){.case-facts-grid{grid-template-columns:repeat(3,1fr)}.case-result-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.case-study-hero,.case-study-hero-content{min-height:600px}.case-study-intro-grid,.case-two-column,.case-context-grid{grid-template-columns:1fr;gap:38px}.case-image-break-grid{grid-template-columns:1fr}.case-main-figure img{height:440px}.case-image-stack{grid-template-columns:repeat(2,1fr);grid-template-rows:none}.case-image-stack img{height:260px}.case-context-section figure img{height:400px}}
@media(max-width:560px){.case-study-hero,.case-study-hero-content{min-height:690px}.case-study-hero-content{padding-top:45px}.case-hero-actions{flex-direction:column}.case-hero-actions .btn-primary,.case-hero-actions .btn-outline{width:100%}.case-facts-grid{grid-template-columns:repeat(2,1fr)}.case-study-intro,.case-challenge-section,.case-solution-section,.case-result-section,.case-context-section,.case-learning-section{padding-block:64px}.case-image-break{padding-bottom:64px}.case-image-stack,.case-requirement-grid,.case-solution-points,.case-result-grid{grid-template-columns:1fr}.case-main-figure img{height:330px}.case-image-stack img{height:260px}.case-context-section figure img{height:330px}}

/* NS3D Case Study page — append to Style.css */
.case-study-hero{position:relative;min-height:650px;overflow:hidden;color:#fff;background:#021326}.case-study-hero-picture{position:absolute;top:0;right:0;bottom:0;display:block;width:min(65vw,1155px)}.case-study-hero-image{width:100%;height:100%;object-fit:contain;object-position:right center}.case-study-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,19,38,.98) 0%,rgba(2,19,38,.93) 31%,rgba(2,19,38,.58) 50%,rgba(2,19,38,.12) 68%,rgba(2,19,38,0) 84%)}.case-study-hero-content{position:relative;z-index:2;display:flex;min-height:650px;flex-direction:column;justify-content:center;padding-block:55px 70px}.case-study-hero-content .hero-copy{max-width:650px}.case-breadcrumbs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px;color:rgba(255,255,255,.55);font-size:11px}.case-breadcrumbs a:hover{color:var(--home-cyan-bright)}.case-kicker{margin:0 0 14px;color:var(--home-cyan-bright);font-size:11px;font-weight:900;letter-spacing:.16em}.case-study-hero h1{max-width:760px;margin:0;color:#fff;font-size:clamp(45px,6vw,76px);line-height:.98;letter-spacing:-.035em}.case-hero-lead{max-width:620px;margin:24px 0 0;color:rgba(255,255,255,.78);font-size:18px;line-height:1.65}.case-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.case-facts-strip{position:relative;z-index:3;background:var(--home-cyan)}.case-facts-grid{display:grid;grid-template-columns:repeat(6,1fr)}.case-facts-grid div{min-height:92px;padding:20px 17px;border-right:1px solid rgba(3,27,51,.16)}.case-facts-grid div:last-child{border:0}.case-facts-grid small,.case-facts-grid strong{display:block}.case-facts-grid small{margin-bottom:7px;color:rgba(3,27,51,.62);font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.case-facts-grid strong{color:var(--home-navy);font-size:13px;line-height:1.35}
.case-study-intro,.case-solution-section{padding:92px 0;background:#fff}.case-study-intro-grid,.case-two-column{display:grid;grid-template-columns:.78fr 1.22fr;gap:80px}.case-section-heading span{display:block;margin-bottom:18px;color:var(--home-cyan);font-size:12px;font-weight:900;letter-spacing:.15em}.case-section-heading>p{margin:0 0 12px;color:#768697;font-size:10px;font-weight:900;letter-spacing:.15em}.case-section-heading h2{margin:0;color:var(--ink);font-size:clamp(32px,4vw,49px);line-height:1.08}.case-study-copy{color:#52677b;font-size:16px;line-height:1.8}.case-study-copy p:first-child{margin-top:0}.case-lead{color:#263e54;font-size:19px!important;line-height:1.65!important}.case-external-link{display:inline-flex;gap:12px;margin-top:12px;color:var(--blue-dark);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.case-external-link:hover{color:var(--home-cyan)}
.case-image-break{padding:0 0 92px;background:#fff}.case-image-break-grid{display:grid;grid-template-columns:1.55fr .75fr;gap:18px}.case-image-break figure,.case-context-section figure{margin:0}.case-main-figure img{width:100%;height:590px;object-fit:cover}.case-image-stack{display:grid;grid-template-rows:repeat(2,1fr);gap:18px}.case-image-stack figure{display:flex;min-height:0;flex-direction:column}.case-image-stack img{width:100%;min-height:0;flex:1;object-fit:cover}.case-image-break figcaption,.case-context-section figcaption{padding:12px 14px;color:#738292;background:#f1f5f7;font-size:10px;line-height:1.5}
.case-challenge-section,.case-learning-section{padding:92px 0;color:#fff;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy))}.case-heading-light h2{color:#fff}.case-heading-light>p{color:rgba(255,255,255,.48)}.case-light-lead{margin:0 0 30px;color:rgba(255,255,255,.76);font-size:18px;line-height:1.65}.case-requirement-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.case-requirement-grid article{min-height:195px;padding:27px;background:rgba(3,27,51,.94)}.case-requirement-grid strong{color:var(--home-cyan-bright);font-size:10px;letter-spacing:.14em}.case-requirement-grid h3{margin:20px 0 9px;color:#fff;font-size:17px}.case-requirement-grid p{margin:0;color:rgba(255,255,255,.62);font-size:13px;line-height:1.6}
.case-solution-points{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:28px 0}.case-solution-points>div{display:flex;gap:12px;padding:18px;background:var(--soft);border:1px solid #dce5eb}.case-solution-points span{color:var(--home-cyan);font-weight:900}.case-solution-points p{margin:0;color:#53687b;font-size:12px;line-height:1.55}.case-solution-points strong{color:var(--ink)}.case-callout{margin-top:28px;padding:24px;color:#fff;background:var(--home-navy);border-left:4px solid var(--home-cyan)}.case-callout strong{font-size:14px}.case-callout p{margin:7px 0 0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.65}
.case-result-section{padding:92px 0;background:var(--soft)}.case-result-heading{text-align:left}.case-result-heading .section-intro{max-width:780px;margin-left:0}.case-result-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}.case-result-grid article{padding:30px 25px;background:#fff;border:1px solid #dce5eb;box-shadow:0 8px 24px rgba(3,27,51,.06)}.case-result-grid span{display:grid;place-items:center;width:40px;height:40px;margin-bottom:22px;color:#fff;background:var(--home-cyan);font-weight:900}.case-result-grid h3{margin:0 0 10px;color:var(--ink);font-size:17px}.case-result-grid p{margin:0;color:#607487;font-size:13px;line-height:1.6}
.case-context-section{padding:92px 0;background:#fff}.case-context-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}.case-context-section figure img{width:100%;height:500px;object-fit:cover}.case-context-copy h2{margin:0 0 24px;color:var(--ink);font-size:clamp(32px,4vw,48px);line-height:1.08}.case-context-copy>p:not(.case-kicker){color:#52677b;font-size:16px;line-height:1.8}.case-application-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:25px}.case-application-tags span{padding:8px 11px;color:#17516a;background:#edf9fb;border:1px solid #c9edf2;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.case-learning-copy blockquote{margin:0 0 26px;padding:0 0 0 24px;color:#fff;border-left:4px solid var(--home-cyan);font-size:23px;font-weight:700;line-height:1.5}.case-learning-copy p{color:rgba(255,255,255,.65);font-size:15px;line-height:1.8}.case-cta-section{padding-top:82px}
@media(max-width:1050px){.case-facts-grid{grid-template-columns:repeat(3,1fr)}.case-result-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.case-study-hero,.case-study-hero-content{min-height:600px}.case-study-hero-picture{width:100%}.case-study-hero-image{object-fit:cover;object-position:64% center}.case-study-hero-overlay{background:linear-gradient(90deg,rgba(2,19,38,.97) 0%,rgba(2,19,38,.82) 58%,rgba(2,19,38,.28) 100%)}.case-study-intro-grid,.case-two-column,.case-context-grid{grid-template-columns:1fr;gap:38px}.case-image-break-grid{grid-template-columns:1fr}.case-main-figure img{height:440px}.case-image-stack{grid-template-columns:repeat(2,1fr);grid-template-rows:none}.case-image-stack img{height:260px}.case-context-section figure img{height:400px}}
@media(max-width:560px){.case-study-hero,.case-study-hero-content{min-height:690px}.case-study-hero-picture{top:0;right:0;bottom:auto;width:100%;height:390px}.case-study-hero-image{object-fit:cover;object-position:69% center}.case-study-hero-overlay{background:linear-gradient(180deg,rgba(2,19,38,.32) 0%,rgba(2,19,38,.55) 38%,rgba(2,19,38,.98) 69%,#021326 100%)}.case-study-hero-content{justify-content:flex-end;padding-top:45px;padding-bottom:52px}.case-breadcrumbs{margin-bottom:18px}.case-study-hero h1{font-size:42px}.case-hero-lead{font-size:15px}.case-hero-actions{flex-direction:column}.case-hero-actions .btn-primary,.case-hero-actions .btn-outline{width:100%}.case-facts-grid{grid-template-columns:repeat(2,1fr)}.case-study-intro,.case-challenge-section,.case-solution-section,.case-result-section,.case-context-section,.case-learning-section{padding-block:64px}.case-image-break{padding-bottom:64px}.case-image-stack,.case-requirement-grid,.case-solution-points,.case-result-grid{grid-template-columns:1fr}.case-main-figure img{height:330px}.case-image-stack img{height:260px}.case-context-section figure img{height:330px}}

/* NS3D main Case Studies page — append to Style.css */
.case-studies-hero,.case-studies-hero .hero-layout{min-height:620px}.case-studies-hero .hero-layout{padding-bottom:150px}.case-studies-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.case-studies-hero .hero-overlay{background:linear-gradient(90deg,rgba(3,22,43,.97) 0%,rgba(3,22,43,.81) 48%,rgba(3,22,43,.3) 100%)}
.case-library-intro{padding:86px 0 76px}.case-library-intro-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:76px}.case-library-kicker{margin:0 0 12px;color:var(--home-cyan);font-size:12px;font-weight:800;letter-spacing:.15em}.case-library-copy{color:var(--text);font-size:17px;line-height:1.82}.case-library-copy p:first-child{margin-top:0}
.featured-cases-section{padding:88px 0 96px;background:var(--soft)}.featured-case-card{display:grid;grid-template-columns:1.18fr .82fr;margin-top:42px;overflow:hidden;background:#fff;border:1px solid #dce5eb;box-shadow:0 16px 42px rgba(3,27,51,.12)}.featured-case-image,.secondary-case-image{position:relative;display:block;min-height:510px;overflow:hidden}.featured-case-image>img,.secondary-case-image>img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.featured-case-card:hover .featured-case-image>img,.secondary-case-card:hover .secondary-case-image>img{transform:scale(1.035)}.case-card-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,27,51,.03),rgba(3,27,51,.58))}.case-card-status{position:absolute;left:22px;bottom:22px;padding:8px 11px;color:#fff;background:var(--home-cyan);font-size:9px;font-weight:900;letter-spacing:.1em}.featured-case-content{display:flex;flex-direction:column;justify-content:center;padding:48px 43px}.case-card-sector{margin:0 0 15px;color:var(--home-cyan);font-size:10px;font-weight:900;letter-spacing:.14em}.featured-case-content h2{margin:0 0 20px;font-size:clamp(28px,3vw,40px);line-height:1.08}.featured-case-content h2 a{color:var(--ink)}.featured-case-content>p:not(.case-card-sector){color:#52677b;font-size:15px;line-height:1.75}.case-card-facts{display:flex;flex-wrap:wrap;gap:7px;margin:22px 0}.case-card-facts span{padding:7px 9px;color:#17516a;background:#edf9fb;border:1px solid #c9edf2;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.case-library-link{display:inline-flex;gap:13px;margin-top:12px;color:var(--blue-dark);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}.case-library-link:hover{color:var(--home-cyan)}
.secondary-case-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:24px}.secondary-case-card{overflow:hidden;background:#fff;border:1px solid #dce5eb;box-shadow:0 8px 24px rgba(3,27,51,.07)}.secondary-case-image{min-height:320px}.secondary-case-content{padding:30px}.secondary-case-content h3{margin:0 0 14px;color:var(--ink);font-size:23px}.secondary-case-content>p:not(.case-card-sector){margin:0;color:#5a6e81;font-size:14px;line-height:1.7}.confidential-case-card .case-card-status{background:#344d63}
.case-capabilities-section{padding:90px 0;background:linear-gradient(135deg,var(--home-navy-deep),var(--home-navy));color:#fff}.case-library-heading-light h2{color:#fff}.case-library-heading-light .section-intro{color:rgba(255,255,255,.68)}.case-capabilities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-top:40px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.12)}.case-capabilities-grid article{min-height:215px;padding:32px;background:rgba(3,27,51,.94)}.case-capabilities-grid span{display:block;margin-bottom:23px;color:var(--home-cyan-bright);font-size:11px;font-weight:900;letter-spacing:.14em}.case-capabilities-grid h3{margin:0 0 11px;color:#fff;font-size:18px}.case-capabilities-grid p{margin:0;color:rgba(255,255,255,.64);font-size:13px;line-height:1.65}
.case-workflow-section{padding:92px 0;background:#fff}.case-workflow-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:76px}.case-workflow-layout .left-heading>p:last-child{color:#607487;line-height:1.7}.case-workflow-steps{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:#dce5eb;border:1px solid #dce5eb}.case-workflow-steps article{display:flex;gap:18px;min-height:165px;padding:28px;background:var(--soft)}.case-workflow-steps>article>span{color:var(--home-cyan);font-size:11px;font-weight:900;letter-spacing:.1em}.case-workflow-steps h3{margin:0 0 9px;color:var(--ink);font-size:17px}.case-workflow-steps p{margin:0;color:#5d7184;font-size:13px;line-height:1.6}.case-library-cta-section{padding-top:82px}
@media(max-width:1050px){.featured-case-card{grid-template-columns:1fr}.featured-case-image{min-height:430px}.case-capabilities-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.case-studies-hero,.case-studies-hero .hero-layout{min-height:660px}.case-studies-hero .hero-layout{padding-bottom:180px}.case-library-intro-grid,.case-workflow-layout{grid-template-columns:1fr;gap:34px}.secondary-case-grid{grid-template-columns:1fr}.secondary-case-image{min-height:370px}}
@media(max-width:560px){.case-studies-hero,.case-studies-hero .hero-layout{min-height:790px}.case-studies-hero .hero-layout{padding-bottom:280px}.case-library-intro,.featured-cases-section,.case-capabilities-section,.case-workflow-section{padding-block:64px}.featured-case-image{min-height:320px}.featured-case-content{padding:30px 24px}.secondary-case-image{min-height:280px}.case-capabilities-grid,.case-workflow-steps{grid-template-columns:1fr}}

/* ============================================
   TOOL PANEL - NEXT STEP LINKS
   Shared styling for tool-page related links
============================================ */

.converter-panel-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 0;
    color: #11b7cd;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.converter-panel-link:last-child {
    border-bottom: none;
}

.converter-panel-link:hover,
.converter-panel-link:focus {
    color: #ffffff;
}

.converter-panel-link i {
    width: 22px;
    flex: 0 0 22px;
    text-align: center;
    color: #11b7cd;
}

.converter-panel-link:hover i,
.converter-panel-link:focus i {
    color: #ffffff;
}

