:root {
  --navy-950: #04131f;
  --navy-900: #071b2e;
  --navy-800: #0b2a3b;
  --navy-700: #0d3a4d;
  --teal-600: #238c96;
  --teal-500: #2b9ba4;
  --teal-400: #55b7bc;
  --teal-100: #dff1f1;
  --sand: #f4f2ed;
  --paper: #fbfbf8;
  --white: #ffffff;
  --ink: #10242d;
  --muted: #64757c;
  --line: #dce4e5;
  --warm: #cbb98e;
  --shadow: 0 30px 80px rgba(3, 25, 38, 0.14);
  --font-sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

main {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.section {
  padding: 118px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #8fd4d7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h2 {
  margin-bottom: 24px;
  color: var(--navy-900);
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
  font-weight: 520;
  letter-spacing: -0.052em;
}

h2 em,
.hero h1 em {
  color: var(--teal-400);
  font-family: var(--font-serif);
  font-weight: 400;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal-500);
  color: var(--white);
}

.button-primary:hover {
  background: #35aab3;
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(7, 27, 46, 0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-glass:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button-white {
  background: var(--white);
  color: var(--navy-900);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--teal-400);
  color: var(--teal-400);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid #9cb2b6;
  padding: 0 0 7px;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 700;
}

.text-link span {
  color: var(--teal-600);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  border-bottom-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* Header */

.topbar {
  position: relative;
  z-index: 80;
  height: 30px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-contact a {
  color: var(--teal-400);
  transition: color 180ms ease;
}

.topbar-contact a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(9, 42, 55, 0.08);
  background: rgba(251, 251, 248, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-image-wrap {
  position: relative;
  display: grid;
  width: 102px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.brand-image {
  width: 102px;
  height: 66px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--navy-900);
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.17em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--teal-600);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.main-nav > a {
  position: relative;
  padding: 27px 0 26px;
  color: #3d555e;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--navy-900);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.one-entry-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 141, 148, 0.28);
  padding: 8px 13px;
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.one-entry-link:hover {
  border-color: var(--teal-500);
  background: rgba(27, 141, 148, 0.08);
}

.one-entry-dot {
  display: grid;
  width: 23px;
  height: 23px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
  font-size: 0.66rem;
}

.one-mobile-button {
  margin-bottom: 10px;
  border: 1px solid var(--teal-500);
  background: transparent;
  color: var(--teal-500);
}

.language-button {
  border: 0;
  padding: 10px;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-button span {
  color: var(--teal-600);
}

.language-switcher {
  position: relative;
}

.language-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  width: 148px;
  overflow: hidden;
  border: 1px solid rgba(101, 208, 211, 0.22);
  border-radius: 10px;
  background: #0b2632;
  box-shadow: 0 18px 48px rgba(0, 8, 12, 0.35);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 11px 14px;
  background: transparent;
  color: #d7e6e7;
  cursor: pointer;
  text-align: left;
}

.language-menu button + button {
  border-top: 1px solid rgba(101, 208, 211, 0.12);
}

.language-menu button:hover,
.language-menu button[aria-current="true"] {
  background: rgba(101, 208, 211, 0.12);
  color: #fff;
}

.language-menu strong {
  color: var(--teal-500);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.language-menu span {
  color: inherit;
  font-size: 0.78rem;
}

.menu-toggle,
.mobile-nav-actions {
  display: none;
}

/* Home hero */

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  background: var(--navy-900);
  color: var(--white);
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 19, 31, 0.97) 0%, rgba(3, 19, 31, 0.84) 42%, rgba(3, 19, 31, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 19, 31, 0.62) 0%, transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(89, 188, 192, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 188, 192, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 108px);
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 80px;
  padding-top: 50px;
  padding-bottom: 120px;
}

.hero-copy {
  max-width: 750px;
  animation: rise-in 900ms both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: #b9dadc;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-kicker span {
  width: 32px;
  height: 1px;
  background: var(--teal-400);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4.1rem, 7.1vw, 7.2rem);
  font-weight: 480;
  letter-spacing: -0.075em;
}

.hero h1 em {
  display: inline-block;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.hero-status-card {
  align-self: end;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px;
  background: rgba(4, 19, 31, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  animation: rise-in 900ms 260ms both;
}

.status-card-head,
.status-metrics,
.hero-bottom-inner,
.dashboard-top,
.dashboard-welcome,
.table-head,
.portal-screen-top,
.portal-title,
.portal-operation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-card-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfdbdc;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.status-card-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55c58d;
  box-shadow: 0 0 0 6px rgba(85, 197, 141, 0.12);
  animation: status-signal 1.4s ease-in-out infinite;
}

.status-card-head small {
  color: #55c58d;
  font-size: 0.58rem;
  font-weight: 800;
}

.status-card-head .live-indicator {
  animation: live-blink 1.15s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(85, 197, 141, 0.58);
}

.route-visual {
  position: relative;
  height: 270px;
  margin: 20px -2px 16px;
  overflow: hidden;
  background:
    linear-gradient(rgba(4, 19, 31, 0.18), rgba(4, 19, 31, 0.38)),
    radial-gradient(circle at 55% 52%, rgba(43, 155, 164, 0.2), transparent 38%),
    url("../public/global-route-map-v1.png") center/cover no-repeat;
  background-size:
    100% 100%,
    145% 145%,
    cover;
  animation: route-background 8s ease-in-out infinite alternate;
}

.route-visual::before,
.route-visual::after {
  position: absolute;
  border: 1px solid rgba(98, 198, 201, 0.16);
  border-radius: 50%;
  content: "";
}

.route-visual::before {
  width: 260px;
  height: 260px;
  top: -46px;
  left: 34px;
  animation: radar-drift 7s ease-in-out infinite alternate;
}

.route-visual::after {
  width: 360px;
  height: 360px;
  top: -95px;
  left: -15px;
  animation: radar-drift 10s 700ms ease-in-out infinite alternate-reverse;
}

.route-network {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.route-path {
  position: absolute;
  height: 0;
  border-top: 1px dashed rgba(97, 191, 195, 0.72);
  transform-origin: left center;
  animation: route-line-glow 2.4s ease-in-out infinite;
}

.route-path::after {
  position: absolute;
  width: 7px;
  height: 7px;
  top: -4px;
  left: 0;
  border: 2px solid #c9ffff;
  border-radius: 50%;
  background: #65d8dc;
  box-shadow:
    0 0 0 6px rgba(101, 216, 220, 0.12),
    0 0 18px rgba(101, 216, 220, 0.9);
  content: "";
  animation: route-travel var(--route-duration, 4.2s) linear infinite;
  animation-delay: var(--route-delay, 0s);
}

.route-path-rotterdam {
  width: 6.3%;
  top: 108px;
  left: calc(50% + 5px);
  --route-delay: -1.1s;
  --route-duration: 4.4s;
  transform: rotate(16deg);
}

.route-path-hamburg {
  width: 8.3%;
  top: 80px;
  left: calc(52% + 5px);
  --route-delay: -2.7s;
  --route-duration: 3.8s;
  transform: rotate(61deg);
}

.route-path-new-york {
  width: 27.1%;
  top: 105px;
  left: calc(29% + 5px);
  --route-delay: -3.3s;
  --route-duration: 6.2s;
  transform: rotate(5deg);
}

.route-path-santos {
  width: 23.2%;
  top: 176px;
  left: calc(36% + 5px);
  --route-delay: -1.8s;
  --route-duration: 5.8s;
  transform: rotate(-30deg);
}

.route-path-london {
  width: 9.5%;
  top: 91px;
  left: calc(48% + 5px);
  --route-delay: -0.7s;
  --route-duration: 4.1s;
  transform: rotate(33deg);
}

.route-path-moscow {
  width: 9.9%;
  top: 69px;
  left: calc(59% + 5px);
  --route-delay: -2.2s;
  --route-duration: 4.5s;
  transform: rotate(108deg);
}

.route-path-dubai {
  width: 7.9%;
  top: 148px;
  left: calc(61% + 5px);
  --route-delay: -0.4s;
  --route-duration: 3.5s;
  transform: rotate(-129deg);
}

.route-path-mumbai {
  width: 13.4%;
  top: 162px;
  left: calc(66% + 5px);
  --route-delay: -2.9s;
  --route-duration: 4.3s;
  transform: rotate(-139deg);
}

.route-path-singapore {
  width: 22%;
  top: 188px;
  left: calc(73% + 5px);
  --route-delay: -4.1s;
  --route-duration: 5.4s;
  transform: rotate(-141deg);
}

.route-path-shanghai {
  width: 24.3%;
  top: 137px;
  left: calc(80% + 5px);
  --route-delay: -2s;
  --route-duration: 4.8s;
  transform: rotate(-171deg);
}

.route-path-tokyo {
  width: 30%;
  top: 117px;
  left: calc(86% + 5px);
  --route-delay: -3.6s;
  --route-duration: 5.7s;
  transform: rotate(180deg);
}

.route-path-sydney {
  width: 36.5%;
  top: 215px;
  left: calc(87% + 5px);
  --route-delay: -1.3s;
  --route-duration: 6.4s;
  transform: rotate(-148deg);
}

.route-city {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  white-space: nowrap;
}

.route-city i {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 1px;
  left: 1px;
  border: 2px solid #a5e6e7;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(85, 183, 188, 0.14);
  animation: route-point-pulse 2.4s ease-in-out infinite;
}

.route-city small {
  position: absolute;
  width: max-content;
  top: -3px;
  left: 15px;
  color: #8eb2b8;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  opacity: 0.5;
  animation: city-label-cycle 12s var(--city-delay, 0s) ease-in-out infinite;
}

.route-city strong {
  position: absolute;
  width: max-content;
  top: 8px;
  left: 15px;
  color: #f1fbfb;
  font-size: 0.61rem;
  line-height: 1;
  opacity: 0.58;
  animation: city-label-cycle 12s var(--city-delay, 0s) ease-in-out infinite;
}

.route-city:hover small,
.route-city:hover strong {
  opacity: 1;
  animation: none;
}

.route-city-new-york {
  top: 100px;
  left: 29%;
  --city-delay: -1s;
}

.route-city-santos {
  top: 171px;
  left: 36%;
  --city-delay: -2s;
}

.route-city-santos small,
.route-city-santos strong {
  width: 54px;
  left: -59px;
  text-align: right;
}

.route-city-london {
  top: 86px;
  left: 48%;
  --city-delay: -3s;
}

.route-city-london small,
.route-city-london strong {
  width: 72px;
  left: -77px;
  text-align: right;
}

.route-city-rotterdam {
  top: 103px;
  left: 50%;
  --city-delay: -4s;
}

.route-city-rotterdam i {
  animation-delay: 0ms;
}

.route-city-rotterdam small,
.route-city-rotterdam strong {
  width: 58px;
  left: -63px;
  text-align: right;
}

.route-city-hamburg {
  top: 75px;
  left: 52%;
  --city-delay: -5s;
}

.route-city-hamburg i {
  animation-delay: 480ms;
}

.route-city-hamburg small,
.route-city-hamburg strong {
  width: 58px;
  left: -63px;
  text-align: right;
}

.route-city-istanbul {
  top: 112px;
  left: 56%;
  --city-delay: 0s;
}

.route-city-istanbul i {
  border-color: #d9ffff;
  background: #59cfd3;
  animation-delay: 960ms;
}

.route-city-istanbul small,
.route-city-istanbul strong {
  opacity: 1;
  animation: none;
}

.route-city-moscow {
  top: 64px;
  left: 59%;
  --city-delay: -6s;
}

.route-city-moscow i {
  animation-delay: 1200ms;
}

.route-city-dubai {
  top: 143px;
  left: 61%;
  --city-delay: -7s;
}

.route-city-dubai i {
  animation-delay: 1440ms;
}

.route-city-mumbai {
  top: 157px;
  left: 66%;
  --city-delay: -8s;
}

.route-city-mumbai i {
  animation-delay: 1680ms;
}

.route-city-mumbai small {
  top: 13px;
}

.route-city-mumbai strong {
  top: 24px;
}

.route-city-singapore {
  top: 183px;
  left: 73%;
  --city-delay: -9s;
}

.route-city-singapore i {
  animation-delay: 1920ms;
}

.route-city-singapore small,
.route-city-singapore strong {
  width: 58px;
  left: -63px;
  text-align: right;
}

.route-city-shanghai {
  top: 132px;
  left: 80%;
  --city-delay: -10s;
}

.route-city-shanghai i {
  animation-delay: 2160ms;
}

.route-city-tokyo {
  top: 112px;
  left: 86%;
  --city-delay: -11s;
}

.route-city-tokyo i {
  animation-delay: 2400ms;
}

.route-city-tokyo small,
.route-city-tokyo strong {
  width: 54px;
  left: -59px;
  text-align: right;
}

.route-city-sydney {
  top: 210px;
  left: 87%;
  --city-delay: -5.5s;
}

.route-city-sydney i {
  animation-delay: 2640ms;
}

.route-city-sydney small,
.route-city-sydney strong {
  width: 58px;
  left: -63px;
  text-align: right;
}

.status-metrics {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.status-metrics > div {
  display: flex;
  flex-direction: column;
}

.status-metrics small {
  color: #71949b;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.status-metrics strong {
  margin-top: 4px;
  font-size: 0.72rem;
}

.status-chip {
  padding: 5px 8px;
  background: rgba(85, 197, 141, 0.12);
  color: #6fd39c;
  font-size: 0.5rem;
  font-weight: 800;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 19, 31, 0.4);
  backdrop-filter: blur(10px);
}

.hero-bottom-inner {
  min-height: 78px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 26px;
  background: var(--teal-400);
}

.hero-trust {
  display: flex;
  gap: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-400);
  content: "";
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 14px rgba(85, 183, 188, 0);
  }
}

@keyframes live-blink {
  0%,
  42%,
  100% {
    opacity: 1;
  }
  55%,
  72% {
    opacity: 0.28;
  }
}

@keyframes status-signal {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(85, 197, 141, 0.11);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(85, 197, 141, 0),
      0 0 15px rgba(85, 197, 141, 0.72);
  }
}

@keyframes route-background {
  from {
    background-position:
      0 0,
      28% 58%,
      center;
  }
  to {
    background-position:
      0 0,
      58% 38%,
      center;
  }
}

@keyframes radar-drift {
  from {
    opacity: 0.62;
    transform: translate3d(-8px, 5px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(14px, -7px, 0) scale(1.05);
  }
}

@keyframes route-line-glow {
  0%,
  100% {
    border-color: rgba(97, 191, 195, 0.5);
    filter: drop-shadow(0 0 0 rgba(101, 216, 220, 0));
  }
  50% {
    border-color: rgba(133, 234, 236, 0.95);
    filter: drop-shadow(0 -2px 5px rgba(101, 216, 220, 0.34));
  }
}

@keyframes route-travel {
  0% {
    left: 0;
    opacity: 0;
    transform: translateY(0) scale(0.75);
  }
  10% {
    opacity: 1;
  }
  38% {
    transform: translateY(-8px) scale(1);
  }
  68% {
    transform: translateY(-6px) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 7px);
    opacity: 0;
    transform: translateY(0) scale(0.75);
  }
}

@keyframes route-point-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(85, 183, 188, 0.12);
    transform: scale(1);
  }
  45% {
    box-shadow:
      0 0 0 12px rgba(85, 183, 188, 0),
      0 0 17px rgba(101, 216, 220, 0.8);
    transform: scale(1.18);
  }
}

@keyframes city-label-cycle {
  0%,
  100% {
    opacity: 0.42;
    text-shadow: none;
  }
  12%,
  28% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(101, 216, 220, 0.36);
  }
  40% {
    opacity: 0.58;
    text-shadow: none;
  }
}

/* Intro and services */

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

.intro h2 {
  margin-top: 24px;
}

.intro-copy {
  padding-bottom: 18px;
}

.intro-copy p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.85;
}

.principle-grid {
  display: grid;
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
  padding: 38px 36px 42px 0;
}

.principle-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.principle-icon {
  color: var(--teal-600);
  font-size: 0.7rem;
  font-weight: 800;
}

.principle-grid h3 {
  margin: 52px 0 14px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.principle-grid p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.services-section {
  background: #eef2ef;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.service-list {
  border-top: 1px solid #cad6d7;
}

.service-row {
  display: grid;
  min-height: 150px;
  align-items: center;
  border-bottom: 1px solid #cad6d7;
  grid-template-columns: 70px 1.05fr 1.2fr 60px;
  gap: 28px;
  transition: background 180ms ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.7);
}

.service-no {
  color: var(--teal-600);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-row h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.55rem;
  font-weight: 650;
}

.service-accent {
  color: #7d9095;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-row p {
  max-width: 410px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.service-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #b6c8ca;
  border-radius: 50%;
  color: var(--teal-600);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.service-row:hover .service-arrow {
  background: var(--teal-500);
  color: var(--white);
  transform: rotate(12deg);
}

/* Digital */

.digital-section {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
}

.digital-section::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  border: 1px solid rgba(85, 183, 188, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(85, 183, 188, 0.03),
    0 0 0 160px rgba(85, 183, 188, 0.02);
  content: "";
}

.digital-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 78px;
}

.digital-copy h2 {
  margin: 24px 0;
  color: var(--white);
}

.digital-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.64);
}

.check-list {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #d9e5e5;
  font-size: 0.9rem;
}

.check-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(85, 183, 188, 0.5);
  border-radius: 50%;
  color: var(--teal-400);
  content: "✓";
  font-size: 0.66rem;
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #f4f6f5;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-top {
  height: 58px;
  border-bottom: 1px solid #dce4e5;
  padding: 0 20px;
  background: var(--white);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-brand > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
}

.dashboard-brand strong {
  color: var(--navy-900);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.dashboard-brand strong span {
  color: var(--teal-600);
}

.dashboard-avatar,
.portal-user {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 58px 1fr;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  border-right: 1px solid #dce4e5;
  padding-top: 24px;
  background: #f9faf9;
  flex-direction: column;
  gap: 24px;
}

.dashboard-nav span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #91a1a5;
  font-size: 0.8rem;
}

.dashboard-nav span.active {
  background: var(--teal-500);
  color: var(--white);
}

.dashboard-content {
  padding: 28px;
}

.dashboard-welcome small,
.portal-title small {
  display: block;
  color: #8a9a9e;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dashboard-welcome strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 1rem;
}

.dashboard-welcome > span {
  color: #89999d;
  font-size: 0.55rem;
  font-weight: 800;
}

.dashboard-metrics {
  display: grid;
  margin: 24px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-metrics > div {
  border: 1px solid #dce4e5;
  padding: 16px;
  background: var(--white);
}

.dashboard-metrics small {
  display: block;
  color: #829498;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dashboard-metrics strong {
  display: block;
  margin: 9px 0;
  color: var(--navy-900);
  font-size: 1.6rem;
}

.dashboard-metrics span {
  color: #4da878;
  font-size: 0.52rem;
}

.dashboard-metrics .warning {
  color: #c58a35;
}

.dashboard-table {
  border: 1px solid #dce4e5;
  background: var(--white);
}

.table-head {
  padding: 14px;
  border-bottom: 1px solid #e4e9e9;
}

.table-head strong {
  color: var(--navy-900);
  font-size: 0.7rem;
}

.table-head span {
  color: var(--teal-600);
  font-size: 0.54rem;
  font-weight: 700;
}

.table-row {
  display: grid;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid #eef1f1;
  grid-template-columns: 1fr 0.8fr 1.25fr;
  font-size: 0.58rem;
}

.table-row:last-child {
  border: 0;
}

.table-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.table-status.green {
  color: #3b9567;
}

.table-status.blue {
  color: #398aa7;
}

.table-status.amber {
  color: #bd8032;
}

/* Process, industries, knowledge */

.section-heading.centered {
  display: flex;
  max-width: 760px;
  align-items: center;
  margin-inline: auto;
  text-align: center;
  flex-direction: column;
  gap: 0;
}

.section-heading.centered p {
  max-width: 630px;
  margin: 0;
}

.process-grid {
  position: relative;
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
  position: absolute;
  height: 1px;
  top: 45px;
  right: 10%;
  left: 10%;
  background: #cad7d8;
  content: "";
}

.process-grid article {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.process-grid article > span {
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 800;
}

.process-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin: 29px auto 32px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 1px var(--teal-500);
}

.process-grid h3 {
  color: var(--navy-900);
  font-size: 1.2rem;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.industries-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(4, 19, 31, 0.88), rgba(4, 19, 31, 0.92)),
    url("/liman-poster.jpg") center/cover;
  color: var(--white);
}

.industries-inner h2 {
  margin: 24px 0 52px;
  color: var(--white);
  font-size: clamp(2.5rem, 5.3vw, 5rem);
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 22px;
  background: rgba(7, 27, 46, 0.34);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.industry-cloud button:hover,
.industry-cloud button:focus,
.industry-cloud button:focus-visible,
.industry-cloud button.highlight {
  border-color: var(--teal-400);
  background: var(--teal-500);
  color: var(--white);
  outline: 0;
  transform: translateY(-2px);
}

.industry-explorer:has(.industry-cloud button:not(.highlight):hover) .industry-cloud button.highlight,
.industry-explorer:has(.industry-cloud button:not(.highlight):focus) .industry-cloud button.highlight,
.industry-explorer:has(.industry-cloud button:not(.highlight):focus-visible) .industry-cloud button.highlight {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(7, 27, 46, 0.34);
  color: rgba(255, 255, 255, 0.75);
  transform: none;
}

.industry-info-stack {
  display: grid;
  min-height: 176px;
  margin-top: 18px;
}

.industry-info-card {
  position: relative;
  display: grid;
  visibility: hidden;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(101, 216, 220, 0.22);
  background:
    linear-gradient(110deg, rgba(8, 38, 51, 0.96), rgba(5, 23, 34, 0.9)),
    rgba(7, 27, 46, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  grid-area: 1 / 1;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 18px 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    visibility 0s linear 160ms,
    opacity 180ms ease,
    transform 180ms ease;
}

.industry-info-card.is-default {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.industry-info-card > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.industry-info-card > div > span {
  color: #65d0d3;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.industry-info-card h3 {
  margin: 0;
  color: #f3fbfb;
  font-size: 1.12rem;
}

.industry-info-card p {
  margin: 0;
  color: rgba(238, 249, 249, 0.78);
  font-size: 0.86rem;
  line-height: 1.7;
}

.industry-info-card ul {
  display: flex;
  margin: 0;
  padding: 0;
  grid-column: 1 / -1;
  gap: 8px;
  list-style: none;
}

.industry-info-card li {
  border: 1px solid rgba(101, 216, 220, 0.2);
  padding: 7px 11px;
  background: rgba(101, 216, 220, 0.07);
  color: #bfe3e5;
  font-size: 0.64rem;
  font-weight: 700;
}

.industry-disclaimer {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
}

.industry-explorer:has(.industry-cloud button:hover) .industry-info-card.is-default,
.industry-explorer:has(.industry-cloud button:focus) .industry-info-card.is-default {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.industry-explorer:has([data-industry="otomotiv"]:hover) [data-industry-info="otomotiv"],
.industry-explorer:has([data-industry="otomotiv"]:focus) [data-industry-info="otomotiv"],
.industry-explorer:has([data-industry="makine"]:hover) [data-industry-info="makine"],
.industry-explorer:has([data-industry="makine"]:focus) [data-industry-info="makine"],
.industry-explorer:has([data-industry="elektronik"]:hover) [data-industry-info="elektronik"],
.industry-explorer:has([data-industry="elektronik"]:focus) [data-industry-info="elektronik"],
.industry-explorer:has([data-industry="kimya"]:hover) [data-industry-info="kimya"],
.industry-explorer:has([data-industry="kimya"]:focus) [data-industry-info="kimya"],
.industry-explorer:has([data-industry="tekstil"]:hover) [data-industry-info="tekstil"],
.industry-explorer:has([data-industry="tekstil"]:focus) [data-industry-info="tekstil"],
.industry-explorer:has([data-industry="denizcilik"]:hover) [data-industry-info="denizcilik"],
.industry-explorer:has([data-industry="denizcilik"]:focus) [data-industry-info="denizcilik"],
.industry-explorer:has([data-industry="gida"]:hover) [data-industry-info="gida"],
.industry-explorer:has([data-industry="gida"]:focus) [data-industry-info="gida"],
.industry-explorer:has([data-industry="savunma"]:hover) [data-industry-info="savunma"],
.industry-explorer:has([data-industry="savunma"]:focus) [data-industry-info="savunma"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (max-width: 700px) {
  .industry-info-stack {
    min-height: 232px;
  }

  .industry-info-card {
    align-content: center;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .industry-info-card ul {
    flex-wrap: wrap;
  }
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.knowledge-feature {
  min-height: 390px;
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(7, 27, 46, 0.94), rgba(7, 27, 46, 0.7)),
    url("/liman-poster.jpg") center/cover;
  color: var(--white);
}

.article-tag {
  color: var(--teal-400);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.knowledge-feature h3 {
  max-width: 640px;
  margin: 96px 0 20px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.knowledge-feature p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.64);
}

.knowledge-feature a,
.knowledge-list a {
  color: var(--teal-400);
  font-size: 0.82rem;
  font-weight: 800;
}

.knowledge-list {
  display: grid;
  gap: 22px;
}

.knowledge-list article {
  display: flex;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  flex-direction: column;
}

.knowledge-list h3 {
  margin: auto 0 24px;
  padding-top: 28px;
  color: var(--navy-900);
  font-size: 1.24rem;
}

/* Interior */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 105px;
  background:
    linear-gradient(110deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85, 183, 188, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 183, 188, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  gap: 10px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 25px 0;
  color: var(--white);
  font-size: clamp(3.4rem, 6.8vw, 6.7rem);
  font-weight: 480;
  letter-spacing: -0.066em;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-hero-orb {
  position: absolute;
  border: 1px solid rgba(85, 183, 188, 0.12);
  border-radius: 50%;
}

.orb-one {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -80px;
}

.orb-two {
  width: 380px;
  height: 380px;
  right: 170px;
  bottom: -290px;
}

/* Corporate */

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.story-logo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #edf2f0;
}

.story-logo-card::before {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 35px;
  left: -80px;
  border: 1px solid rgba(35, 140, 150, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(35, 140, 150, 0.04),
    0 0 0 140px rgba(35, 140, 150, 0.025);
}

.story-logo-card img {
  position: relative;
  width: 84%;
  margin: 65px auto 0;
  mix-blend-mode: multiply;
}

.story-logo-card > span {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--teal-600);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-copy h2 {
  margin: 24px 0 30px;
  font-size: clamp(2.6rem, 4.3vw, 4.5rem);
}

.story-copy p {
  max-width: 650px;
}

.story-copy .lead {
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.55;
}

.values-section {
  background: #eef2ef;
}

.value-grid {
  display: grid;
  border-top: 1px solid #ccd7d8;
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article {
  padding: 42px 28px 24px 0;
}

.value-grid article + article {
  border-left: 1px solid #ccd7d8;
  padding-left: 28px;
}

.value-grid span {
  color: var(--teal-600);
  font-size: 0.65rem;
  font-weight: 800;
}

.value-grid h3 {
  margin: 68px 0 16px;
  color: var(--navy-900);
  font-size: 1.4rem;
}

.value-grid p {
  margin: 0;
  font-size: 0.88rem;
}

.vision-section {
  padding: 100px 0;
  background: var(--navy-900);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.vision-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 72px;
}

.vision-grid h2 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.vision-grid p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Services */

.services-detail-section {
  background: #eef2ef;
}

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

.service-detail-card {
  min-height: 450px;
  border: 1px solid #d3dede;
  padding: 40px;
  background: var(--paper);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.service-detail-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-600);
}

.service-detail-head span {
  font-size: 0.7rem;
  font-weight: 800;
}

.service-detail-head i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #c6d3d4;
  border-radius: 50%;
  font-style: normal;
}

.service-detail-card h2 {
  margin: 70px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-detail-card > p {
  max-width: 520px;
}

.service-detail-card ul {
  display: grid;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-detail-card li {
  display: flex;
  gap: 9px;
  color: #4c636b;
  font-size: 0.82rem;
}

.service-detail-card li::before {
  color: var(--teal-600);
  content: "✓";
}

.sector-strip {
  overflow: hidden;
  padding: 32px 0;
  background: var(--teal-500);
  color: var(--white);
}

.sector-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.sector-strip span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

/* Digital page */

.portal-copy-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-bottom: 70px;
}

.portal-copy-grid h2 {
  margin: 24px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.portal-copy-grid > p {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.85;
}

.portal-screen {
  overflow: hidden;
  border: 1px solid #d1dddd;
  background: #f2f5f4;
  box-shadow: var(--shadow);
}

.portal-screen-top {
  height: 72px;
  border-bottom: 1px solid #dbe3e3;
  padding: 0 26px;
  background: var(--white);
}

.portal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-logo span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  font-family: var(--font-serif);
}

.portal-logo strong {
  color: var(--navy-900);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.portal-search {
  width: 320px;
  padding: 9px 14px;
  background: #f1f4f3;
  color: #89999d;
  font-size: 0.68rem;
}

.portal-screen-body {
  display: grid;
  min-height: 610px;
  grid-template-columns: 190px 1fr;
}

.portal-screen-body aside {
  display: flex;
  padding: 34px 26px;
  border-right: 1px solid #dbe3e3;
  background: #f8faf9;
  flex-direction: column;
  gap: 8px;
}

.portal-screen-body aside span,
.portal-screen-body aside strong {
  padding: 11px 12px;
  font-size: 0.72rem;
}

.portal-screen-body aside strong {
  background: var(--navy-900);
  color: var(--white);
}

.portal-screen-body aside span {
  color: #667b82;
}

.portal-main {
  padding: 40px;
}

.portal-title h3 {
  margin: 5px 0 0;
  color: var(--navy-900);
  font-size: 1.55rem;
}

.portal-title button {
  border: 0;
  padding: 10px 15px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.portal-stat-grid {
  display: grid;
  margin: 28px 0 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-stat-grid article {
  padding: 22px;
  border: 1px solid #d9e2e2;
  background: var(--white);
}

.portal-stat-grid span {
  display: block;
  color: #89999d;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portal-stat-grid strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--navy-900);
  font-size: 2.2rem;
}

.portal-stat-grid small {
  color: var(--teal-600);
  font-size: 0.62rem;
}

.portal-operation {
  border: 1px solid #d9e2e2;
  background: var(--white);
}

.portal-operation-head {
  padding: 18px 20px;
  border-bottom: 1px solid #e1e7e7;
}

.portal-operation-head strong {
  font-size: 0.8rem;
}

.portal-operation-head span {
  color: var(--teal-600);
  font-size: 0.66rem;
}

.portal-operation-row {
  display: grid;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #edf0f0;
  color: #61747a;
  grid-template-columns: 1fr 1.2fr 1.2fr 0.8fr;
  font-size: 0.65rem;
}

.portal-operation-row strong {
  color: var(--navy-900);
}

.progress {
  height: 4px;
  background: #e7eceb;
}

.progress i {
  display: block;
  height: 100%;
  background: var(--teal-500);
}

.portal-features {
  background: #eef2ef;
}

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

.feature-grid article {
  border-top: 1px solid #cdd9d9;
  padding: 34px 28px 24px 0;
}

.feature-grid article + article {
  border-left: 1px solid #cdd9d9;
  padding-left: 28px;
}

.feature-grid span {
  color: var(--teal-600);
  font-size: 0.65rem;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 58px 0 14px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.feature-grid p {
  margin: 0;
  font-size: 0.84rem;
}

.portal-note {
  display: grid;
  margin-top: 80px;
  padding: 38px;
  background: var(--navy-900);
  grid-template-columns: 0.4fr 1fr;
  gap: 50px;
}

.portal-note span {
  color: var(--teal-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.portal-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* Knowledge */

.resource-intro {
  max-width: 820px;
  margin-bottom: 58px;
  text-align: center;
}

.resource-intro h2 {
  margin: 24px 0 18px;
}

.resource-intro p {
  max-width: 660px;
  margin-inline: auto;
}

.knowledge-search-shell {
  max-width: 1040px;
  margin-inline: auto;
}

.knowledge-search {
  display: flex;
  min-height: 74px;
  align-items: center;
  border: 1px solid #cad7d8;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 27, 46, 0.08);
}

.knowledge-search > span {
  padding-left: 26px;
  color: var(--teal-600);
  font-size: 1.6rem;
}

.knowledge-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 24px;
  background: transparent;
  color: var(--navy-900);
  font-size: 1rem;
}

.resource-results {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.resource-results article {
  min-height: 215px;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
}

.resource-results article > span {
  color: var(--teal-600);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resource-results h3 {
  margin: 35px 0 12px;
  color: var(--navy-900);
  font-size: 1.18rem;
}

.resource-results p {
  margin: 0;
  font-size: 0.84rem;
}

.no-result {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  grid-column: 1 / -1;
  text-align: center;
}

.official-section {
  padding: 100px 0;
  background: var(--navy-900);
}

.official-section h2 {
  color: var(--white);
}

.official-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: repeat(2, 1fr);
}

.official-grid a {
  position: relative;
  display: flex;
  min-height: 180px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  flex-direction: column;
  transition: background 180ms ease;
}

.official-grid a:hover {
  background: rgba(43, 155, 164, 0.1);
}

.official-grid small {
  color: #7fa6aa;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.official-grid strong {
  margin-top: auto;
  color: var(--white);
  font-size: 1.2rem;
}

.official-grid a > span {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--teal-400);
}

/* Forms and contact */

.quote-page-section,
.contact-section {
  background: #eef2ef;
}

.quote-page-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}

.quote-aside {
  padding: 22px 20px 0 0;
}

.quote-aside h2 {
  margin: 24px 0 42px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

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

.quote-aside li {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid #cad7d8;
  color: #4a626a;
  grid-template-columns: 48px 1fr;
  font-size: 0.86rem;
}

.quote-aside li span {
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 800;
}

.privacy-note {
  margin-top: 36px;
  padding: 24px;
  background: var(--navy-900);
}

.privacy-note strong {
  color: var(--white);
  font-size: 0.82rem;
}

.privacy-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.quote-form-card,
.contact-form-wrap {
  padding: 45px;
  border: 1px solid #d4dede;
  background: var(--white);
}

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

.quote-form label {
  display: flex;
  flex-direction: column;
}

.quote-form label > span {
  margin-bottom: 8px;
  color: #536a72;
  font-size: 0.7rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d5dfdf;
  border-radius: 0;
  outline: 0;
  padding: 14px;
  background: #fafbf9;
  color: var(--navy-900);
  transition: border-color 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 52px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal-500);
}

.form-full {
  grid-column: 1 / -1;
}

.quote-form .consent {
  display: grid;
  align-items: start;
  margin: 24px 0;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.quote-form .consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal-500);
}

.quote-form .consent span {
  margin: -2px 0 0;
  color: #74868b;
  font-size: 0.7rem;
  font-weight: 500;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-security {
  display: grid;
  align-items: end;
  margin: 24px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid #254a56;
  background: #071e2a;
}

.form-security label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.security-question {
  color: var(--teal-400);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.form-security input[name="securityAnswer"] {
  max-width: 220px;
}

.security-refresh {
  min-height: 52px;
  border: 1px solid #2d5967;
  padding: 0 18px;
  background: #0b2b38;
  color: #dff3f3;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}

.security-refresh:hover,
.security-refresh:focus-visible {
  border-color: var(--teal-400);
  color: var(--teal-400);
}

.form-message {
  margin: 0 0 20px;
  color: var(--teal-400);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-message.is-error {
  color: #ffb6ae;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-success {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.form-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--teal-500);
  border-radius: 50%;
  color: var(--teal-600);
  font-size: 1.4rem;
}

.form-success h3 {
  margin: 25px 0 12px;
  color: var(--navy-900);
  font-size: 1.7rem;
}

.form-success p {
  max-width: 500px;
}

@media (max-width: 640px) {
  .form-security {
    grid-template-columns: 1fr;
  }

  .form-security input[name="securityAnswer"] {
    max-width: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  margin: 24px 0 44px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.contact-card {
  padding: 32px;
  background: var(--navy-900);
}

.contact-card small,
.contact-mini-grid small {
  color: var(--teal-400);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-card p {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-card a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-phone-line {
  display: flex;
  margin: 0 0 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.contact-phone-line a {
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.contact-mini-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-mini-grid > div {
  display: flex;
  min-height: 150px;
  padding: 24px;
  border: 1px solid #d1dddd;
  background: var(--white);
  flex-direction: column;
}

.contact-mini-grid strong {
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.contact-mini-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-form-wrap h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 1.8rem;
}

.contact-form-wrap > p {
  margin-bottom: 28px;
}

/* CTA */

.cta-section {
  padding: 60px 0;
  background: var(--paper);
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 62px 66px;
  background: var(--teal-600);
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
}

.cta-panel::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.04);
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

/* Footer */

.site-footer {
  padding: 82px 0 22px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 60px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo .brand-copy {
  color: var(--white);
}

.footer-logo .brand-image-wrap {
  background: transparent;
}

.footer-brand p {
  max-width: 350px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-serif);
  font-size: 1.03rem;
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.72;
}

.footer-badge {
  color: var(--teal-400);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-grid h3 {
  margin: 8px 0 23px;
  color: #85a3aa;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-grid li {
  margin: 11px 0;
}

.footer-grid li a,
.footer-grid address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.9;
}

.footer-grid li a:hover {
  color: var(--teal-400);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
}

.footer-phone {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: var(--teal-400);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-phone:hover {
  color: var(--white);
}

.footer-contact-link span {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.66rem;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

/* Assistant */

.assistant {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 22px;
}

.assistant-trigger {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  border: 0;
  padding: 6px 18px 6px 7px;
  background: var(--navy-900);
  box-shadow: 0 15px 42px rgba(3, 19, 31, 0.24);
  color: var(--white);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.assistant-trigger-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-500);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.assistant-panel {
  width: 330px;
  margin-bottom: 10px;
  border: 1px solid #d7e0e0;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: rise-in 220ms both;
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  background: var(--navy-900);
}

.assistant-head > div {
  display: grid;
  position: relative;
  padding-left: 16px;
}

.assistant-status {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 6px;
  left: 0;
  border-radius: 50%;
  background: #58d492;
}

.assistant-head strong {
  color: var(--white);
  font-size: 0.85rem;
}

.assistant-head small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
}

.assistant-head button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 1.2rem;
}

.assistant-body {
  padding: 22px;
}

.assistant-body p {
  min-height: 76px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  line-height: 1.65;
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.assistant-quick button {
  border: 1px solid #d2dede;
  padding: 7px 10px;
  background: var(--white);
  color: var(--teal-600);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
}

.assistant-quick button:hover {
  border-color: var(--teal-500);
}

.assistant-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
}

.assistant-link span {
  color: var(--teal-600);
}

/* Legal */

.legal-wrap {
  max-width: 820px;
}

.legal-wrap section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-wrap h2 {
  font-size: 1.7rem;
}

/* Responsive */

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a {
    font-size: 0.72rem;
  }

  .brand-copy {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .digital-grid {
    gap: 40px;
  }

  .dashboard-shell {
    transform: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .section {
    padding: 86px 0;
  }

  .topbar {
    display: none;
  }

  .site-header {
    height: 70px;
  }

  .brand-copy {
    display: flex;
  }

  .brand-image-wrap {
    width: 76px;
    height: 50px;
  }

  .brand-image {
    width: 76px;
    height: 50px;
  }

  .header-cta,
  .one-entry-link {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    flex-direction: column;
    gap: 6px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    padding: 25px 18px 32px;
    background: var(--paper);
    box-shadow: 0 25px 50px rgba(5, 28, 41, 0.13);
    opacity: 0;
    transform: translateY(-15px);
    flex-direction: column;
    gap: 0;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .mobile-nav-actions {
    display: block;
    width: 100%;
    margin-top: 18px;
  }

  .mobile-nav-actions .button {
    width: 100%;
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    min-height: 820px;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 85px;
    padding-bottom: 120px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11vw, 6rem);
  }

  .hero-status-card {
    width: min(100%, 450px);
    align-self: start;
    margin: 0;
  }

  .intro-grid,
  .digital-grid,
  .story-grid,
  .vision-grid,
  .portal-copy-grid,
  .quote-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .principle-grid article + article:nth-child(3),
  .value-grid article + article:nth-child(3),
  .feature-grid article + article:nth-child(3) {
    border-left: 0;
  }

  .principle-grid article:nth-child(n + 3),
  .value-grid article:nth-child(n + 3),
  .feature-grid article:nth-child(n + 3) {
    border-top: 1px solid #cad7d8;
  }

  .service-row {
    grid-template-columns: 50px 1fr 50px;
  }

  .service-row p {
    display: none;
  }

  .digital-copy {
    max-width: 650px;
  }

  .dashboard-shell {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .process-grid::before {
    display: none;
  }

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

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

  .knowledge-list article {
    min-height: 210px;
  }

  .vision-grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    padding-top: 42px;
    padding-left: 0;
  }

  .portal-screen-body {
    grid-template-columns: 1fr;
  }

  .portal-screen-body aside {
    display: none;
  }

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

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

  .section {
    padding: 70px 0;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.43rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    min-height: 820px;
    padding-top: 56px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.25rem, 16vw, 4.8rem);
    line-height: 0.98;
  }

  .hero-copy > p {
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status-card {
    display: none;
  }

  .hero-trust {
    display: none;
  }

  .hero-bottom-inner {
    min-height: 60px;
  }

  h2 {
    font-size: 2.55rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-grid,
  .value-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .principle-grid article + article,
  .value-grid article,
  .value-grid article + article,
  .feature-grid article,
  .feature-grid article + article {
    border-top: 1px solid #cad7d8;
    border-left: 0;
    padding: 28px 0;
  }

  .principle-grid h3,
  .value-grid h3,
  .feature-grid h3 {
    margin-top: 32px;
  }

  .service-row {
    min-height: 128px;
    grid-template-columns: 35px 1fr 40px;
    gap: 12px;
  }

  .service-row h3 {
    font-size: 1.15rem;
  }

  .service-accent {
    font-size: 0.58rem;
  }

  .dashboard-shell {
    overflow-x: auto;
  }

  .dashboard-body {
    min-width: 680px;
  }

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

  .process-grid article {
    padding: 0 16px;
  }

  .industries-inner h2 {
    font-size: 3rem;
  }

  .knowledge-feature {
    min-height: 420px;
    padding: 30px;
  }

  .knowledge-feature h3 {
    margin-top: 100px;
    font-size: 2.15rem;
  }

  .knowledge-list,
  .services-detail-grid,
  .resource-results,
  .official-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 82px 0 74px;
  }

  .breadcrumbs {
    margin-bottom: 40px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .story-logo-card {
    min-height: 400px;
  }

  .service-detail-card {
    min-height: auto;
    padding: 28px;
  }

  .service-detail-card h2 {
    margin-top: 50px;
  }

  .service-detail-card ul {
    grid-template-columns: 1fr;
  }

  .sector-strip .container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .portal-search {
    display: none;
  }

  .portal-screen-body {
    min-width: 760px;
  }

  .portal-screen {
    overflow-x: auto;
  }

  .portal-main {
    padding: 28px;
  }

  .portal-note {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .quote-form-card,
  .contact-form-wrap {
    padding: 26px;
  }

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

  .cta-panel {
    padding: 40px 28px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .assistant {
    right: 12px;
    bottom: 12px;
  }

  .assistant-trigger > span:last-child {
    display: none;
  }

  .assistant-trigger {
    width: 52px;
    padding: 7px;
  }

  .assistant-panel {
    width: min(330px, calc(100vw - 24px));
  }
}

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

  .hero-video {
    display: none;
  }
}

/* Ana sayfada daha sıkı ve dengeli dikey ritim */
.home-main .section {
  padding: 90px 0;
}

.home-main .section-heading {
  margin-bottom: 44px;
}

.home-main .principle-grid {
  margin-top: 58px;
}

.home-main .digital-grid {
  gap: 58px;
}

.home-main .industries-section {
  padding: 78px 0;
}

.home-main .industries-inner h2 {
  margin-bottom: 38px;
}

.home-main .cta-section {
  padding: 42px 0;
}

.home-main .cta-panel {
  padding: 50px 56px;
}

@media (max-width: 900px) {
  .home-main .section {
    padding: 70px 0;
  }

  .home-main .industries-section {
    padding: 66px 0;
  }

  .home-main .cta-panel {
    padding: 44px 38px;
  }
}

@media (max-width: 640px) {
  .home-main .section {
    padding: 56px 0;
  }

  .home-main .section-heading {
    margin-bottom: 34px;
  }

  .home-main .principle-grid {
    margin-top: 42px;
  }

  .home-main .industries-section {
    padding: 54px 0;
  }

  .home-main .cta-section {
    padding: 30px 0;
  }

  .home-main .cta-panel {
    padding: 36px 26px;
  }
}
