:root {
  --navy: #071b36;
  --deep-navy: #021225;
  --blue: #075bea;
  --blue-2: #0b74ff;
  --ink: #0a1730;
  --text: #31405a;
  --muted: #65738b;
  --line: #dce5f0;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(5, 24, 52, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(11, 35, 70, 0.1);
  box-shadow: 0 8px 28px rgba(8, 23, 48, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 82px;
  height: 42px;
  align-items: center;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  fill: var(--blue);
}

.brand-text {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 30px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
  content: "";
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.header-cta {
  padding: 0 24px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(7, 91, 234, 0.22);
  font-size: 13px;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn span {
  transition: transform 0.22s ease;
}

.btn:hover span {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  place-items: center;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 420px;
  color: var(--white);
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 12, 28, 0.94) 0%, rgba(2, 12, 28, 0.82) 28%, rgba(2, 12, 28, 0.16) 60%, rgba(2, 12, 28, 0.05) 100%),
    url("../img/hero-storage.png") center right / cover no-repeat;
  transform: scale(1.01);
  animation: heroImage 900ms ease both;
}

.hero-content {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 420px;
  padding: 68px 0;
}

.hero-copy {
  width: min(100%, 650px);
  min-width: 0;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  max-width: 650px;
  font-size: clamp(42px, 4.35vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero p {
  max-width: 585px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.58;
}

.hero-note {
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  min-width: 154px;
  padding: 0 26px;
  border: 2px solid transparent;
  font-size: 13px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(7, 91, 234, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(1, 10, 24, 0.42);
  border-color: rgba(255, 255, 255, 0.82);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.service-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(9, 25, 51, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.service-item {
  min-width: 0;
  min-height: 160px;
  padding: 24px 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 1px solid var(--line);
}

.line-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  color: var(--blue);
  place-items: center;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon.small {
  width: 44px;
  height: 44px;
  margin: 0;
}

.service-item h2,
.solution-card h3,
.why-card h3,
.product-body h3 {
  margin: 0;
  color: var(--ink);
}

.service-item h2 {
  margin-bottom: 8px;
  font-size: 17px;
}

.service-item p,
.why-card p,
.product-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.section {
  padding: 40px 0 20px;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
}

.section-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 74px;
  height: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  content: "";
}

.section-heading.align-left {
  margin-bottom: 24px;
  text-align: left;
}

.section-heading.align-left h2::after {
  left: 0;
  transform: none;
}

.products-section {
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card,
.solution-card,
.why-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(9, 25, 51, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover,
.solution-card:hover,
.why-card:hover {
  border-color: rgba(7, 91, 234, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-image {
  height: 190px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-image: url("../img/product-sheet.png");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  background-color: #f7f9fc;
}

.product-1 { background-position: 0% 0%; }
.product-2 { background-position: 33.333% 0%; }
.product-3 { background-position: 66.666% 0%; }
.product-4 { background-position: 100% 0%; }
.product-5 { background-position: 0% 100%; }
.product-6 { background-position: 33.333% 100%; }
.product-7 { background-position: 66.666% 100%; }
.product-8 { background-position: 100% 100%; }

.product-body {
  position: relative;
  min-height: 132px;
  padding: 18px 20px 22px;
  text-align: center;
}

.product-body::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  content: "";
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.solutions-section {
  padding-top: 28px;
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.solution-card {
  min-height: 130px;
  padding: 22px 16px 18px;
  text-align: center;
}

.solution-card .line-icon {
  width: 58px;
  height: 58px;
}

.solution-card h3 {
  font-size: 15px;
}

.about-section {
  padding-top: 40px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.about-points strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.about-image {
  min-height: 330px;
  border-radius: var(--radius);
  background: url("../img/about-storage.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.why-section {
  padding-top: 34px;
  padding-bottom: 42px;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 154px;
  padding: 24px 20px 22px;
  text-align: center;
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.contact-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy) 0%, #072755 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 1fr;
  align-items: stretch;
  min-height: 250px;
}

.contact-details,
.enquiry-card {
  padding: 34px 34px 30px;
}

.contact-details h2,
.enquiry-card h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-details h2::after,
.enquiry-card h2::after {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  background: var(--blue-2);
  content: "";
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 17px;
  line-height: 1.4;
}

.contact-details a:hover,
.site-footer a:hover {
  color: #77afff;
}

.contact-details span:first-child {
  width: 24px;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(52, 117, 178, 0.14) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(0deg, rgba(52, 117, 178, 0.12) 1px, transparent 1px) 0 0 / 78px 78px,
    #dfeaf7;
}

.map-roads {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(33deg, transparent 41%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.9) 47%, transparent 48%),
    linear-gradient(143deg, transparent 46%, rgba(255, 255, 255, 0.86) 47%, rgba(255, 255, 255, 0.86) 52%, transparent 53%),
    linear-gradient(87deg, transparent 44%, rgba(108, 149, 189, 0.32) 45%, rgba(108, 149, 189, 0.32) 48%, transparent 49%);
  opacity: 0.95;
}

.map-marker {
  position: absolute;
  top: 45%;
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 12px 14px 12px 42px;
  color: #d72631;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 91, 234, 0.18);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(9, 25, 51, 0.14);
  transform: translate(-50%, -50%);
}

.map-marker span {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: #e32b34;
  box-shadow: 0 0 0 1px rgba(126, 21, 28, 0.24), 0 8px 14px rgba(126, 21, 28, 0.24);
  transform: rotate(-45deg);
}

.map-marker strong {
  color: #e32b34;
  font-size: 14px;
  line-height: 1.2;
}

.map-marker small {
  color: #34476a;
  font-size: 12px;
}

.map-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(7, 91, 234, 0.2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.enquiry-card {
  background: linear-gradient(135deg, #0a3572 0%, #061d3e 100%);
}

.enquiry-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.62;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #03152c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.95fr 1fr;
  gap: 42px;
  padding: 34px 0 28px;
}

.site-footer .brand {
  margin-bottom: 18px;
}

.site-footer .brand-text {
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  max-width: 310px;
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.25;
}

.footer-contact li {
  margin-bottom: 14px;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  max-width: none;
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(7, 91, 234, 0.34);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  place-items: center;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-page {
  min-height: calc(100vh - 78px);
  padding: 72px 0;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.legal-page h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.legal-page p {
  max-width: 800px;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--blue);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImage {
  from {
    opacity: 0.55;
    transform: scale(1.04) translateX(16px);
  }
  to {
    opacity: 1;
    transform: scale(1.01) translateX(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(8, 23, 48, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav.open-static {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open-static a {
    padding: 0;
    border: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .service-grid,
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 28px);
    max-width: 1220px;
  }

  .header-inner {
    height: 68px;
    gap: 12px;
  }

  .main-nav {
    top: 68px;
  }

  .main-nav.open-static {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 56px;
    height: 32px;
  }

  .brand-text {
    max-width: 190px;
    font-size: 15px;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(2, 12, 28, 0.96) 0%, rgba(2, 12, 28, 0.88) 40%, rgba(2, 12, 28, 0.26) 100%),
      url("../img/hero-storage.png") 64% center / cover no-repeat;
  }

  .hero-content {
    align-items: start;
    padding: 58px 0 240px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(35px, 10vw, 42px);
    line-height: 1.08;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-top: 34px;
  }

  .service-grid,
  .product-grid,
  .solution-grid,
  .why-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .product-image {
    height: 210px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-image {
    min-height: 240px;
  }

  .contact-details,
  .enquiry-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    max-width: 362px;
    margin-right: 14px;
    margin-left: 14px;
  }

  .hero-copy,
  .hero h1,
  .hero p,
  .service-item p,
  .product-body p,
  .why-card p {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 360px;
  }
}
