@font-face {
  font-family: 'AgenorNeue';
  src: url('../fonts/AgenorNeue.woff2') format('woff2'),
       url('../fonts/AgenorNeue.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MontserratAlternates';
  src: url('../fonts/MontserratAlternates-Regular.woff2') format('woff2'),
       url('../fonts/MontserratAlternates-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MontserratAlternates';
  src: url('../fonts/MontserratAlternates-SemiBold.woff2') format('woff2'),
       url('../fonts/MontserratAlternates-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

:root {
  --bg-dark: #07131a;
  --bg-card: rgba(7, 19, 26, 0.72);
  --bg-card-strong: rgba(7, 19, 26, 0.86);
  --teal: #2eb8b0;
  --teal-deep: #1a8f97;
  --teal-soft: rgba(46, 184, 176, 0.13);
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-soft: rgba(255, 255, 255, 0.11);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --header-height: 92px;
  --nav-width: 74px;
  --nav-expand: 250px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'MontserratAlternates', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

body.cursor-hover .custom-cursor {
  opacity: 1;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: url('../img/architecture-bg.png') center center / cover no-repeat fixed;
  z-index: -3;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 12, 18, 0.54), rgba(4, 12, 18, 0.86)),
    radial-gradient(circle at top right, rgba(46, 184, 176, 0.1), transparent 32%),
    radial-gradient(circle at bottom left, rgba(46, 184, 176, 0.08), transparent 24%);
  z-index: -2;
}

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

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease,
    transform 0.08s linear,
    filter 0.25s ease;
  filter: drop-shadow(0 0 12px rgba(46, 184, 176, 0.25));
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(46, 184, 176, 0.85);
  border-style: solid;
}

.corner-tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.corner-tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.corner-br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

body.cursor-active .custom-cursor {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 18px rgba(46, 184, 176, 0.38));
}

body.cursor-active .cursor-dot {
  background: #ffffff;
}

body.cursor-active .cursor-corner {
  border-color: rgba(46, 184, 176, 1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 300;
  background: linear-gradient(to bottom, rgba(7, 19, 26, 0.88), rgba(7, 19, 26, 0.54));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.header-shine {
  position: absolute;
  inset: -30% -40%;
  background: linear-gradient(
    120deg,
    transparent 36%,
    rgba(46, 184, 176, 0.02) 42%,
    rgba(255, 255, 255, 0.2) 49%,
    rgba(46, 184, 176, 0.28) 50%,
    rgba(255, 255, 255, 0.12) 51%,
    transparent 58%
  );
  transform: translateX(-130%) translateY(-8%) rotate(8deg);
  pointer-events: none;
  animation: headerSweep 3s ease-in-out infinite;
}

@keyframes headerSweep {
  0% {
    transform: translateX(-140%) translateY(-8%) rotate(8deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  55% {
    transform: translateX(140%) translateY(8%) rotate(8deg);
    opacity: 1;
  }
  70%, 100% {
    opacity: 0;
    transform: translateX(140%) translateY(8%) rotate(8deg);
  }
}

.header-inner {
  position: relative;
  z-index: 2;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  inset: -8px -10px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(46, 184, 176, 0.12), transparent 68%);
  opacity: 0.9;
  z-index: -1;
}

.logo {
  width: auto;
  height: 44px;
}

.white-logo {
  filter: drop-shadow(0 0 14px rgba(46, 184, 176, 0.22));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-wrap:hover .white-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 22px rgba(46, 184, 176, 0.34));
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(46, 184, 176, 0.32);
  background: rgba(46, 184, 176, 0.08);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(46, 184, 176, 0.14);
  border-color: rgba(46, 184, 176, 0.55);
}

.side-nav {
  position: fixed;
  top: calc(50% + 10px);
  left: 18px;
  transform: translateY(-50%);
  width: var(--nav-width);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  background: rgba(7, 19, 26, 0.8);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 12px 10px;
  z-index: 240;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: width 0.35s ease;
  scrollbar-width: none;
}

.side-nav::-webkit-scrollbar {
  display: none;
}

.side-nav:hover {
  width: var(--nav-expand);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(46, 184, 176, 0.12);
  transform: translateX(2px);
}

.nav-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 184, 176, 0.14);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
}

.nav-text {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  font-size: 14px;
}

.side-nav:hover .nav-text {
  opacity: 1;
  transform: translateX(0);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  background-position: center;
  background-size: cover;
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4, 12, 18, 0.58), rgba(4, 12, 18, 0.18)),
    linear-gradient(to top, rgba(4, 12, 18, 0.62), rgba(4, 12, 18, 0.06));
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 184, 176, 0.3);
  background: rgba(46, 184, 176, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-content h1,
.section-title-wrap h2,
.section-copy h2,
.service-overview-card h3,
.mini-card h3 {
  font-family: 'AgenorNeue', sans-serif;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.hero-content p {
  max-width: 640px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  box-shadow: 0 12px 26px rgba(46, 184, 176, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(46, 184, 176, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 184, 176, 0.44);
  background: rgba(46, 184, 176, 0.08);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: var(--teal);
  transform: scale(1.18);
}

.content-section {
  position: relative;
  z-index: 2;
  padding: 86px 0;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 40px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.32);
  border-color: rgba(46, 184, 176, 0.3);
  background: rgba(7, 19, 26, 0.8);
}

.section-shell {
  overflow: hidden;
}

.section-title-wrap {
  margin-bottom: 24px;
}

.section-title-wrap.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 184, 176, 0.3);
  background: var(--teal-soft);
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  font-weight: 600;
}

.section-title-wrap h2,
.section-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 400;
}

.max-text {
  max-width: 920px;
}

.center-text {
  text-align: center;
  margin-inline: auto;
}

p {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 16px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.split-grid.reverse .section-image {
  order: 2;
}

.split-grid.reverse .section-copy {
  order: 1;
}

.section-centered-grid {
  margin-top: 8px;
}

.section-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.35s ease, transform 0.8s ease;
  pointer-events: none;
}

.section-image:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.section-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.65s ease, filter 0.45s ease;
}

.section-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.04);
}

.mini-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

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

.mini-card,
.service-overview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 24px 20px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.mini-card:hover,
.service-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  border-color: rgba(46, 184, 176, 0.34);
  background: rgba(7, 19, 26, 0.84);
}

.mini-card h3,
.service-overview-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
  font-weight: 400;
}

.mini-card p,
.service-overview-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 38px;
}

.services-detail-grid {
  margin-top: 8px;
}

.capabilities-section-card {
  overflow: hidden;
}

.capabilities-intro {
  margin-bottom: 30px;
}

.capabilities-intro strong {
  display: inline-block;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 600;
}

.hexagon-grid-hero {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 28px;
  border: 1px solid rgba(46, 184, 176, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), rgba(7, 19, 26, 0.38);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), 0 0 0 rgba(46, 184, 176, 0);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
  isolation: isolate;
}

.hexagon-grid-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(46, 184, 176, 0) 35%,
    rgba(46, 184, 176, 0.2) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(46, 184, 176, 0.2) 52%,
    rgba(46, 184, 176, 0) 65%,
    transparent 80%
  );
  transform: translateX(-120%) rotate(10deg);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  animation: glassGlowSweep 5s ease-in-out infinite;
}

.hexagon-grid-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(46, 184, 176, 0.14), transparent 28%), radial-gradient(circle at bottom left, rgba(46, 184, 176, 0.1), transparent 24%);
  z-index: 1;
}

.hexagon-grid-hero:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(46, 184, 176, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 30px rgba(46, 184, 176, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), rgba(7, 19, 26, 0.45);
}

.hexagon-grid-hero img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.hexagon-grid-hero:hover img {
  transform: scale(1.025);
  filter: brightness(1.06) saturate(1.04);
}

@keyframes glassGlowSweep {
  0% {
    transform: translateX(-120%) rotate(10deg);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  45% {
    transform: translateX(120%) rotate(10deg);
    opacity: 0.85;
  }
  60%,
  100% {
    transform: translateX(120%) rotate(10deg);
    opacity: 0;
  }
}

.client-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 22px;
  padding: 8px 0;
}

.client-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  will-change: transform;
}

.client-item {
  flex: 0 0 210px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.client-item:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 184, 176, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.client-item img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.client-item span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact-details {
  margin-top: 18px;
}

.contact-details p {
  margin-bottom: 8px;
}

.enquiry-form {
  width: 100%;
}

.form-row {
  margin-bottom: 16px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: 'MontserratAlternates', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: rgba(46, 184, 176, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 34px 0 44px;
  background: rgba(7, 19, 26, 0.84);
  border-top: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  width: auto;
  height: 42px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-contact p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .service-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 991px) {
  body {
    cursor: auto;
  }

  .custom-cursor,
  .side-nav {
    display: none;
  }

  .container {
    width: min(100% - 34px, 1200px);
  }

  .header-cta {
    display: none;
  }

  .split-grid,
  .enquiry-grid,
  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-grid.reverse .section-image,
  .split-grid.reverse .section-copy {
    order: initial;
  }

  .section-image img {
    height: 320px;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 82px;
  }

  .logo {
    height: 38px;
  }

  .hero-section {
    padding: 68px 0 72px;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .content-section {
    padding: 64px 0;
  }

  .glass-card {
    padding: 24px;
    border-radius: 22px;
  }

  .section-image,
  .section-image img,
  .hexagon-grid-hero,
  .hexagon-grid-hero::after {
    border-radius: 18px;
  }

  .section-image img {
    height: 240px;
  }

  .mini-grid.four {
    grid-template-columns: 1fr;
  }

  .client-item {
    flex-basis: 180px;
    min-height: 150px;
  }
}


/* Cursor visibility fix */
.custom-cursor {
  opacity: 1;
}

/* Ensure side navigation text has no underline */
.side-nav a,
.side-nav a:hover,
.side-nav a:focus,
.side-nav a:active,
.nav-item,
.nav-item:hover,
.nav-item:focus,
.nav-item:active,
.nav-text {
  text-decoration: none;
  border-bottom: none;
  box-shadow: none;
}

/* ISO SECTION */
.iso-shell {
  overflow: hidden;
}

.iso-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}

.iso-item {
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.iso-item img {
  width: min(100%, 100px);
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 10px rgba(46, 184, 176, 0.22));
}

.iso-item p {
  max-width: 120px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

.iso-item:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 16px rgba(46, 184, 176, 0.38));
}

@media (max-width: 767px) {
  .iso-badges {
    gap: 10px;
  }

  .iso-item img {
    width: min(100%, 74px);
  }

  .iso-item p {
    max-width: 90px;
    font-size: 10px;
    line-height: 1.3;
  }
}
