:root {
  --bg: #111111;
  --surface: #191919;
  --raised: #202020;
  --text: #f4f3ef;
  --muted: #a2a29e;
  --line: #30302e;
  --accent: #f58b47;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --max: 1280px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.19;
  letter-spacing: -2px;
}
h3 {
  line-height: 1.35;
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - 112px);
  max-width: var(--max);
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2.2px;
  font-weight: 600;
  margin-bottom: 20px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 12px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px #f58b4740;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 49px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--accent);
  color: #17130f;
}
.button-primary:hover {
  background: #ffa260;
}
.button-outline {
  border-color: #44443e;
  background: #ffffff02;
}
.button-outline:hover {
  background: #ffffff09;
  border-color: #6e6e63;
}
.button-light {
  background: var(--text);
  color: var(--bg);
}
.button svg {
  width: 17px;
  height: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
}
.text-link:hover {
  color: var(--accent);
}
.text-link svg {
  width: 17px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: var(--accent);
  color: #111;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #111111dc;
  border-bottom: 1px solid #ffffff0b;
  transition: background 0.2s;
  backdrop-filter: blur(20px);
}
.site-header.scrolled {
  background: #111111f5;
  border-bottom-color: var(--line);
}
.nav {
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  width: 126px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 31px;
  margin-left: 65px;
}
.nav-links a {
  color: #c0c0bb;
  font-size: 12px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-whatsapp {
  background: #232622;
  border-color: #3b4338;
  min-height: 40px;
  padding: 9px 15px;
  color: #e9eddf;
}
.nav-whatsapp svg {
  color: #a8c99b;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  min-height: 670px;
  align-items: center;
  position: relative;
  padding-block: 66px 76px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 1.8px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(43px, 4.65vw, 66px);
  line-height: 1.14;
  letter-spacing: -3.4px;
  font-weight: 600;
}
.hero h1 span {
  color: var(--accent);
}
.hero-description {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 25px;
  max-width: 470px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  margin-top: 22px;
  color: #91918d;
}
.hero-trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #747471;
}
.hero-visual {
  height: 535px;
  position: relative;
  margin-right: -28px;
  isolation: isolate;
  background: radial-gradient(ellipse at 58% 48%, #72402229, transparent 65%);
}
.hero-art {
  display: block;
  position: absolute;
  inset: -10px -43px -10px -42px;
  z-index: 1;
  will-change: transform;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px #0006);
  animation: float 8s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid #ffffff08;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: 30px;
  left: 25px;
  transform: rotate(-22deg) scaleY(0.75);
  z-index: 0;
}
.orbit-two {
  transform: rotate(24deg) scaleY(0.9);
  width: 390px;
  height: 390px;
  left: 60px;
  top: 60px;
}
.art-label {
  position: absolute;
  z-index: 3;
  background: #25231fba;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff13;
  font-size: 9px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 5px;
  box-shadow: 0 8px 30px #0002;
}
.label-top {
  top: 37px;
  right: 18px;
  font-size: 8px;
  letter-spacing: 1.3px;
}
.label-bottom {
  bottom: 41px;
  left: 10px;
}
.label-bottom svg {
  color: var(--accent);
  width: 15px;
  height: 15px;
}
.art-coordinate {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 7px;
  letter-spacing: 1.8px;
  color: #74746d;
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: #171716;
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}
.trust-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #b9b9b2;
}
.trust-strip svg {
  color: var(--accent);
  width: 15px;
  height: 15px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  padding-bottom: 4px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.category {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 7px;
  background: #20201e;
  min-height: 325px;
  display: flex;
  align-items: flex-end;
  padding: 27px;
}
.category > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: transform 0.65s;
  filter: brightness(0.7);
}
.category:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, #000000bc 100%);
}
.category:hover > img {
  transform: scale(1.05);
}
.category div > span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #c6c6c0;
}
.category h3 {
  font-size: 29px;
  margin-top: 8px;
  letter-spacing: -1px;
}
.category p {
  font-size: 11px;
  margin-top: 6px;
  color: #cecec8;
  max-width: 80%;
}
.round-arrow {
  position: absolute;
  right: 20px;
  bottom: 26px;
  width: 34px;
  height: 34px;
  border: 1px solid #ffffff44;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.category:hover .round-arrow {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.round-arrow svg {
  width: 15px;
  height: 15px;
}
.category-small {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 16px;
  gap: 12px;
}
.category-small a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  background: #1a1a19;
  border: 1px solid #2b2b28;
  border-radius: 4px;
  font-size: 11px;
  transition: background 0.2s;
}
.category-small a > span {
  color: #a9a99b;
  font-size: 20px;
  line-height: 1;
}
.category-small svg {
  margin-left: auto;
  width: 12px;
  height: 12px;
  color: #89897d;
}
.category-small a:hover {
  background: #2b251f;
  color: var(--accent);
}
.featured-section {
  background: #151514;
  border-block: 1px solid #ffffff07;
}
.product-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}
.filter-list {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 7px 13px;
  color: #aaa9a2;
  background: transparent;
  font-size: 11px;
}
.filter:hover {
  color: white;
}
.filter.active {
  background: #2b2721;
  border-color: #6b4a32;
  color: #ffad75;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
.product-image {
  height: 205px;
  background: #242421;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  filter: brightness(0.9);
}
.product:hover .product-image img {
  transform: scale(1.05);
}
.product-image > span {
  position: absolute;
  bottom: 10px;
  left: 11px;
  background: #111b;
  backdrop-filter: blur(5px);
  padding: 3px 8px;
  font-size: 8px;
  letter-spacing: 1px;
  border-radius: 2px;
}
.product .product-category {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 18px;
}
.product h3 {
  font-size: 15px;
  margin-top: 4px;
}
.product p:not(.product-category) {
  font-size: 11px;
  margin-top: 7px;
}
.product a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #e8b18a;
}
.product a svg {
  width: 15px;
  height: 15px;
}
.inventory-note {
  font-size: 10px;
  margin-top: 28px;
}
.product-empty {
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.product-empty p {
  margin: 10px 0 20px;
}
.solutions-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 56px;
}
.solution-photo {
  min-height: 535px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.solution-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: brightness(0.65);
  object-position: center;
}
.solution-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, #000b);
}
.solution-photo > div {
  position: absolute;
  bottom: 36px;
  left: 32px;
  z-index: 1;
}
.solution-photo .eyebrow {
  color: #ddded7;
  font-size: 9px;
}
.solution-photo h3 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -1.6px;
  margin-top: 12px;
}
.solution-list > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.solution-list > a:first-child {
  padding-top: 0;
}
.solution-list h3 {
  font-size: 17px;
}
.solution-list p {
  font-size: 11px;
  margin-top: 6px;
}
.solution-list > a > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  color: #bdbdb4;
  white-space: nowrap;
}
.solution-list svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.solution-list a:hover h3 {
  color: var(--accent);
}
.why-section {
  background: #1c1d1a;
  border-block: 1px solid #ffffff08;
}
.why-intro {
  max-width: 760px;
}
.why-intro h2 {
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -2.6px;
}
.why-intro h2 span {
  color: #b6ba9c;
}
.why-intro > p:last-child {
  max-width: 520px;
  margin-top: 24px;
  font-size: 14px;
}
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 55px;
}
.journey article {
  border-top: 1px solid #737565;
  padding-top: 18px;
  position: relative;
}
.journey article:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #b6ba9c;
  border-radius: 50%;
  top: -4px;
  left: 0;
}
.journey-number {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #b6ba9c;
}
.journey h3 {
  font-size: 17px;
  margin-top: 18px;
}
.journey p {
  font-size: 12px;
  margin-top: 9px;
  max-width: 240px;
}
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  margin-top: 85px;
  border-top: 1px solid #414239;
  padding-top: 50px;
}
.experience-number {
  font-family: var(--display);
  font-size: 180px;
  letter-spacing: -13px;
  font-weight: 500;
  line-height: 1;
  color: #d9dcc9;
}
.experience-number > span {
  font-size: 95px;
  vertical-align: top;
  line-height: 1.7;
}
.experience-number small {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-top: 14px;
}
.experience h3 {
  font-size: 31px;
  letter-spacing: -1px;
}
.experience p {
  font-size: 13px;
  margin-top: 16px;
  max-width: 410px;
}
.experience .text-link {
  margin-top: 24px;
}
.condition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.condition-panel {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  padding: 35px;
  border-radius: 6px;
}
.new-panel {
  background: #262420;
}
.preowned-panel {
  background: #202623;
}
.condition-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.condition-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #171815ee, transparent);
}
.condition-panel .eyebrow {
  font-size: 8px;
}
.condition-panel h3 {
  font-size: 40px;
  letter-spacing: -1.8px;
}
.condition-panel p {
  font-size: 12px;
  margin-top: 14px;
  color: #c1c1b8;
}
.condition-panel .text-link {
  margin-top: 34px;
  color: #f6c6a5;
}
.support-section {
  background: #171716;
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.support-image {
  height: 590px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.support-image img {
  width: 100%;
  height: 100%;
  filter: brightness(0.65);
}
.image-caption {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #171717b0;
  padding: 10px 14px;
  font-size: 9px;
  letter-spacing: 1.2px;
}
.support-services {
  margin-block: 30px;
}
.support-services article {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.support-services h3 {
  font-size: 15px;
}
.support-services p {
  font-size: 12px;
  margin-top: 5px;
}
.setup-scene {
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
}
.setup-scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-position: center 48%;
  transition: opacity 0.3s;
}
.setup-scene:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000b, transparent 90%),
    linear-gradient(0deg, #0004, transparent);
  z-index: -1;
}
.setup-overlay {
  position: absolute;
  bottom: 48px;
  left: 45px;
  max-width: 420px;
}
.setup-overlay .eyebrow {
  color: #e0e0d4;
  font-size: 8px;
}
.setup-overlay h3 {
  font-size: 43px;
  letter-spacing: -1.7px;
  line-height: 1.2;
  margin-bottom: 27px;
}
.setup-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  border: 1px solid #ffffff50;
  border-radius: 4px;
  padding: 7px 11px;
  font-size: 8px;
  letter-spacing: 1.5px;
  background: #1116;
}
.setup-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  gap: 34px;
  overflow: auto;
}
.setup-tabs button {
  flex-shrink: 0;
  color: #a1a19a;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 20px 0;
  font-size: 12px;
}
.setup-tabs button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.how-section {
  padding-top: 15px;
  padding-bottom: 90px;
}
.how-section h2 {
  font-size: 35px;
  letter-spacing: -1.4px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps article {
  display: flex;
  gap: 20px;
}
.steps article > span {
  font-size: 35px;
  font-family: var(--display);
  color: #6f5e4c;
  line-height: 1.1;
  letter-spacing: -2px;
}
.steps h3 {
  font-size: 15px;
}
.steps p {
  font-size: 12px;
  margin-top: 9px;
  max-width: 250px;
}
.enquiry-section {
  background: #20211d;
  border-block: 1px solid #373930;
}
.enquiry-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.enquiry-copy h2 {
  font-size: clamp(45px, 5.5vw, 72px);
  line-height: 1.12;
  letter-spacing: -3.4px;
}
.enquiry-copy h2 span {
  color: #c1c6a5;
}
.enquiry-copy > p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 310px;
  font-size: 14px;
}
.enquiry-note {
  display: flex;
  gap: 14px;
  margin-top: 60px;
}
.enquiry-note > svg {
  width: 26px;
  height: 26px;
  color: #c1c6a5;
}
.enquiry-note h3 {
  font-family: var(--body);
  font-size: 12px;
  margin-bottom: 6px;
}
.enquiry-note .text-link {
  font-size: 11px;
  color: #c1c6a5;
  gap: 8px;
}
.enquiry-form {
  background: #161714;
  padding: 32px;
  border: 1px solid #3a3b32;
  border-radius: 7px;
}
.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
}
.form-top h3 {
  font-size: 20px;
  letter-spacing: -0.7px;
}
.form-top span {
  font-size: 9px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.form-grid label {
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #d0d0c7;
}
.form-grid .full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #3c3d35;
  background: #20211d;
  border-radius: 4px;
  color: #e6e6df;
  padding: 11px 12px;
  outline: none;
  font-size: 11px;
}
select {
  min-height: 42px;
  padding-right: 5px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #f58b471c;
}
input::placeholder,
textarea::placeholder {
  color: #8c8e81;
}
textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  margin-top: 24px;
  width: 100%;
  justify-content: space-between;
}
.form-hint {
  font-size: 10px;
  margin-top: 12px;
  line-height: 1.7;
}
.form-status {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #a2b783;
  border-radius: 4px;
  background: #262d21;
}
.form-status h3 {
  font-size: 19px;
}
.form-status p {
  font-size: 12px;
  margin: 10px 0 18px;
  color: #d2d8c8;
}
.contact-section {
  padding-top: 95px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 65px;
  margin-top: 48px;
}
.contact-grid .eyebrow {
  font-size: 9px;
  display: block;
  margin-bottom: 20px;
}
.contact-grid h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.contact-grid address {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}
.contact-grid > div > a:not(.text-link) {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.contact-grid .contact-phone {
  font-size: 21px !important;
  font-family: var(--display);
}
.contact-grid .text-link {
  margin-top: 20px;
  font-size: 11px;
  color: #e8b18a;
}
.contact-grid > div:last-child > a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.contact-grid > div:last-child > a > span {
  color: var(--muted);
  font-size: 10px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.site-footer .logo img {
  width: 105px;
}
.site-footer p {
  font-size: 10px;
  margin-top: 17px;
}
.site-footer nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 11px;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #8d8d82;
  border-top: 1px solid #252521;
  padding-top: 25px;
  margin-top: 15px;
}
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget-button {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  background: #a5bc8c;
  color: #172015;
  border: 1px solid #c3d6af;
  border-radius: 50%;
  box-shadow: 0 5px 24px #0005;
}
.widget-button svg {
  width: 25px;
  height: 25px;
}
.widget-popover {
  background: #272b23;
  border: 1px solid #454c3e;
  border-radius: 6px;
  padding: 14px 18px;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.widget-popover p {
  font-size: 11px;
  color: #c5c9bc;
}
.widget-popover a {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 5px;
  color: #d4e9bb;
}
.widget-popover svg {
  width: 15px;
}
.whatsapp-widget:hover .widget-popover,
.whatsapp-widget:focus-within .widget-popover {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}
@media (min-width: 1500px) {
  .hero {
    min-height: 740px;
  }
  .hero-visual {
    height: 610px;
  }
  .hero h1 {
    font-size: 70px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    margin-left: 0;
    gap: 20px;
  }
  .hero {
    min-height: 620px;
    padding-block: 45px;
  }
  .hero h1 {
    font-size: 51px;
    letter-spacing: -2.6px;
  }
  .hero-visual {
    height: 450px;
    margin-right: 0;
  }
  .hero-art {
    inset: 0 -20px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero .button {
    padding: 12px 15px;
    font-size: 11px;
  }
  .art-label {
    font-size: 8px;
  }
  .label-top {
    right: 0;
    top: 10px;
  }
  .label-bottom {
    bottom: 5px;
    left: 0;
  }
  .art-coordinate {
    display: none;
  }
  .orbit {
    width: 330px;
    height: 330px;
    left: 10px;
  }
  .orbit-two {
    width: 280px;
    height: 280px;
  }
  .trust-strip span {
    font-size: 9px;
  }
  .category {
    padding: 21px;
    min-height: 290px;
  }
  .category-small {
    gap: 8px;
  }
  .category-small a {
    padding: 15px 10px;
    gap: 7px;
  }
  .category-small svg {
    display: none;
  }
  .solutions-layout {
    gap: 35px;
  }
  .solution-list > a > span {
    font-size: 0;
    gap: 0;
  }
  .support-layout {
    gap: 50px;
  }
  .enquiry-layout {
    gap: 55px;
  }
  .product-image {
    height: 180px;
  }
  .contact-grid {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 68px;
  }
  .nav {
    height: 73px;
    gap: 18px;
  }
  .logo img {
    width: 111px;
  }
  .nav-links {
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #191a17;
    display: none;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 15px;
    padding: 12px 8px;
  }
  .nav-whatsapp {
    margin-left: auto;
    min-height: 37px;
    font-size: 10px;
    padding: 9px 11px;
    gap: 7px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    width: 36px;
    height: 36px;
    padding: 9px;
  }
  .menu-toggle span {
    height: 1px;
    background: var(--text);
    width: 17px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 22px;
    overflow: hidden;
  }
  .hero h1 {
    font-size: clamp(42px, 7.8vw, 64px);
    letter-spacing: -2.8px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 22px;
  }
  .hero-visual {
    height: 420px;
    width: 100%;
    max-width: 570px;
    justify-self: center;
    margin-top: 18px;
  }
  .hero-art {
    inset: -25px -10px -5px;
  }
  .label-top {
    right: 0;
    top: 30px;
  }
  .label-bottom {
    left: 10px;
    bottom: 30px;
  }
  .orbit {
    left: 15%;
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    left: 20%;
    width: 290px;
    height: 290px;
  }
  .hero .eyebrow {
    margin-bottom: 20px;
  }
  .hero-trust {
    font-size: 9px;
  }
  .trust-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding-block: 20px;
  }
  .trust-strip span {
    font-size: 10px;
  }
  .section-heading {
    gap: 25px;
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 240px;
    font-size: 12px;
  }
  .desktop-break {
    display: none;
  }
  .category-grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .category-gaming {
    grid-column: 1/-1;
    min-height: 220px;
  }
  .category-gaming img {
    object-position: center 55%;
  }
  .category-small {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .category-small a {
    gap: 12px;
    padding: 16px;
  }
  .category-small svg {
    display: block;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }
  .product-image {
    height: 230px;
  }
  .product-toolbar > .small {
    display: none;
  }
  .solutions-layout {
    grid-template-columns: 1fr;
  }
  .solution-photo {
    min-height: 340px;
  }
  .solution-list > a > span {
    font-size: 10px;
    gap: 10px;
  }
  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .experience {
    gap: 30px;
    margin-top: 55px;
    padding-top: 40px;
  }
  .experience-number {
    font-size: 140px;
    letter-spacing: -9px;
  }
  .experience-number > span {
    font-size: 75px;
  }
  .experience h3 {
    font-size: 26px;
  }
  .experience p {
    font-size: 12px;
  }
  .condition-panel {
    padding: 25px;
    min-height: 310px;
  }
  .condition-panel h3 {
    font-size: 34px;
  }
  .condition-panel p {
    font-size: 11px;
  }
  .support-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .support-image {
    height: 350px;
  }
  .support-layout h2 br {
    display: none;
  }
  .support-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .support-services article {
    border-top: 1px solid var(--line);
    border-bottom: none;
  }
  .support-services h3 {
    font-size: 13px;
  }
  .support-services p {
    font-size: 11px;
  }
  .setup-scene {
    height: 410px;
  }
  .setup-overlay {
    left: 30px;
    bottom: 30px;
  }
  .setup-overlay h3 {
    font-size: 37px;
  }
  .setup-tabs {
    gap: 25px;
  }
  .setup-tabs button {
    font-size: 11px;
  }
  .how-section {
    padding-top: 0;
  }
  .steps {
    gap: 25px;
  }
  .steps article {
    flex-direction: column;
    gap: 15px;
  }
  .steps h3 {
    font-size: 13px;
  }
  .steps p {
    font-size: 11px;
  }
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .enquiry-copy h2 {
    font-size: 50px;
  }
  .enquiry-copy h2 br {
    display: none;
  }
  .enquiry-copy > p:not(.eyebrow) {
    max-width: 470px;
  }
  .enquiry-note {
    margin-top: 25px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-grid > div:last-child {
    grid-column: 1/-1;
    max-width: 400px;
    width: 100%;
  }
  .contact-section .section-heading {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 37px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero-description {
    font-size: 12px;
  }
  .actions {
    gap: 8px;
    margin-top: 24px;
  }
  .hero .button {
    font-size: 10px;
    padding: 12px 14px;
    gap: 8px;
    min-height: 46px;
  }
  .hero-trust {
    gap: 7px;
    font-size: 8px;
    flex-wrap: wrap;
    margin-top: 17px;
  }
  .hero-visual {
    height: 345px;
    margin-top: 9px;
  }
  .hero-art {
    inset: 0 -23px;
  }
  .label-top {
    font-size: 6px;
    padding: 8px;
    top: 22px;
  }
  .label-bottom {
    font-size: 7px;
    bottom: 15px;
    padding: 9px;
    left: 0;
  }
  .orbit {
    width: 270px;
    height: 270px;
    top: 24px;
  }
  .orbit-two {
    width: 240px;
    height: 240px;
  }
  .trust-strip .wrap {
    gap: 12px;
  }
  .trust-strip span {
    font-size: 8px;
    gap: 6px;
  }
  .trust-strip svg {
    width: 12px;
  }
  .section-heading {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-heading > p {
    max-width: none;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .category-laptops {
    grid-column: 1/-1;
    min-height: 280px;
  }
  .category-phones,
  .category-gaming {
    grid-column: auto;
    min-height: 240px;
    padding: 18px;
  }
  .category h3 {
    font-size: 25px;
  }
  .category div > span {
    font-size: 6px;
    letter-spacing: 0.8px;
  }
  .category p {
    font-size: 10px;
  }
  .round-arrow {
    width: 27px;
    height: 27px;
    bottom: 20px;
    right: 15px;
  }
  .category-small {
    gap: 8px;
  }
  .category-small a {
    padding: 13px 9px;
    font-size: 10px;
    gap: 7px;
  }
  .category-small a > span {
    font-size: 16px;
  }
  .category-small svg {
    display: none;
  }
  .filter {
    padding: 7px 10px;
    font-size: 10px;
  }
  .filter-list {
    gap: 3px;
  }
  .products {
    gap: 25px 13px;
  }
  .product-image {
    height: 165px;
  }
  .product h3 {
    font-size: 13px;
  }
  .product p:not(.product-category) {
    font-size: 10px;
  }
  .product a {
    font-size: 10px;
  }
  .product .product-category {
    font-size: 8px;
  }
  .solution-photo {
    min-height: 300px;
  }
  .solution-photo h3 {
    font-size: 33px;
  }
  .solution-list h3 {
    font-size: 15px;
  }
  .solution-list p {
    font-size: 10px;
  }
  .solution-list > a > span {
    font-size: 0;
  }
  .solution-list svg {
    width: 17px;
  }
  .journey {
    gap: 30px 20px;
  }
  .journey h3 {
    font-size: 15px;
  }
  .journey p {
    font-size: 11px;
  }
  .journey-number {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .experience-number {
    font-size: 160px;
  }
  .experience-number > span {
    font-size: 90px;
  }
  .experience h3 br {
    display: none;
  }
  .experience h3 {
    font-size: 27px;
  }
  .condition-grid {
    grid-template-columns: 1fr;
  }
  .condition-panel {
    min-height: 290px;
  }
  .support-image {
    height: 300px;
  }
  .support-services {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .support-services article {
    padding: 15px 0;
  }
  .support-services h3 {
    font-size: 15px;
  }
  .support-services p {
    font-size: 12px;
  }
  .setup-scene {
    height: 380px;
  }
  .setup-overlay {
    left: 23px;
    bottom: 28px;
    right: 20px;
  }
  .setup-overlay h3 {
    font-size: 34px;
  }
  .setup-overlay .eyebrow {
    font-size: 7px;
  }
  .setup-tag {
    font-size: 7px;
    right: 18px;
    top: 18px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps article {
    flex-direction: row;
    gap: 23px;
  }
  .steps p {
    max-width: none;
    font-size: 12px;
  }
  .steps h3 {
    font-size: 16px;
  }
  .enquiry-copy h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .enquiry-form {
    padding: 23px 18px;
  }
  .form-top h3 {
    font-size: 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-grid label {
    font-size: 12px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
    padding: 12px;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-grid > div:last-child {
    grid-column: auto;
  }
  .site-footer nav {
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-right: 45px;
  }
  .whatsapp-widget {
    bottom: 18px;
    right: 17px;
  }
  .widget-button {
    width: 47px;
    height: 47px;
  }
  .widget-popover {
    max-width: 235px;
    padding: 11px 14px;
  }
  .widget-popover p {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-art {
    transform: none !important;
  }
}

/* Let grid content shrink without widening narrow screens. */
.enquiry-layout > *,
.form-grid > *,
.solutions-layout > *,
.support-layout > * {
  min-width: 0;
}
