/* ============================================
   ODUEX MOVING — Bold Industrial Trade
   Aesthetic: Heavy/direct/no-nonsense workwear
   Colours: Signal Yellow #FFD600 + Black #111
   Fonts: Barlow Condensed (bold/wide) + Inter
   Feel: Like a power tool brand, not a removal co.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFD600;
  --yellow-dark: #E6C000;
  --yellow-pale: rgba(255,214,0,0.08);
  --black: #111111;
  --near-black: #0D0D0D;
  --off-black: #161616;
  --rich: #1E1E1E;
  --dark: #1A1A1A;
  --off-white: #F5F5F5;
  --mid-dark: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --grey: #888888;
  --light-grey: #DDDDDD;
  --border: rgba(255,255,255,0.08);
  --font-wide: 'Barlow Condensed', system-ui, sans-serif;
  --font: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--yellow); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 36px; }

/* TYPE SYSTEM */
.display {
  font-family: var(--font-wide);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.h2-block {
  font-family: var(--font-wide);
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.h3-block {
  font-family: var(--font-wide);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 0;
}
.label-tag.dark { background: var(--black); color: var(--yellow); }
.body-copy { font-size: 15px; line-height: 1.75; color: var(--grey); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-wide);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  border-radius: 0;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-black { background: var(--black); color: var(--yellow); }
.btn-black:hover { background: #222; transform: translateY(-1px); }
.btn-outline-black { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-black:hover { background: var(--black); color: var(--yellow); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* DIAGONAL SECTION SEPARATOR */
.diag-sep {
  height: 60px;
  position: relative;
  overflow: hidden;
}
.diag-sep::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

/* MARQUEE — yellow band */
.mq-band { background: var(--yellow); padding: 14px 0; overflow: hidden; }
.mq-track { display: flex; white-space: nowrap; animation: mq 20s linear infinite; }
.mq-track.rev { animation-direction: reverse; }
.mq-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-wide);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
  opacity: 0.6;
}
.mq-item strong { opacity: 1; }
.mq-sep { width: 6px; height: 6px; background: var(--black); opacity: 0.3; transform: rotate(45deg); flex-shrink: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-wide);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { color: var(--yellow); }
.logo-box {
  width: 38px; height: 38px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--black);
  flex-shrink: 0; line-height: 1;
}
.nav-logo em { color: var(--yellow); font-style: normal; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-wide);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

#mob {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mob.open { transform: translateX(0); }
.mob-links { list-style: none; }
.mob-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-wide);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mob-links a:hover { color: var(--yellow); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 3px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: 0.04;
  border-radius: 50%;
}

/* TRUST TICKER — small banner */
.trust-ticker {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  overflow: hidden;
}
.tick-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-wide);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.tick-item .tick-icon { font-size: 14px; }
.tick-item.highlight { color: var(--yellow); }

/* FOOTER */
#footer {
  background: var(--near-black);
  border-top: 3px solid var(--yellow);
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-wide);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 14px;
}
.foot-logo em { color: var(--yellow); font-style: normal; }
.foot-logo .logo-box { width: 32px; height: 32px; font-size: 16px; }
.foot-desc { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.7; max-width: 220px; margin-bottom: 20px; }
.foot-social { display: flex; gap: 6px; }
.foot-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s;
  font-family: var(--font-wide);
}
.foot-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.foot-col-title {
  font-family: var(--font-wide);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.foot-links a:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.18); }

/* CHATBOT */
#chat-launcher {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 54px; height: 54px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 24px rgba(255,214,0,0.35);
  transition: all 0.25s;
  border-radius: 0;
}
#chat-launcher:hover { background: var(--yellow-dark); transform: scale(1.08); }
#chat-window {
  position: fixed;
  bottom: 92px; right: 28px;
  z-index: 900; width: 320px;
  background: var(--white);
  border: none;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
#chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-hd { background: var(--black); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-hd-left { display: flex; align-items: center; gap: 10px; }
.chat-av { width: 34px; height: 34px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-wide); font-size: 14px; font-weight: 900; color: var(--black); flex-shrink: 0; }
.chat-hd-name { font-family: var(--font-wide); font-size: 13px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; }
.chat-hd-status { font-size: 10px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 4px; }
.chat-online { width: 5px; height: 5px; background: #4ade80; border-radius: 50%; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.35); cursor: pointer; font-size: 16px; transition: color 0.2s; }
.chat-close:hover { color: var(--white); }
.chat-msgs { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; max-height: 260px; overflow-y: auto; }
.msg-bot { align-self: flex-start; background: var(--off-white); border: 1px solid var(--light-grey); padding: 10px 12px; font-size: 12px; color: var(--black); line-height: 1.6; max-width: 88%; border-radius: 0; }
.msg-user { align-self: flex-end; background: var(--yellow); padding: 10px 12px; font-size: 12px; color: var(--black); font-weight: 600; line-height: 1.6; max-width: 88%; border-radius: 0; }
.chat-sugs { padding: 0 14px 10px; display: flex; flex-direction: column; gap: 5px; }
.chat-sug { padding: 8px 12px; border: 1px solid var(--light-grey); background: var(--off-white); font-family: var(--font-wide); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); cursor: pointer; text-align: left; transition: all 0.18s; border-radius: 0; }
.chat-sug:hover { background: var(--yellow); border-color: var(--yellow); }
.chat-input-row { display: flex; gap: 7px; padding: 10px 14px; border-top: 1px solid var(--light-grey); }
.chat-input { flex: 1; padding: 9px 11px; border: 1px solid var(--light-grey); font-size: 12px; font-family: var(--font); color: var(--black); background: var(--off-white); outline: none; border-radius: 0; }
.chat-input:focus { border-color: var(--yellow); outline: 2px solid var(--yellow); }
.chat-send { width: 34px; height: 34px; background: var(--yellow); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 14px; font-weight: 800; transition: all 0.18s; border-radius: 0; }
.chat-send:hover { background: var(--yellow-dark); }

/* FORMS */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-label { font-family: var(--font-wide); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.4); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--light-grey);
  font-size: 14px; font-family: var(--font);
  color: var(--black); background: var(--white);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: #AAAAAA; }
.form-textarea { resize: none; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-success { display: none; padding: 14px; background: var(--yellow); font-family: var(--font-wide); font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); text-align: center; margin-top: 12px; }

/* NAV LAYOUT */
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; height: var(--nav-h);
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15); font-family: var(--font-wide);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; cursor: pointer; transition: all 0.2s; border-radius: 0;
  display: inline-flex; align-items: center;
}
.btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); }
.btn-xl { padding: 18px 40px; font-size: 15px; }

/* FOOTER LAYOUT */
.foot-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.18); }

/* SECTION HELPERS */
.section-label {
  display: inline-block;
  font-family: var(--font-wide);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow);
  border-left: 2px solid var(--yellow);
  padding-left: 10px;
  margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--font-wide);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 0;
  margin-top: 8px;
}
.section-h2 em { color: var(--yellow); font-style: normal; }
.section-h2 br + em, em { font-style: normal; }
.tc { text-align: center; }
.foot-logo span { color: var(--yellow); }
.btn-outline-black { background: transparent; color: var(--black); border: 2px solid var(--black); display: inline-flex; align-items: center; font-family: var(--font-wide); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 30px; cursor: pointer; transition: all 0.2s; border-radius: 0; }
.btn-outline-black:hover { background: var(--black); color: var(--yellow); }

/* ANIMS */
.rise { opacity: 0; transform: translateY(40px); }
.rise-r { opacity: 0; transform: translateX(40px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-ghost { display: none; }
  .ham { display: flex; }
  .wrap { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  #chat-window { width: calc(100vw - 24px); right: 12px; }
  #chat-launcher { bottom: 18px; right: 14px; }
  .trust-ticker { gap: 20px; padding: 12px 20px; }
}
