@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --bg-blue: #1a97d6;
  --bg-blue-dark: #0b4f79;
  --text-main: #f5fbff;
  --text-soft: #d5e6f7;
  --glass: rgba(11, 63, 98, 0.26);
  --glass-border: rgba(162, 210, 237, 0.3);
  --cta: #ef1f4b;
  --cta-text: #ffffff;
  --brand-red: #ef1f4b;
  --brand-red-dark: #be1439;
  --brand-blue: #1a97d6;
  --brand-blue-dark: #0b4f79;
  --surface-blue: #f2f8ff;
  --surface-alt: #f8fbff;
  --ink: #132236;
}

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

body {
  min-height: 100vh;
  font-family: "Mona Sans", sans-serif;
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  height: auto;
  padding: 14px;
  overflow: hidden;
  background-image:
    linear-gradient(
      to right,
      rgba(8, 52, 73, 0.78) 0%,
      rgba(8, 52, 73, 0.36) 48%,
      rgba(8, 52, 73, 0.7) 100%
    ),
    url("../assets/header-banner.webp");
  background-size: cover;
  background-position: center;
}

.topbar {
  width: 100%;
  min-height: 82px;
  padding: 0 15px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: var(--glass);
  backdrop-filter: blur(3px);
  z-index: 50;
  transition:
    border-radius 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.topbar-placeholder {
  height: 0;
  transition: height 0.35s ease;
}

body.nav-fixed .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 0 24px;
  background: rgba(8, 42, 59, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

body.nav-fixed .topbar-placeholder {
  height: var(--topbar-height, 82px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  color: var(--text-main);
}

.logo-home {
  color: inherit;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.28s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(239, 31, 75, 0.9) 0%,
    rgba(26, 151, 214, 0.9) 100%
  );
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--cta-text);
  text-decoration: none;
  background: var(--cta);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  box-shadow: 0 10px 20px rgba(239, 31, 75, 0.32);
  transform: translateY(-1px) scale(1.01);
}

.cta-btn:active {
  transform: scale(0.98);
}

.hero-content {
  max-width: 75%;
  margin-top: clamp(50px, 10vh, 100px);
  padding-left: clamp(4px, 2vw, 30px);
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0.01em;
  font-weight: 900;
  color: var(--text-main);
}

.head-widgets {
  display: flex;
  width: 95%;
  justify-content: space-between;
  place-self: center;
  margin-top: 10rem;
  align-items: flex-end;
}
.left-float {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  background-color: rgba(103, 166, 199, 0.205);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border-radius: 20px;
  height: 170px;
}

.arrow-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 65px;
  border-right: 1px solid rgba(230, 245, 255, 0.4);
  height: 100%;
}
.arrow-col button {
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease;
}

.slide-btn .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.slide-btn:focus-visible {
  outline: 2px solid rgba(26, 151, 214, 0.95);
  outline-offset: -2px;
}

.arrow-col button + button {
  border-top: 1px solid rgba(230, 245, 255, 0.4);
}

.float-copy {
  padding: 14px 14px 10px;
  width: 190px;
  transition:
    opacity 0.26s ease,
    transform 0.32s ease;
}

.slide-count {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.float-copy p:last-child {
  font-size: 0.95rem;
  color: #e7f4fc;
  line-height: 1.25;
}

.left-float img {
  border-radius: 20px;
  width: 170px;
  height: 130px;
  object-fit: cover;
  transition:
    opacity 0.26s ease,
    transform 0.34s ease,
    filter 0.34s ease;
}

.left-float.is-switching .float-copy {
  opacity: 0;
  transform: translateY(8px);
}

.left-float.is-switching #slideImage {
  opacity: 0;
  transform: translateX(12px) scale(0.98);
  filter: blur(1.5px);
}

.right-float {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: left;
  gap: 14px;
  width: fit-content;
  background-color: rgba(103, 166, 199, 0.205);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border-radius: 20px;
  position: relative;
}

.card-title {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.card-subtitle {
  font-size: 0.92rem;
  width: 16rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.right-float img {
  width: 300px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-subtext {
  position: relative;
  max-width: 600px;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.services {
  padding: clamp(56px, 8vw, 94px) 14px clamp(64px, 8vw, 110px);
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.services-title {
  text-align: center;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #035d76;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.services-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card h3 {
  margin-top: 14px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  color: #045e77;
}

.service-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 28px rgba(11, 52, 73, 0.12);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.45s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.service-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #184250;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.service-arrow .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.service-card:hover .service-arrow {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 18px rgba(14, 58, 76, 0.22);
  background: #ffffff;
}

.service-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2d3a42;
  font-weight: 500;
  font-size: 0.95rem;
}

.services-note {
  width: min(860px, 100%);
  margin: clamp(36px, 6vw, 72px) auto 0;
  text-align: center;
  color: #22313a;
  font-size: clamp(1.35rem, 2.8vw, 2.75rem);
  line-height: 1.28;
}

.management {
  padding: clamp(40px, 6vw, 72px) 14px clamp(70px, 9vw, 120px);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.management-top,
.management-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.management-top {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.management-copy h2 {
  color: #035e78;
  font-size: clamp(2rem, 4.3vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.management-copy p {
  margin-top: clamp(14px, 2vw, 24px);
  max-width: 630px;
  font-size: clamp(1rem, 1.55vw, 1.95rem);
  color: #2e3f47;
  line-height: 1.35;
}

.management-widget {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  border: 1px solid rgba(14, 72, 95, 0.14);
  box-shadow: 0 18px 34px rgba(7, 62, 83, 0.12);
  padding: clamp(16px, 2vw, 26px);
}

.widget-label {
  color: #33434a;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.widget-row {
  min-height: 88px;
  border: 1px solid rgba(22, 67, 85, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.widget-row .material-symbols-outlined {
  color: #2e4651;
  font-size: 26px;
  line-height: 1;
}

.widget-title {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: #155a6f;
}

.widget-value {
  margin-top: 4px;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  color: #28343b;
  font-weight: 600;
}

.management-grid {
  margin-top: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.management-card,
.management-photo {
  border-radius: 24px;
  height: 23vw;
}

.management-card {
  padding: clamp(18px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.soft-card {
  background: linear-gradient(180deg, #eaf2f7 0%, #e6eef4 100%);
}

.lime-card {
  background: linear-gradient(180deg, #dbf88a 0%, #d1f571 100%);
}

.card-icon {
  font-size: clamp(46px, 5vw, 72px) !important;
  color: #213d49;
}

.management-card p {
  margin-top: 14px;
  color: #2a3942;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.36;
  max-width: 30ch;
}

.card-tags {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.card-tags > span {
  border: 1.5px solid rgba(37, 58, 67, 0.5);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #26343c;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.pill-icon {
  font-size: 16px;
  line-height: 1;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.management-photo {
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(7, 57, 77, 0.15);
}

.management-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.management-photo:hover img {
  transform: scale(1.03);
}

.transport {
  padding: clamp(52px, 8vw, 110px) 14px clamp(68px, 9vw, 120px);
  background: linear-gradient(180deg, #ffffff 0%, #f4fafd 100%);
}

.transport-head,
.transport-feature {
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

.transport-head h2 {
  color: #035e78;
  font-size: clamp(2.1rem, 4.7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.transport-head p {
  margin: clamp(14px, 2.2vw, 24px) auto 0;
  width: min(900px, 100%);
  color: #2c3b42;
  font-size: clamp(1.03rem, 1.8vw, 2rem);
  line-height: 1.38;
}

.transport-cta {
  margin-top: clamp(18px, 3vw, 30px);
  border: 1.5px solid rgba(21, 54, 66, 0.52);
  background: #ffffff;
  border-radius: 999px;
  min-height: 54px;
  padding: 10px 12px 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #24363e;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.transport-cta .material-symbols-outlined {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #046786;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.transport-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(5, 70, 92, 0.18);
  border-color: rgba(4, 85, 111, 0.78);
}

.transport-feature {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(9, 63, 84, 0.12);
}

.transport-left,
.transport-right {
  height: 630px;
}
.transport-left img {
  width: 145%;
  height: auto;
  object-fit: cover;
}
.transport-right {
  background: linear-gradient(180deg, #e6f3f8 0%, #eaf7fc 100%);
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  border-radius: 40px 0px 0px 40px;
  flex-direction: column;
  justify-content: space-between;
}

.transport-right h3 {
  color: #075f7a;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.transport-right p {
  margin-top: 16px;
  color: #2b3c45;
  font-size: clamp(1rem, 1.75vw, 2rem);
  line-height: 1.35;
}

.transport-right img {
  margin-top: clamp(20px, 3vw, 34px);
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.workflow {
  padding: clamp(52px, 8vw, 108px) 14px clamp(72px, 9vw, 122px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.workflow-top,
.workflow-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.workflow-top {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(20px, 3vw, 46px);
  align-items: start;
}

.workflow-top h2 {
  color: #055f79;
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.workflow-intro p {
  color: #26363f;
  font-size: clamp(1.03rem, 1.7vw, 1.95rem);
  line-height: 1.4;
}

.workflow-cta {
  margin-top: clamp(14px, 2.4vw, 24px);
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 10px 10px 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #035f79;
  color: #f1fbff;
  font-size: 1.25rem;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.workflow-cta .material-symbols-outlined {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d8f26c;
  color: #165063;
  font-size: 18px;
}

.workflow-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(7, 72, 93, 0.24);
}

.workflow-grid {
  margin-top: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}

.workflow-card {
  min-height: clamp(300px, 34vw, 420px);
  padding: clamp(22px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  width: 130%;
  border-radius: 40px 0 0 40px;
}

.workflow-card-1 {
  background: linear-gradient(180deg, #035f79 0%, #0a4f69 100%);
  color: #eaf8ff;
}

.workflow-card-2 {
  background: linear-gradient(180deg, #d8f26c 0%, #d1ee61 100%);
  color: #20313a;
}

.workflow-card-3 {
  background: linear-gradient(180deg, #f8fbfd 0%, #f0f7fb 100%);
  color: #23333c;
}

.workflow-no {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.workflow-card h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  max-width: 12ch;
}

.workflow-card p:last-child {
  margin-top: 18px;
  font-size: clamp(1rem, 1.45vw, 1.6rem);
  line-height: 1.4;
  max-width: 26ch;
}

.faq {
  padding: clamp(52px, 8vw, 112px) 14px clamp(72px, 9vw, 128px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  width: 97%;
}

.faq-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: start;
}

.faq-title h2 {
  color: #045f79;
  font-size: clamp(2.1rem, 4.1vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.faq-list {
  border-top: 1px solid rgba(30, 51, 60, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(30, 51, 60, 0.16);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.faq-question > span:first-child {
  color: #1f3139;
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
}

.faq-icon {
  color: #1f3139;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  min-width: 28px;
  text-align: right;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  overflow: hidden;
  color: #2d3f48;
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  line-height: 1.4;
  max-width: 62ch;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 88px) 14px clamp(44px, 6vw, 76px);
  background:
    radial-gradient(
      1200px 400px at 50% -40%,
      rgba(255, 255, 255, 0.08),
      transparent
    ),
    linear-gradient(180deg, #075f79 0%, #034f66 100%);
  color: #e5f7ff;
}

.footer-watermark {
  position: absolute;
  top: -22px;
  left: 14px;
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(194, 240, 255, 0.08);
  pointer-events: none;
}

.footer-top,
.footer-mid,
.footer-bottom {
  width: min(1240px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.footer-col h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #e9faff;
}

.footer-col a {
  display: block;
  color: #c9ecf7;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-mid {
  margin-top: clamp(26px, 4vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-row h3 {
  font-size: 30px;
  line-height: 1;
  color: #effcff;
}

.footer-brand p {
  margin-top: 8px;
  color: #c4e8f5;
  font-size: 0.96rem;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-cta p {
  font-size: 1.5rem;
  color: #e8fbff;
  font-weight: 500;
}

.footer-btn {
  text-decoration: none;
  border-radius: 14px;
  background: #d8f26c;
  color: #173844;
  font-weight: 700;
  padding: 14px 28px;
  min-width: 150px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 36, 45, 0.25);
}

.footer-bottom {
  margin-top: clamp(24px, 3.6vw, 40px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(202, 235, 247, 0.24);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
}

.footer-info h4 {
  font-size: 1.1rem;
  color: #eafaff;
  margin-bottom: 8px;
}

.footer-info p,
.footer-info a {
  display: block;
  color: #c8ebf7;
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer-info a:hover {
  color: #ffffff;
}

.gallery {
  padding: clamp(52px, 8vw, 96px) 14px;
  background: #ececec;
}

.gallery-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.gallery-wrap h2 {
  text-align: center;
  color: #dc4f09;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 20, 0.84);
  padding: clamp(18px, 3vw, 28px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-count {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  z-index: 4;
  color: #f0f4ff;
  font-size: 1.35rem;
  font-weight: 600;
}

.gallery-tools {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-tool-btn,
.gallery-close {
  border: 0;
  background: transparent;
  color: #eff5ff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.92;
}

.gallery-tool-btn:hover,
.gallery-close:hover {
  opacity: 1;
}

.gallery-tool-btn .material-symbols-outlined,
.gallery-close .material-symbols-outlined {
  font-size: 31px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f4f8ff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.gallery-nav-prev {
  left: clamp(16px, 2vw, 24px);
}

.gallery-nav-next {
  right: clamp(16px, 2vw, 24px);
}

.gallery-nav .material-symbols-outlined {
  font-size: 32px;
}

.gallery-stage {
  position: relative;
  z-index: 1;
  width: min(1100px, 86vw);
  margin: 0 auto;
}

.gallery-stage img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  transition: transform 0.24s ease;
  transform: scale(var(--gallery-zoom-scale, 1));
  transform-origin: center center;
  cursor: zoom-in;
}

.gallery-stage img.is-zoomed {
  cursor: zoom-out;
}

body.lightbox-open {
  overflow: hidden;
}

.reviews {
  padding: clamp(54px, 8vw, 104px) 14px;
  background: #f2f2f2;
}

.reviews-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.reviews-head p {
  color: #3b3f45;
  font-size: clamp(1.1rem, 1.8vw, 1.9rem);
  font-weight: 600;
}

.reviews-head h2 {
  margin-top: 8px;
  color: #05090f;
  font-size: clamp(2.1rem, 4.8vw, 4.9rem);
  line-height: 1.02;
  font-weight: 900;
}

.reviews-head h2 span {
  color: #e65a0f;
}

.reviews-slider {
  margin-top: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.reviews-nav {
  border: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #999594;
  color: #f4f7fa;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-1px);
  background: #7f7b7a;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  transition:
    opacity 0.22s ease,
    transform 0.28s ease;
}

.reviews-track.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.review-card {
  min-height: clamp(220px, 28vw, 330px);
  background: #dddddd;
  padding: clamp(18px, 2.4vw, 30px);
  display: flex;
  gap: 16px;
}

.review-avatar {
  min-width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #e9e9e9;
  display: grid;
  place-items: center;
}

.review-avatar .material-symbols-outlined {
  font-size: 68px;
  color: #2f343b;
}

.review-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.review-text {
  color: #171c22;
  font-size: clamp(1.06rem, 1.55vw, 1.82rem);
  line-height: 1.4;
}

.review-name {
  margin-top: auto;
  padding-top: 12px;
  color: #6f6f72;
  font-size: clamp(1.3rem, 2.1vw, 2.3rem);
  font-weight: 700;
}

.review-role {
  margin-top: 2px;
  color: #2f353c;
  font-size: clamp(0.95rem, 1.4vw, 1.5rem);
}

/* Brand coordination overrides */
body {
  background: var(--surface-alt);
  color: var(--ink);
}

.hero {
  background-image:
    linear-gradient(
      to right,
      rgba(10, 55, 88, 0.82) 0%,
      rgba(10, 55, 88, 0.42) 52%,
      rgba(10, 55, 88, 0.78) 100%
    ),
    url("../assets/header-banner.webp");
}

body.nav-fixed .topbar {
  background: rgba(9, 54, 86, 0.94);
}

.services,
.transport,
.faq {
  background: linear-gradient(180deg, var(--surface-blue) 0%, #ffffff 100%);
}

.management,
.workflow,
.gallery,
.reviews {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-alt) 100%);
}

.services-title,
.management-copy h2,
.transport-head h2,
.transport-right h3,
.workflow-top h2,
.faq-title h2,
.card-icon {
  color: var(--brand-blue-dark);
}

.service-card h3 {
  color: var(--brand-blue-dark);
}

.service-arrow {
  color: var(--brand-blue-dark);
}

.services-note,
.workflow-intro p,
.transport-head p,
.transport-right p,
.management-copy p,
.faq-question > span:first-child,
.faq-answer p {
  color: #1f3042;
}

.transport-cta,
.workflow-cta {
  background: var(--brand-blue-dark);
  color: #eef7ff;
  border-color: rgba(11, 79, 121, 0.5);
}

.transport-cta .material-symbols-outlined,
.workflow-cta .material-symbols-outlined {
  background: var(--brand-red);
  color: #ffffff;
}

.soft-card {
  background: linear-gradient(180deg, #eaf4ff 0%, #dfedff 100%);
}

.lime-card,
.workflow-card-2 {
  background: linear-gradient(180deg, #ffe4ea 0%, #ffd3df 100%);
  color: #3a1f2a;
}

.workflow-card-1 {
  background: linear-gradient(180deg, #0d5f92 0%, #0a4f79 100%);
}

.workflow-card-3 {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.gallery-wrap h2,
.reviews-head h2 span {
  color: var(--brand-red);
}

.reviews-nav {
  background: rgba(11, 79, 121, 0.7);
}

.reviews-nav:hover {
  background: rgba(11, 79, 121, 0.92);
}

.reviews-head h2,
.reviews-head p,
.review-text {
  color: #152335;
}

.site-footer {
  background:
    radial-gradient(
      1200px 420px at 50% -40%,
      rgba(77, 165, 214, 0.18),
      transparent
    ),
    linear-gradient(180deg, #0b4f79 0%, #083b5a 100%);
}

.footer-btn {
  background: var(--brand-red);
  color: #ffffff;
}

.footer-btn:hover {
  box-shadow: 0 8px 18px rgba(239, 31, 75, 0.32);
}

.menu-icon,
.xmenu {
  display: none !important;
  font-size: 32px;
  color: #d5e6f7;
  cursor: pointer;
}

.nav-overlay {
  display: none;
}
.gallery-lightbox.is-open {
  display: flex;
  z-index: 10000000000000000;
}

@media (max-width: 1270px) {
  body.nav-fixed .topbar {
    padding: 10px 16px;
  }

  .arrow-col {
    width: 45px;
  }

  .float-copy {
    padding: 14px 14px 10px;
    width: 160px;
    transition:
      opacity 0.26s ease,
      transform 0.32s ease;
  }

  .left-float img {
    border-radius: 20px;
    width: 140px;
    height: 110px;
  }
  .left-float {
    height: 137px;
  }

  .right-float img {
    width: 280px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
  }

  .head-widgets {
    margin-top: 15rem;
  }

  .left-float {
    grid-template-columns: 44px 1fr 150px;
  }

  .transport-left,
  .transport-right {
    height: 480px;
  }

  .transport-right img {
    margin-top: clamp(20px, 3vw, 34px);
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    border-radius: 16px;
  }
  .workflow-card {
    border-radius: 20px;
    min-height: 290px;
  }

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

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

  .reviews-nav {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 770px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 18, 28, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 1090;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .topbar {
    position: relative;
    z-index: 1102;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .menu-icon {
    display: inline-grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(162, 210, 237, 0.4);
    background: rgba(11, 63, 98, 0.22);
    backdrop-filter: blur(4px);
    z-index: 1104;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    position: fixed;
    right: 0;
    flex-direction: column;
    top: 0;
    width: min(330px, 84vw);
    height: 100vh;
    padding: 76px 18px 96px;
    border: 1px solid rgba(162, 210, 237, 0.34);
    border-radius: 8px;
    background: rgba(11, 63, 98, 0.86);
    backdrop-filter: blur(100px);
    box-shadow: 0 18px 34px rgba(2, 15, 24, 0.35);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.28s ease,
      opacity 0.24s ease;
    z-index: 1103;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links li {
    width: 100%;
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 10px 12px;
    color: #edf7ff;
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(197, 228, 247, 0.16);
    color: #ffffff;
    transform: translateX(4px);
  }

  .xmenu {
    display: inline-grid !important;
    place-self: end;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(197, 228, 247, 0.35);
    background: rgba(9, 54, 86, 0.36);
  }

  .cta-btn {
    position: fixed;
    right: 32px;
    bottom: 28px;
    width: min(290px, calc(84vw - 36px));
    margin-right: 0;
    display: none;
    z-index: 1101;
  }

  body.nav-open .cta-btn {
    display: inline-flex;
    top: 20rem;
    width: 200px;
    height: 3rem;
    margin-right: 50px;
    z-index: 10000000;
  }
  .hero-content h1 {
    font-size: 3rem;
  }

  .left-float {
    grid-template-columns: 38px 1fr;
  }
  .right-float {
    display: none;
  }
  .logo a {
    font-size: 0.98rem;
  }

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

  .management-grid {
    grid-template-columns: 1fr 1fr;
  }
  .management-top {
    grid-template-columns: 1fr;
  }
  .management-card {
    padding: clamp(18px, 2.6vw, 34px);
    display: flex;
    height: fit-content;
    flex-direction: column;
    justify-content: space-between;
  }
  .transport-left,
  .transport-right {
    height: 360px;
  }
  .transport-right p {
    margin-top: 16px;
    color: #2b3c45;
    font-size: 15px;
    line-height: 1.35;
  }
  .transport-right img {
    height: 170px;
  }
  .management-widget {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    width: 60%;
    margin-left: 40%;
    border: 1px solid rgba(14, 72, 95, 0.14);
    box-shadow: 0 18px 34px rgba(7, 62, 83, 0.12);
    padding: clamp(16px, 2vw, 26px);
  }
  .transport-cta {
    font-size: 1.05rem;
  }

  .transport-right {
    padding: 20px;
  }

  .workflow-cta {
    font-size: 1.02rem;
  }

  .workflow-card {
    width: 96%;
    border-radius: 40px;
  }

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

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

  .reviews-track {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .head-widgets {
    margin-top: 10rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-note {
    font-size: 15px;
  }

  .management-widget {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(14, 72, 95, 0.14);
    box-shadow: 0 18px 34px rgba(7, 62, 83, 0.12);
    padding: clamp(16px, 2vw, 26px);
  }

  .widget-row {
    min-height: 57px;
    border: 1px solid rgba(22, 67, 85, 0.18);
    border-radius: 18px;
    padding: 10px 17px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
  }
  .widget-value {
    margin-top: 4px;
    font-size: 13px;
    color: #28343b;
    font-weight: 600;
  }
  .widget-title {
    font-size: 13px;
    font-weight: 700;
    color: #155a6f;
  }
  .management-grid {
    grid-template-columns: 1fr;
  }
  .management-card,
  .management-photo {
    border-radius: 24px;
    height: 53vw;
  }
  .transport-head h2 {
    color: #035e78;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0.01em;
  }
  .transport-head p {
    margin: clamp(14px, 2.2vw, 24px) auto 0;
    width: min(900px, 100%);
    color: #2c3b42;
    font-size: 12px;
    line-height: 1.38;
  }
  .transport-cta {
    font-size: 14px;
    min-height: 41px;
  }
  .transport-feature {
    margin-top: clamp(30px, 4vw, 46px);
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(9, 63, 84, 0.12);
  }
  .transport-left img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 20px;
  }
  .transport-left,
  .transport-right {
    height: fit-content;
  }

  .transport-left {
    display: none;
  }
  .workflow-top {
    grid-template-columns: 1fr;
  }

  .workflow-cta {
    font-size: 14px;
    min-height: 41px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .workflow-card {
    min-height: 250px;
    border-radius: 20px;
  }
  .workflow-card p:last-child {
    max-width: 100%;
  }
  .faq-question > span:first-child {
    font-size: 20px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    border-radius: 20px;
  }

  #reviewsTrack > article:nth-child(2) {
    display: none;
  }
  .review-card {
    min-height: clamp(220px, 28vw, 330px);
    background: #dddddd;
    padding: clamp(18px, 2.4vw, 30px);
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-nav {
    width: 40px;
    height: 40px;
    font-size: 22px !important;
  }
  .review-avatar .material-symbols-outlined {
    font-size: 45px;
    color: #2f343b;
  }
  .review-avatar {
    min-width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #e9e9e9;
    display: grid;
    place-items: center;
  }
  .review-text {
    color: #171c22;
    font-size: 12px;
    line-height: 1.4;
  }
  .review-name {
    margin-top: auto;
    padding-top: 12px;
    color: #6f6f72;
    font-size: 13px;
    font-weight: 700;
  }
  .review-role {
    margin-top: 2px;
    color: #2f353c;
    font-size: 11px;
  }
  .reviews-nav {
    order: 2;
  }
  .reviews-track {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2vw, 26px);
  }
  .footer-col h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #e9faff;
  }
  .footer-col a {
    display: block;
    color: #c9ecf7;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 13px;
    transition: color 0.2s ease;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .brand-row img {
    width: 45px;
    height: 45px;
    object-fit: contain;
  }
  .footer-brand p {
    margin-top: 8px;
    color: #c4e8f5;
    font-size: 10px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-info h4 {
    font-size: 14px;
    color: #eafaff;
    margin-bottom: 8px;
  }
  .footer-info p,
  .footer-info a {
    display: block;
    color: #c8ebf7;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
  }
}
