/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body{
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background: #f1f5f9;
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  min-height: 70vh;
}

/* ---------- LAYOUT ---------- */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.background-page{
  background-color: rgb(235, 238, 242);
}

.section {
  margin-top: 2.5rem;
}

.section-services{
  margin-top: 2.5rem;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-header h2 {
  margin: 0 0 0.3rem;
  font-size: 1.6rem;
  color: #ffffff;
}
.section-header-z {
  margin: 0 0 0.3rem;
  font-size: 1.6rem;
  color: #252e9a;
}

.section-header-homepage{
  color: black;
  text-align: center;
}

.section-header p {
  margin: 0;
  color: #64748b;
}



/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HEADER WRAPPER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Ensure header is always above background layer */
.site-header {
  position: relative;
  z-index: 10000;
}




/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TOP BAR (BLUE STRIP)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-bar {
  background: #252e9a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.35rem 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* social media icons */
.top-bar-right {
  gap: 0.35rem;
}

.social-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* If you use <img> icons */
.social-icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover img {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* If you use Font Awesome <i> icons */
.social-icon i {
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover i {
  transform: translateY(-1px) scale(1.06);
  opacity: 0.9;
}

/* Mobile top bar: neat stacking */
@media (max-width: 700px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .top-bar-left,
  .top-bar-center {
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-bar-right {
    justify-content: center;
    align-self: center;
  }
}



/* =========================================================
   NAVBAR
   ========================================================= */

/* ---- NAVBAR ---- */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #000;
  box-shadow: 0 20px 10px rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 99999;
}

.navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-left {
  flex: 0 0 auto;
}

/* ---- LOGO ---- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo span {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
  color: #131d87;
}

/* ---- NAV LINKS DESKTOP ---- */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
  margin: 0;
  padding: 0;
  padding-top: 0.6rem;
}

.nav-links > li {
  position: relative;
}

.navbar .nav-links ul,
.navbar .nav-links .submenu,
.navbar .nav-links .sub-menu,
.navbar .nav-links .dropdown-menu,
.navbar .nav-links .nav-submenu {
  display: none !important;
}

/* Pill links */
.nav-main-link {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-main-link:hover {
  background: rgba(124, 150, 186, 0.25);
  color: #252e9a;
}

/* =========================================================
   MOBILE: STACK
   ========================================================= */
@media (max-width: 900px) {
  .navbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo span {
    font-size: clamp(0.95rem, 3.2vw, 1.15rem);
    letter-spacing: 0.05em;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0 0 0.5rem 0;
  }

  .nav-links > li {
    width: 100%;
  }

  /* Center each main link */
  .nav-main-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}








/* ------------------
      HOME PAGE 
--------------------- */


/* ---------- HERO (HOMEPAGE) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
  padding: 3.5rem 1rem;

  /* âœ… gradient overlay + image (colour-graded look) */
  background-image:
    linear-gradient(
      135deg,
      rgba(50, 50, 65, 0.30),
      rgba(7, 13, 22, 0.50)
    ),
    url("images/NHG-Wallpaper.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    135deg,
    rgba(50, 50, 65, 0.3),
    rgba(7, 13, 22, 0.5)
  );
  z-index: 1;
}


/* Keep content above backgrounds */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  position: relative; /* remove if neccessary */
  z-index: 2;   /* remove if neccessary */
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: 2.3rem;
  margin: 0 0 0.6rem;
  color: #fff
}

.hero-text {
  font-size: 0.98rem;
  color: #ffffff;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease,
              transform 0.12s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: #252e9a;
  color: #f9fafb;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.6);
}

.btn-primary:hover {
  background: #0050d1;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: #cbd5f5;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.5);
}

/* Right-side hero panel */
.hero-panel {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  margin-left: 0rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
  font-size: 0.9rem;
}

.hero-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.hero-panel ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  color: #cbd5f5;
}

.list-TC {
  list-style: none;
  margin: 1rem auto 1.4rem;   /* auto centers the block */
  padding: 0;
  color: #0f172a;

  max-width: 620px;           /* keeps it aligned with paragraphs */
}

/* Each list item */
.list-TC li {
  display: flex;
  align-items: flex-start;
  justify-content: center;    /* centers content horizontally */
  gap: 0.5rem;                /* space between > and text */

  margin-bottom: 0.55rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Chevron */
.list-TC li::before {
  content: ">";
  color: #1e3a8a;
  font-weight: 700;
  line-height: 1.6;
  flex-shrink: 0;
}

/* Text itself stays readable and wraps nicely */
.list-TC li > * {
  text-align: left;           /* text stays left-aligned */
  max-width: 560px;
}
/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;  /* stack vertically */
    text-align: center;
  }

  .hero-panel {
    margin: -0.5rem auto 0;
    max-width: 320px;
  }
  .hero-actions {
    justify-content: center;
  }
}


/* --- Logo bridge between hero and next section --- */
.logo-bridge {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin-top: -48px;     /* overlap hero more */
  margin-bottom: -48px;
}

.logo-bridge-inner {
  height: 84px;
  background: transparent;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.12);

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

.logo-bridge-img {
  width: 200%;          
  height: 200%;
  object-fit: cover;     
  display: block;
}


/* Mobile */
@media (max-width: 640px) {
  .logo-bridge {
    margin-top: -24px;
  }

  .logo-bridge-inner {
    width: 50px;
    height: 50px;
  }
}


/* --- Logo bridge 2 --- */
.logo-bridge-2 {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin-top: -42px;     
  margin-bottom: -42px;
}

.logo-bridge-inner-2 {
  width: 84px;          
  height: 84px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.12);

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

.logo-bridge-img-2 {
  width: 120%;          
  height: 120%;
  object-fit: cover;     
  display: block;
}

/* Mobile */
@media (max-width: 640px) {
  .logo-bridge-2 {
    margin-top: -36px;
  }

  .logo-bridge-inner-2 {
    width: 75px;
    height: 75px;
  }
}






.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;   /* single column on small screens */
  }
}

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);

  overflow: hidden;              /* keeps everything inside the rounded card */
  transition: transform 200ms ease;
}

/* Optional little lift on hover */
.card:hover {
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: -1.5rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
}

.card-text {
  font-size: 0.92rem;
  color: #475569;
  margin-left: 0.5rem;
}

/* ---- HIDDEN IMAGE AREA (reveals on hover) ---- */
.card-media {
  margin-top: 0.9rem;

  max-height: 0;                 /* hidden */
  opacity: 0;
  transform: translateY(8px);

  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

/* Reveal on hover */
.card:hover .card-media {
  max-height: 260px;             /* adjust how much it expands */
  opacity: 1;
  transform: translateY(0);
}

/* Make the image fit perfectly */
.card-media img {
  width: 100%;
  height: 220px;                 /* fixed height for consistent cards */
  display: block;
  object-fit: cover;             /* crops nicely without stretching */
  border-radius: 0.7rem;         /* optional: slightly rounded image */
}




/* ---------- SOCIAL MEDIA ICONS (HOMEPAGE) ---------- */
.socials-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  scale: 2;
}

/* ABOUT US SERVICES PAGE SECTION */
.about-us-services-page{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.about-us-services-page-inner{
  max-width: 1120px;
  margin: 0 auto;
}

.about-us-services-page h2{
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: #FFF;
}

.about-us-services-page p{
  font-size: 1.2rem;
  color: #FFF;
  line-height: 1.7;
}



/* ---------- IMAGE SCROLLOVER ---------- */
body.has-fixed-bg {
  position: relative;
}

/* Background behind everything */
body.has-fixed-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;             /* background layer */
  pointer-events: none;
  background: url("./images/OUTSIDE-MIDRAND-1.webp") center/cover no-repeat;
}

/* Force header above background + above main */
body.has-fixed-bg .site-header {
  position: sticky;       /* or relative if you don't want sticky */
  top: 0;
  z-index: 9999;
}

/* Make sure main content is above bg but below header */
body.has-fixed-bg main {
  position: relative;
  z-index: 1;
}

/* Footer above bg too */
body.has-fixed-bg .site-footer {
  position: relative;
  z-index: 2;
}



.clear-background{
  background-color: transparent;
  height: 500px;
}

.image-background-banner-scroll{
  background-image: url('./images/OUTSIDE-MIDRAND-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* avoid iOS vh issues */
  min-height: 100svh;
  width: 100%;
}

/* MAIN becomes the stacking context for the background layer */
.image-background-banner-scroll{
  position: relative;
  z-index: 0;
  background: none; /* important: background handled by ::before */
}

/* Fixed background layer that works on iPhone */
.image-background-banner-scroll::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url('./images/OUTSIDE-MIDRAND-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* optional: if you want it slightly darker for readability */
  /* filter: brightness(0.85); */
}





.close-the-gap{
  margin-top: -50px;
}




/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC: 4 per row */
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* Mobile: 3 per row */
    gap: 0.75rem;
  }
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 190px;        /* same thumbnail height for all */
  display: block;
  object-fit: cover;    /* keeps consistent size without stretching */
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;        /* hidden by default */
  z-index: 2000;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 251, 255, 0.94);
}

.lightbox-dialog {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 6vh auto 0;
  display: block;
  padding: 0.75rem;
}

.lightbox-figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(248, 251, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 88vh;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  background: transparent;
}

.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(27, 42, 74, 0.68);
  background: rgba(244, 248, 253, 0.88);
  color: #20314f;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2105;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(27, 42, 74, 0.68);
  background: rgba(244, 248, 253, 0.86);
  color: #20314f;
  font-size: 1.7rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2105;
}

.lightbox-nav.prev {
  left: 2rem;
}

.lightbox-nav.next {
  right: 2rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(248, 251, 255, 0.97);
}

/* Make nav buttons a bit smaller on small screens */
@media (max-width: 700px) {
  .lightbox-dialog {
    max-width: 100vw;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}

/* Ensure lightbox controls are clickable */
.lightbox { pointer-events: auto; }
.lightbox-backdrop { pointer-events: auto; }
.lightbox-dialog { pointer-events: auto; }
.lightbox-close, .lightbox-nav { pointer-events: auto; }


/* MOBILE LIGHTBOX: fullscreen image + swipe (hide arrows) */
@media (max-width: 700px){
  .lightbox-dialog{
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    padding: 0.75rem;
    display: block;
  }

  .lightbox-figure{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 1rem;
  }

  .lightbox-img{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: contain;
  }

  /* Hide arrows on mobile */
  .lightbox-nav{
    display: none !important;
  }

  /* Keep close button easy to tap */
  .lightbox-close{
    top: 1rem;
    right: 1rem;
    z-index: 5;
  }
}




/* â”€â”€â”€â”€â”€â”€â”€â”€â”€ HOME â€“ SCROLL HEADING ANIMATION â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Wrapper */
.product-hero-home {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0;
}

.product-hero-home-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Base heading style (hidden initially) */
.product-hero-home h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgb(15, 23, 42);
  letter-spacing: 0.3px;

  opacity: 1;
  transform: translateY(40px);

  /* smooth in */
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* Generic heading class you already use */
.section-header-homepage {
  color: black;
  text-align: center;
}

/* When IntersectionObserver adds this class */
.product-hero-home h2.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Underline base state (hidden) */
.product-hero-home h2::after {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  margin: 0.6rem auto 0;
  background: #1f2e85;
  border-radius: 999px;

  transition: width 0.6s ease-out;
}

/* Underline grows only when heading is animated in */
.product-hero-home h2.animate::after {
  width: 100%;
}




/* ---------- PRODUCT CATEGORIES (HOMEPAGE) ---------- */
.home-product-categories {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.home-products-header {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.home-products-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
}

.home-products-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
}




/* ========== HOME PRODUCTS SECTION ========== */
/* Wrapper that matches the grid width so the button aligns with bottom-left card */
.product-range-block{
  max-width: 1100px;   /* wider cards than your 850px */
  margin: 0 auto;
  padding: 0 1rem;     /* consistent side padding */
}

/* Grid: ALWAYS 2 cards per row (desktop + tablet + phone) */
.product-category-grid-home{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* always 2 */
  gap: 1.6rem;
}

/* Base card */
.product-category-card{
  position: relative;
  display: block;
  min-height: 190px;
  border-radius: 1.1rem;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-decoration: none;
  color: #f9fafb;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;

  border: 1px solid rgba(255,255,255,0.12);
}

/* Overlay */
.product-category-overlay{
  height: 100%;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.55),
    rgba(37, 99, 235, 0.40)
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Small label */
.product-category-tag{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c7d2fe;
  margin-bottom: 0.35rem;
}

.product-category-overlay h3{
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

/* Hover: pop up + stronger border */
.product-category-card:hover,
.product-category-card:focus-visible{
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.30);
  filter: brightness(1.05);
  border-color: rgba(255,255,255,0.75);
}

/* Keyboard focus outline */
.product-category-card:focus-visible{
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

/* Background images */
.category-glass{
  background-image: url("images/Laminated-glass.webp");
}
.category-architectural{
  background-image: url("images/Toughened-glass.webp");
}
.category-interior{
  background-image: url("images/Double-glazing.webp");
}
.category-specialised{
  background-image: url("images/Special.webp");
}
.category-aluminium{
  background-image: url("images/aluminium-hardware.webp");
}

/* CTA button aligned to grid left edge (bottom-left card alignment) */
.btn-prod-home{
  margin-top: 1.2rem;
  display: inline-flex;         /* keeps it hugging left edge */
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;

  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-prod-home-primary{
  background: rgba(37, 99, 235, 0.95);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-prod-home:hover,
.btn-prod-home:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.25);
  filter: brightness(1.03);
  outline: none;
}

/* Mobile adjustments (still 2 columns) */
@media (max-width: 640px){
  .product-category-grid-home{
    gap: 1.1rem;
  }

  .product-category-card{
    min-height: 165px;
    border-radius: 1rem;
  }

  .product-category-overlay{
    padding: 1.05rem 1.1rem;
  }

  .product-category-overlay h3{
    font-size: 1rem;
  }
}




/* ------------------
    SERVICES PAGE
--------------------- */

/* -------- Memberships & Certificates â€“ CARD GRID -------- */
.why-section {
  margin-top: 2.5rem;
}

/* Grid for the â€œWhy chooseâ€¦â€ cards */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Base â€œwhyâ€ card (separate from .card used elsewhere) */
.why-card {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: default;
}

/* Lift on hover */
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.26);
  border-color: #cbd5f5;
}

/* Header area (title) */
.why-card-header {
  padding: 0.9rem 1.1rem 0.4rem;
}

.why-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-card-arrow {
  display: inline-block;        
  transition: transform 0.25s ease;
  transform-origin: center;
  font-size: 1rem;
  color: #bfbcbc;                  
}

.why-card-more{
  position: absolute;
  top: 1.6rem;
  right: 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #bfbcbc;
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}


.why-card.open .why-card-more,
.why-card:hover .why-card-more {
  opacity: 0;
  transition-delay: 0s;
}


.why-card:not(.open) .why-card-more{
  transition-delay: 0.12s;
}

.why-card-less{
  position: absolute;
  top: 1.6rem;
  right: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bfbcbc;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

@media (max-width: 640px) {
  .why-card-more{
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #bfbcbc;
    opacity: 1;
    pointer-events: none;
  }
}


.why-card.open .why-card-less,
.why-card:hover .why-card-less {
  opacity: 1;
  transition-delay: 0s;
}

.why-card:not(.open) .why-card-less{
  transition-delay: 0.12s;
}

.why-card.open .why-card-arrow,
.why-card:hover .why-card-arrow {
  transform: rotate(180deg);
}


.why-card-body {
  padding: 0 1.1rem 2.6rem; /* combine paddings cleanly */
  max-height: 6em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}


/* Text inside body */
.why-card-text {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.55;
}

/* Show more info on hover/focus */
.why-card:hover .why-card-body,
.why-card:focus-within .why-card-body {
  max-height: 600px;        /* big enough for text + images */
  opacity: 1;
}

/* Images stacked vertically */
.why-card-images {
  margin-top: 1rem;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.why-card-images img {
  width: 150px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ---------- MOBILE: 2 CARDS PER ROW ---------- */
@media (max-width: 900px) {
  .why-section {
    margin-top: -0.5rem;
  }

  .why-cards-grid {
    display: grid; 
    grid-template-columns: 1fr ;
    gap: 0.9rem;
    align-items: stretch;
  }

  .why-card {
    min-height: 80px;
  }

  .why-card-header {
    padding: 0.8rem 0.95rem 0.35rem;
  }

  .why-card-body {
    padding: 0 0.95rem 0.8rem;
  }
}



/* ---------- GRID CARDS (Services) ---------- */
.cards-grids {
  display: grid;
  grid-template-columns: 1fr;        
  gap: 1.2rem;
}

.cards {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  overflow: hidden; /* keeps everything inside rounded card */
  transition: transform 200ms ease;
  margin-bottom: 2rem;

  /* âœ… height behavior */
  height: auto;         
  min-height: 0;        
}

.cards.is-tall {
  min-height: 680px;     
}

.cards:hover {
  transform: translateY(-2px);
}

.cards-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0.9rem 0 0.25rem;  /* cleaner spacing than negative margins */
}

.cards-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.cards-text {
  font-size: 0.92rem;
  color: #475569;
  margin: 0 0 0.5rem;
  padding-left: 0.15rem;
  line-height: 1.5;
}



/* =======================================================
   EDGE PROFILES (HIGHLIGHT + GALLERY) â€” CLEAN DROP-IN
   - Text left, image right (desktop + mobile)
   - No grid conflicts, no negative margins, no weird offsets
   ======================================================= */

/* ---------- EDGE PROFILES HIGHLIGHT SECTION ---------- */
.edge-profiles-highlight {
  margin: 0.5rem;
  padding: 2rem 1.5rem;
  background: #ffffff;
}

/* Header block */
.edge-profiles-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 0rem;
}

.cards-title-big-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.edge-profiles-subtitle {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* ---------- EDGE PROFILE GALLERY (Name left, photo right) ---------- */
.edge-profiles {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.edge-profiles-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.edge-profiles-title-big {
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

/* ---------- ROW LAYOUT (TEXT LEFT, IMAGE RIGHT) ---------- */
.edge-profiles .edge-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(200, 218, 243, 0.9);

  /* kill all old offsets */
  margin-left: 0;
  text-align: left;
}

.edge-profiles .edge-profile-row:last-child {
  border-bottom: none;
}

/* Text container */
.edge-profiles .edge-profile-row > div {
  flex: 1 1 auto;
  min-width: 0; /* lets text wrap instead of pushing image off */
}

/* Text styles */
.edge-profiles .edge-profile-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.15rem;

  /* remove old offsets */
  margin-left: 0;
}

.edge-profiles .edge-profile-desc {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: #64748b;
  font-size: 0.9rem;

  /* remove old offsets */
  margin-left: 0;
}

/* Image styles */
.edge-profiles img.edge-profile-img {
  width: clamp(92px, 28vw, 140px);
  aspect-ratio: 4 / 3;
  height: auto;
  flex: 0 0 auto;
  display: block;

  object-fit: cover;
  object-position: center;

  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 70, 162, 0.7);

  /* remove old offsets */
  margin-left: 0;
  margin-right: 0;
}

/* -------------------------------------------------- */
/* Existing image container (UNCHANGED â€” kept intact) */
/* -------------------------------------------------- */
.services-card-image.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-card-image.centered img {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

/* ---------- MOBILE REFINEMENT ---------- */
@media (max-width: 640px) {
  .edge-profiles-highlight {
    padding: 1.6rem 1rem;
  }

  .cards-title-big-title {
    font-size: 1.45rem;
  }

  .edge-profiles-subtitle {
    font-size: 0.9rem;
  }

  .edge-profiles .edge-profile-row {
    gap: 0.75rem;
  }

  .edge-profiles .edge-profile-name {
    font-size: 1.05rem;
  }

  .edge-profiles .edge-profile-desc {
    font-size: 0.85rem;
  }
}

/* ---------- T&Cs MOBILE PADDING (kept from your code) ---------- */
@media (max-width: 640px) {
  .t-and-c-section {
    padding: 0 1.2rem; /* left & right padding */
  }
}









/* ---------- PRODUCTS PAGE ---------- */
.product-hero {
  background:
    linear-gradient(
      180deg,
      rgba(184, 189, 202, 0.7),
      rgba(0, 76, 255, 0.5)
    ),
    url("images/Products2-wallpaper.webp");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  padding: 4rem 1rem 6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4) inset;
}


.product-hero-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
/* Animation keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading animation */
.product-hero h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin-bottom: 0.6rem;

  opacity: 0;
  animation: fadeSlideUp 0.9s ease-out forwards;
}

/* Fancy underline accent */
.product-hero h2::after {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  margin: 0.6rem auto 0;
  background: #1f2e85;
  border-radius: 999px;

  animation: underlineGrow 1s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes underlineGrow {
  from { width: 0%; }
  to { width: 60%; }
}

/* Subtext animation (staggered delay) */
.product-hero p {
  font-size: 1.1rem;
  color: #475569;

  opacity: 0;
  animation: fadeSlideUp 0.9s ease-out forwards;
  animation-delay: 0.35s;
}






/* â”€â”€â”€â”€â”€â”€â”€â”€â”€ PRODUCT CATEGORY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Grid: 2 per row desktop, 1 per row mobile */
.product-category-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

@media (max-width: 780px) {
  .product-category-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Card base */
.product-category-cards {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f9fafb;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.20);
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, border-color 0.22s ease;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Keep your pop-up + add white border on hover */
.product-category-cards:hover,
.product-category-cards:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.34);
  filter: brightness(1.05);
  border-color: rgba(255, 255, 255, 0.75);
}

/* Overlay content layout: footer pinned to bottom */
.product-card-overlay {
  height: 100%;            /* gives consistent feel; adjust if needed */
  padding: 1.25rem 1.35rem;

  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.80),
    rgba(21, 61, 145, 0.35)
  );

  display: flex;
  flex-direction: column;
}

/* Title link */
.product-card-title-link {
  text-decoration: none;
  color: inherit;
}

.product-card-title {
  margin: 0 0 0.9rem 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Tablets: keep 2 per row */
@media (max-width: 1024px) {
  .product-category-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0 1rem;
  }
}

/* Phones: 1 per row, card spans the grid but grid doesn't span full device */
@media (max-width: 640px) {
  .product-category-grid-2 {
    grid-template-columns: 1fr;      /* ONE per row */
    gap: 1.1rem;

    /* ensures it doesn't touch screen edges */
    padding: 0 1rem;

    /* optional: keeps it from becoming too wide on big phones */
    max-width: 520px;
    margin: 0 auto;
  }

  .product-category-cards {
    border-radius: 1rem;
  }

  .product-card-overlay {
    padding: 1.05rem 1.05rem;
  }

  .product-card-title {
    font-size: 1.05rem;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .mini-view-btn {
    padding: 0.38rem 0.7rem;
    font-size: 0.85rem;
  }
}

/* Very small phones: slightly tighter padding */
@media (max-width: 420px) {
  .product-category-grid-2 {
    padding: 0 0.75rem;
    max-width: 100%;
  }
}



/* Product lines list */
.product-lines {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Each line: name left, button right */
.product-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.product-name {
  flex: 1;
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

/* Small "View" buttons on each line */
.mini-view-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.42rem 0.8rem;
  border-radius: 999px;

  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);

  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.mini-view-btn:hover,
.mini-view-btn:focus-visible {
  background: rgba(255, 255, 255, 0.18);     /* lighter white-grey */
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
  outline: none;
}

/* Footer pinned to bottom for equal spacing */
.product-card-footer {
  margin-top: auto;               /* pushes footer to bottom */
  padding-top: 1rem;
}

/* Dashed divider */
.product-card-divider {
  height: 1px;
  width: 100%;
  margin: 0.25rem 0 0.95rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
}

/* Bottom CTA button (single line + consistent) */
.btn-prod.btn-prod-primary.btn-prod-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  white-space: nowrap;     /* keep one line */
  overflow: hidden;        /* safety */
  text-overflow: ellipsis; /* if someone makes text too long */

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(37, 99, 235, 0.55);
  backdrop-filter: blur(6px);

  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-prod.btn-prod-primary.btn-prod-wide:hover,
.btn-prod.btn-prod-primary.btn-prod-wide:focus-visible {
  transform: translateY(-2px);
  background: rgba(37, 99, 235, 0.70);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

/* Background images per category (reuse your existing classes) */
.category-glass {
  background-image: url("images/Laminated-glass.webp");
}
.category-architectural {
  background-image: url("images/Toughened-glass.webp");
}
.category-interior {
  background-image: url("images/Double-glazing.webp");
}
.category-specialised {
  background-image: url("images/Special.webp");
}
.category-aluminium {
  background-image: url("images/aluminium-hardware.webp");
}















/* ---------- CONTACT PAGE ---------- */
.contact-page {
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  background-color: #1d297a;
}

.contact-page-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  background-color: #1d297a;
}

.locations-header{
    background:
    linear-gradient(
      135deg,
      rgba(50, 50, 65, 0.6),
      rgba(7, 13, 22, 0.5)
    ), url("images/Contact-Background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e5e7eb;
  padding: 1rem 2rem;
}

.locations-header-inner{
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
  color: #ffffff;
}

.locations-section {
  margin-top: 2.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.visit-message {
  text-align: center;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  /* subtle text glow */
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.7),
    0 4px 25px rgba(0, 0, 0, 0.9);

  /* spacing */
  padding: 3.8rem 1rem;
}

.visit-message-services {
  text-align: center;
  color: #252e9a;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  /* subtle text glow */
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.2),
    0 4px 25px rgba(0,0,0,0.35);
}
/* Card wrapper */
.location-card {
  background: #ffffff;
  border-radius: 1.2rem;
  position:relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.location-card:hover,
.location-card:focus-within {
  transform: translateY(-4px);
  border-color: #cbd5f5;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
}
/* Read More text */
.location-card::before {
  content: "Read more";
  position: absolute;
  top: 0.8rem;
  right: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #464646;
  opacity: 1;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* Arrow */
.location-card::after {
  content: "â–¾";
  position: absolute;
  top: 0.6rem;
  right: 0.3rem;
  font-size: 1rem;
  color: #464646;
  opacity: 1;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* Reveal on hover / focus */
.location-card:hover::before,
.location-card:focus-within::before {
  opacity: 0.9;
  transform: translateY(0);
}

.location-card:hover::after,
.location-card:focus-within::after {
  opacity: 0.9;
  transform: translateX(0);
}
/* Rotate 180Â° on hover/focus */
.location-card:hover::after,
.location-card:focus-within::after{
  transform: rotate(180deg);
}



/* Image area */
.location-image {
  height: 190px;
  background-size: cover;
  background-position: center;
}

/* Summary (always visible) */
.location-summary {
  padding: 0.95rem 1.1rem 0.7rem;
}

.location-summary h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: #0f172a;
}

.location-summary p {
  margin: 0;
  font-size: 0.92rem;
  color: #6b7280;
}

/* Hidden details that drop down on hover */
.location-details {
  padding: 0 1.1rem 0.95rem;
  border-top: 1px solid #e2e8f0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Show details on hover / focus */
.location-card:hover .location-details,
.location-card:focus-within .location-details {
  max-height: 360px;   /* adjust if you add more lines */
  opacity: 1;
}

/* Details list */
.location-details ul {
  list-style: none;
  padding: 0.6rem 0 0.3rem;
  margin: 0;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.35rem;
}

.location-details li i {
  color: #252e9a;          /* your blue */
  font-size: 0.9rem;
  margin-top: 0.18rem;
}

/* Google maps link */
.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  padding-bottom: 0.1rem;
}

.location-map-link i {
  font-size: 0.95rem;
}

.location-map-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Map preview container */
.location-map-preview {
  display: block;
  margin-top: 0.8rem;
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

/* Map image */
.location-map-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

/* Dark label at bottom */
.location-map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hover animations */
.location-map-preview:hover img {
  transform: scale(1.05);
}

.location-map-preview:hover {
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .location-image {
    height: 170px;
  }
}


/* responsive layout */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Card hover pop-out effect */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: scale(1.04);        /* slightly bigger on hover */
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);  /* lifted shadow */
  border-color: #cbd5f5;
}

/* Enquiry section spacing */
.contact-enquiry {
  margin-top: 3rem;
}

/* Layout of form + info card */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  background-color:#111827;
  border-radius: 1rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #0f55b1;
  box-shadow: 0 18px 30px #0f55b1;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: #ffffff;
}

.contact-intro {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.94rem;
  color: #ffffff;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font: inherit;
}


/* success banner */
.form-feedback {
  max-width: 800px;
  margin: 20px auto;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  display: none;
}

.form-feedback.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #7f1d1d;
}




.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color:#ffffff;
}

.form-row input,
.form-row textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-actions {
  margin-top: 0.8rem;
}

.small-text {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Cloudflare Turnstile row */
.cf-row {
  margin-top: 0.6rem;
}

.cf-turnstile {
  padding: 0.6rem 0;
}

/* Right-hand info card */
.contact-info p {
  margin: 0 0 0.6rem;
  font-size: 0.94rem;
  color: #fff;
}

.contact-info-block {
  margin-top: 0.8rem;
}

.contact-info-block h4 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

/* Responsive layout */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}




















/* ===========================
   Indepth Product Page Styles
   =========================== */


.btn-cta-solid{
  margin-top: 1rem !important;
}

.btn-cta-outline{
  margin-top: 1rem !important;
}
.contact-us-products-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;  
  max-height: 35px;        /* ensures same size */
  padding: 0.85rem 1.25rem;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;

  border-radius: 999px;     /* fully rounded */
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;           /* white text */

  background: linear-gradient(
    80deg,
    #1600a2,
    rgba(29, 78, 216, 0.65)
  );

  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

/* Hover / focus */
.contact-us-products-btn:hover,
.contact-us-products-btn:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.35);

  background: linear-gradient(
    280deg,
    rgba(37, 99, 235, 1),
    rgb(139, 176, 249)
  );

  outline: none;
}

/* Mobile: full-width buttons (optional but recommended) */
@media (max-width: 640px){
  .contact-us-products-btn{
    width: 100%;
    min-width: 0;
  }
}
   

/* Header blocks */
.prod-section-header {
  text-align: center;
}

/* H1 animation */
.prod-section-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;

  display: inline-block;
  opacity: 0;
  transform: translateY(20px);      /* start slightly down */
  animation: headingFadeUp 0.9s ease-out forwards;
  position: relative;
  padding-bottom: 0.6rem;
}

/* Underline animation */
.prod-section-header h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;                          /* start from center */
  height: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  border-radius: 4px;

  animation: underlineGrow 1s ease-out forwards;
  animation-delay: 0.4s;            /* wait until the heading appears */
}

/* ANIMATIONS */
@keyframes headingFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 110%;                     /* final underline length */
  }
}

.prod-section-header p {
  max-width: 1050px;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  animation: paragraphFade 0.9s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes paragraphFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.prod-section-header p{
  margin: 0.5rem;
  color: White;
}








@media(max-width: 640px){
  .prod-section-header h1{
    font-size: 3rem;
  }

  .prod-intro{
    font-size: 1rem;
  }



  /* ANIMATIONS */
  @keyframes headingFadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px) scale(0.98);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes underlineGrow {
    0% {
      width: 0;
    }
    100% {
      width: 80%;                     /* final underline length */
    }
  }
}





/* ===========================
   LAMINATED GLASS HEADER BACKGROUND
   =========================== */

.why-section-Laminated{
  position: relative;

  width: 100%;
  min-height: 90vh;

  margin: 0;
  padding: 0;

  /* STACK CONTENT VERTICALLY (THIS FIXES IT) */
  display: flex;
  flex-direction: column;
  align-items: center;     
  justify-content: center; 

  background-image: url("images/Laminated-glass-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section-Laminated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2, 5, 9, 0.1),
    rgb(1, 24, 69, 0.8)
  );
  z-index: 0;
}

.why-section-Laminated > * {
  position: relative;
  z-index: 1;
}

/* Header stays centered and constrained */
.prod-section-header {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}


/* ===========================
   TOUGHENED GLASS HEADER BACKGROUND
   =========================== */

.why-section-Toughened{
  position: relative;

  width: 100%;
  min-height: 90vh;

  margin: 0;
  padding: 0;

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

  background-image: url("images/Toughened-glass-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section-Toughened::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2, 5, 9, 0.1),
    rgb(1, 24, 69, 0.8)
  );
  z-index: 0;
}

.why-section-Toughened > * {
  position: relative;
  z-index: 1;
}

.prod-section-header {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}




/* ===========================
   DOUBLEGLAZE GLASS HEADER BACKGROUND
   =========================== */

.why-section-doubleglaze{
  position: relative;

  width: 100%;
  min-height: 90vh;

  margin: 0;
  padding: 0;

  /* STACK CONTENT VERTICALLY (THIS FIXES IT) */
  display: flex;
  flex-direction: column;
  align-items: center;     /* centers the blocks horizontally */
  justify-content: center; /* centers the whole stack vertically */

  background-image: url("images/DoubleGlaze-Background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section-doubleglaze::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(134, 165, 205, 0.01),
    rgb(1, 24, 69, 0.7)
  );
  z-index: 0;
}

.why-section-doubleglaze > * {
  position: relative;
  z-index: 1;
}

/* Header stays centered and constrained */
.prod-section-header {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* Double glazing CTA buttons */
.double-glaze-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 280px;  
  max-height: 35px;        /* ensures same size */
  padding: 0.85rem 1.25rem;

  margin: 0.35rem 0.35rem 0 0; /* small spacing between buttons */

  border-radius: 999px;     /* fully rounded */
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;           /* white text */

  background: linear-gradient(
    185deg,
    #6b99e2,
    rgba(13, 59, 188, 0.65)
  );

  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

/* Hover / focus */
.double-glaze-btn:hover,
.double-glaze-btn:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.35);

  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 1),
    rgba(37, 99, 235, 1)
  );

  outline: none;
}

/* Mobile: full-width buttons (optional but recommended) */
@media (max-width: 640px){
  .double-glaze-btn{
    width: 100%;
    min-width: 0;
  }
}





/* ===========================
   SPECIAL GLASS HEADER BACKGROUND
   =========================== */

.why-section-special{
  position: relative;

  width: 100%;
  min-height: 90vh;

  margin: 0;
  padding: 0;

  /* STACK CONTENT VERTICALLY (THIS FIXES IT) */
  display: flex;
  flex-direction: column;
  align-items: center;     /* centers the blocks horizontally */
  justify-content: center; /* centers the whole stack vertically */

  background-image: url("images/Special-Wallpaper.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section-special::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(134, 165, 205, 0.2),
    rgb(1, 24, 69, 0.8)
  );
  z-index: 0;
}

.why-section-special > * {
  position: relative;
  z-index: 1;
}

/* Header stays centered and constrained */
.prod-section-header {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.product-colour-chart{
  max-width: 300px;
  margin-left: 1rem;
  border-radius: 0.5rem;
}



/* ===========================
   ALUMINIUM HEADER BACKGROUND
   =========================== */

.why-section-aluminium{
  position: relative;

  width: 100%;
  min-height: 90vh;

  margin: 0;
  padding: 0;

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

  background-image: url("images/aluminium-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section-aluminium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2, 5, 9, 0.1),
    rgb(1, 24, 69, 0.8)
  );
  z-index: 0;
}

.why-section-aluminium > * {
  position: relative;
  z-index: 1;
}

/* Header stays centered and constrained */
.prod-section-header {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}









/* ===========================
   PRODUCT INTRO SECTION
   =========================== */
.product-intro {
  max-width: 720px;
  width: 100%;
  margin: 7rem ;  /* top spacing only */
  padding: 0 1.5rem;
  text-align: center;
}

@media (max-width: 640px){
  .product-intro {
    margin-top: 3rem;
    padding: 0 1rem;
  }


  .product-intro h2{
    text-align: center;
    margin-bottom: 1rem;
  }

  .product-intro ul{
    text-align: center;     
    max-width: 560px;
  }
}


  .product-intro h2 {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  font-size: 1.75rem;
  color: #fff; 
}

.product-intro ul {
  list-style: none;               
  padding-left: 0;
  margin: 0;
}

.product-intro li {
  position: relative;
  padding-left: 1.8rem;       
  margin-bottom: 0.55rem;
  font-size: 1rem;
  color: #fff;
}

/* Tick Style */
.product-intro li::before {
  content: "âœ”";                 
  position: center;
  left: 0;
  top: 0.1rem;

  font-size: 1.2rem;
  color: #fff;     
  font-weight: 600;
  padding-right: 0.2rem;


  -webkit-font-smoothing: antialiased;
}

.product-intro-2 {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 2.5rem 2rem;

}

.product-intro-2 h2 {
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff; 
  margin-bottom: 1.2rem;
}

.product-intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff; 

  max-width: 900px;
}

@media (min-width: 1024px) {
  .product-intro-text {
    font-size: 1.05rem;
  }
}



















/* ===========================
   PRODUCT GRID LAYOUT
   =========================== */

.product-page-grid {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

/* ===========================
   PRODUCT CARD STYLE
   =========================== */

.product-page-card {
  background: #111827;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);

  display: block;
  max-width: 100%;
  overflow: hidden;

  transition:
    background 0.18s ease,
    transform 0.16s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* Hover polish for the card itself (desktop only feels right) */
@media (hover: hover) and (pointer: fine) {
  .product-page-card:hover {
    background: var(--product-card-bg-hover);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.75);
    border-color: rgba(129, 140, 248, 0.75);
  }
}

/* ===========================
      CLOSED STATE LAYOUT 
   =========================== */

.product-card-shell {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 1.25rem;
  align-items: start;
  grid-template-areas: "left media";
}

/* left column wrapper */
.product-card-left {
  min-width: 0;
  grid-area: left;
}

/* right image column */
.product-card-media {
  grid-area: media;
  width: 100%;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 250px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.08);
}

/* ===========================
   COLLAPSIBLE BEHAVIOUR (NO JS)
   Desktop: open on hover
   Mobile: open on tap (focus)
   =========================== */

.product-page-card.is-collapsible {
  cursor: pointer;
  outline: none;               /* remove default focus outline */
  touch-action: pan-y;
}

/* closed by default */
.product-page-card.is-collapsible .product-card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* CTA hidden when closed */
.product-page-card.is-collapsible .product-card-cta {
  display: none;
}

/* ---------- OPEN STATE (DESKTOP HOVER) ---------- */
@media (hover: hover) and (pointer: fine) {

  .product-page-card.is-collapsible:hover .product-card-body {
    max-height: 1800px;
    opacity: 1;
    transform: translateY(0);
  }

  .product-page-card.is-collapsible:hover .product-card-cta {
    display: block;
  }

  /* desktop open layout (same as your old .open layout) */
  @media (min-width: 901px) {
    .product-page-card.is-collapsible:hover .product-card-shell {
      grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
      grid-template-areas:
        "title title"
        "body  body"
        "cta   media";
      align-items: start;
    }

    .product-page-card.is-collapsible:hover .product-card-left {
      display: contents;
    }

    .product-page-card.is-collapsible:hover .product-card-left > h2 {
      grid-area: title;
    }

    .product-page-card.is-collapsible:hover .product-card-body {
      grid-area: body;
    }

    .product-page-card.is-collapsible:hover .product-card-cta {
      grid-area: cta;
      align-self: end;
      margin-top: 1.25rem;
    }

    .product-page-card.is-collapsible:hover .product-card-media {
      grid-area: media;
      align-self: end;
      margin-top: 1.25rem;
    }
  }
}

/* ---------- OPEN STATE (MOBILE TAP / FOCUS) ---------- */
/* IMPORTANT: add tabindex="0" to the card element in HTML for tap-to-focus */
@media (hover: none) and (pointer: coarse) {

  .product-page-card.is-collapsible:focus .product-card-body,
  .product-page-card.is-collapsible:focus-within .product-card-body {
    max-height: 1800px;
    opacity: 1;
    transform: translateY(0);
  }

  .product-page-card.is-collapsible:focus .product-card-cta,
  .product-page-card.is-collapsible:focus-within .product-card-cta {
    display: block;
  }

  /* Mobile open layout (same as your old .open layout) */
  .product-page-card.is-collapsible:focus .product-card-shell,
  .product-page-card.is-collapsible:focus-within .product-card-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "body"
      "cta"
      "media";
  }

  .product-page-card.is-collapsible:focus .product-card-left,
  .product-page-card.is-collapsible:focus-within .product-card-left {
    display: contents;
  }

  .product-page-card.is-collapsible:focus .product-card-left > h2,
  .product-page-card.is-collapsible:focus-within .product-card-left > h2 { grid-area: left; }

  .product-page-card.is-collapsible:focus .product-card-body,
  .product-page-card.is-collapsible:focus-within .product-card-body { grid-area: body; }

  .product-page-card.is-collapsible:focus .product-card-cta,
  .product-page-card.is-collapsible:focus-within .product-card-cta { grid-area: cta; margin-top: 1rem; }

  .product-page-card.is-collapsible:focus .product-card-media,
  .product-page-card.is-collapsible:focus-within .product-card-media { grid-area: media; margin-top: 1rem; }
}

/* ===========================
   READ MORE INDICATOR (in h2)
   Works for hover-open + focus-open
   =========================== */

.product-page-card.is-collapsible h2 {
  position: relative;
  padding-right: 6.5rem;
}

.product-page-card.is-collapsible h2::before {
  content: "Read More ";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: medium;
  opacity: 0.8;
  pointer-events: none;
}

.product-page-card.is-collapsible h2::after {
  content: "â–¾";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: medium;
  opacity: 0.8;
  transition: transform 0.25s ease;
  pointer-events: none;
}

/* Rotate arrow when opened */
@media (hover: hover) and (pointer: fine) {
  .product-page-card.is-collapsible:hover h2::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (hover: none) and (pointer: coarse) {
  .product-page-card.is-collapsible:focus h2::after,
  .product-page-card.is-collapsible:focus-within h2::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* ===========================
   TABLET / SMALL DESKTOP
   Stack to avoid cramped layout
   =========================== */

@media (max-width: 900px) {
  .product-card-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "media";
  }
}

/* ===========================
   MOBILE REFINEMENTS (sizes only)
   Closed state stays as-is (left then media)
   =========================== */

@media (max-width: 640px) {
  #laminated-glass-main {
    padding: 2rem 1.25rem 3rem;
  }

  .product-intro {
    text-align: left;
  }

  .product-page-card {
    padding: 1.3rem 1.15rem 1.4rem;
  }

  .product-page-card h2 {
    font-size: 1.1rem;
    padding-right: 5.5rem;
  }

  .product-card-media img {
    height: 220px;
    max-height: 220px;
  }
}


/* ===========================
   MOBILE TAP OPEN (CSS ONLY)
   Keep HTML unchanged
   =========================== */
@media (hover: none) and (pointer: coarse) {

  /* Allow the article to actually receive focus on tap */
  .product-page-card.is-collapsible {
    -webkit-tap-highlight-color: transparent;
  }

  /* Open on focus / focus-within */
  .product-page-card.is-collapsible:focus .product-card-body,
  .product-page-card.is-collapsible:focus-within .product-card-body {
    max-height: 1800px;
    opacity: 1;
    transform: translateY(0);
  }

  .product-page-card.is-collapsible:focus .product-card-cta,
  .product-page-card.is-collapsible:focus-within .product-card-cta {
    display: block;
  }

  /* Mobile open layout */
  .product-page-card.is-collapsible:focus .product-card-shell,
  .product-page-card.is-collapsible:focus-within .product-card-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "body"
      "cta"
      "media";
  }

  .product-page-card.is-collapsible:focus .product-card-left,
  .product-page-card.is-collapsible:focus-within .product-card-left {
    display: contents;
  }

  .product-page-card.is-collapsible:focus .product-card-left > h2,
  .product-page-card.is-collapsible:focus-within .product-card-left > h2 { grid-area: left; }

  .product-page-card.is-collapsible:focus .product-card-body,
  .product-page-card.is-collapsible:focus-within .product-card-body { grid-area: body; }

  .product-page-card.is-collapsible:focus .product-card-cta,
  .product-page-card.is-collapsible:focus-within .product-card-cta { grid-area: cta; margin-top: 1rem; }

  .product-page-card.is-collapsible:focus .product-card-media,
  .product-page-card.is-collapsible:focus-within .product-card-media { grid-area: media; margin-top: 1rem; }

  /* Optional: stop the image from "stealing" the tap sometimes */
  .product-card-media img {
    pointer-events: none;
  }

  /* Optional: allow the Contact Us button to still be clickable when open */
  .product-card-cta a,
  .product-card-cta button {
    pointer-events: auto;
  }
}

















/* ===========================
   DOUBLE GLAZING IMAGE LAYOUT
   =========================== */

.double-glazing-images {
  width: 100%;
  margin: 2.5rem 0;

  display: grid;
  grid-template-columns: 1fr 1fr;   /* FORCE TWO COLUMNS */
  gap: 1.5rem;

  align-items: center;
}

/* Make sure images do NOT break the grid */
.double-glazing-images img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;

  object-fit: contain;

  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.03);

  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.45);
}

/* Mobile fallback */
@media (max-width: 768px) {
  .double-glazing-images {
    grid-template-columns: 1fr;
  }
}


















/* ---------- FOOTER ---------- */
:root {
  --nhg-accent: #252e9a;  
  --nhg-footer-dark: #111827;
  --nhg-footer-darker: #020617;
}

/* --- TOP CTA STRIP --- */
.footer-cta {
  background: var(--nhg-accent);
  color: #ffffff;
  padding: 3rem 1rem 2.4rem;
  text-align: center;
}

.footer-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-cta h2 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
}

.footer-cta p {
  margin: 0 0 1.4rem;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* buttons in CTA */
.btn-cta-outline,
.btn-cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #ffffff;
}

.btn-cta-outline i,
.btn-cta-solid i {
  font-size: 0.95rem;
}

.btn-cta-outline:hover {
  background: rgba(15, 23, 42, 0.12);
}

.btn-cta-solid {
  background: #ffffff;
  color: var(--nhg-accent);
}

.btn-cta-solid:hover {
  background: #e5e7eb;
}

/* --- MIDDLE FOOTER --- */
.footer-main {
  background: var(--nhg-footer-dark);
  color: #e5e7eb;
  padding: 3rem 1rem 2.2rem;
}

.site-header,
.site-footer{
  position: relative;
  z-index: 10000;
}


.footer-main-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) repeat(3, minmax(0, 1.4fr));
  gap: 2.5rem;
}

.footer-col h4 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
}

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

.footer-col ul li {
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
}

.footer-col ul li a {
  color: #e5e7eb;
}

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

/* brand column */
.footer-brand p {
  margin: 0.7rem 0 1.1rem;
  font-size: 0.93rem;
  color: #d1d5db;
}

.footer-logo img {
  max-width: 140px;
  height: auto;
}

/* social icons */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--nhg-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.88rem;
}

.footer-socials a:hover {
  background: #1d297a;
}

/* contact list with icons */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.footer-contact-list i {
  margin-top: 0.05rem;
  font-size: 0.85rem;
}

/* --- BOTTOM STRIP --- */
.footer-bottom {
  background: var(--nhg-footer-darker);
  color: #9ca3af;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 900px) {
  .footer-main-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-main-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===========================
   HOMEPAGE REFRESH
   Scoped to index via body.home-page
   =========================== */

body.home-page {
  --hero-progress: 0;
  --hero-intro-distance: 44rem;
  --hero-scene-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(141, 176, 230, 0.28), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f8 42%, #f7f9fc 100%);
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, rgba(109, 145, 197, 0.08) 25%, rgba(109, 145, 197, 0) 25% 68%, rgba(109, 145, 197, 0.06) 68%);
  z-index: 0;
}

body.home-page .home-shell,
body.home-page .site-header,
body.home-page .site-footer {
  position: relative;
  z-index: 1;
}

body.home-page .navbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(145, 164, 194, 0.3);
  box-shadow: 0 18px 40px rgba(10, 30, 63, 0.08);
}

body.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  opacity: 0;
  transform: translateY(-4.5rem);
  transition: transform 120ms linear, opacity 120ms linear;
  pointer-events: auto;
}

body.home-page.hero-intro-active .site-header {
  position: fixed;
  opacity: clamp(0, calc((var(--hero-progress) - 0.08) / 0.34), 1);
  transform: translateY(calc((1 - var(--hero-progress)) * -4.5rem));
}

body.home-page.hero-intro-complete .site-header {
  position: absolute;
  top: calc(100% - var(--hero-scene-height));
  opacity: 1;
  transform: none;
}

body.home-page .top-bar,
body.home-page .top-bar-inner,
body.home-page .top-bar-left,
body.home-page .top-bar-center,
body.home-page .top-bar-right,
body.home-page .navbar-left {
  display: none !important;
}

body.home-page .hero-header-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

body.home-page .hero-header-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 146px;
  padding: 1rem 1.5rem 2.65rem;
  color: #17325e;
  background: linear-gradient(180deg, rgba(233, 241, 251, 0.96), rgba(219, 231, 247, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 0;
  box-shadow:
    0 25px 55px rgba(9, 29, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 71%, 91% 67%, 80% 66%, 68% 69%, 56% 75%, 42% 84%, 26% 92%, 12% 97%, 0 97%);
}

body.home-page .hero-header-main::after {
  content: "";
  position: absolute;
  inset: auto -3% -10px -5%;
  height: 136px;
  background:
    radial-gradient(130% 120% at 40% 0%, rgba(255, 255, 255, 0.58) 0 22%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

body.home-page .logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

body.home-page .logo img {
  height: 104px;
  width: auto;
  display: block;
}

body.home-page .hero-header-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  width: min(100%, 700px);
  justify-self: start;
  padding-left: 0;
  margin-left: 2rem;
}

body.home-page .hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

body.home-page .hero-contact-line a {
  color: #0f2442;
  font-weight: 700;
}

body.home-page .top-label {
  color: #4f6687;
}

body.home-page .hero-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-right: 1.6rem;
}

body.home-page .hero-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

body.home-page .hero-header-socials .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #15325e;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(141, 166, 202, 0.3);
}

body.home-page .hero-header-socials .social-icon i {
  color: #15325e;
}

body.home-page .nav-toggle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(111, 139, 181, 0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(220, 232, 248, 0.78));
  box-shadow: 0 14px 30px rgba(11, 31, 63, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

body.home-page .nav-toggle:hover,
body.home-page .nav-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 31, 63, 0.18);
}

body.home-page .nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #183978;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.home-page .site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.home-page .site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.home-page .site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.home-page .navbar {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0.35rem;
  width: min(420px, calc(100vw - 2.25rem));
  padding: 0 !important;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
  transform-origin: top right;
  display: block !important;
  overflow: visible;
  isolation: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 280ms ease;
}

/* ===========================
   SERVICES PAGE REFRESH
   Scoped to services via body.services-page
   =========================== */

body.services-page {
  font-family: "Inter", system-ui, sans-serif;
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(141, 176, 230, 0.28), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f8 42%, #f7f9fc 100%);
}

body.services-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, rgba(109, 145, 197, 0.08) 25%, rgba(109, 145, 197, 0) 25% 68%, rgba(109, 145, 197, 0.06) 68%);
  z-index: 0;
}

body.services-page .services-shell,
body.services-page .site-header,
body.services-page .site-footer {
  position: relative;
  z-index: 1;
}

body.services-page .logo span,
body.services-page h1,
body.services-page h2,
body.services-page h3,
body.services-page h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

body.services-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.services-page .top-bar,
body.services-page .top-bar-inner,
body.services-page .top-bar-left,
body.services-page .top-bar-center,
body.services-page .top-bar-right,
body.services-page .navbar-left {
  display: none !important;
}

body.services-page .hero-header-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

body.services-page .hero-header-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 146px;
  padding: 1rem 1.5rem 2.65rem;
  color: #17325e;
  background: linear-gradient(180deg, rgba(233, 241, 251, 0.96), rgba(219, 231, 247, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 0;
  box-shadow:
    0 25px 55px rgba(9, 29, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 71%, 91% 67%, 80% 66%, 68% 69%, 56% 75%, 42% 84%, 26% 92%, 12% 97%, 0 97%);
}

body.services-page .hero-header-main::after {
  content: "";
  position: absolute;
  inset: auto -3% -10px -5%;
  height: 136px;
  background:
    radial-gradient(130% 120% at 40% 0%, rgba(255, 255, 255, 0.58) 0 22%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

body.services-page .logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

body.services-page .logo img {
  height: 104px;
  width: auto;
  display: block;
}

body.services-page .hero-header-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  width: min(100%, 700px);
  justify-self: start;
  margin-left: 2rem;
}

body.services-page .hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

body.services-page .hero-contact-line a {
  color: #0f2442;
  font-weight: 700;
}

body.services-page .top-label {
  color: #4f6687;
}

body.services-page .hero-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-right: 1.6rem;
}

body.services-page .hero-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

body.services-page .hero-header-socials .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #15325e;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(141, 166, 202, 0.3);
}

body.services-page .hero-header-socials .social-icon i {
  color: #15325e;
}

body.services-page .nav-toggle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(111, 139, 181, 0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(220, 232, 248, 0.78));
  box-shadow: 0 14px 30px rgba(11, 31, 63, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

body.services-page .nav-toggle:hover,
body.services-page .nav-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 31, 63, 0.18);
}

body.services-page .nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #183978;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.services-page .site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.services-page .site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.services-page .site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.services-page .navbar {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0.35rem;
  width: min(420px, calc(100vw - 2.25rem));
  padding: 0 !important;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
  transform-origin: top right;
  display: block !important;
  overflow: visible;
  isolation: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 280ms ease;
}

body.services-page .site-header.menu-open .navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

body.services-page .site-header.menu-closing .navbar {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
}

body.services-page .navbar-inner {
  padding: 0;
}

body.services-page .nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.78rem;
  padding: 0;
}

body.services-page .nav-links > li {
  width: 100%;
  list-style: none;
}

body.services-page .nav-main-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fbff;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
  overflow: hidden;
  isolation: isolate;
}

body.services-page .nav-main-link::before,
body.services-page .nav-main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

body.services-page .nav-main-link::before {
  inset: 1px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  z-index: -1;
}

body.services-page .nav-main-link::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  z-index: -1;
}

body.services-page .nav-main-link:hover,
body.services-page .nav-main-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

/* HEADER OPEN STATE CHANGES */
/* DESKTOP ONLY */
/* DO NOT APPLY TO MOBILE */
@media (min-width: 721px) {
  body.services-page {
    --services-header-open-offset: 2rem;
    --services-header-bottom-pad: 2.65rem;
  }

  body.services-page .hero-header-shell {
    overflow: hidden;
  }

  body.services-page .hero-header-main {
    padding-bottom: var(--services-header-bottom-pad);
    transition:
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.services-page .hero-header-main::after {
    transition:
      inset 280ms cubic-bezier(0.22, 1, 0.36, 1),
      height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.services-page.nav-open .hero-header-main,
  body.services-page .site-header.menu-open .hero-header-main {
    padding-bottom: calc(var(--services-header-bottom-pad) + var(--services-header-open-offset));
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 91% 100%, 80% 100%, 68% 100%, 56% 100%, 42% 100%, 26% 100%, 12% 100%, 0 100%);
  }

  body.services-page.nav-open .hero-header-main::after,
  body.services-page .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 92px;
    opacity: 0.46;
  }

  body.services-page .navbar {
    top: auto;
    right: 1.5rem;
    bottom: 0.65rem;
    width: calc(50% - 1.5rem);
    max-width: 44rem;
    min-width: 0;
    transform: translate3d(0, 0.7rem, 0);
    transform-origin: bottom right;
  }

  body.services-page .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  body.services-page .site-header.menu-closing .navbar {
    transform: translate3d(0, 0.7rem, 0);
  }

  body.services-page .nav-links {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(0.4rem, 1vw, 1.15rem);
  }

  body.services-page .nav-links > li {
    width: auto;
    flex: 0 1 auto;
  }

  body.services-page .nav-main-link {
    width: auto;
    min-height: auto;
    justify-content: center;
    padding: 0.2rem 0 0.08rem;
    border: 0;
    border-radius: 0;
    color: #17325e;
    text-shadow: none;
    white-space: nowrap;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.72rem, 0.26vw + 0.68rem, 0.98rem);
    line-height: 1.15;
  }

  body.services-page .nav-main-link::before,
  body.services-page .nav-main-link::after {
    display: none;
  }

  body.services-page .nav-main-link:hover,
  body.services-page .nav-main-link:focus-visible {
    transform: translateY(-1px);
    color: #0d2445;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(23, 50, 94, 0.35);
  }
}

/* HEADER OPEN STATE CHANGES */
/* DESKTOP/TABLET TUNING ONLY */
/* DO NOT APPLY TO MOBILE */
@media (min-width: 721px) and (max-width: 1120px) {
  body.services-page {
    --services-header-bottom-pad: 2.2rem;
  }

  body.services-page .navbar {
    right: 1rem;
    bottom: 0.55rem;
    width: calc(50% - 1rem);
  }

  body.services-page .nav-links {
    gap: 0.5rem;
  }
}

body.services-page .services-hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
}

body.services-page .services-hero::before,
body.services-page .services-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(198, 219, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

body.services-page .services-hero::before {
  width: 28rem;
  height: 28rem;
  top: -9rem;
  right: -7rem;
  transform: rotate(38deg);
}

body.services-page .services-hero::after {
  width: 24rem;
  height: 24rem;
  bottom: -12rem;
  left: -7rem;
  transform: rotate(28deg);
}

body.services-page .services-hero-stage {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(145deg, rgba(10, 27, 51, 0.25), rgba(9, 18, 35, 0.42));
}

body.services-page .services-hero-bg,
body.services-page .services-hero-overlay {
  position: absolute;
  inset: 0;
}

body.services-page .services-hero-bg {
  background:
    linear-gradient(135deg, rgba(50, 50, 65, 0.3), rgba(7, 13, 22, 0.5)),
    url("../js/Wallpapers/NHG-Wallpaper-5.webp") center/cover no-repeat;
}

body.services-page .services-hero-overlay {
  background:
    linear-gradient(110deg, rgba(6, 17, 33, 0.72) 12%, rgba(7, 20, 39, 0.48) 44%, rgba(7, 20, 39, 0.7) 100%),
    linear-gradient(180deg, rgba(132, 177, 255, 0.18), rgba(12, 36, 70, 0.12));
}

body.services-page .services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 1.8rem;
  align-items: center;
  min-height: 100svh;
  padding-top: 10.5rem;
  padding-bottom: 4.5rem;
}

body.services-page .services-hero-copy {
  color: #f5f9ff;
}

body.services-page .services-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 0.98;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(7, 18, 35, 0.4);
}

body.services-page .services-hero-lead {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(238, 244, 255, 0.88);
  text-shadow: 0 8px 22px rgba(7, 18, 35, 0.3);
}

body.services-page .btn {
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

body.services-page .btn:hover,
body.services-page .btn:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

body.services-page .btn-primary,
body.services-page .btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  border-radius: 16px;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
}

body.services-page .btn-primary::before,
body.services-page .btn-primary::after,
body.services-page .btn-secondary::before,
body.services-page .btn-secondary::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body.services-page .btn-primary::before,
body.services-page .btn-secondary::before {
  inset: 1px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
}

body.services-page .btn-primary::after,
body.services-page .btn-secondary::after {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
}

body.services-page .btn-primary:hover,
body.services-page .btn-primary:focus-visible,
body.services-page .btn-secondary:hover,
body.services-page .btn-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.services-page .services-hero-actions {
  margin-top: 1.8rem;
}

body.services-page .services-hero-feature {
  position: relative;
  padding: 1.1rem;
  overflow: visible;
  isolation: isolate;
}

body.services-page .services-hero-feature::before,
body.services-page .services-hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

body.services-page .services-hero-feature::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.004) 44%, rgba(255, 255, 255, 0.13) 79%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.08));
}

body.services-page .services-hero-feature::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 12%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0) 42%);
}

body.services-page .services-feature-primary,
body.services-page .services-feature-secondary {
  margin: 0;
  overflow: hidden;
}

body.services-page .services-glass-stage {
  display: grid;
  place-items: center;
  min-height: 43rem;
  padding: 2rem;
  transform: translateX(2rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.services-page .services-glass-stage::before,
body.services-page .services-glass-stage::after {
  display: none;
}

body.services-page .services-glass-scene {
  position: relative;
  width: min(100%, 37rem);
  height: clamp(23rem, 41vw, 31rem);
  display: block;
  overflow: visible;
}

body.services-page .services-glass-scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
  touch-action: none;
  cursor: grab;
}

body.services-page .services-glass-scene canvas:active {
  cursor: grabbing;
}

body.services-page .services-feature-primary {
  border-radius: 22px;
  aspect-ratio: 1.08 / 0.92;
  box-shadow: 0 24px 42px rgba(7, 18, 35, 0.18);
}

body.services-page .services-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

body.services-page .services-feature-secondary {
  border-radius: 18px;
  aspect-ratio: 1 / 0.92;
  box-shadow: 0 18px 32px rgba(7, 18, 35, 0.12);
}

body.services-page .services-feature-primary img,
body.services-page .services-feature-secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.services-page .services-intro-section,
body.services-page .services-why-section,
body.services-page .services-processing-section,
body.services-page .services-products-section,
body.services-page .services-terms-section {
  position: relative;
}

body.services-page .services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  align-items: start;
}

body.services-page .services-intro-copy {
  max-width: none;
}

body.services-page .services-intro-panel {
  --services-intro-scroll-shift: 0px;
  padding: 1.2rem;
  will-change: transform;
}

body.services-page .services-intro-panel[data-reveal] {
  transform: translate3d(0, calc(28px + 1.5rem + var(--services-intro-scroll-shift)), 0) scale(0.985);
}

body.services-page .services-intro-panel[data-reveal].is-visible {
  transform: translate3d(0, calc(1.5rem + var(--services-intro-scroll-shift)), 0) scale(1);
}

body.services-page .services-intro-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.02 / 1.12;
  box-shadow: 0 24px 42px rgba(7, 18, 35, 0.16);
}

body.services-page .services-intro-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.services-page .services-intro-highlights {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

body.services-page .services-highlight-item {
  display: grid;
  gap: 0.18rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 38%, rgba(255, 255, 255, 0.16) 82%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.06), rgba(18, 49, 89, 0.08));
  border: 1px solid rgba(233, 244, 255, 0.54);
  box-shadow:
    0 16px 28px rgba(16, 43, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 28px rgba(255, 255, 255, 0.08);
}

body.services-page .services-highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5872a6;
}

body.services-page .services-highlight-item strong {
  color: #13253b;
}

body.services-page .services-process-card,
body.services-page .services-term-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.services-page .services-tabs-shell {
  --why-tab-bridge-left: 0px;
  --why-tab-bridge-width: 0px;
  position: relative;
  overflow: visible;
}

body.services-page .services-tabs-shell::before {
  content: "";
  position: absolute;
  inset: 2.8rem 1.4rem -1.2rem;
  border-radius: 34px;
  background: radial-gradient(circle at top, rgba(183, 212, 248, 0.16), rgba(183, 212, 248, 0) 62%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

body.services-page .services-why-tab-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.26rem;
  align-items: end;
  margin-bottom: -1.05rem;
  overflow: visible;
}

body.services-page .services-why-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.3rem;
  padding: 1rem 1.15rem 1.18rem;
  border-radius: 30px 30px 18px 18px;
  border: 1px solid rgba(225, 237, 252, 0.96);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(232, 241, 252, 0.36)),
    linear-gradient(135deg, rgba(194, 228, 248, 0.14), rgba(18, 49, 89, 0.05));
  box-shadow:
    0 10px 20px rgba(17, 40, 73, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(124%);
  -webkit-backdrop-filter: blur(14px) saturate(124%);
  color: #21406a;
  cursor: pointer;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    background 280ms ease,
    color 280ms ease;
  overflow: visible;
}

body.services-page .services-why-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.12) 14%, rgba(255, 255, 255, 0.025) 28%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

body.services-page .services-why-tab:hover,
body.services-page .services-why-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 229, 248, 0.94);
  box-shadow:
    0 14px 24px rgba(17, 40, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

body.services-page .services-why-tab:focus-visible {
  outline: 2px solid rgba(49, 92, 175, 0.4);
  outline-offset: 2px;
}

body.services-page .services-why-tab.is-active {
  z-index: 6;
  transform: translateY(0.78rem);
  color: #13253b;
  border-color: rgba(238, 246, 255, 0.98);
  border-bottom-color: transparent;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 255, 0.76)),
    linear-gradient(135deg, rgba(196, 230, 250, 0.16), rgba(18, 49, 89, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.services-page .services-why-tab.is-active .services-why-tab-number {
  box-shadow: 0 10px 18px rgba(21, 56, 117, 0.14);
}

body.services-page .services-why-tab.is-active .services-why-tab-label {
  color: #21395f;
}

body.services-page .services-why-tab.is-active::after {
  content: "";
  position: absolute;
  left: -0.35rem;
  right: -0.35rem;
  bottom: -1.25rem;
  height: 1.55rem;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 255, 0.82)),
    linear-gradient(135deg, rgba(196, 230, 250, 0.14), rgba(18, 49, 89, 0.04));
  border-left: 1px solid rgba(238, 246, 255, 0.98);
  border-right: 1px solid rgba(238, 246, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 16px rgba(16, 43, 77, 0.03);
  pointer-events: none;
  z-index: -1;
}

body.services-page .services-why-tab-number {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(35, 71, 148, 0.96), rgba(67, 112, 196, 0.88));
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(21, 56, 117, 0.18);
}

body.services-page .services-why-tab-label {
  text-align: left;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
}

body.services-page .services-why-panel-shell {
  position: relative;
  margin-top: 0;
  padding: 3rem 2rem 2.15rem;
  min-height: 24rem;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 255, 0.78)),
    linear-gradient(135deg, rgba(192, 228, 248, 0.15), rgba(18, 49, 89, 0.05));
  border: 1px solid rgba(239, 246, 255, 0.98);
  border-radius: 30px;
  box-shadow:
    0 24px 44px rgba(16, 43, 77, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

body.services-page .services-why-panel-shell::before {
  content: "";
  position: absolute;
  top: -1.7rem;
  left: calc(var(--why-tab-bridge-left) - 0.35rem);
  width: calc(var(--why-tab-bridge-width) + 0.7rem);
  height: 2.05rem;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 255, 0.82)),
    linear-gradient(135deg, rgba(196, 230, 250, 0.12), rgba(18, 49, 89, 0.04));
  border: 1px solid rgba(239, 246, 255, 0.98);
  border-bottom: 0;
  box-shadow:
    0 -4px 10px rgba(16, 43, 77, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    left 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease;
  z-index: 1;
}

body.services-page .services-why-panel-shell::after {
  content: "";
  position: absolute;
  top: -0.08rem;
  left: 1.2rem;
  right: 1.2rem;
  width: auto;
  max-width: none;
  height: 1.15rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.68) 18%, rgba(255, 255, 255, 0.48) 82%, rgba(255, 255, 255, 0.18));
  filter: blur(3px);
  opacity: 0.86;
  pointer-events: none;
  z-index: 2;
}

body.services-page .services-why-panel-content {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-page .services-why-panel-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.services-page .services-why-panel-view {
  position: relative;
  min-height: 18rem;
}

body.services-page .services-why-panel-view::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(18rem, 38%);
  height: 7rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

body.services-page .services-why-panel-view::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.5rem;
  height: 7rem;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 50% 100%, rgba(198, 223, 252, 0.34), rgba(198, 223, 252, 0) 58%),
    radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 42%);
  opacity: 0.7;
  pointer-events: none;
}

body.services-page .services-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

body.services-page .card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 70, 139, 0.08);
  border: 1px solid rgba(37, 70, 139, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a4d90;
}

body.services-page .services-card-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #214594, #3c72cb);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

body.services-page .services-why-panel-view h3,
body.services-page .services-process-card h3,
body.services-page .services-term-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
  color: #13253b;
}

body.services-page .services-why-panel-view p,
body.services-page .services-process-card p,
body.services-page .services-term-card p {
  margin: 1rem 0 0;
  line-height: 1.78;
  color: #52627a;
}

body.services-page .services-why-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

body.services-page .services-why-logos img {
  width: clamp(92px, 20vw, 132px);
  height: auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 221, 241, 0.9);
  padding: 0.65rem;
  box-shadow: 0 14px 24px rgba(14, 38, 71, 0.08);
}

body.services-page .services-processing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.25rem;
  align-items: start;
}

body.services-page .services-edge-panel {
  --services-processing-scroll-shift: 0px;
  padding: 1.2rem;
  will-change: transform;
}

body.services-page .services-edge-panel[data-reveal] {
  transform: translate3d(0, calc(28px + 1.5rem + var(--services-processing-scroll-shift)), 0) scale(0.985);
}

body.services-page .services-edge-panel[data-reveal].is-visible {
  transform: translate3d(0, calc(1.5rem + var(--services-processing-scroll-shift)), 0) scale(1);
}

body.services-page .edge-profiles-highlight {
  margin: 0;
  padding: 1.4rem 1.35rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(241, 247, 255, 0.32)),
    linear-gradient(135deg, rgba(199, 225, 247, 0.22), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 30px rgba(16, 43, 77, 0.08);
}

body.services-page .edge-profiles-header {
  text-align: left;
  max-width: 52rem;
  margin: 0;
}

body.services-page .cards-title-big-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  color: #10243a;
}

body.services-page .edge-profiles-subtitle {
  margin-top: 0.55rem;
  line-height: 1.7;
  color: #52627a;
}

body.services-page .edge-profiles {
  margin-top: 1rem;
  padding: 0;
  border-top: 0;
}

body.services-page .edge-profiles .edge-profile-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(159, 179, 208, 0.18);
}

body.services-page .edge-profiles .edge-profile-row:last-child {
  border-bottom: 0;
}

body.services-page .edge-profiles .edge-profile-name {
  color: #13253b;
}

body.services-page .edge-profiles .edge-profile-desc {
  color: #5b6e87;
}

body.services-page .edge-profiles img.edge-profile-img {
  border-radius: 16px;
  border: 1px solid rgba(214, 229, 249, 0.86);
  box-shadow: 0 12px 22px rgba(12, 34, 63, 0.12);
  cursor: zoom-in;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease;
}

body.services-page .edge-profiles img.edge-profile-img:hover,
body.services-page .edge-profiles img.edge-profile-img:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(12, 34, 63, 0.16);
  border-color: rgba(96, 135, 197, 0.92);
  outline: none;
}

body.services-page .edge-profile-zoom-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(7, 18, 35, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  z-index: 120;
}

body.services-page .edge-profile-zoom-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.services-page .edge-profile-zoom-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 245, 255, 0.88)),
    linear-gradient(135deg, rgba(192, 228, 248, 0.16), rgba(18, 49, 89, 0.05));
  border: 1px solid rgba(239, 246, 255, 0.96);
  box-shadow:
    0 24px 44px rgba(16, 43, 77, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: scale(0.96);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-page .edge-profile-zoom-backdrop.is-open .edge-profile-zoom-frame {
  transform: scale(1);
}

body.services-page .edge-profile-zoom-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(200vw, calc(100vw - 4rem));
  max-height: calc(100vh - 4rem);
  border-radius: 18px;
  border: 1px solid rgba(214, 229, 249, 0.92);
  box-shadow: 0 18px 30px rgba(12, 34, 63, 0.16);
}

body.services-page .services-processing-stack {
  display: grid;
  gap: 1rem;
}

body.services-page .services-process-card {
  padding: 1.5rem;
}

body.services-page .cards-title {
  font-size: 1.28rem;
}

body.services-page .cards-text {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #52627a;
  padding-left: 0;
}

body.services-page .services-products-section .section-heading-split > .btn {
  min-width: 9.75rem;
  line-height: 1.2;
  text-align: center;
  align-self: center;
}

body.services-page .services-products-section .services-products-cta {
  min-width: auto;
  min-height: 4.25rem;
  padding: 1.25rem 1.9rem;
  border-radius: 20px;
  line-height: 1.1;
  white-space: nowrap;
  background: linear-gradient(135deg, #2a4eab, #17357e);
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(23, 53, 126, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: none;
}

body.services-page .services-products-section .services-products-cta-mobile {
  display: none;
  margin-top: 1.25rem;
}

body.services-page .services-products-section .services-products-cta::before,
body.services-page .services-products-section .services-products-cta::after {
  display: none;
}

body.services-page .services-products-section .services-products-cta:hover,
body.services-page .services-products-section .services-products-cta:focus-visible {
  background: linear-gradient(135deg, #315bc2, #18336f);
  box-shadow: 0 24px 50px rgba(23, 53, 126, 0.34);
  border-color: rgba(255, 255, 255, 0.16);
}

body.services-page .product-category-grid-home {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

body.services-page .product-category-card {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 48px rgba(11, 29, 54, 0.12);
  isolation: isolate;
}

body.services-page .product-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.05), rgba(5, 12, 24, 0.72)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

body.services-page .product-category-card:hover::before {
  transform: scale(1.04);
}

body.services-page .product-category-card:hover,
body.services-page .product-category-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(11, 29, 54, 0.18);
}

body.services-page .product-category-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-page .product-category-card:hover .product-category-overlay {
  transform: translateY(-6px);
}

body.services-page .product-category-overlay h3 {
  margin: 0;
  max-width: 14ch;
  font-size: 1.45rem;
  line-height: 1.08;
  color: #ffffff;
}

body.services-page .product-category-tag {
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #eef4ff;
}

body.services-page .product-category-card:nth-child(1) {
  grid-column: span 5;
}

body.services-page .product-category-card:nth-child(2) {
  grid-column: span 4;
}

body.services-page .product-category-card:nth-child(3) {
  grid-column: span 3;
}

body.services-page .product-category-card:nth-child(4) {
  grid-column: span 7;
}

body.services-page .product-category-card:nth-child(5) {
  grid-column: span 5;
}

body.services-page .services-terms-panel {
  padding: 2rem;
}

body.services-page .services-terms-intro {
  max-width: 54rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

body.services-page .services-terms-intro p {
  margin: 0;
  line-height: 1.8;
  color: #52627a;
}

body.services-page .services-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.services-page .services-term-card {
  padding: 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(221, 234, 250, 0.92);
  box-shadow:
    0 20px 34px rgba(15, 35, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.services-page .services-term-card .list-TC {
  max-width: none;
  margin: 0.9rem 0 0;
}

body.services-page .services-term-card .list-TC li {
  justify-content: flex-start;
  font-size: 0.94rem;
}

body.services-page .footer-cta {
  padding: 4.25rem 1rem 3.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #183778, #264ca5 58%, #315fc8);
}

body.services-page .footer-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.services-page .footer-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(235, 243, 255, 0.88);
}

body.services-page .footer-cta-actions {
  margin-top: 1.6rem;
}

body.services-page .btn-cta-solid,
body.services-page .btn-cta-outline {
  min-width: 185px;
  min-height: 52px;
  border-radius: 999px;
}

body.services-page .btn-cta-solid {
  box-shadow: 0 18px 35px rgba(8, 23, 55, 0.18);
}

body.services-page .footer-main {
  background:
    linear-gradient(180deg, rgba(11, 20, 36, 0.92), rgba(6, 12, 22, 0.98)),
    #0b1424;
  padding: 3.5rem 1rem 2.6rem;
}

body.services-page .footer-main-inner {
  gap: 2rem;
}

body.services-page .footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

body.services-page .footer-col ul li {
  margin-bottom: 0.65rem;
}

body.services-page .footer-logo img {
  max-width: 152px;
  border-radius: 0;
}

body.services-page .footer-brand p {
  max-width: 340px;
  line-height: 1.75;
}

body.services-page .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(46, 87, 173, 0.2);
  border: 1px solid rgba(143, 174, 228, 0.2);
}

@media (max-width: 1024px) {
  body.services-page .hero-header-main {
    grid-template-columns: 138px minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 128px;
    padding: 0.9rem 1rem 2.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 90% 70%, 78% 69%, 64% 73%, 48% 82%, 28% 91%, 0 91%);
  }

  body.services-page .hero-header-socials {
    display: none;
  }

  body.services-page .services-hero-grid,
  body.services-page .services-intro-grid,
  body.services-page .services-processing-layout {
    grid-template-columns: 1fr;
  }

  body.services-page .services-hero-feature {
    max-width: 42rem;
    width: 100%;
    justify-self: center;
  }

  body.services-page .services-terms-grid {
    grid-template-columns: 1fr;
  }

  body.services-page .services-why-tab-row {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.45rem;
    margin-bottom: -0.85rem;
    scrollbar-width: thin;
  }

  body.services-page .services-why-tab {
    flex: 0 0 min(17rem, 70vw);
  }

  body.services-page .section-heading-split {
    flex-direction: column;
    align-items: flex-start;
  }

  body.services-page .product-category-card:nth-child(1),
  body.services-page .product-category-card:nth-child(2),
  body.services-page .product-category-card:nth-child(3),
  body.services-page .product-category-card:nth-child(4),
  body.services-page .product-category-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  body.services-page .site-header {
    top: 0;
  }

  body.services-page .hero-header-main {
    grid-template-columns: 126px minmax(0, 1fr) auto;
    align-items: start;
    min-height: 132px;
    padding: 0.7rem 0.75rem 1.8rem;
    border-radius: 0 0 16px 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 75%, 72% 74%, 54% 79%, 34% 88%, 16% 94%, 0 94%);
  }

  body.services-page .logo img {
    height: 108px;
  }

  body.services-page .hero-header-contact {
    gap: 0.24rem;
    margin-left: 0;
    padding-top: 0.1rem;
  }

  body.services-page .hero-contact-line {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body.services-page .hero-header-contact > .hero-contact-line:first-child {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 0.45rem;
    row-gap: 0.24rem;
    align-items: center;
    justify-content: start;
  }

  body.services-page .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  body.services-page .navbar {
    top: calc(100% - 0.25rem);
    right: 0;
    width: min(320px, calc(100vw - 1rem));
    border-radius: 20px;
  }

  body.services-page .services-hero-grid {
    min-height: 100svh;
    padding-top: 12.5rem;
    padding-bottom: 4rem;
  }

  body.services-page .services-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  body.services-page .services-hero-lead {
    line-height: 1.7;
  }

  body.services-page .services-hero-actions,
  body.services-page .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.services-page .services-hero-actions {
    justify-items: center;
    width: max-content;
    max-width: 100%;
    justify-self: center;
    margin-inline: auto;
  }

  body.services-page .btn,
  body.services-page .btn-cta-solid,
  body.services-page .btn-cta-outline {
    width: 100%;
  }

  body.services-page .services-hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  body.services-page .services-hero-feature,
  body.services-page .services-intro-panel,
  body.services-page .services-terms-panel {
    padding: 1.4rem;
    border-radius: 22px;
  }

  body.services-page .services-glass-stage {
    min-height: 34rem;
    padding: 1.5rem;
    transform: none;
  }

  body.services-page .services-products-section .section-heading-split > .services-products-cta {
    display: none;
  }

  body.services-page .services-products-section .services-products-cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  body.services-page .services-feature-grid,
  body.services-page .product-category-grid-home {
    grid-template-columns: 1fr;
  }

  body.services-page .product-category-card:nth-child(1),
  body.services-page .product-category-card:nth-child(2),
  body.services-page .product-category-card:nth-child(3),
  body.services-page .product-category-card:nth-child(4),
  body.services-page .product-category-card:nth-child(5) {
    grid-column: auto;
  }

  body.services-page .services-process-card,
  body.services-page .services-term-card {
    padding: 1.35rem;
  }

  body.services-page .services-why-panel-shell {
    padding: 2.45rem 1.45rem 1.45rem;
  }

  body.services-page .services-why-tab {
    flex-basis: min(15.5rem, 78vw);
    min-height: 4.5rem;
    padding: 0.9rem 0.95rem 1rem;
  }

  body.services-page .services-why-tab.is-active {
    transform: translateY(0.58rem);
  }

  body.services-page .services-why-tab.is-active::after {
    bottom: -1rem;
    height: 1.25rem;
  }

  body.services-page .services-why-tab-label {
    font-size: 1rem;
  }

  body.services-page .footer-cta-actions {
    justify-items: center;
    gap: 0.1rem;
  }

  body.services-page .footer-cta-actions .btn-cta-solid,
  body.services-page .footer-cta-actions .btn-cta-outline {
    width: min(100%, 18rem);
  }
}

body.home-page .navbar::before,
body.home-page .navbar::after {
  display: none;
}

body.home-page .site-header.menu-open .navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

body.home-page .site-header.menu-closing .navbar {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
}

body.home-page .navbar-inner {
  padding: 0;
}

body.home-page .nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.78rem;
  padding: 0;
}

body.home-page .nav-links > li {
  width: 100%;
  list-style: none;
}

body.home-page .nav-main-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fbff;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
  overflow: hidden;
  isolation: isolate;
}

body.home-page .nav-main-link::before,
body.home-page .nav-main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

body.home-page .nav-main-link::before {
  inset: 1px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  z-index: -1;
}

body.home-page .nav-main-link::after {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  z-index: -1;
}

body.home-page .nav-main-link:hover,
body.home-page .nav-main-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

/* HEADER OPEN STATE CHANGES */
/* DESKTOP ONLY */
/* DO NOT APPLY TO MOBILE */
@media (min-width: 721px) {
  body.home-page {
    --home-header-open-offset: 2rem;
    --home-header-bottom-pad: 2.65rem;
  }

  body.home-page .hero-header-shell {
    overflow: visible;
  }

  body.home-page .hero-header-main {
    padding-bottom: var(--home-header-bottom-pad);
    transition:
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home-page .hero-header-main::after {
    transition:
      inset 280ms cubic-bezier(0.22, 1, 0.36, 1),
      height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home-page .site-header.menu-open .hero-header-main {
    padding-bottom: calc(var(--home-header-bottom-pad) + var(--home-header-open-offset));
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 91% 100%, 80% 100%, 68% 100%, 56% 100%, 42% 100%, 26% 100%, 12% 100%, 0 100%);
  }

  body.home-page .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 92px;
    opacity: 0.46;
  }

  body.home-page .navbar {
    top: auto;
    right: 1.5rem;
    bottom: 0.65rem;
    width: calc(50% - 1.5rem);
    max-width: 44rem;
    min-width: 0;
    transform: translate3d(0, 0.7rem, 0);
    transform-origin: bottom right;
  }

  body.home-page .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  body.home-page .site-header.menu-closing .navbar {
    transform: translate3d(0, 0.7rem, 0);
  }

  body.home-page .nav-links {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(0.4rem, 1vw, 1.15rem);
  }

  body.home-page .nav-links > li {
    width: auto;
    flex: 0 1 auto;
  }

  body.home-page .nav-main-link {
    width: auto;
    min-height: auto;
    justify-content: center;
    padding: 0.2rem 0 0.08rem;
    border: 0;
    border-radius: 0;
    color: #17325e;
    text-shadow: none;
    white-space: nowrap;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.72rem, 0.26vw + 0.68rem, 0.98rem);
    line-height: 1.15;
  }

  body.home-page .nav-main-link::before,
  body.home-page .nav-main-link::after {
    display: none;
  }

  body.home-page .nav-main-link:hover,
  body.home-page .nav-main-link:focus-visible {
    transform: translateY(-1px);
    color: #0d2445;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(23, 50, 94, 0.35);
  }

  body.home-page .nav-products-item {
    position: relative;
  }

  body.home-page .nav-products-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    z-index: 19;
    height: 1.05rem;
  }

  body.home-page .nav-products-submenu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    z-index: 20;
    display: block !important;
    width: min(18.5rem, calc(100vw - 2rem));
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    border: 1px solid rgba(138, 160, 193, 0.34);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(221, 233, 248, 0.96));
    box-shadow:
      0 22px 42px rgba(9, 29, 61, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 0.45rem, 0);
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 180ms ease;
  }

  body.home-page .nav-products-item:hover .nav-products-submenu,
  body.home-page .nav-products-item:focus-within .nav-products-submenu,
  body.home-page .nav-products-item.is-expanded .nav-products-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
  }

  body.home-page .nav-products-submenu li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.22);
  }

  body.home-page .nav-products-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.72rem 0.9rem;
    border-radius: 10px;
    color: #17325e;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  body.home-page .nav-products-submenu a:hover,
  body.home-page .nav-products-submenu a:focus-visible {
    color: #0d2445;
    background: rgba(255, 255, 255, 0.66);
    outline: none;
  }
}

/* HEADER OPEN STATE CHANGES */
/* DESKTOP/TABLET TUNING ONLY */
/* DO NOT APPLY TO MOBILE */
@media (min-width: 721px) and (max-width: 1120px) {
  body.home-page {
    --home-header-bottom-pad: 2.2rem;
  }

  body.home-page .navbar {
    right: 1rem;
    bottom: 0.55rem;
    width: calc(50% - 1rem);
  }

  body.home-page .nav-links {
    gap: 0.5rem;
  }
}

body.home-page .logo span,
body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

.home-container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-section {
  position: relative;
  padding: 5.5rem 0;
}

.home-section::before {
  content: "";
  position: absolute;
  inset: 1.5rem auto auto 50%;
  width: min(460px, 58vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(87, 124, 171, 0), rgba(87, 124, 171, 0.4), rgba(87, 124, 171, 0));
  pointer-events: none;
}

.intro-section {
  margin-top: -4.75rem;
  padding-top: 8rem;
  z-index: 2;
  opacity: clamp(0, calc((var(--hero-progress) - 0.12) / 0.4), 1);
  transform: translateY(calc((1 - var(--hero-progress)) * 7rem));
  transition: transform 120ms linear, opacity 120ms linear;
}

.intro-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4.8rem;
  height: 9.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 245, 252, 0.98)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  clip-path: polygon(0 70%, 10% 76%, 22% 82%, 37% 86%, 54% 84%, 70% 78%, 86% 72%, 100% 68%, 100% 100%, 0 100%);
  box-shadow: 0 -24px 40px rgba(10, 28, 54, 0.08);
  pointer-events: none;
  z-index: -1;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 246, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 30px 60px rgba(16, 43, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 26px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-kicker,
.hero-kicker,
.panel-eyebrow,
.footer-cta-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #36569b;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #122033;
}

.section-copy {
  margin: 1rem 0 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.75;
  color: #52627a;
}

body.home-page .hero {
  position: relative;
  padding: 0;
  min-height: calc(var(--hero-scene-height) + var(--hero-intro-distance));
  background: transparent;
  overflow: clip;
}

.hero-stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  min-height: var(--hero-scene-height);
  height: var(--hero-scene-height);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10, 27, 51, 0.25), rgba(9, 18, 35, 0.42));
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: none;
  transition: none;
  will-change: transform;
}

body.home-page.hero-intro-active .hero-stage {
  position: fixed;
  top: 0;
  bottom: auto;
  z-index: 1;
}

body.home-page.hero-intro-complete .hero-stage {
  position: absolute;
  top: auto;
  bottom: 0;
}

body.home-page .hero::before,
body.home-page .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(198, 219, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

body.home-page .hero::before {
  width: 28rem;
  height: 28rem;
  top: -9rem;
  right: -7rem;
  transform: rotate(38deg);
}

body.home-page .hero::after {
  width: 24rem;
  height: 24rem;
  bottom: -12rem;
  left: -7rem;
  transform: rotate(28deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(6, 17, 33, 0.68) 12%, rgba(7, 20, 39, 0.46) 44%, rgba(7, 20, 39, 0.68) 100%),
    linear-gradient(180deg, rgba(132, 177, 255, 0.18), rgba(12, 36, 70, 0.12));
  z-index: 1;
}

.hero-welcome {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  opacity: calc(1 - min(1, var(--hero-progress) * 1.35));
  transform: translateY(calc(var(--hero-progress) * -2rem));
  pointer-events: none;
}

.hero-welcome-title {
  margin: 0;
  max-width: min(88vw, 1200px);
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 0.94;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(7, 18, 35, 0.46);
}

.hero-welcome-intro,
.hero-welcome-brand {
  display: block;
}

.hero-welcome-intro {
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-welcome-brand {
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  font-weight: 700;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  opacity: clamp(0, calc((var(--hero-progress) - 0.28) / 0.42), 1);
  transform: translateY(calc(4rem + ((1 - var(--hero-progress)) * 2.75rem)));
  transition: opacity 120ms linear, transform 120ms linear;
}

.hero-copy,
.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  width: min(100%, 1320px);
  padding: clamp(1.75rem, 3vw, 3rem);
  color: #f5f9ff;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-copy::before,
.hero-panel::before,
.socials-panel::before,
.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-copy::before {
  display: none;
}

.hero-title-wrap {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.hero-content-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}

body.home-page .hero-title {
  margin: 0 auto;
  max-width: min(78vw, 1320px);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 0.98;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(7, 18, 35, 0.4);
}

.hero-title-primary,
.hero-title-secondary {
  display: block;
}

.hero-title-primary {
  font-size: 1.08em;
}

.hero-title-secondary {
  font-size: 0.92em;
}

.hero-subtitle {
  margin: 1.1rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(236, 243, 255, 0.96);
  text-shadow: 0 8px 24px rgba(7, 18, 35, 0.32);
}

body.home-page .hero-text {
  max-width: 58ch;
  margin: 1.35rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(238, 244, 255, 0.88);
  text-shadow: 0 8px 22px rgba(7, 18, 35, 0.3);
}

body.home-page .hero-actions {
  margin-top: 1.8rem;
  gap: 0.9rem;
  justify-content: center;
}

body.home-page .btn {
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

body.home-page .btn:hover,
body.home-page .btn:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

body.home-page .btn-primary {
  background: linear-gradient(135deg, #2a4eab, #17357e);
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(23, 53, 126, 0.28);
}

body.home-page .btn-primary:hover,
body.home-page .btn-primary:focus-visible {
  background: linear-gradient(135deg, #315bc2, #18336f);
  box-shadow: 0 24px 50px rgba(23, 53, 126, 0.34);
}

body.home-page .hero-actions .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  border-radius: 16px;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
}

body.home-page .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: -1;
}

body.home-page .hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body.home-page .hero-actions .btn-primary:hover,
body.home-page .hero-actions .btn-primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  border: 1px solid rgba(230, 238, 251, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.intro-card .btn-secondary {
  width: fit-content;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #214594, #315fc8);
  border-color: rgba(33, 69, 148, 0.12);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(33, 69, 148, 0.18);
}

.intro-card .btn-secondary:hover,
.intro-card .btn-secondary:focus-visible {
  background: linear-gradient(135deg, #214594, #315fc8);
}

.intro-card.glass-panel,
.socials-panel.glass-panel {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.004) 0%, rgba(255, 255, 255, 0.008) 36%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.05), rgba(18, 49, 89, 0.07));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(7, 18, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 36px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(122%);
  -webkit-backdrop-filter: blur(8px) saturate(122%);
  overflow: hidden;
  isolation: isolate;
}

.intro-card.glass-panel::before,
.socials-panel.glass-panel::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.004) 44%, rgba(255, 255, 255, 0.13) 79%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.08));
}

.intro-card.glass-panel::after,
.socials-panel.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 12%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.trust-item strong,
.social-card strong {
  display: block;
  font-size: 0.98rem;
  color: #ffffff;
}

.trust-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(235, 242, 255, 0.8);
}

.about-trust {
  margin: 1.4rem 0 1.6rem;
}

.section-heading .about-trust {
  max-width: 720px;
}

.about-trust .trust-item {
  position: relative;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(160, 182, 210, 0.28);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease;
  transform-origin: center;
  will-change: transform;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 38%, rgba(255, 255, 255, 0.16) 82%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.06), rgba(18, 49, 89, 0.08));
  border: 1px solid rgba(233, 244, 255, 0.54);
  box-shadow:
    0 16px 28px rgba(16, 43, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 28px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(124%);
  -webkit-backdrop-filter: blur(8px) saturate(124%);
}

.about-trust .trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.006) 44%, rgba(255, 255, 255, 0.14) 82%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.about-trust .trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.1) 12%, rgba(255, 255, 255, 0.025) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.about-trust .trust-item strong {
  color: #13253b;
}

.about-trust .trust-item span {
  color: #52627a;
}

.about-trust .trust-item:hover,
.about-trust .trust-item:focus-within {
  transform: scale(1.045);
  border-color: rgba(241, 248, 255, 0.68);
  box-shadow:
    0 22px 38px rgba(16, 43, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 34px rgba(255, 255, 255, 0.1);
}

.hero-points li,
.inline-link,
.footer-contact-list li,
.social-card span,
.value-chip p {
  color: #52627a;
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.55;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #325fc9, #7db4ff);
  box-shadow: 0 0 0 5px rgba(50, 95, 201, 0.1);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.intro-card {
  padding: 2rem;
}

.intro-card > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: #40546d;
}

.intro-values {
  display: grid;
  gap: 0.95rem;
  margin: 1.5rem 0 1.6rem;
}

.value-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(160, 182, 210, 0.28);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease;
  transform-origin: center;
  will-change: transform;
}

.value-chip:hover,
.value-chip:focus-within {
  transform: scale(1.03);
  border-color: rgba(120, 156, 214, 0.42);
  box-shadow: 0 18px 32px rgba(16, 43, 77, 0.1);
}

.value-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #214594, #3c72cb);
  color: #ffffff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.95rem;
}

.value-chip h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.value-chip p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
}

.services-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 3rem;
  padding: 0;
  align-items: stretch;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.services-copy {
  display: grid;
  align-content: start;
  padding-left: 0.2rem;
}

.service-accordion-item {
  border-bottom: 1px solid rgba(159, 179, 208, 0.22);
}

.service-accordion-item:first-child {
  border-top: 1px solid rgba(159, 179, 208, 0.22);
}

.service-accordion-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: #13253b;
  text-align: left;
  cursor: pointer;
}

.service-accordion-meta,
.service-accordion-title {
  display: block;
  grid-column: 1;
}

.service-accordion-meta {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5872a6;
}

.service-accordion-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
}

.service-accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.service-accordion-icon::before,
.service-accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #183978;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-accordion-item.is-active .service-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.service-accordion-body {
  max-width: 34rem;
  padding: 0 0 1.35rem;
}

.service-accordion-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #52627a;
}

.service-accordion-body .inline-link {
  margin-top: 1rem;
}

.services-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 640px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(208, 221, 239, 0.45), rgba(230, 237, 247, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 30px 60px rgba(16, 43, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  justify-self: end;
}

.service-stage-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 320ms ease,
    clip-path 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.02);
}

.service-stage-image.is-active,
.service-stage-image.is-previous {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.service-stage-image.is-previous {
  z-index: 1;
}

.service-stage-image.is-active {
  z-index: 2;
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.service-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 20, 39, 0.18)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 38%);
  pointer-events: none;
}

body.home-page .card-tag,
.product-category-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 70, 139, 0.08);
  border: 1px solid rgba(37, 70, 139, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a4d90;
}

.service-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #13253b;
}

.service-card p {
  margin: 1rem 0 0.95rem;
  line-height: 1.75;
  color: #52627a;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-weight: 700;
  color: #22479a;
}

.inline-link::after {
  content: "\2192";
  animation: inline-arrow-nudge 1.6s ease-in-out infinite;
  transition: transform 200ms ease;
}

.service-card:hover .inline-link::after {
  transform: translateX(4px);
}

@keyframes inline-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

.service-media {
  margin-top: 1.2rem;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
}

.service-media img,
.gallery-item img,
.product-category-card::before {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-media img {
  transform: scale(1.03);
}

.product-range-section {
  padding-top: 4.8rem;
}

.product-range-section .section-heading-split > .btn {
  min-width: 9.75rem;
  padding: 1rem 1.55rem;
  line-height: 1.2;
  text-align: center;
  align-self: center;
}

@media (min-width: 1025px) {
  body.home-page .product-range-section .section-heading-split > .btn {
    min-width: auto;
    min-height: 4.25rem;
    padding: 1.25rem 1.9rem;
    border-radius: 20px;
    line-height: 1.1;
    white-space: nowrap;
  }
}

body.home-page .product-category-grid-home {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

body.home-page .product-category-card {
  position: relative;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 48px rgba(11, 29, 54, 0.12);
  isolation: isolate;
}

body.home-page .product-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.05), rgba(5, 12, 24, 0.72)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

body.home-page .product-category-card:hover::before {
  transform: scale(1.04);
}

body.home-page .product-category-card:hover .product-category-overlay {
  transform: translateY(-6px);
}

body.home-page .product-category-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .product-category-overlay h3 {
  margin: 0;
  max-width: 14ch;
  font-size: 1.45rem;
  line-height: 1.08;
  color: #ffffff;
}

body.home-page .product-category-tag {
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #eef4ff;
}

body.home-page .product-category-card:nth-child(1) {
  grid-column: span 5;
}

body.home-page .product-category-card:nth-child(2) {
  grid-column: span 4;
}

body.home-page .product-category-card:nth-child(3) {
  grid-column: span 3;
}

body.home-page .product-category-card:nth-child(4) {
  grid-column: span 7;
}

body.home-page .product-category-card:nth-child(5) {
  grid-column: span 5;
}

.gallery-copy {
  max-width: 420px;
  margin: 0;
  text-align: right;
}

body.home-page .gallery-grid {
  display: none;
}

.gallery-section {
  overflow: hidden;
}

.gallery-wheel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 2.25rem;
  overflow: hidden;
  min-height: clamp(320px, 28vw, 430px);
  padding: clamp(2.25rem, 3vw, 3rem) 0 clamp(2.5rem, 3.2vw, 3.25rem);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 6%, rgba(0, 0, 0, 1) 14%, rgba(0, 0, 0, 1) 86%, rgba(0, 0, 0, 0.55) 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 6%, rgba(0, 0, 0, 1) 14%, rgba(0, 0, 0, 1) 86%, rgba(0, 0, 0, 0.55) 94%, transparent 100%);
}

body.home-page .gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1vw, 1rem);
  width: max-content;
  padding: 0 clamp(0.75rem, 1vw, 1rem);
  will-change: transform;
}

body.home-page .gallery-item,
body.home-page .gallery-item-wide,
body.home-page .gallery-item-tall {
  position: relative;
  flex: 0 0 clamp(88px, 7.3vw, 150px);
  width: clamp(88px, 7.3vw, 150px);
  height: clamp(170px, 18vw, 250px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(13, 35, 65, 0.12);
  background: #dce6f3;
  opacity: 0.72;
  transform: scale(0.94);
  transform-origin: center center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .gallery-item::after,
body.home-page .gallery-item-wide::after,
body.home-page .gallery-item-tall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(4, 16, 34, 0.14));
}

body.home-page .gallery-item.is-center,
body.home-page .gallery-item-wide.is-center,
body.home-page .gallery-item-tall.is-center {
  opacity: 1;
  transform: scale(1.36);
  box-shadow: 0 30px 58px rgba(13, 35, 65, 0.24);
  filter: saturate(1.08);
  z-index: 3;
}

body.home-page .gallery-item:hover img,
body.home-page .gallery-item-wide:hover img,
body.home-page .gallery-item-tall:hover img {
  transform: scale(1.04);
}

body.home-page .gallery-item img,
body.home-page .gallery-item-wide img,
body.home-page .gallery-item-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .gallery-track:hover .gallery-item:not(.is-center),
body.home-page .gallery-track:hover .gallery-item-wide:not(.is-center),
body.home-page .gallery-track:hover .gallery-item-tall:not(.is-center) {
  filter: saturate(0.9);
}

body.home-page .gallery-item.is-entering,
body.home-page .gallery-item-wide.is-entering,
body.home-page .gallery-item-tall.is-entering {
  opacity: 0.22;
}

.socials-panel {
  padding: 2rem;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(160, 182, 210, 0.28);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(15, 35, 64, 0.12);
  border-color: rgba(76, 119, 186, 0.3);
}

.social-card-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.social-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-card span {
  display: block;
  margin-top: 0.3rem;
  line-height: 1.55;
  font-size: 0.92rem;
}

.social-card strong {
  color: #10243a;
}

body.home-page .footer-cta {
  padding: 4.25rem 1rem 3.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #183778, #264ca5 58%, #315fc8);
}

body.home-page .footer-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.home-page .footer-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(235, 243, 255, 0.88);
}

body.home-page .footer-cta-actions {
  margin-top: 1.6rem;
}

body.home-page .btn-cta-solid,
body.home-page .btn-cta-outline {
  min-width: 185px;
  min-height: 52px;
  border-radius: 999px;
}

body.home-page .btn-cta-solid {
  box-shadow: 0 18px 35px rgba(8, 23, 55, 0.18);
}

body.home-page .footer-main {
  background:
    linear-gradient(180deg, rgba(11, 20, 36, 0.92), rgba(6, 12, 22, 0.98)),
    #0b1424;
  padding: 3.5rem 1rem 2.6rem;
}

body.home-page .footer-main-inner {
  gap: 2rem;
}

body.home-page .footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

body.home-page .footer-col ul li {
  margin-bottom: 0.65rem;
}

body.home-page .footer-logo img {
  max-width: 152px;
  border-radius: 0;
}

body.home-page .footer-brand p {
  max-width: 340px;
  line-height: 1.75;
}

body.home-page .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(46, 87, 173, 0.2);
  border: 1px solid rgba(143, 174, 228, 0.2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body.home-page {
    --hero-progress: 1;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.home-page .btn,
  .service-card,
  .social-card,
  body.home-page .product-category-card,
  body.home-page .gallery-item,
  .service-media img,
  body.home-page .gallery-item img,
  .inline-link::after {
    transition: none;
  }

  body.home-page .site-header,
  .hero-stage,
  .hero-welcome,
  .hero-grid,
  .intro-section {
    transition: none;
    transform: none;
  }

  body.home-page .site-header {
    position: absolute;
  }

  body.home-page .hero-stage {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
  }
}

@media (max-width: 1024px) {
  body.home-page .site-header {
    top: 0;
  }

  body.home-page .hero-header-main {
    grid-template-columns: 138px minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 128px;
    padding: 0.9rem 1rem 2.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 90% 70%, 78% 69%, 64% 73%, 48% 82%, 28% 91%, 0 91%);
  }

  body.home-page .hero-header-socials {
    display: none;
  }

  .intro-grid,
  .socials-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-spotlight {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .services-visual {
    min-height: 440px;
    order: -1;
    justify-self: stretch;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-copy {
    text-align: left;
  }

  body.home-page .product-category-card:nth-child(1),
  body.home-page .product-category-card:nth-child(2),
  body.home-page .product-category-card:nth-child(3),
  body.home-page .product-category-card:nth-child(4),
  body.home-page .product-category-card:nth-child(5),
  body.home-page .gallery-item,
  body.home-page .gallery-item-wide,
  body.home-page .gallery-item-tall {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  body.home-page.nav-open .hero,
  body.home-page.nav-open .hero-stage,
  body.services-page.nav-open .services-hero,
  body.services-page.nav-open .services-hero-stage,
  body.products-page.nav-open .products-hero,
  body.products-page.nav-open .products-hero-stage {
    overflow: visible;
  }

  .home-container {
    width: min(100% - 1.25rem, 1180px);
  }

  body.home-page {
    --hero-intro-distance: 32rem;
    --hero-scene-height: 128svh;
  }

  .intro-section {
    margin-top: -2.2rem;
    padding-top: 6rem;
  }

  .intro-section::after {
    top: -1.8rem;
    height: 4.6rem;
    clip-path: polygon(0 72%, 14% 79%, 30% 84%, 50% 86%, 70% 82%, 86% 76%, 100% 70%, 100% 100%, 0 100%);
  }

  body.home-page .site-header {
    top: 0;
  }

  .hero-stage {
    padding: 0;
  }

  body.home-page .hero-header-shell {
    width: 100%;
    overflow: visible;
  }

  body.home-page .hero-header-main {
    grid-template-columns: 126px minmax(0, 1fr) auto;
    align-items: start;
    min-height: 132px;
    padding: 0.7rem 0.75rem 1.8rem;
    border-radius: 0 0 16px 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 75%, 72% 74%, 54% 79%, 34% 88%, 16% 94%, 0 94%);
    transition:
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home-page .hero-header-main::after {
    transition:
      inset 280ms cubic-bezier(0.22, 1, 0.36, 1),
      height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home-page .logo img {
    height: 108px;
  }

  body.home-page .hero-header-contact {
    gap: 0.24rem;
    padding-top: 0.1rem;
    padding-left: 0;
  }

  body.home-page .hero-contact-line {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body.home-page .hero-header-contact > .hero-contact-line:first-child {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 0.45rem;
    row-gap: 0.24rem;
    align-items: center;
    justify-content: start;
  }

  body.home-page .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  body.home-page .navbar {
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(233, 241, 251, 0.98), rgba(219, 231, 247, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-top: none !important;
    box-shadow:
      0 25px 55px rgba(9, 29, 61, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: translate3d(0, -0.85rem, 0);
    transform-origin: top center;
  }

  body.home-page .site-header.menu-open .hero-header-main {
    padding-bottom: 0.95rem;
    border-radius: 0;
    clip-path: inset(0);
  }

  body.home-page .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 76px;
    opacity: 0.34;
  }

  body.home-page .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  body.home-page .site-header.menu-closing .navbar {
    transform: translate3d(0, -0.85rem, 0);
  }

  body.home-page .nav-links {
    gap: 0;
  }

  body.home-page .nav-links > li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.28);
  }

  body.home-page .nav-main-link {
    justify-content: center;
    min-height: 58px;
    padding: 1rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #17325e;
    text-align: center;
    text-shadow: none;
    letter-spacing: 0.14em;
  }

  body.home-page .nav-main-link::before,
  body.home-page .nav-main-link::after {
    display: none;
  }

  body.home-page .nav-main-link:hover,
  body.home-page .nav-main-link:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: none;
    color: #102a52;
  }

  body.home-page .nav-products-submenu {
    display: block !important;
    max-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    opacity: 0;
    background: rgba(247, 251, 255, 0.58);
    transform: translateY(-0.25rem);
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home-page .nav-products-item.is-expanded .nav-products-submenu {
    max-height: 360px;
    opacity: 1;
    border-top: 1px solid rgba(137, 160, 193, 0.2);
    transform: translateY(0);
  }

  body.home-page .nav-products-submenu li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.18);
  }

  body.home-page .nav-products-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    color: #24416d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body.home-page .nav-products-submenu a:hover,
  body.home-page .nav-products-submenu a:focus-visible {
    color: #102a52;
    background: rgba(255, 255, 255, 0.36);
  }

  .home-section {
    padding: 4.25rem 0;
  }

  .services-spotlight {
    padding: 0;
    gap: 1rem;
  }

  .service-accordion-toggle {
    padding: 0.95rem 0;
  }

  .service-accordion-title {
    font-size: 1.25rem;
  }

  .service-accordion-body {
    padding-bottom: 1.1rem;
  }

  .services-visual {
    order: 2;
    min-height: 320px;
    border-radius: 0;
  }

  body.home-page .hero {
    min-height: calc(var(--hero-scene-height) + var(--hero-intro-distance));
    padding: 0;
  }

  .hero-grid {
    min-height: var(--hero-scene-height);
    padding-top: 9.5rem;
    padding-bottom: 6rem;
    transform: translateY(calc(0.75rem + ((1 - var(--hero-progress)) * 1.75rem)));
  }

  .hero-copy,
  .intro-card,
  .socials-panel {
    padding: 1.4rem;
    border-radius: 22px;
  }

  body.home-page .hero-title {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  body.home-page .hero-text {
    max-width: 34ch;
    line-height: 1.65;
  }

  .hero-welcome-intro {
    margin-bottom: 0.25rem;
    font-size: clamp(1.4rem, 5.4vw, 2rem);
  }

  .hero-welcome-brand {
    font-size: clamp(2.8rem, 11.5vw, 4.5rem);
  }

  body.home-page .hero-actions,
  body.home-page .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.home-page .hero-actions {
    justify-items: center;
  }

  body.home-page .footer-cta-actions {
    justify-items: center;
    gap: 0.1rem;
  }

  body.home-page .btn,
  body.home-page .btn-cta-solid,
  body.home-page .btn-cta-outline {
    width: 100%;
  }

  body.home-page .hero-actions .btn-primary {
    width: fit-content;
    max-width: 100%;
  }

  body.home-page .footer-cta-actions .btn-cta-solid,
  body.home-page .footer-cta-actions .btn-cta-outline {
    width: min(100%, 18rem);
  }

  body.home-page .product-category-grid-home,
  body.home-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .product-range-section .product-category-grid-home + .btn {
    margin-top: 1.25rem;
  }

  body.home-page .product-category-card:nth-child(1),
  body.home-page .product-category-card:nth-child(2),
  body.home-page .product-category-card:nth-child(3),
  body.home-page .product-category-card:nth-child(4),
  body.home-page .product-category-card:nth-child(5),
  body.home-page .gallery-item,
  body.home-page .gallery-item-wide,
  body.home-page .gallery-item-tall {
    grid-column: auto;
  }

  body.home-page .gallery-item,
  body.home-page .gallery-item-wide,
  body.home-page .gallery-item-tall {
    width: clamp(112px, 24vw, 156px);
    flex-basis: clamp(112px, 24vw, 156px);
    height: clamp(150px, 38vw, 220px);
    aspect-ratio: auto;
  }

  .gallery-wheel {
    min-height: clamp(390px, 92vw, 480px);
    padding-top: 3.2rem;
    padding-bottom: 3rem;
  }

  body.home-page .navbar-inner {
    padding: 0.7rem 0.95rem;
  }

  body.home-page .logo {
    gap: 0.5rem;
  }

  body.home-page .logo img {
    height: 108px;
  }
}

/* ===========================
   PRODUCTS PAGE REFRESH
   Scoped to products via body.products-page
   =========================== */

body.products-page {
  font-family: "Inter", system-ui, sans-serif;
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(141, 176, 230, 0.28), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f8 42%, #f7f9fc 100%);
}

body.products-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, rgba(109, 145, 197, 0.08) 25%, rgba(109, 145, 197, 0) 25% 68%, rgba(109, 145, 197, 0.06) 68%);
  z-index: 0;
}

body.products-page .products-shell,
body.products-page .site-header,
body.products-page .site-footer {
  position: relative;
  z-index: 1;
}

body.products-page .logo span,
body.products-page h1,
body.products-page h2,
body.products-page h3,
body.products-page h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

body.products-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

body.products-page .top-bar,
body.products-page .top-bar-inner,
body.products-page .top-bar-left,
body.products-page .top-bar-center,
body.products-page .top-bar-right,
body.products-page .navbar-left {
  display: none !important;
}

body.products-page .hero-header-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

body.products-page .hero-header-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 146px;
  padding: 1rem 1.5rem 2.65rem;
  color: #17325e;
  background: linear-gradient(180deg, rgba(233, 241, 251, 0.96), rgba(219, 231, 247, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 0;
  box-shadow:
    0 25px 55px rgba(9, 29, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 71%, 91% 67%, 80% 66%, 68% 69%, 56% 75%, 42% 84%, 26% 92%, 12% 97%, 0 97%);
}

body.products-page .hero-header-main::after {
  content: "";
  position: absolute;
  inset: auto -3% -10px -5%;
  height: 136px;
  background:
    radial-gradient(130% 120% at 40% 0%, rgba(255, 255, 255, 0.58) 0 22%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

body.products-page .logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

body.products-page .logo img {
  height: 104px;
  width: auto;
  display: block;
}

body.products-page .hero-header-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  width: min(100%, 700px);
  justify-self: start;
  margin-left: 2rem;
}

body.products-page .hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

body.products-page .hero-contact-line a {
  color: #0f2442;
  font-weight: 700;
}

body.products-page .top-label {
  color: #4f6687;
}

body.products-page .hero-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-right: 1.6rem;
}

body.products-page .hero-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

body.products-page .hero-header-socials .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #15325e;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(141, 166, 202, 0.3);
}

body.products-page .hero-header-socials .social-icon i {
  color: #15325e;
}

body.products-page .nav-toggle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(111, 139, 181, 0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(220, 232, 248, 0.78));
  box-shadow: 0 14px 30px rgba(11, 31, 63, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

body.products-page .nav-toggle:hover,
body.products-page .nav-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 31, 63, 0.18);
}

body.products-page .nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #183978;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.products-page .site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.products-page .site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.products-page .site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.products-page .navbar {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0.35rem;
  width: min(420px, calc(100vw - 2.25rem));
  padding: 0 !important;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
  transform-origin: top right;
  display: block !important;
  overflow: visible;
  isolation: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 280ms ease;
}

body.products-page .site-header.menu-open .navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

body.products-page .site-header.menu-closing .navbar {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
}

body.products-page .navbar-inner {
  padding: 0;
}

body.products-page .nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.78rem;
  padding: 0;
}

body.products-page .nav-links > li {
  width: 100%;
  list-style: none;
}

body.products-page .nav-main-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fbff;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
  overflow: hidden;
  isolation: isolate;
}

body.products-page .nav-main-link::before,
body.products-page .nav-main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

body.products-page .nav-main-link::before {
  inset: 1px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  z-index: -1;
}

body.products-page .nav-main-link::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  z-index: -1;
}

body.products-page .nav-main-link:hover,
body.products-page .nav-main-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.products-page .products-hero {
  position: relative;
  overflow: hidden;
  min-height: 44rem;
}

body.products-page .products-hero::before,
body.products-page .products-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  pointer-events: none;
}

body.products-page .products-hero::before {
  width: 22rem;
  height: 22rem;
  top: 8.5rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(164, 199, 244, 0.36) 0%, rgba(164, 199, 244, 0) 72%);
}

body.products-page .products-hero::after {
  width: 20rem;
  height: 20rem;
  bottom: 1rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72%);
}

body.products-page .products-hero-stage {
  position: relative;
  min-height: 44rem;
}

body.products-page .products-hero-bg,
body.products-page .products-hero-overlay {
  position: absolute;
  inset: 0;
}

body.products-page .products-hero-bg {
  background:
    linear-gradient(135deg, rgba(21, 46, 88, 0.2), rgba(7, 13, 22, 0.52)),
    url("images/Products2-wallpaper.webp") center/cover no-repeat;
  transform: scale(1.03);
}

body.products-page .products-hero-overlay {
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.02), rgba(9, 26, 54, 0.44)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 38%);
}

body.products-page .products-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 44rem;
  display: grid;
  align-items: end;
  padding-top: 13rem;
  padding-bottom: 9.5rem;
}

body.products-page .products-hero-copy {
  position: relative;
  max-width: 34rem;
  min-height: 54px;
  padding: 1.7rem 1.85rem;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

body.products-page .products-hero-copy::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: -1;
}

body.products-page .products-hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body.products-page .products-hero-copy:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.products-page .products-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 0.98;
  color: #f8fbff;
  position: relative;
  z-index: 1;
}

body.products-page .products-range-section {
  margin-top: -6.25rem;
  padding-top: 0;
  z-index: 2;
}

body.products-page .products-range-section::before {
  display: none;
}

body.products-page .product-category-grid-2 {
  max-width: none;
  padding: 0;
  gap: 1.2rem;
}

body.products-page .product-category-cards {
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 50px rgba(13, 35, 65, 0.14);
  overflow: hidden;
  isolation: isolate;
}

body.products-page .product-category-cards::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(54, 88, 184, 0.12), rgba(33, 61, 139, 0.34)),
    linear-gradient(180deg, rgba(5, 12, 24, 0.05), rgba(5, 12, 24, 0.72)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 38%);
  pointer-events: none;
}

body.products-page .product-category-cards:hover,
body.products-page .product-category-cards:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px rgba(13, 35, 65, 0.18);
  filter: brightness(1.02);
  border-color: rgba(255, 255, 255, 0.42);
}

body.products-page .product-card-overlay {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 1.55rem;
  background: transparent;
}

body.products-page .product-card-title {
  margin-bottom: 1rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

body.products-page .product-lines {
  gap: 0.7rem;
}

body.products-page .product-line {
  align-items: flex-start;
}

body.products-page .product-name {
  font-size: 0.97rem;
  line-height: 1.45;
}

body.products-page .mini-view-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.products-page .mini-view-btn:hover,
body.products-page .mini-view-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

body.products-page .btn-prod.btn-prod-primary.btn-prod-wide {
  background: linear-gradient(135deg, rgba(42, 78, 171, 0.92), rgba(23, 53, 126, 0.92));
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 34px rgba(11, 31, 63, 0.2);
}

body.products-page .btn-prod.btn-prod-primary.btn-prod-wide:hover,
body.products-page .btn-prod.btn-prod-primary.btn-prod-wide:focus-visible {
  background: linear-gradient(135deg, rgba(49, 91, 194, 0.96), rgba(24, 51, 111, 0.96));
}

body.products-page .products-services-section {
  padding-top: 4.8rem;
}

body.products-page .products-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.products-page .products-service-card {
  padding: 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 30px 60px rgba(16, 43, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

body.products-page .products-service-card .card-header {
  margin-bottom: 0.75rem;
}

body.products-page .products-service-card .card-title {
  font-size: 1.4rem;
  line-height: 1.05;
}

body.products-page .products-service-card .card-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #52627a;
}

body.products-page .products-service-card .card-media {
  max-height: none;
  opacity: 1;
  transform: none;
  margin-top: 1.15rem;
}

body.products-page .products-service-card .card-media img {
  height: 250px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(12, 34, 63, 0.14);
}

body.products-page .products-services-cta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

body.products-page .products-services-cta .btn-primary {
  min-width: 14rem;
  min-height: 3.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a4eab, #17357e);
  box-shadow: 0 18px 40px rgba(23, 53, 126, 0.28);
}

body.products-page .footer-cta {
  padding: 4.25rem 1rem 3.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #183778, #264ca5 58%, #315fc8);
}

body.products-page .footer-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.products-page .footer-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(235, 243, 255, 0.88);
}

body.products-page .footer-cta-actions {
  margin-top: 1.6rem;
}

body.products-page .btn-cta-solid,
body.products-page .btn-cta-outline {
  min-width: 185px;
  min-height: 52px;
  border-radius: 999px;
}

body.products-page .btn-cta-solid {
  box-shadow: 0 18px 35px rgba(8, 23, 55, 0.18);
}

body.products-page .footer-main {
  background:
    linear-gradient(180deg, rgba(11, 20, 36, 0.92), rgba(6, 12, 22, 0.98)),
    #0b1424;
  padding: 3.5rem 1rem 2.6rem;
}

body.products-page .footer-main-inner {
  gap: 2rem;
}

body.products-page .footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

body.products-page .footer-col ul li {
  margin-bottom: 0.65rem;
}

body.products-page .footer-logo img {
  max-width: 152px;
  border-radius: 0;
}

body.products-page .footer-brand p {
  max-width: 340px;
  line-height: 1.75;
}

body.products-page .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(46, 87, 173, 0.2);
  border: 1px solid rgba(143, 174, 228, 0.2);
}

@media (min-width: 721px) {
  body.products-page {
    --products-header-open-offset: 2rem;
    --products-header-bottom-pad: 2.65rem;
  }

  body.products-page .hero-header-shell {
    overflow: hidden;
  }

  body.products-page .hero-header-main {
    padding-bottom: var(--products-header-bottom-pad);
    transition:
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.products-page .hero-header-main::after {
    transition:
      inset 280ms cubic-bezier(0.22, 1, 0.36, 1),
      height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.products-page .site-header.menu-open .hero-header-main {
    padding-bottom: calc(var(--products-header-bottom-pad) + var(--products-header-open-offset));
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 91% 100%, 80% 100%, 68% 100%, 56% 100%, 42% 100%, 26% 100%, 12% 100%, 0 100%);
  }

  body.products-page .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 92px;
    opacity: 0.46;
  }

  body.products-page .navbar {
    top: auto;
    right: 1.5rem;
    bottom: 0.65rem;
    width: calc(50% - 1.5rem);
    max-width: 44rem;
    min-width: 0;
    transform: translate3d(0, 0.7rem, 0);
    transform-origin: bottom right;
  }

  body.products-page .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  body.products-page .site-header.menu-closing .navbar {
    transform: translate3d(0, 0.7rem, 0);
  }

  body.products-page .nav-links {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(0.4rem, 1vw, 1.15rem);
  }

  body.products-page .nav-links > li {
    width: auto;
    flex: 0 1 auto;
  }

  body.products-page .nav-main-link {
    width: auto;
    min-height: auto;
    justify-content: center;
    padding: 0.2rem 0 0.08rem;
    text-align: center;
    border: 0;
    border-radius: 0;
    color: #17325e;
    text-shadow: none;
    white-space: nowrap;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.72rem, 0.26vw + 0.68rem, 0.98rem);
    line-height: 1.15;
  }

  body.products-page .nav-main-link::before,
  body.products-page .nav-main-link::after {
    display: none;
  }

  body.products-page .nav-main-link:hover,
  body.products-page .nav-main-link:focus-visible {
    transform: translateY(-1px);
    color: #0d2445;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(23, 50, 94, 0.35);
  }
}

@media (max-width: 1024px) {
  body.products-page .hero-header-main {
    grid-template-columns: 138px minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 128px;
    padding: 0.9rem 1rem 2.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 90% 70%, 78% 69%, 64% 73%, 48% 82%, 28% 91%, 0 91%);
  }

  body.products-page .hero-header-socials {
    display: none;
  }

  body.products-page .products-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.products-page .site-header {
    top: 0;
  }

  body.products-page .hero-header-main {
    grid-template-columns: 126px minmax(0, 1fr) auto;
    align-items: start;
    min-height: 132px;
    padding: 0.7rem 0.75rem 1.8rem;
    border-radius: 0 0 16px 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 75%, 72% 74%, 54% 79%, 34% 88%, 16% 94%, 0 94%);
  }

  body.products-page .logo img {
    height: 108px;
  }

  body.products-page .hero-header-contact {
    gap: 0.24rem;
    margin-left: 0;
    padding-top: 0.1rem;
  }

  body.products-page .hero-contact-line {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body.products-page .hero-header-contact > .hero-contact-line:first-child {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 0.45rem;
    row-gap: 0.24rem;
    align-items: center;
    justify-content: start;
  }

  body.products-page .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  body.products-page .navbar {
    top: calc(100% - 0.25rem);
    right: 0;
    width: min(320px, calc(100vw - 1rem));
    border-radius: 20px;
  }

  body.products-page .products-hero,
  body.products-page .products-hero-stage,
  body.products-page .products-hero-grid {
    min-height: 34rem;
  }

  body.products-page .products-hero-grid {
    padding-top: 11.5rem;
    padding-bottom: 6.5rem;
  }

  body.products-page .products-hero-copy {
    padding: 1.4rem;
    border-radius: 22px;
  }

  body.products-page .products-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  body.products-page .products-range-section {
    margin-top: -4.25rem;
  }

  body.products-page .product-category-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  body.products-page .product-card-overlay,
  body.products-page .products-service-card {
    padding: 1.35rem;
    border-radius: 22px;
  }

  body.products-page .product-line {
    gap: 0.65rem;
  }

  body.products-page .mini-view-btn {
    padding-inline: 0.7rem;
  }

  body.products-page .products-services-cta,
  body.products-page .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.1rem;
  }

  body.products-page .products-services-cta .btn-primary,
  body.products-page .footer-cta-actions .btn-cta-solid,
  body.products-page .footer-cta-actions .btn-cta-outline {
    width: min(100%, 18rem);
  }
}

/* ===========================
   LAMINATED GLASS LISTING + DETAIL
   Scoped to laminated/body.products-page variants
   =========================== */

body.products-page.laminated-page .laminated-hero {
  position: relative;
  overflow: hidden;
  min-height: 46rem;
}

body.products-page.laminated-page .laminated-hero::before,
body.products-page.laminated-page .laminated-hero::after,
body.products-page.product-detail-page .laminated-detail-top::before,
body.products-page.product-detail-page .laminated-detail-top::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

body.products-page.laminated-page .laminated-hero::before {
  width: 24rem;
  height: 24rem;
  top: 7.5rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(164, 199, 244, 0.34) 0%, rgba(164, 199, 244, 0) 72%);
}

body.products-page.laminated-page .laminated-hero::after {
  width: 20rem;
  height: 20rem;
  bottom: 1rem;
  left: -5rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72%);
}

body.products-page.laminated-page .laminated-hero-stage {
  position: relative;
  min-height: 46rem;
}

body.products-page.laminated-page .laminated-hero-bg,
body.products-page.laminated-page .laminated-hero-overlay {
  position: absolute;
  inset: 0;
}

body.products-page.laminated-page .laminated-hero-bg {
  background:
    linear-gradient(135deg, rgba(21, 46, 88, 0.16), rgba(7, 13, 22, 0.58)),
    url("images/Laminated-glass-background.webp") center/cover no-repeat;
  transform: scale(1.03);
}

body.products-page.laminated-page .laminated-hero-overlay {
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.04), rgba(8, 23, 48, 0.62)),
    linear-gradient(112deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(26, 74, 145, 0.18), transparent 56%);
}

body.products-page.laminated-page .laminated-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 46rem;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  align-items: end;
  gap: 1.35rem;
  padding-top: 13.5rem;
  padding-bottom: 6.8rem;
}

body.products-page.laminated-page .laminated-hero-copy,
body.products-page.laminated-page .laminated-hero-panel,
body.products-page.laminated-page .laminated-selection-panel,
body.products-page.laminated-page .laminated-product-card,
body.products-page.laminated-page .laminated-info-card,
body.products-page.product-detail-page .laminated-detail-image,
body.products-page.product-detail-page .laminated-detail-body,
body.products-page.product-detail-page .laminated-application-card,
body.products-page.product-detail-page .laminated-detail-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.015) 36%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.06), rgba(18, 49, 89, 0.08));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 24px 48px rgba(7, 18, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 36px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(122%);
  -webkit-backdrop-filter: blur(8px) saturate(122%);
}

body.products-page.laminated-page .laminated-hero-copy::before,
body.products-page.laminated-page .laminated-hero-panel::before,
body.products-page.laminated-page .laminated-selection-panel::before,
body.products-page.laminated-page .laminated-product-card::before,
body.products-page.laminated-page .laminated-info-card::before,
body.products-page.product-detail-page .laminated-detail-image::before,
body.products-page.product-detail-page .laminated-detail-body::before,
body.products-page.product-detail-page .laminated-application-card::before,
body.products-page.product-detail-page .laminated-detail-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.004) 44%, rgba(255, 255, 255, 0.13) 79%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

body.products-page.laminated-page .laminated-hero-copy::after,
body.products-page.laminated-page .laminated-hero-panel::after,
body.products-page.laminated-page .laminated-selection-panel::after,
body.products-page.laminated-page .laminated-product-card::after,
body.products-page.laminated-page .laminated-info-card::after,
body.products-page.product-detail-page .laminated-detail-image::after,
body.products-page.product-detail-page .laminated-detail-body::after,
body.products-page.product-detail-page .laminated-application-card::after,
body.products-page.product-detail-page .laminated-detail-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 12%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

body.products-page.laminated-page .laminated-hero-copy,
body.products-page.laminated-page .laminated-hero-panel {
  color: #f7fbff;
}

body.products-page.laminated-page .laminated-hero-copy {
  max-width: 44rem;
  padding: clamp(1.6rem, 2.5vw, 2.25rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.products-page.laminated-page .laminated-hero-copy::before,
body.products-page.laminated-page .laminated-hero-copy::after {
  display: none;
}

body.products-page.laminated-page .laminated-hero-copy > *,
body.products-page.laminated-page .laminated-hero-panel > * {
  position: relative;
  z-index: 1;
}

body.products-page.laminated-page .laminated-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.97;
  color: #f8fbff;
}

body.products-page.laminated-page .laminated-hero-copy .section-kicker {
  color: #ffffff;
}

body.products-page.laminated-page .laminated-hero-text {
  margin: 1.15rem 0 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(238, 244, 255, 0.9);
}

body.products-page.laminated-page .laminated-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

body.products-page.laminated-page .laminated-hero-actions .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 16px;
  font-weight: 700;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
}

body.products-page.laminated-page .laminated-hero-actions .btn-primary,
body.products-page.laminated-page .laminated-card-link {
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
}

body.products-page.laminated-page .laminated-hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: -1;
}

body.products-page.laminated-page .laminated-hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body.products-page.laminated-page .laminated-hero-actions .btn:hover,
body.products-page.laminated-page .laminated-hero-actions .btn:focus-visible {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.products-page.laminated-page .laminated-hero-actions .btn-primary:hover,
body.products-page.laminated-page .laminated-hero-actions .btn-primary:focus-visible,
body.products-page.laminated-page .laminated-card-link:hover,
body.products-page.laminated-page .laminated-card-link:focus-visible {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.products-page.laminated-page .laminated-hero-actions .btn-secondary {
  color: #f8fbff;
}

body.products-page.laminated-page .laminated-hero-actions .btn-secondary:hover,
body.products-page.laminated-page .laminated-hero-actions .btn-secondary:focus-visible {
  color: #f8fbff;
}

body.products-page.laminated-page .laminated-hero-panel {
  padding: 1.45rem;
  align-self: end;
  justify-self: center;
  margin-bottom: 0.35rem;
}

body.products-page.laminated-page .laminated-benefits {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

body.products-page.laminated-page .laminated-benefits li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(236, 243, 255, 0.88);
  line-height: 1.68;
}

body.products-page.laminated-page .laminated-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #78a8ff, #d8ebff);
  box-shadow: 0 0 0 5px rgba(127, 177, 255, 0.14);
}

body.products-page.laminated-page .laminated-catalog-section {
  margin-top: -5rem;
  padding-top: 0;
  z-index: 2;
}

body.products-page.laminated-page .laminated-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.3rem;
  align-items: start;
}

body.products-page.laminated-page .laminated-catalog-section .section-heading {
  padding-top: 6.5rem;
}

body.products-page.laminated-page .laminated-selection-panel,
body.products-page.laminated-page .laminated-info-card {
  padding: 1.8rem;
}

body.products-page.laminated-page .laminated-selection-panel {
  --laminated-selection-scroll-shift: 0px;
  margin-top: 1.5rem;
}

body.products-page.laminated-page .laminated-selection-panel[data-reveal] {
  transform: translate3d(0, calc(28px + var(--laminated-selection-scroll-shift)), 0) scale(0.985);
}

body.products-page.laminated-page .laminated-selection-panel[data-reveal].is-visible {
  transform: translate3d(0, var(--laminated-selection-scroll-shift), 0) scale(1);
}

body.products-page.laminated-page .laminated-stat {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(160, 182, 210, 0.26);
}

body.products-page.laminated-page .laminated-stat + .laminated-stat {
  margin-top: 0.85rem;
}

body.products-page.laminated-page .laminated-stat strong,
body.products-page.product-detail-page .laminated-detail-tag {
  display: block;
  color: #13253b;
}

body.products-page.laminated-page .laminated-stat span {
  display: block;
  margin-top: 0.35rem;
  color: #52627a;
  line-height: 1.6;
}

body.products-page.laminated-page .laminated-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

body.products-page.laminated-page .laminated-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease;
}

body.products-page.laminated-page .laminated-product-card:hover,
body.products-page.laminated-page .laminated-product-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(241, 248, 255, 0.68);
  box-shadow:
    0 30px 52px rgba(16, 43, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 34px rgba(255, 255, 255, 0.1);
}

body.products-page.laminated-page .laminated-product-card > * {
  position: relative;
  z-index: 1;
}

body.products-page.laminated-page .laminated-product-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

body.products-page.laminated-page .laminated-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

body.products-page.laminated-page .laminated-product-card:hover .laminated-product-media img,
body.products-page.laminated-page .laminated-product-card:focus-within .laminated-product-media img {
  transform: scale(1.04);
}

body.products-page.laminated-page .laminated-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

body.products-page.laminated-page .laminated-product-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5872a6;
}

body.products-page.laminated-page .laminated-product-body h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.08;
}

body.products-page.laminated-page .laminated-product-body p:last-of-type {
  margin: 0;
  color: #52627a;
  line-height: 1.68;
}

body.products-page.laminated-page .laminated-card-link {
  width: fit-content;
  margin-top: auto;
}

body.products-page.laminated-page .laminated-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-section {
  padding-top: 0.75rem;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-intro {
  margin-bottom: 1.9rem;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-stack {
  display: grid;
  gap: 1.2rem;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(170, 186, 211, 0.4);
  box-shadow:
    0 22px 42px rgba(16, 43, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-titlebar {
  margin: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, #1e40af, #4f7bff);
  color: #ffffff;
  border-bottom: 1px solid #a0dcff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table-shell {
  padding: 0 1rem 1rem;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table th,
:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table td {
  border: 1px solid #8c8c8c;
  padding: 0.6rem 0.45rem;
  font-size: 0.92rem;
  text-align: center;
  vertical-align: middle;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table thead tr:first-child th {
  background: #f1f1f1;
  font-weight: 800;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table thead tr:nth-child(2) th {
  background: #f8f8f8;
  font-weight: 700;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table th,
:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table td {
  overflow-wrap: anywhere;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  background: linear-gradient(90deg, #1e40af, #4f7bff);
  color: #ffffff;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr.highlight-row td {
  background: #fff176;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr.highlight-row td:first-child {
  background: rgba(15, 66, 236, 0.84);
  color: #ffffff;
}

:is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-note {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #6b7280;
  font-size: 0.92rem;
}

body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td.level-cell {
  position: relative;
  min-width: 112px;
  min-height: 80px;
  padding: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
}

body.bullet-resistant-detail-page .bullet-resistant-performance-table .level-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

body.bullet-resistant-detail-page .bullet-resistant-performance-table .weapon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: #141414;
}

body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td.left {
  text-align: left;
}

body.products-page.laminated-page .laminated-info-card > * {
  position: relative;
  z-index: 1;
}

body.products-page.laminated-page .laminated-info-card h2,
body.products-page.product-detail-page .laminated-detail-body h2,
body.products-page.product-detail-page .laminated-detail-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #122033;
}

body.products-page.laminated-page .laminated-info-card p,
body.products-page.product-detail-page .laminated-detail-body p,
body.products-page.product-detail-page .laminated-application-card p {
  color: #52627a;
  line-height: 1.8;
}

body.products-page.laminated-page .laminated-points {
  margin: 1rem 0 0;
  list-style: none;
  padding-left: 0;
}

body.products-page.laminated-page .laminated-points li {
  margin-bottom: 0.95rem;
}

body.products-page.product-detail-page .laminated-detail-top {
  position: relative;
  padding-top: clamp(11rem, 18vw, 14.5rem);
  padding-bottom: 2rem;
}

body.products-page.product-detail-page .laminated-detail-top::before {
  width: 23rem;
  height: 23rem;
  top: 1rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(164, 199, 244, 0.28) 0%, rgba(164, 199, 244, 0) 72%);
}

body.products-page.product-detail-page .laminated-detail-top::after {
  width: 19rem;
  height: 19rem;
  bottom: -4rem;
  left: -5rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 72%);
}

body.products-page.product-detail-page .laminated-detail-grid,
body.products-page.product-detail-page .laminated-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 1.35rem;
  align-items: start;
}

body.products-page.product-detail-page .laminated-detail-copy {
  position: relative;
  z-index: 1;
}

body.products-page.product-detail-page .laminated-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.78rem 1.05rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #2a4eab, #17357e);
  border: 1px solid rgba(33, 69, 148, 0.12);
  box-shadow: 0 18px 34px rgba(33, 69, 148, 0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: laminatedBackButtonDrift 2.8s ease-in-out infinite;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.products-page.product-detail-page .laminated-detail-back:hover,
body.products-page.product-detail-page .laminated-detail-back:focus-visible {
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 38px rgba(23, 53, 126, 0.24);
}

body.products-page.product-detail-page .laminated-detail-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-140%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

body.products-page.product-detail-page .laminated-detail-back:hover::before,
body.products-page.product-detail-page .laminated-detail-back:focus-visible::before {
  transform: translateX(140%);
}

body.products-page.product-detail-page .laminated-detail-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

@keyframes laminatedBackButtonDrift {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

body.products-page.product-detail-page .laminated-detail-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: 0.98;
  color: #122033;
}

body.products-page.product-detail-page .laminated-detail-intro {
  margin: 1.1rem 0 0;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.85;
  color: #52627a;
}

body.products-page.product-detail-page .laminated-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

body.products-page.product-detail-page .laminated-detail-tag {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17325e;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(160, 182, 210, 0.28);
  box-shadow: 0 12px 24px rgba(16, 43, 77, 0.08);
}

body.products-page.product-detail-page .laminated-detail-image {
  padding: 1rem;
}

body.products-page.product-detail-page .laminated-detail-image > * {
  position: relative;
  z-index: 1;
}

body.products-page.product-detail-page .laminated-detail-image img {
  display: block;
  width: 100%;
  height: min(32rem, 55vw);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(12, 34, 63, 0.14);
}

body.products-page.product-detail-page .laminated-detail-image figcaption {
  margin-top: 0.85rem;
  color: #52627a;
  line-height: 1.65;
}

body.products-page.product-detail-page .laminated-detail-body,
body.products-page.product-detail-page .laminated-application-card,
body.products-page.product-detail-page .laminated-detail-cta {
  padding: 1.8rem;
}

body.products-page.product-detail-page .laminated-detail-body > *,
body.products-page.product-detail-page .laminated-application-card > *,
body.products-page.product-detail-page .laminated-detail-cta > * {
  position: relative;
  z-index: 1;
}

body.products-page.product-detail-page .laminated-detail-body h3,
body.products-page.product-detail-page .laminated-application-card h3 {
  margin: 1.4rem 0 0.65rem;
  font-size: 1.25rem;
  color: #122033;
}

body.products-page.product-detail-page .laminated-detail-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: #52627a;
}

body.products-page.product-detail-page .laminated-detail-list li {
  margin-bottom: 0.75rem;
  line-height: 1.72;
}

body.products-page.product-detail-page .laminated-detail-side {
  display: grid;
  gap: 1.1rem;
}

body.products-page.product-detail-page .laminated-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(24, 55, 120, 0.98), rgba(38, 76, 165, 0.94) 58%, rgba(49, 95, 200, 0.92));
}

body.products-page.product-detail-page .laminated-detail-cta::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 44%, rgba(255, 255, 255, 0.1) 79%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.06));
}

body.products-page.product-detail-page .laminated-detail-cta h2,
body.products-page.product-detail-page .laminated-detail-cta p,
body.products-page.product-detail-page .laminated-detail-cta .section-kicker {
  color: #ffffff;
}

body.products-page.product-detail-page .laminated-detail-cta p {
  margin: 0.9rem 0 0;
  max-width: 58ch;
  line-height: 1.8;
}

body.products-page.laminated-detail-page .footer-cta {
  display: none;
}

body.products-page.toughened-page .laminated-hero-bg {
  background:
    linear-gradient(135deg, rgba(19, 45, 88, 0.18), rgba(7, 13, 22, 0.58)),
    url("images/Toughened-glass-background.webp") center/cover no-repeat;
}

body.products-page.special-page .laminated-hero-bg {
  background:
    linear-gradient(135deg, rgba(26, 49, 84, 0.18), rgba(7, 13, 22, 0.58)),
    url("images/Special-Wallpaper.webp") center/cover no-repeat;
}

body.products-page.aluminium-page .laminated-hero-bg {
  background:
    linear-gradient(135deg, rgba(23, 47, 84, 0.18), rgba(7, 13, 22, 0.58)),
    url("images/aluminium-background.webp") center/cover no-repeat;
}

body.products-page.double-glaze-page .laminated-hero-bg {
  background:
    linear-gradient(135deg, rgba(19, 47, 90, 0.18), rgba(7, 13, 22, 0.58)),
    url("images/DoubleGlaze-Background.webp") center/cover no-repeat;
}

body.products-page.product-detail-page .detail-inline-media {
  margin-top: 1.15rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(160, 182, 210, 0.26);
  background: rgba(255, 255, 255, 0.52);
}

body.products-page.product-detail-page .detail-inline-media img {
  display: block;
  width: 100%;
  height: auto;
}

body.products-page.product-detail-page .detail-inline-media figcaption {
  padding: 0.95rem 1rem 1rem;
  color: #5d6d84;
  font-size: 0.95rem;
  line-height: 1.65;
}

body.products-page.product-detail-page .double-glaze-config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

body.products-page.product-detail-page .double-glaze-config-copy .laminated-detail-list {
  margin: 0;
}

body.products-page.product-detail-page .double-glaze-config-media {
  margin-top: 0;
}

@media (min-width: 900px) {
  body.products-page.product-detail-page .double-glaze-config-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 34%);
    gap: 1.5rem;
  }

  body.products-page.product-detail-page .double-glaze-config-media {
    max-width: 468px;
    justify-self: end;
  }
}

body.products-page.product-detail-page .double-glaze-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

body.products-page.product-detail-page .double-glaze-performance-table {
  border-collapse: collapse;
  min-width: 1200px;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #666666;
}

body.products-page.product-detail-page .double-glaze-performance-table th,
body.products-page.product-detail-page .double-glaze-performance-table td {
  border: 1px solid #666666;
  padding: 4px 6px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.1;
}

body.products-page.product-detail-page .double-glaze-performance-table thead th {
  background: #9a9a9a;
  color: #ffffff;
  font-weight: 700;
}

body.products-page.product-detail-page .double-glaze-performance-table .top-head {
  font-size: 15px;
  height: 38px;
}

body.products-page.product-detail-page .double-glaze-performance-table .blue-block {
  background: #0d5cab;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

body.products-page.product-detail-page .double-glaze-performance-table .section-row td {
  background: #efefef;
  color: #13253b;
  font-weight: 700;
  text-align: left;
  padding: 8px;
  font-size: 15px;
}

body.products-page.product-detail-page .double-glaze-performance-table .code,
body.products-page.product-detail-page .double-glaze-performance-table .product {
  text-align: left;
}

body.products-page.product-detail-page .double-glaze-performance-table .code {
  width: 90px;
  font-weight: 400;
}

body.products-page.product-detail-page .double-glaze-performance-table .product {
  width: 170px;
  font-weight: 600;
}

body.products-page.product-detail-page .double-glaze-performance-table .igidb-col {
  width: 88px;
}

body.products-page.product-detail-page .double-glaze-performance-table .product-col {
  width: 168px;
}

body.products-page.product-detail-page .double-glaze-performance-table .narrow {
  width: 48px;
}

body.products-page.product-detail-page .double-glaze-performance-table .medium {
  width: 58px;
}

body.products-page.product-detail-page .double-glaze-performance-table .wide {
  width: 68px;
}

body.products-page.product-detail-page .double-glaze-performance-table .vertical-cell {
  height: 118px;
  padding: 0;
  position: relative;
}

body.products-page.product-detail-page .double-glaze-performance-table .vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.3px;
  padding: 8px 0;
}

body.products-page.product-detail-page .double-glaze-performance-table .small-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  color: #f2f2f2;
}

body.products-page.product-detail-page .double-glaze-performance-table .sub-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 4px;
}

body.products-page.product-detail-page .double-glaze-performance-table tbody td {
  background: #ffffff;
  color: #1f1f1f;
}

body.products-page.product-detail-page .double-glaze-performance-table tbody tr:hover td {
  background: #f7fbff;
}

@media (min-width: 769px) {
  body.products-page.product-detail-page .double-glaze-performance-table {
    min-width: 0;
    width: 100%;
  }

  body.products-page.product-detail-page .double-glaze-performance-table th,
  body.products-page.product-detail-page .double-glaze-performance-table td {
    padding: 4px 3px;
    font-size: 12px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .top-head {
    font-size: 13px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .blue-block {
    font-size: 13px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .vertical-text {
    font-size: 11px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .small-note {
    font-size: 10px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .igidb-col,
  body.products-page.product-detail-page .double-glaze-performance-table .code {
    width: 8%;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .product-col,
  body.products-page.product-detail-page .double-glaze-performance-table .product {
    width: 16%;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .narrow {
    width: 4.6%;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .medium {
    width: 5.4%;
  }
}

body.products-page.product-detail-page .schematech-catalog-btn,
body.products-page.product-detail-page .schematech-catalog-btn span,
body.products-page.product-detail-page .schematech-catalog-btn i {
  color: #1f3f8f;
}

body.products-page.product-detail-page .schematech-catalog-btn {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

body.products-page.product-detail-page .schematech-catalog-btn:hover,
body.products-page.product-detail-page .schematech-catalog-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(31, 63, 143, 0.12);
  border-color: rgba(31, 63, 143, 0.34);
  box-shadow: 0 16px 28px rgba(19, 37, 69, 0.12);
}

body.products-page.product-detail-page .special-detail-inline-media {
  margin-top: 1.15rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(160, 182, 210, 0.26);
  background: rgba(255, 255, 255, 0.52);
}

body.products-page.product-detail-page .special-detail-inline-media img {
  display: block;
  width: 100%;
  height: auto;
}

body.products-page.product-detail-page .special-detail-inline-media + p {
  margin-top: 1rem;
}

body.products-page.product-detail-page .toughened-spec-card h2 {
  margin-bottom: 0.75rem;
}

body.products-page.product-detail-page .toughened-spec-card .toughened-spec-note {
  margin: 0;
  color: #52627a;
  line-height: 1.75;
}

body.products-page.product-detail-page .toughened-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.35rem;
}

body.products-page.product-detail-page .toughened-spec-block {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(160, 182, 210, 0.26);
}

body.products-page.product-detail-page .toughened-spec-block h3 {
  margin: 0 0 0.7rem;
  color: #13253b;
}

body.products-page.product-detail-page .toughened-spec-block .laminated-detail-list {
  margin: 0;
}

body.products-page.product-detail-page .toughened-spec-block .laminated-detail-list li {
  margin-bottom: 0.7rem;
}

body.products-page.product-detail-page .toughened-spec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

body.products-page.product-detail-page .toughened-spec-actions .btn {
  min-height: 50px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

body.products-page.product-detail-page .toughened-spec-actions .btn,
body.products-page.product-detail-page .toughened-spec-actions .btn i,
body.products-page.product-detail-page .toughened-spec-actions .btn:hover,
body.products-page.product-detail-page .toughened-spec-actions .btn:focus-visible,
body.products-page.product-detail-page .toughened-spec-actions .btn:hover i,
body.products-page.product-detail-page .toughened-spec-actions .btn:focus-visible i {
  color: var(--nhg-accent);
}

body.products-page.product-detail-page .toughened-spec-actions .btn:hover,
body.products-page.product-detail-page .toughened-spec-actions .btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(31, 63, 143, 0.12);
  border-color: rgba(31, 63, 143, 0.34);
  box-shadow: 0 16px 28px rgba(19, 37, 69, 0.12);
}

body.products-page.product-detail-page .laminated-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

body.products-page.product-detail-page .laminated-cta-actions .btn-cta-solid,
body.products-page.product-detail-page .laminated-cta-actions .btn-cta-outline {
  min-width: 185px;
  min-height: 52px;
  border-radius: 999px;
}

body.products-page.product-detail-page .laminated-cta-actions .btn-cta-solid {
  box-shadow: 0 18px 35px rgba(8, 23, 55, 0.18);
}

@media (max-width: 1120px) {
  body.products-page.laminated-page .laminated-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body.products-page.laminated-page .laminated-hero-grid,
  body.products-page.laminated-page .laminated-section-grid,
  body.products-page.laminated-page .laminated-summary-grid,
  body.products-page.product-detail-page .laminated-detail-grid,
  body.products-page.product-detail-page .laminated-detail-columns {
    grid-template-columns: 1fr;
  }

  body.products-page.laminated-page .laminated-hero-panel {
    max-width: 34rem;
  }

  body.products-page.product-detail-page .laminated-detail-image img {
    height: min(30rem, 64vw);
  }

  body.products-page.product-detail-page .laminated-detail-cta {
    grid-template-columns: 1fr;
  }

  body.products-page.product-detail-page .laminated-cta-actions {
    justify-content: flex-start;
  }

  body.products-page.product-detail-page .toughened-spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.products-page.product-detail-page .double-glaze-performance-table th,
  body.products-page.product-detail-page .double-glaze-performance-table td {
    font-size: 12px;
    padding: 4px;
  }

  body.products-page.product-detail-page .double-glaze-performance-table .vertical-text {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table-shell {
    padding: 0.9rem;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table thead,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tr,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table th,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table td {
    display: block;
    width: 100%;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody {
    display: grid;
    gap: 0.85rem;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.8rem;
    border: 1px solid rgba(177, 191, 212, 0.8);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(239, 246, 255, 0.96));
    box-shadow: 0 14px 28px rgba(14, 39, 72, 0.08);
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td {
    min-width: 0;
    min-height: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid #c4d0de;
    border-radius: 14px;
    background: #ffffff;
    text-align: left;
    line-height: 1.45;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td::before {
    display: block;
    margin-bottom: 0.22rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #466597;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:first-child {
    grid-column: 1 / -1;
    padding: 0.95rem 1rem;
    border-color: rgba(30, 64, 175, 0.4);
    border-radius: 16px;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:first-child::before {
    content: none;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(2)::before {
    content: "Transmission";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(3)::before {
    content: "Light reflection outside";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(4)::before {
    content: "Light reflection inside";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(5)::before {
    content: "Direct transmission";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(6)::before {
    content: "Absorption";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(7)::before {
    content: "Solar reflection outside";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(8)::before {
    content: "Solar factor (g)";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(9)::before {
    content: "Shading coeff";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(10)::before {
    content: "U-value";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody td:nth-child(11)::before {
    content: "SHGC";
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr.highlight-row {
    background: linear-gradient(180deg, rgba(255, 241, 118, 0.4), rgba(255, 255, 255, 0.96));
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr.highlight-row td {
    background: rgba(255, 241, 118, 0.86);
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table tbody tr.highlight-row td:first-child {
    background: rgba(15, 66, 236, 0.84);
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(2)::before {
    content: "Ammunition";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(3)::before {
    content: "Nominal bullet mass";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(4)::before {
    content: "Required velocity";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(5)::before {
    content: "PRL designation";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(6)::before {
    content: "Thickness";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(7)::before {
    content: "Weight";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td:nth-child(8)::before {
    content: "Number of shots";
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table tbody td.level-cell {
    min-width: 96px;
    min-height: 72px;
    padding: 0.4rem;
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table .level-label {
    top: 7px;
    left: 8px;
    font-size: 0.66rem;
  }

  body.bullet-resistant-detail-page .bullet-resistant-performance-table .weapon {
    font-size: 1.7rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.products-page.product-detail-page .laminated-detail-back:hover,
  body.products-page.product-detail-page .laminated-detail-back:focus-visible {
    animation-play-state: paused;
  }
}

@media (max-width: 720px) {
  body.products-page.laminated-page .laminated-hero,
  body.products-page.laminated-page .laminated-hero-stage {
    min-height: 40rem;
  }

  body.products-page.laminated-page .laminated-hero-grid {
    min-height: 40rem;
    padding-top: 12rem;
    padding-bottom: 5rem;
  }

  body.products-page.laminated-page .laminated-hero-copy,
  body.products-page.laminated-page .laminated-hero-panel,
  body.products-page.laminated-page .laminated-selection-panel,
  body.products-page.laminated-page .laminated-info-card,
  body.products-page.product-detail-page .laminated-detail-image,
  body.products-page.product-detail-page .laminated-detail-body,
  body.products-page.product-detail-page .laminated-application-card,
  body.products-page.product-detail-page .laminated-detail-cta {
    padding: 1.35rem;
    border-radius: 22px;
  }

  body.products-page.laminated-page .laminated-hero-copy h1,
  body.products-page.product-detail-page .laminated-detail-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.45rem);
  }

  body.products-page.laminated-page .laminated-catalog-section {
    margin-top: -3rem;
  }

  body.products-page.laminated-page .laminated-catalog-section .section-heading {
    padding-top: 4.75rem;
  }

  body.products-page.laminated-page .laminated-card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.products-page.laminated-page .laminated-product-body {
    padding: 1.2rem 1.2rem 1.3rem;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-titlebar {
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
  }

  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-table-shell,
  :is(body.products-page.laminated-page, body.products-page.product-detail-page.double-glaze-detail-page, body.bullet-resistant-detail-page) .laminated-performance-note {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  body.products-page.product-detail-page .laminated-detail-top {
    padding-top: 10.5rem;
    padding-bottom: 1.5rem;
  }

  body.products-page.product-detail-page .laminated-detail-tags,
  body.products-page.product-detail-page .laminated-cta-actions,
  body.products-page.laminated-page .laminated-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.products-page.product-detail-page .laminated-detail-tag,
  body.products-page.product-detail-page .laminated-cta-actions .btn-cta-solid,
  body.products-page.product-detail-page .laminated-cta-actions .btn-cta-outline,
  body.products-page.laminated-page .laminated-card-link {
    width: 100%;
  }

  body.products-page.laminated-page .laminated-hero-actions {
    grid-template-columns: max-content;
    justify-content: center;
    justify-items: stretch;
  }

  body.products-page.laminated-page .laminated-hero-actions .btn {
    width: auto;
    min-width: 0;
  }

  body.products-page.product-detail-page .laminated-detail-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ===========================
   TERMS PAGE REFRESH
   Scoped to terms via body.terms-page
   =========================== */

body.terms-page {
  font-family: "Inter", system-ui, sans-serif;
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(141, 176, 230, 0.28), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f8 42%, #f7f9fc 100%);
}

body.terms-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, rgba(109, 145, 197, 0.08) 25%, rgba(109, 145, 197, 0) 25% 68%, rgba(109, 145, 197, 0.06) 68%);
  z-index: 0;
}

body.terms-page .terms-shell,
body.terms-page .site-header,
body.terms-page .site-footer {
  position: relative;
  z-index: 1;
}

body.terms-page .logo span,
body.terms-page h1,
body.terms-page h2,
body.terms-page h3,
body.terms-page h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

body.terms-page .site-header {
  position: relative;
  inset: auto;
  z-index: 40;
}

body.terms-page .top-bar,
body.terms-page .top-bar-inner,
body.terms-page .top-bar-left,
body.terms-page .top-bar-center,
body.terms-page .top-bar-right,
body.terms-page .navbar-left {
  display: none !important;
}

body.terms-page .hero-header-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

body.terms-page .hero-header-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 146px;
  padding: 1rem 1.5rem 2.65rem;
  color: #17325e;
  background: linear-gradient(180deg, rgba(233, 241, 251, 0.96), rgba(219, 231, 247, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 0;
  box-shadow:
    0 25px 55px rgba(9, 29, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 71%, 91% 67%, 80% 66%, 68% 69%, 56% 75%, 42% 84%, 26% 92%, 12% 97%, 0 97%);
}

body.terms-page .hero-header-main::after {
  content: "";
  position: absolute;
  inset: auto -3% -10px -5%;
  height: 136px;
  background:
    radial-gradient(130% 120% at 40% 0%, rgba(255, 255, 255, 0.58) 0 22%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

body.terms-page .logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
}

body.terms-page .logo img {
  height: 104px;
  width: auto;
  display: block;
}

body.terms-page .hero-header-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  width: min(100%, 700px);
  justify-self: start;
  margin-left: 2rem;
}

body.terms-page .hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

body.terms-page .hero-contact-line a {
  color: #0f2442;
  font-weight: 700;
}

body.terms-page .top-label {
  color: #4f6687;
}

body.terms-page .hero-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-right: 1.6rem;
}

body.terms-page .hero-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

body.terms-page .hero-header-socials .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #15325e;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(141, 166, 202, 0.3);
}

body.terms-page .hero-header-socials .social-icon i {
  color: #15325e;
}

body.terms-page .nav-toggle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(111, 139, 181, 0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(220, 232, 248, 0.78));
  box-shadow: 0 14px 30px rgba(11, 31, 63, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

body.terms-page .nav-toggle:hover,
body.terms-page .nav-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 31, 63, 0.18);
}

body.terms-page .nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #183978;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.terms-page .site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.terms-page .site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.terms-page .site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.terms-page .navbar {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0.35rem;
  width: min(420px, calc(100vw - 2.25rem));
  padding: 0 !important;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
  transform-origin: top right;
  display: block !important;
  overflow: visible;
  isolation: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 280ms ease;
}

body.terms-page .site-header.menu-open .navbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

body.terms-page .site-header.menu-closing .navbar {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(2rem, 0, 0) scale(0.98);
}

body.terms-page .navbar-inner {
  padding: 0;
}

body.terms-page .nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.78rem;
  padding: 0;
}

body.terms-page .nav-links > li {
  width: 100%;
  list-style: none;
}

body.terms-page .nav-main-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fbff;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
  overflow: hidden;
  isolation: isolate;
}

body.terms-page .nav-main-link::before,
body.terms-page .nav-main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

body.terms-page .nav-main-link::before {
  inset: 1px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  z-index: -1;
}

body.terms-page .nav-main-link::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  z-index: -1;
}

body.terms-page .nav-main-link:hover,
body.terms-page .nav-main-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.terms-page .terms-content-section {
  padding-top: 3.25rem;
  padding-bottom: 5.5rem;
}

body.terms-page .terms-content-section::before {
  display: none;
}

body.terms-page .terms-panel {
  padding: 2.35rem;
}

body.terms-page .terms-panel .section-heading {
  max-width: 54rem;
  margin-bottom: 1.75rem;
}

body.terms-page .terms-panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.02;
  color: #122033;
}

body.terms-page .terms-copy p {
  margin: 0 0 1.15rem;
  line-height: 1.8;
  color: #52627a;
}

body.terms-page .terms-copy h3 {
  margin: 1.7rem 0 0.65rem;
  font-size: 1.32rem;
  line-height: 1.15;
  color: #13253b;
}

body.terms-page .terms-copy .list-TC {
  max-width: none;
  margin: 0.75rem 0 1.25rem;
  color: #52627a;
}

body.terms-page .terms-copy .list-TC li {
  justify-content: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.96rem;
}

body.terms-page .terms-copy .list-TC li > * {
  max-width: none;
}

body.terms-page .footer-cta {
  padding: 4.25rem 1rem 3.4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #183778, #264ca5 58%, #315fc8);
}

body.terms-page .footer-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.terms-page .footer-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(235, 243, 255, 0.88);
}

body.terms-page .footer-cta-actions {
  margin-top: 1.6rem;
}

body.terms-page .btn-cta-solid,
body.terms-page .btn-cta-outline {
  min-width: 185px;
  min-height: 52px;
  border-radius: 999px;
}

body.terms-page .btn-cta-solid {
  box-shadow: 0 18px 35px rgba(8, 23, 55, 0.18);
}

body.terms-page .footer-main {
  background:
    linear-gradient(180deg, rgba(11, 20, 36, 0.92), rgba(6, 12, 22, 0.98)),
    #0b1424;
  padding: 3.5rem 1rem 2.6rem;
}

body.terms-page .footer-main-inner {
  gap: 2rem;
}

body.terms-page .footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

body.terms-page .footer-col ul li {
  margin-bottom: 0.65rem;
}

body.terms-page .footer-logo img {
  max-width: 152px;
  border-radius: 0;
}

body.terms-page .footer-brand p {
  max-width: 340px;
  line-height: 1.75;
}

body.terms-page .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(46, 87, 173, 0.2);
  border: 1px solid rgba(143, 174, 228, 0.2);
}

@media (min-width: 721px) {
  body.terms-page {
    --terms-header-open-offset: 2rem;
    --terms-header-bottom-pad: 2.65rem;
  }

  body.terms-page .hero-header-shell {
    overflow: hidden;
  }

  body.terms-page .hero-header-main {
    padding-bottom: var(--terms-header-bottom-pad);
    transition:
      padding-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 280ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.terms-page .hero-header-main::after {
    transition:
      inset 280ms cubic-bezier(0.22, 1, 0.36, 1),
      height 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.terms-page.nav-open .hero-header-main,
  body.terms-page .site-header.menu-open .hero-header-main {
    padding-bottom: calc(var(--terms-header-bottom-pad) + var(--terms-header-open-offset));
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 91% 100%, 80% 100%, 68% 100%, 56% 100%, 42% 100%, 26% 100%, 12% 100%, 0 100%);
  }

  body.terms-page.nav-open .hero-header-main::after,
  body.terms-page .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 92px;
    opacity: 0.46;
  }

  body.terms-page .navbar {
    top: auto;
    right: 1.5rem;
    bottom: 0.65rem;
    width: calc(50% - 1.5rem);
    max-width: 44rem;
    min-width: 0;
    transform: translate3d(0, 0.7rem, 0);
    transform-origin: bottom right;
  }

  body.terms-page .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  body.terms-page .site-header.menu-closing .navbar {
    transform: translate3d(0, 0.7rem, 0);
  }

  body.terms-page .nav-links {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(0.4rem, 1vw, 1.15rem);
  }

  body.terms-page .nav-links > li {
    width: auto;
    flex: 0 1 auto;
  }

  body.terms-page .nav-main-link {
    width: auto;
    min-height: auto;
    justify-content: center;
    padding: 0.2rem 0 0.08rem;
    text-align: center;
    border: 0;
    border-radius: 0;
    color: #17325e;
    text-shadow: none;
    white-space: nowrap;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.72rem, 0.26vw + 0.68rem, 0.98rem);
    line-height: 1.15;
  }

  body.terms-page .nav-main-link::before,
  body.terms-page .nav-main-link::after {
    display: none;
  }

  body.terms-page .nav-main-link:hover,
  body.terms-page .nav-main-link:focus-visible {
    transform: translateY(-1px);
    color: #0d2445;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(23, 50, 94, 0.35);
  }
}

@media (max-width: 1024px) {
  body.terms-page .hero-header-main {
    grid-template-columns: 138px minmax(0, 1fr) auto;
    gap: 0.8rem;
    min-height: 128px;
    padding: 0.9rem 1rem 2.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 90% 70%, 78% 69%, 64% 73%, 48% 82%, 28% 91%, 0 91%);
  }

  body.terms-page .hero-header-socials {
    display: none;
  }
}

@media (max-width: 720px) {
  body.terms-page .site-header {
    top: 0;
  }

  body.terms-page .hero-header-main {
    grid-template-columns: 126px minmax(0, 1fr) auto;
    align-items: start;
    min-height: 132px;
    padding: 0.7rem 0.75rem 1.8rem;
    border-radius: 0 0 16px 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 88% 75%, 72% 74%, 54% 79%, 34% 88%, 16% 94%, 0 94%);
  }

  body.terms-page .logo img {
    height: 108px;
  }

  body.terms-page .hero-header-contact {
    gap: 0.24rem;
    margin-left: 0;
    padding-top: 0.1rem;
  }

  body.terms-page .hero-contact-line {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body.terms-page .hero-header-contact > .hero-contact-line:first-child {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 0.45rem;
    row-gap: 0.24rem;
    align-items: center;
    justify-content: start;
  }

  body.terms-page .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  body.terms-page .navbar {
    top: calc(100% - 0.25rem);
    right: 0;
    width: min(320px, calc(100vw - 1rem));
    border-radius: 20px;
  }

  body.terms-page .terms-content-section {
    padding-top: 2.35rem;
    padding-bottom: 4.5rem;
  }

  body.terms-page .terms-panel {
    padding: 1.4rem;
    border-radius: 22px;
  }

  body.terms-page .terms-panel h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body.terms-page .terms-copy h3 {
    margin-top: 1.45rem;
    font-size: 1.18rem;
  }

  body.terms-page .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.1rem;
  }

  body.terms-page .footer-cta-actions .btn-cta-solid,
  body.terms-page .footer-cta-actions .btn-cta-outline {
    width: min(100%, 18rem);
  }
}

/* ===========================
   CONTACT PAGE REFRESH
   Scoped to contact via body.contact-page-view
   =========================== */

body.contact-page-view {
  color: #122033;
  background:
    radial-gradient(circle at top left, rgba(141, 176, 230, 0.28), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f8 42%, #f7f9fc 100%);
}

body.contact-page-view::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(155deg, rgba(109, 145, 197, 0.08) 25%, rgba(109, 145, 197, 0) 25% 68%, rgba(109, 145, 197, 0.06) 68%);
  z-index: 0;
}

body.contact-page-view .contact-shell,
body.contact-page-view .site-header,
body.contact-page-view .site-footer {
  position: relative;
  z-index: 1;
}

body.contact-page-view .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
}

body.contact-page-view .contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 43rem;
}

body.contact-page-view .contact-hero::before,
body.contact-page-view .contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

body.contact-page-view .contact-hero::before {
  width: 22rem;
  height: 22rem;
  top: 8.25rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(164, 199, 244, 0.34) 0%, rgba(164, 199, 244, 0) 72%);
}

body.contact-page-view .contact-hero::after {
  width: 18rem;
  height: 18rem;
  bottom: 2rem;
  left: -5rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72%);
}

body.contact-page-view .contact-hero-stage {
  position: relative;
  min-height: 43rem;
}

body.contact-page-view .contact-hero-bg,
body.contact-page-view .contact-hero-overlay {
  position: absolute;
  inset: 0;
}

body.contact-page-view .contact-hero-bg {
  background:
    linear-gradient(135deg, rgba(21, 46, 88, 0.14), rgba(7, 13, 22, 0.54)),
    url("images/Contact-Background.webp") center/cover no-repeat;
  transform: scale(1.03);
}

body.contact-page-view .contact-hero-overlay {
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.04), rgba(9, 26, 54, 0.48)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 38%);
}

body.contact-page-view .contact-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 43rem;
  display: grid;
  align-items: end;
  padding-top: 13rem;
  padding-bottom: 8.75rem;
}

body.contact-page-view .contact-hero-copy {
  position: relative;
  max-width: 36rem;
  padding: 1.85rem;
  border-radius: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
}

body.contact-page-view .contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  color: #f8fbff;
}

body.contact-page-view .contact-hero-copy .section-kicker {
  color: #ffffff;
}

body.contact-page-view .contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

body.contact-page-view .contact-hero-actions .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  border-radius: 16px;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.18);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

body.contact-page-view .contact-hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: -1;
}

body.contact-page-view .contact-hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body.contact-page-view .contact-hero-actions .btn:hover,
body.contact-page-view .contact-hero-actions .btn:focus-visible {
  transform: translateY(-4px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(196, 229, 249, 0.05), rgba(18, 49, 89, 0.08));
  border-color: rgba(244, 249, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 18, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body.contact-page-view .contact-locations-section {
  margin-top: 0;
  padding-top: 3rem;
  z-index: 2;
}

body.contact-page-view .contact-locations-section::before {
  display: none;
}

body.contact-page-view .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

body.contact-page-view .location-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 252, 0.94));
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 26px 50px rgba(10, 30, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.contact-page-view .location-card::before,
body.contact-page-view .location-card::after {
  content: none;
}

body.contact-page-view .location-card:hover,
body.contact-page-view .location-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(194, 212, 239, 0.78);
  box-shadow:
    0 32px 60px rgba(10, 30, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

body.contact-page-view .location-image {
  height: 215px;
  background-size: cover;
  background-position: center;
}

body.contact-page-view .location-summary {
  padding: 1.1rem 1.2rem 0.95rem;
}

body.contact-page-view .location-summary h3 {
  margin: 0 0 0.35rem;
  font-size: 1.24rem;
  line-height: 1.05;
  color: #13253b;
}

body.contact-page-view .location-summary p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5d6d83;
}

body.contact-page-view .location-details {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid rgba(188, 204, 226, 0.5);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 220ms ease;
}

body.contact-page-view .location-card:hover .location-details,
body.contact-page-view .location-card:focus-within .location-details {
  max-height: 380px;
  opacity: 1;
}

body.contact-page-view .location-details ul {
  list-style: none;
  padding: 0.8rem 0 0.15rem;
  margin: 0;
}

body.contact-page-view .location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  color: #425266;
}

body.contact-page-view .location-details li i {
  margin-top: 0.16rem;
  color: #2c56ae;
}

body.contact-page-view .location-details a {
  color: #123c86;
}

body.contact-page-view .location-details p {
  margin: 0;
}

body.contact-page-view .location-map-preview {
  display: block;
  margin-top: 0.8rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(9, 29, 61, 0.14);
}

body.contact-page-view .location-map-preview img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

body.contact-page-view .location-map-label {
  background: rgba(12, 25, 45, 0.78);
  color: #ffffff;
}

body.contact-page-view .contact-enquiry-section {
  padding-top: 4.5rem;
}

body.contact-page-view .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

body.contact-page-view .contact-card {
  padding: 1.6rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 253, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow:
    0 26px 50px rgba(11, 31, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

body.contact-page-view .contact-card h3 {
  margin: 0 0 0.75rem;
  color: #13253b;
  font-size: 1.35rem;
}

body.contact-page-view .contact-intro,
body.contact-page-view .contact-info p {
  margin: 0 0 1rem;
  color: #58697f;
  line-height: 1.75;
}

body.contact-page-view .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

body.contact-page-view .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body.contact-page-view .form-row label {
  color: #1b3352;
  font-size: 0.92rem;
  font-weight: 700;
}

body.contact-page-view .form-row input,
body.contact-page-view .form-row textarea,
body.contact-page-view .contact-form select {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(183, 199, 223, 0.88);
  background: rgba(255, 255, 255, 0.9);
  color: #18304d;
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

body.contact-page-view .form-row input:focus,
body.contact-page-view .form-row textarea:focus,
body.contact-page-view .contact-form select:focus {
  outline: none;
  border-color: rgba(44, 86, 174, 0.8);
  box-shadow: 0 0 0 4px rgba(44, 86, 174, 0.12);
  background: #ffffff;
}

body.contact-page-view .form-row textarea {
  min-height: 150px;
  resize: vertical;
}

body.contact-page-view .small-text,
body.contact-page-view .small-text label {
  color: #617287;
}

body.contact-page-view .form-row.small-text label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  line-height: 1.5;
}

body.contact-page-view .form-row.small-text input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

body.contact-page-view .form-actions {
  margin-top: 0.55rem;
}

body.contact-page-view .form-actions .btn-primary {
  min-width: 12rem;
}

body.contact-page-view .contact-info {
  min-height: 0;
  align-self: start;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(188, 225, 248, 0.04), rgba(18, 49, 89, 0.06));
  border: 1px solid rgba(233, 244, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(7, 18, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  overflow: hidden;
  isolation: isolate;
}

body.contact-page-view .contact-info::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015) 32%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: -1;
}

body.contact-page-view .contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 13%, rgba(255, 255, 255, 0.015) 24%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body.contact-page-view .form-feedback {
  max-width: none;
  margin: 0 0 1rem;
}

@media (max-width: 1024px) {
  body.contact-page-view .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.contact-page-view.nav-open .contact-hero,
  body.contact-page-view.nav-open .contact-hero-stage {
    overflow: visible;
  }

  body.contact-page-view .site-header {
    top: 0;
  }

  body.contact-page-view .contact-hero,
  body.contact-page-view .contact-hero-stage,
  body.contact-page-view .contact-hero-grid {
    min-height: 34rem;
  }

  body.contact-page-view .contact-hero-grid {
    padding-top: 11.5rem;
    padding-bottom: 6.25rem;
  }

  body.contact-page-view .contact-hero-copy {
    padding: 1.4rem;
    border-radius: 22px;
  }

  body.contact-page-view .contact-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  body.contact-page-view .contact-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
  }

  body.contact-page-view .contact-hero-actions .btn {
    width: min(100%, 18rem);
  }

  body.contact-page-view .contact-locations-section {
    margin-top: 0;
    padding-top: 2.5rem;
  }

  body.contact-page-view .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.contact-page-view .location-image {
    height: 200px;
  }

  body.contact-page-view .location-details {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }

  body.contact-page-view .contact-card {
    padding: 1.35rem;
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .hero-header-contact,
  .top-bar-left,
  .top-bar-center {
    display: none !important;
  }

  .hero-header-actions {
    grid-column: 3;
    justify-self: end;
    align-self: start;
  }

  .top-bar-inner {
    justify-content: center;
  }
}

/* Shared Products dropdown for all non-home header pages */
@media (min-width: 721px) {
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .hero-header-shell {
    overflow: visible;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item {
    position: relative;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    z-index: 19;
    height: 1.05rem;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    z-index: 20;
    display: block !important;
    width: min(18.5rem, calc(100vw - 2rem));
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    border: 1px solid rgba(138, 160, 193, 0.34);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(221, 233, 248, 0.96));
    box-shadow:
      0 22px 42px rgba(9, 29, 61, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 0.45rem, 0);
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 180ms ease;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item:hover .nav-products-submenu,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item:focus-within .nav-products-submenu,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item.is-expanded .nav-products-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.22);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.72rem 0.9rem;
    border-radius: 10px;
    color: #17325e;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a:hover,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a:focus-visible {
    color: #0d2445;
    background: rgba(255, 255, 255, 0.66);
    outline: none;
  }
}

@media (max-width: 720px) {
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .hero-header-shell {
    width: 100%;
    overflow: visible;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .navbar {
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(233, 241, 251, 0.98), rgba(219, 231, 247, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-top: none !important;
    box-shadow:
      0 25px 55px rgba(9, 29, 61, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: translate3d(0, -0.85rem, 0);
    transform-origin: top center;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .site-header.menu-open .hero-header-main {
    padding-bottom: 0.95rem;
    border-radius: 0;
    clip-path: inset(0);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .site-header.menu-open .hero-header-main::after {
    inset: auto 0 0 0;
    height: 76px;
    opacity: 0.34;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .site-header.menu-open .navbar {
    transform: translate3d(0, 0, 0);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .site-header.menu-closing .navbar {
    transform: translate3d(0, -0.85rem, 0);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-links {
    gap: 0;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-links > li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.28);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-main-link {
    justify-content: center;
    min-height: 58px;
    padding: 1rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #17325e;
    text-align: center;
    text-shadow: none;
    letter-spacing: 0.14em;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-main-link::before,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-main-link::after {
    display: none;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-main-link:hover,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-main-link:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: none;
    color: #102a52;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu {
    display: block !important;
    max-height: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    opacity: 0;
    background: rgba(247, 251, 255, 0.58);
    transform: translateY(-0.25rem);
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-item.is-expanded .nav-products-submenu {
    max-height: 360px;
    opacity: 1;
    border-top: 1px solid rgba(137, 160, 193, 0.2);
    transform: translateY(0);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu li + li {
    border-top: 1px solid rgba(137, 160, 193, 0.18);
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    color: #24416d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a:hover,
  :is(body.services-page, body.products-page, body.terms-page, body.contact-page-view) .nav-products-submenu a:focus-visible {
    color: #102a52;
    background: rgba(255, 255, 255, 0.36);
  }
}

@media (max-width: 720px) {
  :is(body.home-page, body.services-page, body.products-page, body.terms-page, body.contact-page-view) .hero-header-main {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 78%,
      98% 77.55%,
      96% 77.15%,
      94% 76.8%,
      92% 76.5%,
      90% 76.26%,
      88% 76.1%,
      86% 76.02%,
      84% 76%,
      82% 76.05%,
      80% 76.18%,
      78% 76.38%,
      76% 76.65%,
      74% 76.98%,
      72% 77.38%,
      70% 77.84%,
      68% 78.36%,
      66% 78.93%,
      64% 79.55%,
      62% 80.22%,
      60% 80.93%,
      58% 81.67%,
      56% 82.45%,
      54% 83.25%,
      52% 84.07%,
      50% 84.9%,
      48% 85.73%,
      46% 86.56%,
      44% 87.37%,
      42% 88.16%,
      40% 88.93%,
      38% 89.66%,
      36% 90.35%,
      34% 91%,
      32% 91.6%,
      30% 92.15%,
      28% 92.64%,
      26% 93.07%,
      24% 93.43%,
      22% 93.72%,
      20% 93.94%,
      18% 94.08%,
      16% 94.15%,
      14% 94.16%,
      12% 94.12%,
      10% 94.04%,
      8% 93.94%,
      6% 93.82%,
      4% 93.7%,
      2% 93.6%,
      0 93.52%
    );
  }
}

