@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Apple-style neutrals */
  --ink: #1d1d1f;
  --ink-deep: #000000;
  --steel: #86868b;
  --surface: #f5f5f7;
  --paper: #FFFFFF;
  --muted-bg: #fbfbfd;
  --line: #d2d2d7;
  --on-dark: #FFFFFF;
  --on-dark-soft: rgba(255, 255, 255, 0.72);

  /* Apple-style blue accent, used for links/CTAs in place of the old brand purple */
  --brand: #0071e3;
  --brand-deep: #0071e3;
  --brand-hover: #0077ed;
  --brand-light: #2997ff;

  --whatsapp: #25D366;
  --whatsapp-hover: #20ba59;

  /* Corner radius system — soft, Apple-like */
  --r-btn: 980px;
  --r-card: 18px;
  --r-pill: 999px;

  --mono: 'DM Mono', monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.47059 var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.skip {
  position: fixed;
  left: 12px;
  top: -60px;
  background: #fff;
  padding: 10px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

/* Header — full-width translucent bar, Apple style */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 22px);
  z-index: 60;
  color: var(--ink);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--ink);
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 22px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

footer img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  opacity: 0.85;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
  font-weight: 400;
  flex: 1;
  margin-left: 24px;
  color: var(--steel);
}

.header nav a {
  transition: opacity 0.2s ease, color 0.2s ease;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.header nav a:hover {
  opacity: 0.68;
}

.nav-cta {
  background: transparent;
  color: var(--brand-deep) !important;
  border: 0;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 12px;
  margin-left: auto;
}

.nav-cta svg { color: var(--whatsapp); }

.nav-cta:hover {
  background: transparent;
  color: var(--brand-hover) !important;
  opacity: 1;
}


.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.nav-whatsapp svg {
  color: var(--whatsapp);
  flex-shrink: 0;
}

.menu-button {
  display: none;
  background: 0;
  border: 0;
  color: currentColor;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  height: 1.5px;
  background: currentColor;
  display: block;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.header a:focus-visible,
.header button:focus-visible {
  outline-color: currentColor;
}

/* Hero Section — centered, Apple product-page style */
.hero {
  position: relative;
  min-height: auto;
  background: linear-gradient(180deg, var(--muted-bg) 0%, var(--paper) 100%);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px clamp(20px, 9vw, 160px) 96px;
  overflow: hidden;
}

.hero-grid {
  display: none;
}

.hero-copy {
  position: relative;
  max-width: 900px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  font: 600 12px/1.3 var(--sans);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand-deep);
  margin: 0 0 8px;
}

.hero h1,
.statement h2,
.section h2,
.contact-band h2 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  padding-bottom: 0.06em;
  font-weight: 600;
}

.hero h1 em,
.statement h2 em,
.section h2 em,
.contact-band h2 em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  color: var(--steel);
}

.hero h1 {
  text-align: center;
}

.intro {
  font-size: 21px;
  line-height: 1.381;
  max-width: 640px;
  color: var(--steel);
  margin: 12px auto 0;
  font-weight: 400;
  letter-spacing: 0.011em;
}

.hero .intro {
  text-align: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}

.button {
  border-radius: var(--r-btn);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  transform: none;
  opacity: 0.86;
}

.button span {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.button:hover span {
  transform: translateX(2px);
}

/* Primary — filled Apple blue pill */
.button-hot {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}

.button-hot:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  opacity: 1;
}

.button-outline {
  background: transparent;
  color: var(--brand-deep);
  border-color: var(--line);
  padding: 0 20px;
}

.button-outline:hover {
  border-color: var(--brand-deep);
  color: var(--brand-hover);
  opacity: 1;
}

.button-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.button-whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: #fff;
}


.button-whatsapp svg { color: #fff; flex-shrink: 0; }

.button-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.text-link {
  font-size: 17px;
  font-weight: 400;
  color: var(--brand-deep);
}

.text-link:hover {
  color: var(--brand-hover);
}

.text-link span {
  color: currentColor;
  font-size: 15px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.badge-item {
  border-left: 0;
  padding-left: 0;
  text-align: center;
}

.badge-item span {
  display: block;
  font: 400 12px var(--sans);
  letter-spacing: 0;
  color: var(--steel);
  text-transform: none;
}

.badge-item strong {
  display: block;
  font-size: 19px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.hero-index {
  display: none;
}

.hero-index span {
  color: var(--brand-deep);
  padding: 0 10px;
}

/* Floating WhatsApp — green pill with label, as in this version */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  color: #fff;
}

.floating-whatsapp svg { display: block; }

.floating-whatsapp span {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Statement Section — Apple "big claim" band */
.statement {
  padding: clamp(70px, 11vw, 160px) clamp(20px, 13vw, 220px);
  background: var(--paper);
  text-align: center;
}

.statement h2 {
  max-width: 920px;
  margin: 0 auto;
}

.statement-line {
  margin-top: 46px;
  padding-top: 0;
  border-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.statement-line p {
  margin: 0;
  max-width: 480px;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.42;
}

.circle-link {
  display: none;
}

/* Products Section */
.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 9vw, 160px);
}

.products {
  background: var(--surface);
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-top h2 {
  font-size: clamp(38px, 5vw, 64px);
  text-align: center;
}

.section-top > p {
  max-width: 560px;
  color: var(--steel);
  margin: 16px auto 0;
  font-size: 19px;
  text-align: center;
}

/* Apple-style product tiles: rounded cards, own background, gap grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 0;
}

.product-card {
  min-height: 400px;
  border: 0;
  border-radius: var(--r-card);
  background: var(--paper);
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s box-shadow, 0.3s transform;
}

.product-card:hover {
  background: var(--paper);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-card.featured {
  background: var(--surface);
}

.card-no {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  font: 400 12px var(--mono);
  color: var(--steel);
}

.product-card img {
  width: 60%;
  max-width: 280px;
  height: 45%;
  object-fit: contain;
  position: relative;
  margin: 24px 0 auto;
  mix-blend-mode: multiply;
  transition: 0.5s transform;
}

.product-card.featured img {
  height: 52%;
  max-width: 340px;
}

.product-card:hover img {
  transform: scale(1.05) translateY(-4px);
}

.product-card > div {
  align-self: center;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.product-card p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  order: -1;
}

.product-card h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.021em;
  font-weight: 600;
  padding-bottom: 2px;
  color: var(--ink);
}

.card-arrow {
  font-size: 15px;
  color: var(--brand-deep);
  margin-top: 10px;
  transition: 0.25s transform;
}

.product-card:hover .card-arrow {
  transform: translateX(4px);
}

/* Why Section */
.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  background: var(--paper);
  color: var(--ink);
}

.why-copy h2 {
  font-size: clamp(38px, 4.6vw, 64px);
}

.why-copy > p:not(.eyebrow) {
  color: var(--steel);
  max-width: 450px;
  margin: 20px 0;
  font-size: 19px;
}

.why .button-outline {
  color: var(--brand-deep);
  border-color: var(--line);
}

.reasons {
  border-top: 1px solid var(--line);
}

.reasons article {
  border-bottom: 1px solid var(--line);
  padding: 26px 0 22px;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 15px;
}

.reasons article span {
  font: 12px var(--mono);
  color: var(--brand-deep);
}

.reasons h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.reasons p {
  grid-column: 2;
  margin: 6px 0;
  color: var(--steel);
  font-size: 15px;
}

/* Contact Band */
.contact-band {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 9vw, 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
  background: var(--ink-deep);
  color: #fff;
}

.contact-band .eyebrow {
  color: var(--brand-light);
}

.contact-band h2 { text-align: center; }

.contact-band .button-hot {
  background: #fff;
  border-color: #fff;
  color: var(--ink-deep);
}

.contact-band .button-hot:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink-deep);
}

.contact-band .button-hot svg { color: var(--ink-deep); }

.contact-band .button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.contact-band .button-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Contact Section & Google Form */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  background: var(--paper);
  align-items: center;
}

.contact h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  text-align: left;
}

.contact-lede {
  color: var(--steel);
  font-size: 19px;
  line-height: 1.42;
  max-width: 46ch;
  margin: 20px 0 0;
}

.contact .actions { margin-top: 24px; justify-content: flex-start; }

.contact address {
  font-style: normal;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 42ch;
}

.contact .text-link { margin-top: 10px; }


/* Footer */
footer {
  background: var(--surface);
  color: var(--steel);
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 9vw, 160px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}

footer p { margin: 0; }

footer img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Product Detail Page */


.product-page .back {
  display: block;
  margin: 35px clamp(20px, 9vw, 160px) 0;
  font: 12px var(--mono);
  color: var(--steel);
}

.product-hero {
  padding: 65px clamp(20px, 9vw, 160px) 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  background: var(--muted-bg);
}

.product-hero h1 {
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  padding-bottom: 0.06em;
  text-align: left;
  font-weight: 600;
}

.product-hero .intro {
  color: var(--steel);
  text-align: left;
  margin: 12px 0 0;
}

.product-hero .actions { justify-content: flex-start; }

.product-photo {
  background: var(--surface);
  border-radius: var(--r-card);
  overflow: hidden;
  max-width: 460px;
  margin-left: auto;
}

.product-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-height: 52dvh;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.product-detail h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  text-align: left;
}

.specifications {
  border-top: 1px solid var(--line);
}

.specifications div {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 14px;
}

.specifications b {
  font: 400 12px var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: var(--steel);
}

.custom-enquiry-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.custom-enquiry-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel);
  margin-bottom: 28px;
  max-width: 560px;
}

.custom-enquiry-card strong {
  color: var(--ink);
}

.custom-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-description {
  padding-top: 0;
  max-width: 950px;
}

.product-description p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
}

.no-spec {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 800px) {
  .header {
    height: 48px;
    padding: 0 16px;
  }

  .brand img {
    height: 18px;
  }

  .menu-button {
    display: block;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 18px;
    gap: 4px;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(27, 30, 43, 0.14);
  }

  .header nav a {
    padding: 13px 6px;
  }

  .header.open nav {
    display: flex;
  }

  .header.scrolled nav a {
    color: var(--ink);
  }

  .header.scrolled .nav-cta {
    color: var(--brand-deep) !important;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 56px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .intro {
    font-size: 17px;
  }

  .hero-badges {
    gap: 28px;
    margin-top: 36px;
    padding-top: 24px;
  }

  .hero-index {
    left: 20px;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .statement {
    padding: 72px 20px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-top,
  .contact-band {
    display: flex;
  }

  .section-top > p {
    margin-top: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-height: 260px;
    padding: 30px 20px 26px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .why,
  .contact,
  .product-hero,
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-copy, .why-copy h2, .why-copy > p { text-align: left; }

  .contact-band-actions {
    margin-top: 6px;
  }

  footer {
    display: block;
    padding: 32px 20px;
  }

  footer p {
    margin-top: 22px;
  }

  .product-page .header nav {
    display: flex;
    position: static;
    padding: 0;
    background: none;
  }

  .product-page .header nav a:not(.nav-cta) {
    display: none;
  }

  .product-page .nav-cta {
    padding: 0;
    font-size: 11px;
  }

  .product-hero {
    padding: 40px 20px 64px;
  }

  .product-hero h1, .product-hero .intro { text-align: left; }

  .product-detail {
    padding-top: 50px;
  }

  .product-detail h2 {
    font-size: 40px;
  }

  .product-description {
    padding-top: 0;
  }

  .product-description p {
    font-size: 20px;
  }
}

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

  .hero h1 {
    font-size: 36px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button,
  .actions .text-link {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}



/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--brand-deep);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 70;
}

/* Product cards get a subtle border cue on hover */
.product-card {
  will-change: transform;
}

.product-card img {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* Location map */
.map-section {
  padding: 0 clamp(20px, 9vw, 160px) clamp(70px, 10vw, 130px);
  background: var(--paper);
}

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}

.map-head h2 {
  font-size: clamp(38px, 4.4vw, 64px);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: none;
  line-height: 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: none;
}


@media (max-width: 800px) {
  .map-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-frame iframe {
    height: 320px;
    filter: none;
  }
}

/* Certification & standards */
.standards {
  background: var(--surface);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.standards-grid article {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 30px 26px 34px;
  text-align: left;
}

.standards-grid h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.021em;
  font-weight: 600;
}

.standards-grid p {
  margin: 0;
  color: var(--steel);
  font-size: 14.5px;
  line-height: 1.55;
}



/* Product page prose + applications */
.product-description {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6vw;
  background: var(--surface);
  align-items: start;
}

.product-description .prose h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 22px;
  text-align: left;
  font-weight: 600;
}

.product-description .prose p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
}

.applications h3 {
  font: 600 13px var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 14px;
}

.applications h3 + ul { margin: 0 0 32px; }

.applications ul {
  list-style: none;
  padding: 0;
}

.applications li {
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  position: relative;
}

.applications li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 8px;
  height: 1.5px;
  background: var(--brand-deep);
}

/* Prev / next product */
.prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.prev-next a {
  padding: 30px clamp(20px, 9vw, 160px);
  display: block;
  transition: background 0.25s ease;
}

.prev-next a:hover { background: var(--surface); }

.prev-next .pn-next {
  text-align: right;
  border-left: 1px solid var(--line);
}

.prev-next span {
  display: block;
  font: 400 12px var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: var(--steel);
  margin-bottom: 7px;
}

.prev-next strong {
  font-size: 18px;
  letter-spacing: -0.021em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .product-description { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 620px) {
  .standards-grid { grid-template-columns: 1fr; }
  .prev-next { grid-template-columns: 1fr; }
  .prev-next .pn-next { text-align: left; border-left: 0; border-top: 1px solid var(--line); }
}








/* Footer wordmark */

/* Tap targets */
.brand { min-height: 44px; }

@media (max-width: 800px) {
}

/* Tap targets */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
}

.circle-link {
  flex-shrink: 0;          /* stops the flex parent squashing the circle */
}

/* prev/next is a <nav> too — keep the header rules off it */
.prev-next { display: grid; }

/* Product hero clears the fixed nav bar */
.product-page .product-hero { padding-top: 108px; }
@media (max-width: 800px) {
}

/* WhatsApp glyph sits on the blue primary, so it inherits white */
.button-hot svg { color: #fff; flex-shrink: 0; }

/* ------------------------------------------------------------------
   Radius system — Apple-style rounded cards and pill controls.
   ------------------------------------------------------------------ */
.map-frame,
.product-photo,
.custom-enquiry-card,
.specifications { border-radius: 0; }

.product-grid { border-radius: 0; }

/* ---------- Tap targets & breadcrumb spacing ---------- */
.nav-cta {
  min-height: 44px;
}



.product-hero .eyebrow {
  margin-top: 0;
}

@media (max-width: 800px) {
  .product-hero { padding-top: 88px; }
}

.menu-button { width: 44px; height: 44px; }
