@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --blue-950: #061b33;
  --blue-900: #082b55;
  --blue-800: #0c4e8f;
  --blue-700: #1265ae;
  --blue-100: #dbeaf7;
  --orange-600: #e84525;
  --orange-500: #f05232;
  --orange-100: #ffe3dc;
  --ink: #0b1725;
  --muted: #5e6875;
  --paper: #f5f3ee;
  --surface: #ffffff;
  --line: #d8dde2;
  --success: #1e8c5b;
  --warning: #ad7413;
  --danger: #b8392c;
  --shadow: 0 24px 80px rgba(6, 27, 51, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid #ffb5a4;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--surface);
  color: var(--blue-900);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section { padding: 78px 0; }
.section-tight { padding: 52px 0; }
.surface { background: var(--surface); }
.blue-section { background: var(--blue-950); color: #fff; }
.orange-section { background: var(--orange-600); color: #fff; }

.display,
h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

h1 { font-size: clamp(3rem, 6.4vw, 5.7rem); font-weight: 500; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.15rem, 4.3vw, 3.8rem); font-weight: 500; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); letter-spacing: -0.015em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange-600);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light { color: #ff8b72; }

.lead-copy {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(.94rem, 1.1vw, 1.04rem);
}

.blue-section .lead-copy,
.orange-section .lead-copy { color: rgba(255, 255, 255, 0.72); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading .lead-copy { margin: 0; }

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  padding: 13px 20px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-600); color: #fff; box-shadow: 0 10px 24px rgba(232, 69, 37, 0.25); }
.btn-primary:hover { background: #d83c1e; }
.btn-blue { background: var(--blue-900); color: #fff; box-shadow: 0 10px 24px rgba(6, 27, 51, 0.2); }
.btn-blue:hover { background: var(--blue-800); }
.btn-white { background: #fff; color: var(--blue-950); }
.btn-outline { border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-quiet { border: 1px solid var(--line); background: transparent; color: var(--blue-900); }
.btn-small { min-height: 42px; padding: 11px 16px; font-size: 0.88rem; }

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(6,27,51,.1);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a:not(.btn) { color: #263648; font-size: .84rem; font-weight: 600; }
.nav-links a:not(.btn):hover { color: var(--orange-600); }
.nav-menu-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { color: var(--blue-900); font-size: .84rem; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--blue-950); padding: 8px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  background: var(--blue-950);
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(18,101,174,.25), transparent 23%),
    linear-gradient(118deg, transparent 30%, rgba(18,101,174,.13) 54%, transparent 72%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -12vw;
  bottom: -32vw;
  width: 58vw;
  height: 58vw;
  border: 13vw solid rgba(18,101,174,.22);
  border-radius: 42% 58% 64% 36% / 64% 41% 59% 36%;
  content: "";
  pointer-events: none;
  transform: rotate(22deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .64fr);
  gap: 46px;
  align-items: center;
  padding-block: 40px 30px;
}

.hero-copy { position: relative; z-index: 3; }
.hero .wholesale-hero-title { max-width: none; font-size: clamp(2.8rem, 4vw, 3.6rem); line-height: .94; }
.hero .wholesale-hero-title .hero-title-line { display: block; white-space: nowrap; }
.hero .wholesale-hero-title .hero-title-accent { color: #ff8065; font-size: .72em; }
.hero-copy > p {
  max-width: 57ch;
  margin: 20px 0 25px;
  color: #bccadb;
  font-size: clamp(.96rem, 1.25vw, 1.08rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: #c9d6e4; font-size: .77rem; font-weight: 600; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 8px; height: 8px; border-radius: 50%; background: #ff8065; content: ""; box-shadow: 0 0 0 5px rgba(232,69,37,.13); }

.hero-visual { position: relative; min-height: 480px; }
.hero-photo {
  position: absolute;
  inset: 0 0 62px 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 110px 22px 72px 22px;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,27,51,.05), rgba(6,27,51,.5)); content: ""; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-orbit {
  position: absolute;
  top: 24px;
  left: -28px;
  width: 76px;
  height: 76px;
  border: 10px solid var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgba(232,69,37,.16);
}

.quick-form {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 0;
  width: min(370px, calc(100% - 24px));
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 22px;
}

.quick-form h2 { font-size: 1.75rem; }
.quick-form p { margin: 5px 0 18px; color: var(--muted); font-size: .82rem; }
.compact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.field { display: grid; gap: 7px; }
.field + .field { margin-top: 14px; }
.field label { color: #3e4a58; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue-700); outline: 3px solid rgba(18,101,174,.13); }
.field textarea { min-height: 112px; resize: vertical; }
.quick-form .btn { width: 100%; margin-top: 12px; }
.form-message { min-height: 20px; margin: 10px 0 0 !important; color: var(--muted); font-size: .78rem; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }
.form-recovery-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.form-recovery-actions a { display: inline-flex; min-height: 38px; align-items: center; border-radius: 999px; background: var(--blue-950); color: #fff; padding: 8px 13px; font-weight: 700; }
.form-recovery-actions a:last-child { background: #167d4d; }

/* Marquee trust rail */
.trust-rail { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; }
.trust-title { padding: 16px 26px 16px 0; color: var(--orange-600); font-family: "Barlow Condensed", sans-serif; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
.trust-item { padding: 16px 24px; border-right: 1px solid var(--line); color: #344355; font-size: .8rem; font-weight: 600; }
.trust-item:last-child { border-right: 0; }

/* Product range */
.product-showcase { display: grid; grid-template-columns: .9fr 1.1fr; gap: 14px; }
.product-feature {
  position: relative;
  display: flex;
  min-height: 470px;
  overflow: hidden;
  align-items: flex-end;
  border-radius: 76px 18px 18px 18px;
  background: var(--blue-950);
  color: #fff;
  isolation: isolate;
}
.product-feature img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.product-feature::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(6,27,51,.03) 10%, rgba(6,27,51,.94) 90%); content: ""; }
.product-feature:hover img { transform: scale(1.035); }
.product-feature-copy { padding: 30px; }
.product-index { color: #ff9078; font-family: "Barlow Condensed", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-feature h3 { margin: 7px 0 8px; font-size: 2.45rem; }
.product-feature p { max-width: 42ch; margin: 0 0 20px; color: rgba(255,255,255,.74); font-size: .85rem; }
.product-link { display: inline-flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 700; }
.product-link b { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; font-weight: 500; }

.product-catalog { display: grid; grid-template-rows: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.product-row { display: grid; min-width: 0; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); padding: 20px 22px; transition: background 180ms ease, color 180ms ease; }
.product-row:last-child { border-bottom: 0; }
.product-row:hover { background: var(--blue-950); color: #fff; }
.product-row-number { color: var(--orange-600); font-family: "Barlow Condensed", sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.product-row-copy { display: grid; min-width: 0; grid-template-columns: minmax(150px,.8fr) minmax(145px,1fr); align-items: center; gap: 5px 22px; }
.product-row-copy small { grid-column: 1; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.product-row-copy strong { grid-column: 1; font-family: "Barlow Condensed", sans-serif; font-size: 1.65rem; font-weight: 600; line-height: 1; }
.product-row-copy em { grid-column: 2; grid-row: 1 / span 2; color: var(--muted); font-size: .76rem; font-style: normal; }
.product-row:hover .product-row-copy small,
.product-row:hover .product-row-copy em { color: rgba(255,255,255,.62); }
.product-row-arrow { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-900); transition: border-color 180ms, color 180ms, transform 180ms; }
.product-row:hover .product-row-arrow { border-color: rgba(255,255,255,.3); color: #fff; transform: rotate(8deg); }

.brand-rail { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; margin-top: 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); padding: 12px 20px; }
.brand-rail span { color: var(--muted); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.brand-rail strong { color: var(--blue-900); font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 600; }
.brand-rail small { margin-left: auto; color: var(--muted); font-size: .68rem; }

/* Guided enquiry builder */
.builder-section { position: relative; overflow: hidden; padding-top: 16px; }
.builder-shell { position: relative; display: grid; grid-template-columns: .72fr 1.05fr .58fr; gap: 36px; align-items: center; overflow: hidden; border-radius: 34px 90px 34px 34px; background: var(--blue-950); color: #fff; padding: 42px; isolation: isolate; }
.builder-shell::before { position: absolute; z-index: -1; right: -120px; top: -180px; width: 420px; height: 420px; border: 78px solid rgba(18,101,174,.24); border-radius: 43% 57% 62% 38% / 58% 38% 62% 42%; content: ""; transform: rotate(24deg); }
.builder-intro > p:not(.eyebrow) { margin: 16px 0 20px; color: #aebfd1; font-size: .86rem; }
.builder-meter { width: 96px; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.14); }
.builder-meter span { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--orange-500); }
.builder-controls { display: grid; gap: 24px; }
.choice-group { min-width: 0; margin: 0; border: 0; padding: 0; }
.choice-group legend { margin-bottom: 10px; color: #9eb0c3; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.choice-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-pill { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.05); color: #d6e0eb; padding: 8px 12px; font-size: .74rem; font-weight: 600; transition: background 160ms, border-color 160ms, color 160ms; }
.choice-pill:hover { border-color: rgba(255,255,255,.45); }
.choice-pill.active { border-color: #ff8b72; background: var(--orange-600); color: #fff; }
.builder-output { position: relative; border-radius: 50px 16px 16px 16px; background: #fff; color: var(--ink); padding: 24px; }
.builder-output > span { color: var(--orange-600); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.builder-output p { min-height: 66px; margin: 12px 0 18px; font-size: .86rem; font-weight: 500; }
.builder-output .btn { width: 100%; padding-inline: 14px; font-size: .78rem; }
.builder-output small { display: block; margin-top: 11px; color: var(--muted); font-size: .65rem; text-align: center; }

/* Why */
.why-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 62px; align-items: start; }
.why-sticky { position: sticky; top: 120px; }
.why-sticky p { margin: 18px 0 24px; }
.proof-stack { border-top: 1px solid rgba(255,255,255,.15); }
.proof-row { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.proof-number { color: #ff8065; font-family: "Barlow Condensed", sans-serif; font-size: .86rem; font-weight: 700; }
.proof-row h3 { margin-bottom: 6px; color: #fff; font-size: 1.55rem; }
.proof-row p { margin: 0; color: #9fb0c2; font-size: .84rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.process-step { position: relative; min-height: 235px; background: #fff; padding: 28px; }
.process-num { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); font-family: "Barlow Condensed", sans-serif; font-weight: 700; }
.process-step h3 { margin: 40px 0 9px; font-size: 1.65rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .84rem; }

.industry-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.industry-pill { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.65); padding: 8px 13px; color: #3d4a58; font-size: .74rem; font-weight: 600; }

/* Quote-ready conversation brief */
.brief-section { background: #eaf2f8; }
.brief-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 26px 54px; align-items: start; }
.brief-heading { grid-row: span 2; }
.brief-heading .lead-copy { margin: 16px 0 0; }
.brief-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.brief-item { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; border: 1px solid rgba(12,78,143,.14); border-radius: 14px; background: rgba(255,255,255,.72); padding: 15px; }
.brief-item > span { color: var(--orange-600); font-family: "Barlow Condensed", sans-serif; font-size: .72rem; font-weight: 700; }
.brief-item h3 { font-size: 1.25rem; }
.brief-item p { margin: 2px 0 0; color: var(--muted); font-size: .72rem; }
.brief-prompt { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; border-radius: 16px 42px 16px 16px; background: var(--blue-950); color: #fff; padding: 18px 20px; }
.brief-prompt > span { color: #ff8b72; font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.brief-prompt p { margin: 0; color: #c5d2df; font-size: .76rem; }
.brief-prompt p b { color: #fff; font-weight: 600; }
.brief-prompt a { color: #fff; font-size: .72rem; font-weight: 700; white-space: nowrap; }

/* Quote section */
.quote-shell {
  position: relative;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-900);
  color: #fff;
  padding: 48px;
}
.quote-shell::after { position: absolute; left: -180px; bottom: -260px; width: 430px; height: 430px; border: 85px solid rgba(255,255,255,.06); border-radius: 45% 55% 63% 37%; content: ""; transform: rotate(30deg); }
.quote-copy { position: relative; z-index: 2; }
.quote-copy h2 { margin-bottom: 16px; }
.quote-copy > p { color: #b9cbe0; }
.direct-actions { display: grid; gap: 8px; margin-top: 24px; }
.direct-action { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.15); padding: 13px 0 4px; font-size: .82rem; font-weight: 700; }
.quote-form { position: relative; z-index: 3; border-radius: var(--radius-md); background: #fff; color: var(--ink); padding: 26px; }
.quote-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .btn { width: 100%; margin-top: 18px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; grid-template-columns: 1fr auto; gap: 20px; align-items: center; border: 0; background: transparent; padding: 19px 0; color: var(--ink); text-align: left; font-size: .9rem; font-weight: 600; }
.faq-plus { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); transition: transform 180ms; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 230ms ease; }
.faq-answer p { max-width: 65ch; margin: 0; padding: 0 45px 24px 0; color: var(--muted); font-size: .92rem; }

/* Footer and mobile actions */
.site-footer { background: #031426; color: #aebccc; padding: 52px 0 84px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .6fr .6fr; gap: 60px; }
.footer-logo { width: 205px; filter: brightness(0) invert(1); }
.footer-about p { max-width: 46ch; font-size: .88rem; }
.footer-col h3 { margin-bottom: 18px; color: #fff; font-size: 1.25rem; letter-spacing: .03em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; font-size: .88rem; }
.footer-links a:hover { color: #ff8065; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: .75rem; }
.floating-contact { position: fixed; z-index: 120; right: 18px; bottom: 20px; display: grid; gap: 10px; }
.floating-contact-link { display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: #fff; box-shadow: 0 12px 34px rgba(6,27,51,.22); padding: 12px 17px; font-size: .78rem; font-weight: 700; transition: transform 180ms ease, box-shadow 180ms ease; }
.floating-contact-link:hover { color: #fff; box-shadow: 0 16px 42px rgba(6,27,51,.3); transform: translateY(-2px); }
.floating-contact-link.call { background: var(--blue-900); }
.floating-contact-link.whatsapp { background: #167d4d; }
.floating-contact-link .icon { width: 21px; height: 21px; }

/* Product pages */
.product-page { --product-accent: var(--orange-600); --product-deep: var(--blue-950); }
.product-page.gear { --product-accent: #ee5c2e; --product-deep: #20272f; }
.product-page.hydraulic { --product-accent: #22a5cf; --product-deep: #06324d; }
.product-page.engine { --product-accent: #e24728; --product-deep: #32130d; }
.product-page.grease { --product-accent: #d89b24; --product-deep: #30240b; }
.product-page.industrial { --product-accent: #2877b9; --product-deep: #061b33; }

.product-hero { position: relative; overflow: hidden; background: var(--product-deep); color: #fff; }
.product-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 76% 30%, color-mix(in srgb, var(--product-accent) 28%, transparent), transparent 36%), linear-gradient(118deg, transparent 25%, color-mix(in srgb, var(--product-accent) 12%, transparent) 55%, transparent 76%); content: ""; }
.product-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .74fr; gap: 58px; align-items: center; padding-block: 58px 66px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: .76rem; font-weight: 700; }
.product-hero h1 { font-size: clamp(3.1rem, 6vw, 5.5rem); }
.product-hero h1 em { display: block; color: var(--product-accent); font-style: normal; }
.product-hero-copy > p { max-width: 55ch; margin: 20px 0 24px; color: rgba(255,255,255,.73); font-size: .96rem; }
.grade-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; }
.grade-chip { border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(255,255,255,.06); padding: 7px 10px; color: rgba(255,255,255,.85); font-size: .7rem; font-weight: 600; }
.product-media { position: relative; min-height: 450px; }
.product-media img { width: 100%; height: 450px; object-fit: cover; border-radius: 26px 82px 26px 26px; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.product-media::after { position: absolute; right: -20px; bottom: -20px; width: 110px; height: 110px; border: 18px solid var(--product-accent); border-radius: 50%; content: ""; }
.floating-tag { position: absolute; bottom: 24px; left: -26px; max-width: 240px; border-radius: 14px; background: #fff; color: var(--ink); padding: 16px 18px; box-shadow: var(--shadow); font-size: .76rem; font-weight: 600; }

.spec-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.spec-intro { position: sticky; top: 118px; }
.spec-intro p { margin: 22px 0; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec-card { min-height: 185px; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 26px; }
.spec-card strong { display: block; margin-bottom: 24px; color: var(--product-accent); font-family: "Barlow Condensed", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .14em; }
.spec-card h3 { margin-bottom: 8px; font-size: 1.65rem; }
.spec-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.application-band { background: var(--product-deep); color: #fff; }
.application-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; }
.application-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.application-item { border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 22px; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 700; }
.application-item::before { display: block; width: 22px; height: 4px; margin-bottom: 26px; background: var(--product-accent); content: ""; }

.product-jump { position: sticky; z-index: 70; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(5,28,52,.07); backdrop-filter: blur(16px); }
.product-page main section[id] { scroll-margin-top: 70px; }
.product-jump-inner { display: flex; min-height: 54px; align-items: center; gap: 26px; overflow-x: auto; scrollbar-width: none; }
.product-jump-inner::-webkit-scrollbar { display: none; }
.product-jump strong { flex: 0 0 auto; color: var(--product-deep); font-family: "Barlow Condensed", sans-serif; font-size: .94rem; font-weight: 600; }
.product-jump a { flex: 0 0 auto; color: var(--muted); font-size: .74rem; font-weight: 600; }
.product-jump a:hover { color: var(--product-deep); }
.product-jump .jump-cta { margin-left: auto; border-radius: 999px; background: var(--product-accent); color: #fff; padding: 8px 13px; }
.product-jump .jump-cta:hover { color: #fff; filter: brightness(.92); }

.selection-shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: 54px; align-items: center; }
.selection-heading p:last-child { max-width: 42ch; margin-top: 16px; color: var(--muted); font-size: .9rem; }
.selection-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.selection-track::before { position: absolute; top: 27px; right: 9%; left: 9%; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--product-deep), var(--product-accent)); content: ""; }
.selection-step { position: relative; min-height: 174px; border: 1px solid var(--line); border-radius: 18px 44px 18px 18px; background: #fff; padding: 19px 16px 18px; box-shadow: 0 14px 34px rgba(5,28,52,.06); }
.selection-step span { position: relative; z-index: 1; display: grid; width: 21px; height: 21px; margin: 0 0 36px; place-items: center; border: 4px solid #fff; border-radius: 50%; background: var(--product-accent); color: transparent; box-shadow: 0 0 0 1px color-mix(in srgb, var(--product-accent) 52%, transparent); font-size: 0; }
.selection-step h3 { margin-bottom: 7px; font-size: 1.32rem; }
.selection-step p { margin: 0; color: var(--muted); font-size: .78rem; }

.guide-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; align-items: stretch; }
.guide-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 22px 70px 22px 22px; background: #fff; }
.guide-head { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; border-bottom: 1px solid var(--line); padding: 28px; }
.guide-head p { max-width: 54ch; margin: 8px 0 0; color: var(--muted); font-size: .84rem; }
.guide-head small { color: var(--muted); font-size: .65rem; text-align: right; }
.guide-list { display: grid; }
.guide-row { display: grid; grid-template-columns: .56fr .9fr 1.25fr; gap: 20px; align-items: start; padding: 19px 28px; }
.guide-row + .guide-row { border-top: 1px solid var(--line); }
.guide-row strong { color: var(--product-deep); font-size: .83rem; font-weight: 600; }
.guide-row span { color: var(--ink); font-size: .8rem; font-weight: 600; }
.guide-row p { margin: 0; color: var(--muted); font-size: .76rem; }
.enquiry-panel { position: relative; overflow: hidden; border-radius: 22px 70px 22px 22px; background: var(--product-deep); color: #fff; padding: 30px; }
.enquiry-panel::after { position: absolute; right: -90px; bottom: -120px; width: 250px; height: 250px; border: 48px solid color-mix(in srgb, var(--product-accent) 45%, transparent); border-radius: 45% 55% 62% 38%; content: ""; transform: rotate(26deg); }
.enquiry-panel > * { position: relative; z-index: 1; }
.enquiry-panel h3 { max-width: 13ch; margin: 10px 0 22px; font-size: 2.05rem; }
.enquiry-checklist { display: grid; gap: 0; margin: 0 0 24px; padding: 0; list-style: none; }
.enquiry-checklist li { border-top: 1px solid rgba(255,255,255,.14); padding: 11px 0; color: rgba(255,255,255,.76); font-size: .8rem; }
.enquiry-checklist li::before { margin-right: 9px; color: var(--product-accent); content: "●"; }
.enquiry-panel .btn { width: 100%; }

.procurement-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: start; }
.procurement-intro p { max-width: 45ch; margin: 16px 0 0; color: var(--muted); font-size: .88rem; }
.procurement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.procurement-item { border-top: 3px solid var(--product-accent); border-radius: 0 0 18px 18px; background: #fff; padding: 22px; }
.procurement-item small { color: var(--product-accent); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.procurement-item h3 { margin: 20px 0 7px; font-size: 1.38rem; }
.procurement-item p { margin: 0; color: var(--muted); font-size: .78rem; }

.product-faq-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: 64px; }
.product-faq-layout > div:first-child p:last-child { max-width: 36ch; margin-top: 16px; color: var(--muted); font-size: .86rem; }
.product-faq { border-top: 1px solid var(--line); }
.product-faq details { border-bottom: 1px solid var(--line); }
.product-faq summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 18px 0; color: var(--ink); cursor: pointer; font-size: .88rem; font-weight: 600; list-style: none; }
.product-faq summary::-webkit-details-marker { display: none; }
.product-faq summary::after { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--product-accent) 15%, white); color: var(--product-deep); content: "+"; font-size: 1.1rem; transition: transform 180ms; }
.product-faq details[open] summary::after { transform: rotate(45deg); }
.product-faq details p { max-width: 70ch; margin: 0; padding: 0 48px 20px 0; color: var(--muted); font-size: .82rem; }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 22px; transition: transform 180ms, border-color 180ms; }
.related-card:hover { transform: translateY(-3px); border-color: var(--orange-500); }
.related-card small { color: var(--orange-600); font-weight: 700; }
.related-card h3 { margin: 20px 0 6px; font-size: 1.55rem; }
.related-card p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Privacy and legal information */
.legal-hero { background: var(--blue-950); color: #fff; padding: 72px 0; }
.legal-hero h1 { margin-top: 12px; font-size: clamp(3.4rem, 7vw, 6.4rem); }
.legal-hero h1 span { color: var(--orange-500); }
.legal-hero > .container > p:last-child { max-width: 66ch; margin: 18px 0 0; color: #b9cbe0; font-size: .94rem; }
.legal-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 74px; align-items: start; }
.legal-aside { position: sticky; top: 28px; border-top: 3px solid var(--orange-500); padding-top: 20px; }
.legal-aside strong { display: block; margin: 10px 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: 1.7rem; font-weight: 600; }
.legal-aside p:last-child { color: var(--muted); font-size: .82rem; }
.legal-aside a, .legal-copy a { color: var(--blue-600); font-weight: 600; }
.legal-copy { max-width: 790px; }
.legal-copy section { padding: 0 0 30px; }
.legal-copy section + section { border-top: 1px solid var(--line); padding-top: 30px; }
.legal-copy h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 3vw, 2.65rem); }
.legal-copy p { color: var(--muted); font-size: .9rem; }
.legal-copy p + p { margin-top: 12px; }

/* Thank-you page */
.thank-you-hero { position: relative; overflow: hidden; min-height: calc(100svh - 70px); background: var(--blue-950); color: #fff; padding: 76px 0 88px; }
.thank-you-hero::before { position: absolute; right: -12vw; bottom: -34vw; width: 62vw; height: 62vw; border: 14vw solid rgba(18,101,174,.2); border-radius: 42% 58% 64% 36%; content: ""; transform: rotate(16deg); }
.thank-you-shell { position: relative; z-index: 1; }
.thank-you-mark { display: grid; width: 76px; height: 76px; margin-bottom: 30px; place-items: center; border-radius: 50%; background: var(--orange-600); box-shadow: 0 0 0 12px rgba(232,69,37,.15); }
.thank-you-mark svg { width: 42px; fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 5; }
.thank-you-page h1 { max-width: 820px; font-size: clamp(3.5rem, 8vw, 6.8rem); }
.thank-you-lead { max-width: 650px; margin: 24px 0 30px; color: #bfd0e2; font-size: clamp(1rem, 1.5vw, 1.16rem); }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-whatsapp { background: #167d4d; color: #fff; box-shadow: 0 10px 24px rgba(22,125,77,.25); }
.btn-whatsapp:hover { background: #106b40; }
.thank-you-next { max-width: 900px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; }
.thank-you-next > p { margin: 0 0 16px; color: #ff8b72; font-family: "Barlow Condensed", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.thank-you-next ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; background: rgba(255,255,255,.14); padding: 0; list-style: none; }
.thank-you-next li { display: grid; min-height: 150px; align-content: start; background: #0a2949; padding: 22px; }
.thank-you-next li span { color: #ff8065; font-family: "Barlow Condensed", sans-serif; font-weight: 700; }
.thank-you-next li strong { margin-top: 18px; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; }
.thank-you-next li small { margin-top: 7px; color: #9eb1c5; line-height: 1.5; }
.thank-you-home { display: inline-block; margin-top: 28px; color: #c5d3e1; font-size: .86rem; font-weight: 700; }
.thank-you-home:hover { color: #fff; }

/* Toast */
.toast { position: fixed; z-index: 160; right: 20px; bottom: 92px; max-width: 360px; border-radius: 12px; background: var(--blue-950); color: #fff; box-shadow: var(--shadow); padding: 15px 18px; opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 180ms, transform 180ms; }
.toast.show { opacity: 1; transform: translateY(0); }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: revealUp 640ms cubic-bezier(.2,.7,.2,1) both; }

@media (max-width: 980px) {
  .nav-links { display: none; position: fixed; inset: 70px 0 auto; min-height: calc(100svh - 70px); align-items: stretch; flex-direction: column; gap: 0; background: #fff; padding: 24px 20px 100px; }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { border-bottom: 1px solid var(--line); padding: 18px 4px; font-family: "Barlow Condensed", sans-serif; font-size: 1.6rem; }
  .nav-links .btn { margin-top: 18px; }
  .nav-links .nav-menu-cta { display: inline-flex; }
  .nav-phone, .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 560px; }
  .hero-photo { inset: 0 0 82px 0; }
  .quick-form { right: 20px; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-feature { min-height: 420px; }
  .product-catalog { grid-template-rows: none; }
  .builder-shell { grid-template-columns: 1fr .7fr; }
  .builder-intro { grid-column: 1 / -1; }
  .why-layout, .quote-shell, .faq-layout, .product-hero-grid, .spec-layout, .application-grid, .selection-shell, .guide-layout, .procurement-shell, .product-faq-layout, .legal-layout { grid-template-columns: 1fr; }
  .why-sticky, .spec-intro { position: static; }
  .legal-aside { position: static; }
  .quote-shell { gap: 38px; }
  .product-media { max-width: 720px; }
  .application-grid { gap: 42px; }
  .selection-track { margin-top: 6px; }
  .procurement-grid { grid-template-columns: 1fr 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .brief-layout { grid-template-columns: 1fr; }
  .brief-heading { grid-row: auto; }
}

@media (max-width: 720px) {
  body { padding-bottom: 74px; }
  .container { width: min(calc(100% - 28px), var(--content)); }
  .section { padding: 56px 0; }
  .section-tight { padding: 42px 0; }
  .brand-logo { width: 165px; }
  .nav-wrap { min-height: 64px; }
  .nav-links { inset-block-start: 64px; min-height: calc(100svh - 64px); }
  .product-page main section[id] { scroll-margin-top: 62px; }
  .product-jump-inner { min-height: 49px; gap: 18px; }
  .product-jump strong { display: none; }
  .product-jump .jump-cta { margin-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
  .hero { min-height: auto; }
  .hero-grid { gap: 34px; padding-block: 40px 42px; }
  .hero h1 { font-size: clamp(2.95rem, 14vw, 4.25rem); }
  .hero .wholesale-hero-title { font-size: clamp(1.5rem, 7.5vw, 2.4rem); line-height: .98; }
  .hero-copy > p { margin-block: 18px 22px; font-size: .92rem; }
  .hero-actions .btn { flex: 1 1 150px; }
  .hero-proof { display: grid; gap: 10px; margin-top: 22px; }
  .hero-visual { display: flex; min-height: 0; flex-direction: column; gap: 0; }
  .hero-photo { position: relative; inset: auto; height: 265px; border-radius: 62px 14px 14px 14px; }
  .hero-orbit { top: -14px; left: -2px; width: 54px; height: 54px; border-width: 8px; }
  .quick-form { position: relative; right: auto; bottom: auto; width: calc(100% - 14px); margin: -28px 7px 0; padding: 20px; }
  .compact-fields, .quote-form-grid { grid-template-columns: 1fr; }
  .trust-inner { display: block; }
  .trust-title { padding: 13px 0 7px; }
  .trust-items { grid-template-columns: 1fr; border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); border-right: 0; padding: 11px 0; }
  .product-feature { min-height: 335px; border-radius: 58px 14px 14px 14px; }
  .product-feature-copy { padding: 22px; }
  .product-feature h3 { font-size: 2rem; }
  .product-row { grid-template-columns: 34px 1fr auto; gap: 10px; padding: 15px 14px; }
  .product-row-copy { grid-template-columns: 1fr; gap: 4px; }
  .product-row-copy small, .product-row-copy strong { grid-column: 1; }
  .product-row-copy strong { font-size: 1.42rem; }
  .product-row-copy em { grid-column: 1; grid-row: auto; font-size: .68rem; }
  .brand-rail { gap: 12px 18px; border-radius: 16px; padding: 12px 14px; }
  .brand-rail span, .brand-rail small { width: 100%; margin-left: 0; }
  .builder-section { padding-top: 0; }
  .builder-shell { grid-template-columns: 1fr; gap: 28px; border-radius: 26px 62px 26px 26px; padding: 28px 22px; }
  .builder-intro { grid-column: auto; }
  .builder-controls { gap: 20px; }
  .builder-output { border-radius: 38px 14px 14px 14px; padding: 22px; }
  .brief-layout { gap: 24px; }
  .brief-items { grid-template-columns: 1fr; }
  .brief-prompt { grid-template-columns: 1fr; gap: 8px; border-radius: 14px 38px 14px 14px; }
  .brief-prompt a { white-space: normal; }
  .why-layout { gap: 34px; }
  .proof-row { grid-template-columns: 48px 1fr; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 210px; }
  .process-step h3 { margin-top: 34px; }
  .quote-shell { margin-inline: -4px; border-radius: 22px 58px 22px 22px; padding: 30px 20px; }
  .quote-form { padding: 22px; }
  .faq-layout { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 0; bottom: 0; left: 0; grid-template-columns: 1fr 1.2fr; gap: 8px; border-top: 1px solid rgba(255,255,255,.15); background: #061b33; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); }
  .floating-contact-link { min-height: 48px; border: 0; border-radius: 9px; box-shadow: none; padding: 10px 12px; }
  .floating-contact-link.call { background: rgba(255,255,255,.08); }
  .floating-contact-link.whatsapp { background: #167d4d; }
  .product-hero-grid { padding-block: 48px 68px; gap: 46px; }
  .product-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .product-media { min-height: 330px; }
  .product-media img { height: 330px; border-radius: 18px 56px 18px 18px; }
  .floating-tag { left: 12px; bottom: -24px; }
  .product-media::after { right: -7px; bottom: -18px; width: 78px; height: 78px; border-width: 12px; }
  .spec-layout { gap: 38px; }
  .spec-grid, .application-list { grid-template-columns: 1fr; }
  .selection-shell, .procurement-shell, .product-faq-layout { gap: 30px; }
  .selection-track { grid-template-columns: 1fr; gap: 9px; }
  .selection-track::before { top: 24px; bottom: 24px; left: 26px; width: 3px; height: auto; background: linear-gradient(180deg, var(--product-deep), var(--product-accent)); }
  .selection-step { min-height: 0; border-radius: 16px 44px 16px 16px; padding: 17px 18px 17px 58px; }
  .selection-step span { position: absolute; top: 20px; left: 16px; margin: 0; }
  .selection-step h3 { font-size: 1.24rem; }
  .guide-panel, .enquiry-panel { border-radius: 18px 52px 18px 18px; }
  .guide-head { grid-template-columns: 1fr; gap: 8px; padding: 22px 18px; }
  .guide-head small { text-align: left; }
  .guide-row { grid-template-columns: .72fr 1fr; gap: 7px 16px; padding: 17px 18px; }
  .guide-row p { grid-column: 1 / -1; }
  .enquiry-panel { padding: 26px 22px; }
  .procurement-grid { grid-template-columns: 1fr; }
  .product-faq details p { padding-right: 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .thank-you-hero { min-height: auto; padding: 58px 0 72px; }
  .thank-you-mark { width: 64px; height: 64px; }
  .thank-you-page h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .thank-you-actions .btn { width: 100%; }
  .thank-you-next { margin-top: 46px; }
  .thank-you-next ol { grid-template-columns: 1fr; }
  .thank-you-next li { min-height: 0; }
}

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