:root {
  --blue: #1554c6;
  --blue-dark: #0f469e;
  --navy: #081a3a;
  --text: #3f4b63;
  --light-bg: #eef4fb;
  --white: #ffffff;
  --border: #d8e3f3;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --container: 1400px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f9fc;
  line-height: 1.5;
}

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

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

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

/* Header */

.site-header {
  background: var(--white);
  border-bottom: 1px solid #edf1f7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 145px;
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.logo-wrap img {
  width: 320px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 14px;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1f2937;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.nav-link i {
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #e4ebf6;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #243047;
}

.dropdown-menu a:hover {
  background: #f1f6fe;
  color: var(--blue-dark);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(21, 84, 198, 0.18);
}

.phone-btn i {
  font-size: 1rem;
}

/* Hero */

.hero {
  background: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 760px;
  align-items: stretch;
}

.hero-copy {
  padding: 74px 32px 58px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 1.04rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-title .accent {
  color: var(--blue);
}

.hero-text {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: 1.26rem;
  color: #4d5970;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  min-height: 62px;
  padding: 0 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(21, 84, 198, 0.18);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: #eff5ff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4b5870;
  font-size: 1rem;
  font-weight: 600;
  min-width: 185px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #d6e3fb;
  color: var(--blue);
  background: #f8fbff;
  font-size: 1.3rem;
  flex: 0 0 50px;
}

.hero-image {
  position: relative;
  min-height: 760px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.82) 11%,
      rgba(255, 255, 255, 0.26) 34%,
      rgba(255, 255, 255, 0) 50%
    ),
    url("/assets/images/hero-office.png") center center / cover no-repeat;
}

.location-card {
  position: absolute;
  right: 78px;
  bottom: 62px;
  z-index: 2;
  width: 285px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.location-card i {
  color: var(--blue);
  font-size: 1.8rem;
  margin-top: 2px;
}

.location-card strong {
  display: block;
  margin-bottom: 4px;
  color: #162038;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.location-card span {
  color: #49566d;
  font-size: 1.04rem;
  line-height: 1.45;
}

/* Industry cards */

.industries-section {
  background: var(--light-bg);
  padding: 28px 0 22px;
}

.section-title {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 1.08rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  position: relative;
}

.industry-image {
  height: 224px;
  background-size: cover;
  background-position: center;
}

.industry-image.office {
  background-image: url("/assets/images/industry-office.png");
}

.industry-image.logistics {
  background-image: url("/assets/images/industry-logistics.png");
}

.industry-image.medical {
  background-image: url("/assets/images/industry-medical.png");
}

.industry-body {
  position: relative;
  text-align: center;
  padding: 54px 28px 24px;
}

.industry-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 6px solid var(--white);
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  top: -39px;
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(21, 84, 198, 0.18);
}

.industry-body h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
}

.industry-body p {
  margin: 0;
  color: #4d5a71;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Bottom strip */

.value-strip {
  background: var(--blue-dark);
  color: var(--white);
  padding: 34px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 28px;
  min-height: 88px;
}

.value-item + .value-item {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.value-item i {
  font-size: 2rem;
  flex: 0 0 40px;
}

.value-item span {
  font-size: 1.06rem;
  line-height: 1.4;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 300px 1fr;
  }

  .phone-btn {
    grid-column: 1 / -1;
    justify-self: end;
    margin-bottom: 18px;
  }

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

  .hero-copy {
    padding-right: 0;
    padding-bottom: 24px;
  }

  .hero-image {
    min-height: 520px;
  }

  .industry-cards,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0 18px;
  }

  .logo-wrap {
    justify-self: center;
  }

  .logo-wrap img {
    width: 240px;
  }

  .main-nav {
    justify-content: center;
    gap: 0;
  }

  .nav-link {
    padding: 10px 10px;
    font-size: 0.9rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    margin: 0 10px 10px;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    display: block;
  }

  .phone-btn {
    justify-self: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }

  .hero-copy {
    padding: 48px 0 28px;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .hero-image {
    min-height: 380px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .location-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .industry-cards,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-item + .value-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}
/* Page load fade */
body {
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.page-loaded {
  opacity: 1;
}

/* Section fade-up */
.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

/* Stagger delays */
.fade-delay-1 {
  transition-delay: 0.08s;
}

.fade-delay-2 {
  transition-delay: 0.18s;
}

.fade-delay-3 {
  transition-delay: 0.28s;
}

.fade-delay-4 {
  transition-delay: 0.38s;
}

/* Interior page hero */

.page-hero {
  background: var(--white);
  padding: 92px 0 82px;
  overflow: hidden;
}

.services-hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("/assets/images/hero-office.png") center center / cover no-repeat;
}

.page-hero-inner {
  max-width: 850px;
}

.page-title {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.page-title .accent {
  color: var(--blue);
}

.page-hero-text {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: 1.24rem;
  color: #4d5970;
}

/* Shared interior sections */

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

.white-section {
  background: var(--white);
}

.two-column-section {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 56px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.ifm-card h2,
.cta-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.section-text p {
  margin: 0 0 18px;
  font-size: 1.15rem;
  color: #4d5970;
}

/* Services cards */

.services-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px 32px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  border: 1px solid #e6eef9;
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 12px 24px rgba(21, 84, 198, 0.18);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: #4d5a71;
  font-size: 1.05rem;
}

/* IFM section */

.ifm-section {
  background: var(--white);
  padding: 78px 0;
}

.ifm-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
}

.ifm-card .eyebrow,
.ifm-card h2 {
  color: var(--white);
}

.ifm-card p {
  margin: 22px 0 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.ifm-list {
  display: grid;
  gap: 16px;
}

.ifm-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-weight: 800;
}

.ifm-list i {
  color: #7fb0ff;
}

/* Industries spacing on services page */

.services-industries {
  padding-top: 70px;
  padding-bottom: 78px;
}

/* CTA */

.cta-section {
  background: var(--white);
  padding: 78px 0 88px;
}

.cta-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 58px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.cta-card p {
  max-width: 820px;
  margin: 20px auto 30px;
  font-size: 1.18rem;
  color: #4d5970;
}

.cta-card .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Responsive interior pages */

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

  .ifm-card {
    grid-template-columns: 1fr;
  }

  .two-column-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 58px 0 52px;
  }

  .services-hero {
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("/assets/images/hero-office.png") center center / cover no-repeat;
  }

  .page-hero-text {
    font-size: 1.08rem;
  }

  .content-section,
  .services-section,
  .ifm-section,
  .cta-section {
    padding: 54px 0;
  }

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

  .ifm-card,
  .cta-card {
    padding: 34px 24px;
  }
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  padding: 54px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo img {
  width: 260px;
  height: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  display: block;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-phone i {
  color: #7fb0ff;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-menu a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-menu a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-legal {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-logo img {
    width: 240px;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal {
    justify-items: center;
  }
}

/* About page */

.about-hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("/assets/images/hero-office.png") center center / cover no-repeat;
}

.about-intro-section {
  background: var(--white);
  padding: 76px 0;
}

.about-cards-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid #e6eef9;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.about-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px rgba(21, 84, 198, 0.18);
}

.about-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
}

.about-card p {
  margin: 0;
  color: #4d5a71;
  font-size: 1.03rem;
}

.about-ifm-section {
  background: var(--white);
  padding: 78px 0;
}

.about-standout-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

.centered-section-text {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
  color: #4d5970;
  font-size: 1.16rem;
}

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

.standout-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  border: 1px solid #e6eef9;
}

.standout-item i {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.85rem;
}

.standout-item span {
  display: block;
  color: #243047;
  font-weight: 800;
  line-height: 1.35;
}

.commitment-section {
  background: var(--white);
  padding: 76px 0;
}

.commitment-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid #e6eef9;
}

.commitment-card p {
  margin: 0 0 18px;
  font-size: 1.14rem;
  color: #4d5970;
}

.commitment-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.commitment-lines span {
  display: block;
  background: var(--white);
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}


/* About responsive */

@media (max-width: 1200px) {
  .about-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-logo img {
    width: 240px;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-legal {
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .about-hero {
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("/assets/images/hero-office.png") center center / cover no-repeat;
  }

  .about-intro-section,
  .about-cards-section,
  .about-ifm-section,
  .about-standout-section,
  .commitment-section {
    padding: 54px 0;
  }

  .about-card-grid,
  .standout-grid {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    padding: 30px 24px;
  }
}

/* Industries page */

.industries-hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("/assets/images/industry-office.png") center center / cover no-repeat;
}

.industry-detail-section {
  background: var(--white);
  padding: 82px 0;
}

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

.industry-detail-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 54px;
  align-items: center;
}

.industry-detail-grid.reverse {
  grid-template-columns: 56% 44%;
}

.industry-detail-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.industry-detail-image.office {
  background-image: url("/assets/images/industry-office.png");
}

.industry-detail-image.logistics {
  background-image: url("/assets/images/industry-logistics.png");
}

.industry-detail-image.medical {
  background-image: url("/assets/images/industry-medical.png");
}

.industry-detail-copy h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.industry-detail-copy h3 {
  margin: 28px 0 14px;
  color: var(--blue);
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 900;
}

.industry-detail-copy p {
  margin: 0 0 18px;
  font-size: 1.13rem;
  color: #4d5970;
}

.checked-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.checked-list li {
  position: relative;
  padding-left: 32px;
  color: #3f4b63;
  font-size: 1.07rem;
  font-weight: 650;
}

.checked-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.result-box {
  background: var(--light-bg);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 18px 20px;
  color: #243047;
  font-size: 1.08rem;
  line-height: 1.45;
}

.industry-detail-section.alternate .result-box {
  background: var(--white);
}

.result-box strong {
  color: var(--navy);
}

.industries-ifm-section {
  background: var(--white);
  padding: 78px 0;
}

.industry-specific-section {
  background: var(--light-bg);
  padding: 76px 0;
}

.one-standard-box {
  margin-top: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(21, 84, 198, 0.18);
}

/* Industries responsive */

@media (max-width: 1100px) {
  .industry-detail-grid,
  .industry-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .industry-detail-grid.reverse .industry-detail-image {
    order: -1;
  }

  .industry-detail-image {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .industries-hero {
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("/assets/images/industry-office.png") center center / cover no-repeat;
  }

  .industry-detail-section,
  .industries-ifm-section,
  .industry-specific-section {
    padding: 54px 0;
  }

  .industry-detail-image {
    min-height: 320px;
  }
}

/* Why MarHen page */

.why-hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("/assets/images/hero-office.png") center center / cover no-repeat;
}

.why-difference-section {
  background: var(--white);
  padding: 76px 0;
}

.why-card-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

.why-feature-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid #e6eef9;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.why-feature-card p {
  margin: 0 0 18px;
  font-size: 1.14rem;
  color: #4d5970;
}

.why-ifm-section {
  background: var(--white);
  padding: 78px 0;
}

.why-accountability-section {
  background: var(--light-bg);
  padding: 76px 0;
}

.why-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid #e6eef9;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.why-panel h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.why-panel p {
  margin: 0 0 18px;
  font-size: 1.13rem;
  color: #4d5970;
}

.why-list-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.why-list-card div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
}

.why-list-card i {
  color: #7fb0ff;
}

.why-operation-section {
  background: var(--white);
  padding: 76px 0;
}

.why-standard-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

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

/* Why responsive */

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

  .why-accountability-section .industry-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-hero {
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("/assets/images/hero-office.png") center center / cover no-repeat;
  }

  .why-difference-section,
  .why-card-section,
  .why-ifm-section,
  .why-accountability-section,
  .why-operation-section,
  .why-standard-section {
    padding: 54px 0;
  }

  .why-feature-card,
  .why-panel,
  .why-list-card {
    padding: 30px 24px;
  }

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

/* Contact page */

.contact-hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("/assets/images/hero-office.png") center center / cover no-repeat;
}

.contact-main-section {
  background: var(--white);
  padding: 82px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 42px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid #e6eef9;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.contact-info-card {
  background: var(--light-bg);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.contact-info-card p,
.contact-form-card p {
  margin: 0 0 20px;
  color: #4d5970;
  font-size: 1.1rem;
}

.contact-phone-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 28px 0;
  box-shadow: 0 14px 28px rgba(21, 84, 198, 0.18);
}

.contact-phone-card i {
  font-size: 1.7rem;
}

.contact-phone-card span {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-phone-card strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
}

.contact-support-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border-left: 5px solid var(--blue);
}

.contact-support-box h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-support-box p {
  font-size: 1.02rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: #243047;
  font-weight: 800;
  font-size: 0.98rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8e3f3;
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 84, 198, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.service-area-section {
  background: var(--light-bg);
  padding: 76px 0 84px;
}

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

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .contact-hero {
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("/assets/images/hero-office.png") center center / cover no-repeat;
  }

  .contact-main-section,
  .service-area-section {
    padding: 54px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 24px;
  }

  .form-row,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }
}

/* Legal pages */

.legal-hero {
  background: var(--white);
}

.legal-content-section {
  background: var(--light-bg);
  padding: 76px 0 88px;
}

.legal-content-card {
  max-width: 980px;
  background: var(--white);
  border: 1px solid #e6eef9;
  border-radius: var(--radius-lg);
  padding: 54px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.legal-section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6eef9;
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
}

.legal-section p {
  margin: 0 0 14px;
  color: #4d5970;
  font-size: 1.08rem;
}

.legal-section ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #4d5970;
  font-size: 1.06rem;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-content-section {
    padding: 54px 0;
  }

  .legal-content-card {
    padding: 32px 24px;
  }

  .legal-section h2 {
    font-size: 1.35rem;
  }
}

/* Privacy Policy / Legal content fallback */

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e6eef9;
  border-radius: var(--radius-lg);
  padding: 54px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.legal-content h2 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 14px;
  color: #4d5970;
  font-size: 1.08rem;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #4d5970;
  font-size: 1.06rem;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Accessibility */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(21, 84, 198, 0.35);
  outline-offset: 3px;
}


@media (max-width: 768px) {
  .legal-content {
    padding: 32px 24px;
  }

  .legal-content h2 {
    font-size: 1.35rem;
  }
}
