﻿/* Star Hygiene — global sourcing. Static, responsive, no build step. */
:root {
  --ink: #0a1f38;
  --dark: #07182d;
  --paper: #ffffff;
  --gold: #c39a44;
  --muted: #5d6878;
  --line: #e1e5eb;
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4vw, 54px);
}
h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.06em;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 650;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 55px;
  padding: 15px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #183758;
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 12px;
  gap: 18px;
}
.button-lime {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.button-lime:hover {
  background: #d5b36b;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: #bbc4cf;
}
.button-outline:hover {
  background: #f3f5f8;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #bcc6d2;
  padding-bottom: 5px;
}
.text-link:hover {
  color: #85621f;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -90px;
  background: var(--gold);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #967125;
  outline-offset: 5px;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
.announcement {
  background: var(--ink);
  color: #f6f0e3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.announcement .status-dot {
  color: var(--gold);
  width: 5px;
  height: 5px;
}
.announcement-detail {
  color: #c5cdd8;
}
.announcement a {
  color: var(--gold);
  margin-left: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  border-color: var(--line);
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: -0.05em;
  font-size: 24px;
  line-height: 1.1;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-sub {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 550;
  letter-spacing: 0.17em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 12px;
  font-weight: 500;
}
.main-nav > a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 52px;
}
.hero-copy {
  padding: 15px 0;
}
.hero h1 {
  font-size: clamp(64px, 6.1vw, 86px);
  line-height: 1.04;
  margin: 24px 0;
  letter-spacing: -0.07em;
}
.hero h1 .serif {
  position: relative;
  isolation: isolate;
}
.hero h1 .serif:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gold);
  z-index: -1;
}
.lime-dot {
  color: #967125;
}
.hero-description {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-actions .button {
  gap: 18px;
}
.hero-actions .text-link {
  font-size: 12px;
  border: 0;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 24px;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
}
.hero-note > span {
  margin: 0 4px;
}
.network {
  position: relative;
  min-height: 555px;
  background: var(--dark);
  border-radius: 9px;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  background-image: radial-gradient(
    ellipse at 55% 42%,
    #254463 0%,
    transparent 64%
  );
}
.network:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}
.network-top {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.09em;
  color: #cbd4df;
}
.network-top > span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.network-top .status-dot {
  color: var(--gold);
}
.network-top .icon {
  width: 20px;
  height: 20px;
}
.network-globe {
  position: absolute;
  width: 112%;
  max-width: none;
  left: -6%;
  top: 26px;
  height: 490px;
}
.location {
  position: absolute;
  display: grid;
  gap: 0;
  background: rgba(255, 252, 244, 0.97);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 5px;
  min-width: 129px;
  box-shadow: 0 8px 30px #0c1e2926;
}
.location-code {
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: #5d6878;
  display: flex;
  justify-content: space-between;
}
.location-code > span {
  font-size: 15px;
  line-height: 1;
}
.location strong {
  font-size: 16px;
  letter-spacing: -0.04em;
}
.location small {
  font-size: 9px;
  color: #5d6878;
}
.location-canada {
  top: 171px;
  left: 24px;
}
.location-china {
  top: 184px;
  right: 20px;
}
.location-india {
  top: 328px;
  right: 70px;
}
.network-bottom {
  position: absolute;
  bottom: 27px;
  left: 27px;
  right: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.11em;
  color: #cbd4df;
}
.network-seal {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #8291a3;
  border-radius: 50%;
  color: var(--gold);
}
.network-seal svg {
  width: 24px;
  height: 24px;
}
.credentials {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.2fr 1.2fr;
  align-items: center;
  border-block: 1px solid var(--line);
  padding: 25px 0;
}
.credentials > div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.credentials > div:first-child {
  padding-left: 0;
  border: 0;
}
.credentials strong {
  font: 600 35px/1.3 var(--display);
  letter-spacing: -0.06em;
}
.credentials strong > span {
  font: 500 12px var(--body);
  letter-spacing: 0;
  margin-left: 7px;
}
.credentials p {
  font-size: 11px;
  margin-top: 4px;
}
.credentials-note {
  display: flex;
  align-items: center;
  gap: 14px;
}
.credentials-note > .icon {
  width: 34px;
  height: 34px;
  stroke-width: 1;
}
.credentials-note p {
  font-size: 12px;
}
.credentials-note p strong {
  font: 550 12px var(--body);
  letter-spacing: 0;
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.section-heading {
  margin-bottom: 39px;
}
.section-heading > .eyebrow {
  margin-bottom: 23px;
}
.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.heading-row > p {
  max-width: 368px;
  font-size: 14px;
  line-height: 1.85;
}
.heading-row > .text-link {
  flex-shrink: 0;
  margin-bottom: 9px;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.advantage-grid article {
  border-top: 1px solid var(--line);
  padding-top: 29px;
}
.feature-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #d9dfe7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.advantage-grid h3 {
  font-size: 23px;
  line-height: 1.25;
}
.advantage-grid article > p {
  font-size: 13px;
  line-height: 1.85;
  margin: 16px 0 23px;
  max-width: 335px;
}
.feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 550;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.feature-foot > span {
  font-size: 18px;
}
.sourcing {
  padding-top: 5px;
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.source-image {
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #eeeae1;
}
.source-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #07182d29, transparent 45%, #07182d59);
}
.source-image img {
  transition: transform 0.5s;
  filter: none;
}
.source-card:hover img {
  transform: scale(1.035);
}
.source-card:focus-visible {
  outline-offset: 8px;
}
.image-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  background: var(--paper);
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.round-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  z-index: 1;
  background: var(--paper);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.source-card h3 {
  font-size: 22px;
  margin: 22px 0 11px;
}
.source-card > p {
  font-size: 13px;
  line-height: 1.8;
}
.models {
  background: #f8f6f1;
  border-block: 1px solid #e9e4d9;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 20px;
}
.model-card {
  position: relative;
  border: 1px solid #ded9ce;
  border-radius: 7px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.model-number {
  font:
    400 36px Georgia,
    serif;
  color: #677385;
  margin-bottom: 25px;
}
.model-card .eyebrow {
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.model-card h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.model-card > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  min-height: 70px;
}
.model-pricing {
  font-size: 13px;
  font-weight: 650;
  margin-top: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ded9ce;
}
.model-pricing span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 5px;
  color: var(--muted);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  font-size: 12px;
  line-height: 1.6;
}
.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 13px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #85621f;
}
.model-card .button {
  margin-top: auto;
  min-height: 49px;
  padding: 12px;
  font-size: 11px;
  gap: 10px;
  justify-content: space-between;
}
.model-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.model-featured h3,
.model-featured .eyebrow {
  color: var(--paper);
}
.model-featured > p:not(.eyebrow),
.model-featured .model-pricing span {
  color: #ccd5e0;
}
.model-featured .model-pricing {
  border-color: #526782;
}
.model-featured .model-number,
.model-featured .check-list li:before {
  color: var(--gold);
}
.model-recommendation {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -27px;
  height: 30px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-radius: 6px 6px 0 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 650;
}
.model-help {
  text-align: center;
  font-size: 12px;
  margin-top: 27px;
}
.model-help a {
  color: var(--ink);
  border-bottom: 1px solid #b5bfcc;
  margin-left: 5px;
  padding-bottom: 3px;
}
.process {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.process-intro > .eyebrow {
  margin-bottom: 25px;
  font-size: 9px;
}
.process-intro h2 {
  font-size: 56px;
}
.process-intro > p:not(.eyebrow) {
  max-width: 330px;
  font-size: 14px;
  margin: 24px 0;
}
.process-steps article {
  display: flex;
  gap: 25px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.process-steps article:first-child {
  padding-top: 0;
  border-top: 0;
}
.process-steps article > span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 1px solid #bcc6d2;
  font-size: 10px;
}
.process-steps h3 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}
.process-steps p {
  font-size: 13px;
  line-height: 1.8;
}
.inquiry-section {
  background: var(--ink);
  color: var(--paper);
  padding: 85px 0;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.inquiry-copy .eyebrow {
  color: var(--gold);
  font-size: 9px;
  margin-bottom: 24px;
}
.inquiry-copy h2 {
  font-size: clamp(38px, 4.3vw, 59px);
  line-height: 1.1;
}
.inquiry-copy > p:not(.eyebrow) {
  color: #ccd5e0;
  font-size: 14px;
  line-height: 1.85;
  max-width: 370px;
  margin-top: 25px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 22px;
}
.person-monogram {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  background: #254463;
  color: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}
.contact-person strong {
  font-size: 14px;
  font-weight: 550;
  display: block;
}
.contact-person div > span {
  font-size: 10px;
  color: #cbd4df;
}
.direct-contact {
  display: grid;
  gap: 8px;
  max-width: 320px;
}
.direct-contact a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.direct-contact a:first-child {
  font-size: 20px;
  margin-bottom: 8px;
}
.direct-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.direct-contact small {
  font-size: 10px;
  color: #cbd4df;
}
.whatsapp-link {
  display: inline-flex;
  gap: 15px;
  font-size: 11px;
  color: var(--gold);
  border-bottom: 1px solid #60728a;
  padding-bottom: 7px;
  margin-top: 27px;
}
.quote-form {
  background: var(--paper);
  color: var(--ink);
  padding: 34px;
  border-radius: 7px;
}
.form-heading {
  margin-bottom: 25px;
}
.form-heading h3 {
  font-size: 25px;
}
.form-heading p {
  font-size: 12px;
  margin-top: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 16px;
}
.field {
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 550;
  margin-bottom: 7px;
}
.field label > span:not(.optional) {
  color: #85621f;
}
.field label > .optional {
  font-weight: 400;
  font-size: 10px;
  color: #657184;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  padding: 11px 12px;
  font-size: 12px;
  color: var(--ink);
  min-height: 44px;
  transition: border-color 0.15s;
}
.field textarea {
  resize: vertical;
  min-height: 95px;
}
.field select {
  padding-right: 23px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #697687;
}
.field [aria-invalid="true"] {
  border-color: #ae3826;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #c39a44;
  outline-offset: 1px;
}
.hp {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}
.quote-form > .button {
  width: 100%;
  margin-top: 19px;
  justify-content: space-between;
  font-size: 13px;
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.form-privacy {
  font-size: 9px;
  text-align: center;
  margin-top: 13px;
  line-height: 1.7;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status:empty {
  display: none;
}
.form-status {
  font-size: 13px;
  padding: 13px;
  border-radius: 4px;
  margin-top: 16px;
}
.form-status.ok {
  background: #e0edc9;
  color: #29471d;
}
.form-status.err {
  background: #f6e3d9;
  color: #852b1b;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.faq h2 {
  font-size: 43px;
  margin-top: 23px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  scroll-margin-top: 115px;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 550;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 13px;
  line-height: 1.8;
  padding: 12px 25px 1px 0;
}
.faq-list p a {
  text-decoration: underline;
}
.site-footer {
  background: #f8f6f1;
  border-top: 1px solid var(--line);
  padding: 48px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
}
.footer-top > p {
  font: 500 27px/1.25 var(--display);
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-left: auto;
  margin-right: 80px;
}
.back-top {
  width: 43px;
  height: 43px;
  border: 1px solid #cbd3de;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.footer-middle {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-top: 1px solid #dce2ea;
  font-size: 10px;
}
.footer-middle > a {
  margin-left: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #dce2ea;
  padding-top: 22px;
  font-size: 9px;
  color: #657184;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.mobile-cta {
  display: none;
}
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.error-page h1 {
  font-size: 64px;
  margin: 20px 0;
}
.error-page p {
  margin-bottom: 25px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 70px;
  }
  .hero h1 {
    font-size: 90px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 20px;
  }
  .hero {
    gap: 28px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .network {
    min-height: 540px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 15px;
  }
  .location-china {
    right: 14px;
  }
  .location-canada {
    left: 14px;
  }
  .credentials > div {
    padding-left: 22px;
  }
  .credentials strong {
    font-size: 30px;
  }
  .model-card {
    padding: 25px 20px;
  }
  .model-card h3 {
    font-size: 25px;
  }
  .model-card .button {
    font-size: 10px;
  }
  .inquiry-grid {
    gap: 40px;
  }
  .process {
    gap: 60px;
  }
  .quote-form {
    padding: 27px;
  }
  .source-image {
    height: auto;
  aspect-ratio: 3 / 2;
  }
  .faq {
    gap: 50px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    height: 80px;
  }
  .main-nav {
    gap: 15px;
  }
  .main-nav > a:not(.button) {
    font-size: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-description {
    font-size: 14px;
  }
  .network {
    min-height: 510px;
  }
  .network-top {
    left: 18px;
    right: 18px;
    font-size: 7px;
  }
  .network-globe {
    width: 135%;
    left: -17.5%;
  }
  .location {
    min-width: 108px;
    padding: 10px;
  }
  .location-canada {
    top: 165px;
    left: 12px;
  }
  .location-china {
    top: 206px;
    right: 10px;
  }
  .location-india {
    right: 45px;
  }
  .hero-note {
    font-size: 8px;
    gap: 4px;
  }
  .credentials {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
  .credentials-note {
    display: none;
  }
  .section {
    padding-block: 70px;
  }
  .sourcing {
    padding-top: 0;
  }
  .heading-row {
    gap: 35px;
  }
  .heading-row > p {
    max-width: 310px;
    font-size: 13px;
  }
  .advantage-grid {
    gap: 22px;
  }
  .advantage-grid h3 {
    font-size: 21px;
  }
  .source-grid {
    gap: 18px;
  }
  .source-image {
    height: auto;
  aspect-ratio: 3 / 2;
  }
  .source-card h3 {
    font-size: 20px;
  }
  .image-label {
    font-size: 7px;
    left: 12px;
    top: 12px;
  }
  .model-grid {
    gap: 12px;
  }
  .model-card {
    padding: 23px 16px;
  }
  .model-card h3 {
    font-size: 22px;
  }
  .model-card > p:not(.eyebrow) {
    font-size: 12px;
    min-height: 85px;
  }
  .model-card .eyebrow {
    font-size: 7px;
  }
  .model-pricing {
    font-size: 11px;
  }
  .check-list {
    font-size: 11px;
  }
  .model-card .button {
    font-size: 10px;
    gap: 4px;
    padding: 10px 7px;
  }
  .model-card .button .icon {
    width: 15px;
  }
  .model-recommendation {
    font-size: 7px;
    padding: 0 15px;
  }
  .process {
    gap: 40px;
  }
  .process-intro h2 {
    font-size: 46px;
  }
  .process-intro > .eyebrow {
    font-size: 7px;
  }
  .inquiry-grid {
    gap: 28px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .inquiry-copy h2 {
    font-size: 39px;
  }
  .inquiry-copy .eyebrow {
    font-size: 7px;
  }
  .quote-form {
    padding: 23px;
  }
  .form-grid {
    column-gap: 12px;
  }
  .field label {
    font-size: 10px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 11px;
    padding: 10px;
  }
  .form-heading h3 {
    font-size: 22px;
  }
  .whatsapp-link {
    font-size: 9px;
  }
  .contact-person div > span {
    font-size: 9px;
  }
  .direct-contact a:first-child {
    font-size: 18px;
  }
  .faq {
    gap: 35px;
  }
  .faq h2 {
    font-size: 37px;
  }
  .footer-top > p {
    margin-right: 35px;
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 85px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .announcement {
    min-height: 32px;
    font-size: 9px;
  }
  .announcement-detail {
    display: none;
  }
  .header-inner {
    height: 74px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid #d9dfe7;
    background: transparent;
    border-radius: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }
  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    box-shadow: 0 10px 15px #07182d0a;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav > a:not(.button) {
    font-size: 14px;
    padding: 14px 5px;
  }
  .main-nav .button {
    margin-top: 10px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 25px;
    padding-bottom: 32px;
    gap: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.11em;
  }
  .hero h1 {
    font-size: clamp(57px, 12.6vw, 82px);
    margin: 23px 0;
    line-height: 1.03;
  }
  .hero-description {
    max-width: 440px;
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 24px;
  }
  .hero-actions .button {
    padding: 14px 17px;
    font-size: 12px;
    min-height: 52px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 20px;
  }
  .network {
    min-height: 450px;
  }
  .network-globe {
    width: 105%;
    left: -2.5%;
    height: 410px;
    top: 20px;
  }
  .network-top {
    font-size: 8px;
    left: 22px;
    right: 22px;
    top: 22px;
  }
  .location {
    min-width: 118px;
    padding: 11px 14px;
  }
  .location-canada {
    left: 20px;
    top: 145px;
  }
  .location-china {
    right: 20px;
    top: 165px;
  }
  .location-india {
    right: 65px;
    top: 281px;
  }
  .network-bottom {
    font-size: 9px;
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .network-seal {
    width: 36px;
    height: 36px;
  }
  .credentials {
    padding: 22px 0;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .credentials > div {
    padding-left: 13px;
  }
  .credentials strong {
    font-size: 30px;
  }
  .credentials strong > span {
    display: block;
    font-size: 9px;
    margin: 3px 0 0;
    letter-spacing: 0;
  }
  .credentials > div:nth-child(2) strong > span {
    display: inline;
    margin-left: 3px;
    font-size: 17px;
  }
  .credentials p {
    font-size: 9px;
    line-height: 1.5;
    max-width: 110px;
  }
  .credentials > div:nth-child(2) p {
    margin-top: 19px;
  }
  .section {
    padding-block: 58px;
  }
  .sourcing {
    padding-top: 0;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 18px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .heading-row {
    display: block;
  }
  .heading-row > p {
    margin-top: 20px;
    max-width: 100%;
  }
  .heading-row > .text-link {
    margin-top: 22px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .advantage-grid article {
    padding-top: 22px;
  }
  .feature-icon {
    float: left;
    margin: 0 19px 0 0;
    width: 42px;
    height: 42px;
  }
  .advantage-grid h3 {
    font-size: 23px;
  }
  .advantage-grid article > p {
    max-width: none;
    margin-top: 18px;
  }
  .feature-foot {
    font-size: 11px;
  }
  .source-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .source-image {
    height: auto;
  aspect-ratio: 3 / 2;
  }
  .source-card h3 {
    font-size: 25px;
    margin: 17px 0 9px;
  }
  .source-card > p {
    font-size: 13px;
  }
  .image-label {
    font-size: 9px;
    left: 17px;
    top: 17px;
  }
  .model-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 0;
  }
  .model-card {
    padding: 27px;
  }
  .model-number {
    font-size: 33px;
    margin-bottom: 18px;
  }
  .model-card .eyebrow {
    font-size: 9px;
  }
  .model-card h3 {
    font-size: 30px;
  }
  .model-card > p:not(.eyebrow) {
    font-size: 14px;
    min-height: 0;
  }
  .model-pricing {
    font-size: 14px;
    margin-top: 23px;
  }
  .model-pricing span {
    font-size: 12px;
  }
  .check-list {
    font-size: 13px;
  }
  .model-card .button {
    font-size: 12px;
    padding: 14px;
  }
  .model-card .button .icon {
    width: 20px;
  }
  .model-featured {
    margin-top: 25px;
  }
  .model-recommendation {
    font-size: 9px;
    padding: 0 27px;
  }
  .model-help {
    font-size: 12px;
    line-height: 1.9;
  }
  .model-help a {
    display: inline-block;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .process-intro > .eyebrow {
    font-size: 8px;
  }
  .process-intro h2 {
    font-size: 45px;
  }
  .process-intro > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    margin: 20px 0;
  }
  .process-steps article {
    gap: 20px;
    padding: 20px 0;
  }
  .process-steps h3 {
    font-size: 21px;
  }
  .inquiry-section {
    padding: 55px 0;
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .inquiry-copy .eyebrow {
    font-size: 8px;
  }
  .inquiry-copy h2 {
    font-size: 46px;
  }
  .inquiry-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .contact-person {
    margin: 25px 0 18px;
  }
  .contact-person div > span {
    font-size: 10px;
  }
  .whatsapp-link {
    font-size: 11px;
    margin-top: 23px;
  }
  .quote-form {
    padding: 25px 21px;
  }
  .form-heading h3 {
    font-size: 25px;
  }
  .form-grid {
    gap: 18px 14px;
  }
  .field label {
    font-size: 11px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 10px;
    min-height: 46px;
  }
  .field label > .optional {
    font-size: 9px;
  }
  .form-privacy {
    font-size: 10px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    font-size: 39px;
  }
  .faq-list summary {
    font-size: 13px;
    min-height: 32px;
  }
  .site-footer {
    padding: 35px 0 100px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 27px;
    padding-bottom: 25px;
  }
  .footer-top > .brand {
    flex: 1;
  }
  .footer-top > p {
    order: 3;
    flex-basis: 100%;
    font-size: 27px;
    margin: 0;
  }
  .footer-middle {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    font-size: 10px;
  }
  .footer-middle > a {
    margin-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    font-size: 10px;
  }
  .footer-bottom nav {
    gap: 24px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 35;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px #07182d08;
  }
  .mobile-cta > a:first-child {
    font-size: 12px;
  }
  .mobile-cta .button {
    font-size: 12px;
    padding: 11px 18px;
  }
  .error-page h1 {
    font-size: 45px;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero-actions {
    gap: 13px;
  }
  .hero .eyebrow {
    font-size: 7px;
  }
  .hero-note {
    font-size: 8px;
  }
  .network {
    min-height: 415px;
  }
  .network-globe {
    height: 370px;
  }
  .location-india {
    top: 258px;
    right: 40px;
  }
  .location {
    min-width: 105px;
    padding: 9px 11px;
  }
  .location-china {
    right: 13px;
  }
  .location-canada {
    left: 13px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .quote-form {
    padding: 24px 20px;
  }
  .inquiry-copy h2 {
    font-size: 41px;
  }
  .credentials strong {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
  .source-card:hover img {
    transform: none;
  }
}

.technology {
  padding-bottom: 90px;
}
.technology-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 30px;
}
.technology-heading h2 {
  font-size: 36px;
}
.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.technology-grid article > span {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.09em;
}
.technology-grid h3 {
  font-size: 18px;
  margin: 13px 0 12px;
  letter-spacing: -0.025em;
}
.technology-grid p {
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 850px) {
  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .technology {
    padding-bottom: 55px;
  }
  .technology-heading {
    display: block;
    padding-top: 25px;
  }
  .technology-heading h2 {
    margin-top: 20px;
  }
  .technology-grid {
    gap: 25px 20px;
  }
  .technology-grid h3 {
    font-size: 18px;
  }
  html {
    scroll-padding-bottom: 85px;
  }
  .form-status {
    scroll-margin-bottom: 85px;
  }
  .field input,
  .field select,
  .field textarea {
    scroll-margin-block: 100px;
  }
}

/* Live text wordmark with the original star and supplied brand colors. */
.brand { gap: 10px; }
.brand-star { width: 35px; height: 35px; color: var(--gold); flex-shrink: 0; }
.brand-wordmark { position: relative; display: block; padding-block: 7px 13px; font-family: Arial, Helvetica, sans-serif; font-size: 25px; font-weight: 700; line-height: 1; letter-spacing: 0.01em; white-space: nowrap; }
.brand-wordmark::after { content: ""; position: absolute; width: 43px; height: 3px; bottom: 0; left: 50%; transform: translateX(-50%); background: var(--gold); }
.brand-star-word { color: var(--ink); }
.brand-hygiene-word { color: var(--gold); }
.error-page .brand { margin-bottom: 32px; }
@media (max-width: 700px) { .brand-wordmark { font-size: 21px; } .brand-star { width: 29px; height: 29px; } }
@media (max-width: 380px) { .brand { gap: 8px; } .brand-wordmark { font-size: 18px; } .brand-star { width: 25px; height: 25px; } }

/* Keep the mobile inquiry compact while preserving readable inputs. */
@media (max-width: 700px) {
  #quote-form { scroll-margin-top: 0; padding: 18px 16px; }
  .quote-form .form-heading { margin-bottom: 14px; }
  .quote-form .form-heading h3 { font-size: 23px; }
  .quote-form .form-heading p { margin-top: 5px; line-height: 1.4; }
  .quote-form .form-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px 12px; }
  .quote-form .field.full { grid-column: 1 / -1; }
  .quote-form .field label { margin-bottom: 4px; line-height: 1.4; }
  .quote-form .field input, .quote-form .field select { min-height: 44px; height: 44px; padding: 8px; }
  .quote-form .field select { padding-right: 18px; }
  .quote-form .field textarea { min-height: 64px; height: 64px; padding: 8px; }
  .quote-form > .button { min-height: 46px; margin-top: 12px; padding-block: 10px; }
  .quote-form .form-privacy { margin-top: 9px; line-height: 1.5; }
}

@media (min-width: 701px) { .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 38px; } }

@media (min-width: 701px) { .source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
