:root {
  --navy: #081a2f;
  --deep-blue: #0f2b45;
  --gold: #d39a2f;
  --steel: #2a3f55;
  --white: #ffffff;
  --bg-light: #f2f4f6;
  --text-dark: #142233;
  --text-muted: #5f6f82;
  --border: #cfd7e1;
  --radius: 14px;
  --shadow: 0 14px 32px rgba(5, 18, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 9999;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--navy);
  color: #dce6f3;
  font-size: 0.86rem;
}

.top-bar a {
  color: #dce6f3;
  text-decoration: none;
}

.top-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.top-bar p {
  margin: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px rgba(6, 18, 33, 0.08);
}

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

.logo {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--deep-blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep-blue);
}

.btn {
  background: var(--gold);
  border: none;
  color: #101c2a;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
  box-shadow: 0 8px 20px rgba(211, 154, 47, 0.35);
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero {
  position: relative;
  min-height: min(85vh, 740px);
  background: var(--deep-blue);
  color: #fff;
}

.slides {
  position: relative;
  min-height: inherit;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background-size: cover;
  background-position: center;
}

.slide:nth-child(1) {
  background-image: linear-gradient(125deg, rgba(6, 20, 35, 0.88), rgba(12, 37, 58, 0.78)), url("assets/images/slider_01.jpg");
}

.slide:nth-child(2) {
  background-image: linear-gradient(125deg, rgba(6, 20, 35, 0.88), rgba(12, 37, 58, 0.78)), url("assets/images/slider_02.jpg");
}

.slide:nth-child(3) {
  background-image: linear-gradient(125deg, rgba(6, 20, 35, 0.88), rgba(12, 37, 58, 0.78)), url("assets/images/slider_03.jpg");
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay {
  position: absolute;
  inset: 0;
}

.slide-content {
  position: relative;
  padding-top: clamp(110px, 20vh, 170px);
  padding-bottom: 96px;
  max-width: 760px;
}

.slide h1,
.slide h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.14;
}

.slide p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 64ch;
  color: #e7edf6;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-controls button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
}

.section {
  padding: clamp(60px, 8vw, 96px) 0;
}

.section.light {
  background: var(--bg-light);
}

.section.dark {
  background: linear-gradient(180deg, #0c233b 0%, #0a1b2f 100%);
  color: #f3f7fb;
}

#about.section.light {
  background:
    radial-gradient(circle at 10% 12%, rgba(42, 63, 85, 0.08), transparent 34%),
    linear-gradient(180deg, #f5f7f9 0%, #edf1f5 100%);
}

#who-we-are.section.dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(211, 154, 47, 0.12), transparent 30%),
    linear-gradient(180deg, #102c45 0%, #0a1f34 100%);
}

.highlights.section.light {
  position: relative;
  isolation: isolate;
  background: #e9eef3 url("assets/images/inner-bg.jpg") center / cover no-repeat;
  filter: saturate(1.04) contrast(1.03);
}

.highlights.section.light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 248, 251, 0.62), rgba(232, 238, 244, 0.68));
  z-index: 0;
}

.highlights.section.light .container {
  position: relative;
  z-index: 1;
}

.highlights.section.light .section-head h2,
.highlights.section.light .section-head p {
  color: #1b2f45;
}

#partnership.section.light {
  background:
    radial-gradient(circle at 16% 18%, rgba(15, 43, 69, 0.08), transparent 32%),
    linear-gradient(180deg, #f4f7fa 0%, #e9eef3 100%);
}

#compliance.section.light {
  background:
    radial-gradient(circle at 85% 18%, rgba(211, 154, 47, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f6f8 0%, #e8edf2 100%);
}

#process.section.light {
  background:
    radial-gradient(circle at 10% 84%, rgba(42, 63, 85, 0.08), transparent 32%),
    linear-gradient(180deg, #f5f7f9 0%, #edf1f5 100%);
}

#next-steps.section.light {
  background:
    radial-gradient(circle at 88% 14%, rgba(211, 154, 47, 0.12), transparent 30%),
    linear-gradient(180deg, #f3f6f9 0%, #e9eef3 100%);
}

.section-head {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 4px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.24;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section.dark .section-head p,
.section.dark p {
  color: #d9e3f2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0;
}

.two-col {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: 1fr 1fr;
}

.visual-card {
  min-height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.88), rgba(16, 42, 67, 0.65)), radial-gradient(circle at 20% 22%, rgba(201, 162, 39, 0.3), transparent 36%);
}

.visual-card.second {
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.88), rgba(16, 42, 67, 0.66)), radial-gradient(circle at 80% 62%, rgba(201, 162, 39, 0.25), transparent 36%);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-showcase {
  background: linear-gradient(180deg, #f5f6f7 0%, #e9edf2 100%);
}

.business-title h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--deep-blue);
}

.business-showcase .section-head p {
  color: var(--text-muted);
}

.business-carousel-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.business-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}

.business-carousel::-webkit-scrollbar {
  display: none;
}

.business-widget {
  background: #fbfcfd;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: start;
}

.business-media {
  min-height: 190px;
  position: relative;
  isolation: isolate;
}

.business-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.business-media::after {
  content: "Image Placeholder";
  position: absolute;
  inset: auto 12px 12px auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2ebf8;
  background: rgba(11, 31, 58, 0.7);
  padding: 6px 8px;
  border-radius: 7px;
}

.business-media.has-image::after {
  display: none;
}

.media-one {
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.85), rgba(16, 42, 67, 0.62)), radial-gradient(circle at 20% 24%, rgba(201, 162, 39, 0.32), transparent 42%);
}

.media-two {
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.86), rgba(16, 42, 67, 0.6)), radial-gradient(circle at 80% 18%, rgba(201, 162, 39, 0.28), transparent 40%);
}

.media-three {
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.85), rgba(16, 42, 67, 0.62)), radial-gradient(circle at 18% 70%, rgba(201, 162, 39, 0.3), transparent 45%);
}

.media-four {
  background: linear-gradient(130deg, rgba(11, 31, 58, 0.86), rgba(16, 42, 67, 0.62)), radial-gradient(circle at 78% 72%, rgba(201, 162, 39, 0.3), transparent 44%);
}

.business-dit {
  padding: 18px;
}

.business-dit h3 {
  margin: 0 0 8px;
  color: var(--deep-blue);
}

.business-dit p {
  margin: 0;
  color: var(--text-muted);
}

.business-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #b8c5d6;
  background: #f8fbff;
  color: var(--deep-blue);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.business-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.business-cta {
  margin-top: 22px;
}

.text-center {
  text-align: center;
}

.card {
  background: #fbfcfd;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card.stat {
  border-top: 3px solid var(--gold);
}

.card.full {
  padding: 24px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.dark-card h3 {
  margin: 0;
  font-size: 1rem;
}

.dark-card p {
  color: #dde8f9;
}

.sustainability-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(211, 154, 47, 0.16), transparent 30%),
    linear-gradient(180deg, #102b43 0%, #091a2e 100%);
}

.sustainability-head {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 26px;
}

.sustainability-intro h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.sustainability-intro p {
  margin: 0;
  max-width: 66ch;
  color: #d9e3f2;
}

.hsse-badge {
  margin-top: 14px;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.13);
  color: #f6dd8f;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sustainability-focus {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(4px);
}

.sustainability-focus h3 {
  margin: 0 0 8px;
  color: #fff;
}

.sustainability-focus p {
  margin: 0;
  color: #d5e1f3;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.s-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(3px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.s-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 12px 30px rgba(3, 12, 24, 0.28);
}

.s-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.46);
  margin-bottom: 10px;
}

.s-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.03rem;
}

.s-card p {
  margin: 0;
  color: #d9e3f2;
  font-size: 0.94rem;
}

.product-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 14px;
  border-radius: 10px;
}

.products-showcase {
  background:
    radial-gradient(circle at 84% 16%, rgba(211, 154, 47, 0.12), transparent 30%),
    linear-gradient(180deg, #0f2d48 0%, #091b2f 100%);
}

.products-headline {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.product-intro {
  max-width: none;
  margin-bottom: 0;
}

.products-showcase .section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.product-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(3px);
}

.product-highlight h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.06rem;
}

.product-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-highlight li {
  position: relative;
  padding-left: 18px;
  color: #d8e2f2;
  margin-bottom: 7px;
}

.product-highlight li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 4px;
}

.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.showcase-grid li {
  position: relative;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 70px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.showcase-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.52);
}

.showcase-grid li::before {
  content: none;
}

.showcase-grid li span {
  color: #f7fbff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.p-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #2f5578;
  color: #f5f9ff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.p-thumb-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  object-fit: cover;
  display: block;
}

.p-meta {
  display: grid;
  gap: 2px;
}

.showcase-grid li small {
  color: #b8c7dc;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-footnote {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.product-footnote p {
  margin: 0;
  color: #cfdbed;
  max-width: 68ch;
}

.notice {
  margin-top: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.checks {
  margin: 0;
  padding-left: 20px;
}

.checks li {
  margin-bottom: 8px;
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.process li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px 14px;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 100px;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-size: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.enquiry-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.93rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form .required {
  color: #e63946;
  font-weight: 700;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 154, 47, 0.1);
}

.enquiry-form input:invalid:not(:placeholder-shown),
.enquiry-form textarea:invalid:not(:placeholder-shown) {
  border-color: #e63946;
}

.char-count {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.form-message {
  padding: 14px 16px;
  border-radius: 9px;
  margin-bottom: 16px;
  font-weight: 500;
}

.form-message-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.enquiry-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer {
  background: linear-gradient(180deg, #071427 0%, #050e1a 100%);
  color: #d7e2f2;
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
  color: #fff;
}

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

.footer li {
  margin-bottom: 6px;
}

.footer a {
  color: #d7e2f2;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-legal p {
  margin: 0 0 8px;
}

@media (max-width: 1100px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-carousel {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .products-headline {
    grid-template-columns: 1fr;
  }

  .sustainability-head {
    grid-template-columns: 1fr;
  }

  .sustainability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav.open {
    display: flex;
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
  }

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

  .product-footnote {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .slide-content {
    padding-top: 100px;
  }

  .product-list,
  .grid.four,
  .grid.three,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid li {
    grid-template-columns: 46px 1fr;
    padding: 10px 12px;
  }

  .p-thumb {
    width: 46px;
    height: 46px;
  }

  .p-thumb-img {
    width: 46px;
    height: 46px;
  }

  .business-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .business-carousel {
    grid-auto-columns: 100%;
  }

  .business-nav {
    display: none;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
  }
}
