:root {
  --page-pad: clamp(18px, 6vw, 132px);
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.86);
  --ink: #07131d;
  --blue: #1b67af;
  --orange: #f47b43;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Segoe UI", Montserrat, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(
      circle at 58% 18%,
      rgba(86, 116, 158, 0.32),
      transparent 30%
    ),
    linear-gradient(90deg, #061b24 0%, #071b2b 45%, #031922 100%);
  overflow-x: hidden;
}

body.is-video-modal-open,
body.is-lead-form-open {
  overflow: hidden;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 16px var(--page-pad) 34px;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-shell::before {
  display: none;
}

.shell-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9) contrast(1.04);
  pointer-events: none;
  transform: scale(1.02);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  max-width: 1610px;
  margin: 0 auto 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}

.brand img {
  display: block;
  width: clamp(210px, 16vw, 250px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: clamp(25px, 4vw, 25px);
  font-size: clamp(16px, 1.15vw, 16px);
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.nav-links a {
  white-space: nowrap;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 180px;
  min-height: 50px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(3, 16, 25, 0.32);
  backdrop-filter: blur(8px);
}

.catalog-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.hero {
  position: absolute;
  inset: 100px var(--page-pad) 34px;
  z-index: 10;
  min-height: auto;
  max-width: 1610px;
  margin: 0;
  border: 1.5px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: #132431;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.hero::before,
.hero::after {
  display: none;
}

.hero::before {
  z-index: -2;
  background: url("assets/hero-industrial.png") center / cover no-repeat;
  filter: blur(7px) brightness(0.38) saturate(0.8);
  transform: scale(1.035);
}

.hero::after {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 26, 0.78),
    rgba(0, 19, 28, 0.32),
    rgba(0, 19, 26, 0.82)
  );
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(1.06);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(12, 29, 46, 0.38) 0%,
      rgba(15, 24, 34, 0.06) 44%,
      rgba(8, 11, 12, 0.28) 100%
    ),
    radial-gradient(
      circle at 50% 19%,
      rgba(255, 255, 255, 0.12),
      transparent 20%
    ),
    rgba(5, 12, 19, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 1210px;
  margin: 0 auto;
  padding: clamp(100px, 10vh, 150px) 24px 0;
  text-align: center;
}

.hero-copy h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 8px;
  margin: 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 > span:last-child {
  flex-basis: 100%;
}

.accent-word {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 12px;
}

.accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 2px;
  bottom: 8px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #266fba, #f47a41);
  z-index: -1;
}

.hero-copy p {
  max-width: 760px;
  margin: 28px 0 60px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.42;
  font-weight: 400;
}

.discover-button,
.send-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  padding: 0 30px;
  overflow: hidden;
  appearance: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  color: #1d5f9f;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background:
    linear-gradient(
        90deg,
        rgba(216, 234, 249, 0.58) 0%,
        rgba(248, 252, 255, 0.48) 48%,
        rgba(255, 232, 212, 0.58) 100%
      )
      padding-box,
    linear-gradient(
        90deg,
        #2b76bf 0%,
        rgba(255, 255, 255, 0.92) 48%,
        #f07b42 100%
      )
      border-box;
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.24),
    inset 0 -8px 18px rgba(255, 255, 255, 0.1),
    0 9px 24px rgba(0, 0, 0, 0.24);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.video-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(430px, 31vw);
  aspect-ratio: 2.12;
  border-top: 1.5px solid var(--line);
  border-right: 1.5px solid var(--line);
  border-radius: 0 28px 0 0;
  overflow: hidden;
  background: #102437;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 33, 52, 0.04), rgba(6, 11, 18, 0.32)),
    url("assets/hero-industrial.png") center 64% / 118% auto no-repeat;
  filter: brightness(0.78) saturate(1.08);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 52%;
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.play-button svg {
  width: 70px;
  height: 70px;
  fill: var(--blue);
}

.video-label {
  position: absolute;
  right: 18px;
  bottom: 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.video-modal {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  color: inherit;
  background: transparent;
}

.video-modal::backdrop {
  background: rgba(3, 12, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  background: #050b12;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.video-modal__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(5, 16, 28, 0.72);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal__close span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.video-modal__close span:first-child {
  transform: rotate(45deg);
}

.video-modal__close span:last-child {
  transform: rotate(-45deg);
}

.lead-form-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: inherit;
  background: rgba(3, 12, 20, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    background 0.28s ease;
}

.lead-form-modal.is-open {
  background: rgba(3, 12, 20, 0.62);
  opacity: 1;
  pointer-events: auto;
}

.lead-form-modal__panel {
  position: relative;
  width: min(460px, calc(100vw - 22px));
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(20px, 4vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px 0 0 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 238, 247, 0.9)),
    #ffffff;
  box-shadow: -28px 0 90px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lead-form-modal.is-open .lead-form-modal__panel {
  transform: translateX(0);
}

.lead-form-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, transparent 0 48%, rgba(35, 100, 169, 0.08) 48% 64%, transparent 64%),
    radial-gradient(circle at 100% 0%, rgba(244, 123, 67, 0.18), transparent 34%);
  pointer-events: none;
}

.lead-form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(35, 100, 169, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.lead-form-modal__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #2364a9;
}

.lead-form-modal__close span:first-child {
  transform: rotate(45deg);
}

.lead-form-modal__close span:last-child {
  transform: rotate(-45deg);
}

.lead-form-modal__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 30px;
  color: #62656b;
}

.lead-form-modal__copy h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.06;
  font-weight: 700;
}

.lead-form-modal__copy h2 span {
  position: relative;
  display: inline-block;
  margin-left: 14px;
  padding-right: 8px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.lead-form-modal__copy h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.lead-form-modal__copy p {
  margin: 34px 0 0;
  color: #66686d;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.lead-form {
  position: relative;
  z-index: 1;
  color: #66686d;
}

.lead-form .form-fields,
.lead-form .form-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.lead-form .message-field textarea {
  height: 170px;
}

.lead-tab {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 18px;
  width: 60px;
  min-height: 400px;
  padding: 20px 0 16px;
  border: 1.5px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-radius: 28px 0 0 0;
  background: linear-gradient(
    180deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.18);
}

.lead-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.lead-tab b {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--orange);
  font-size: 19px;
  background: var(--white);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 10vw, 50px) var(--page-pad) clamp(30px, 10vw, 50px);
  color: #5b5d62;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-section::before {
  right: -8vw;
  top: -18px;
  width: 44vw;
  height: 760px;
  background: rgba(238, 238, 238, 0.55);
  clip-path: polygon(18% 5%, 73% 0, 100% 72%, 8% 100%);
  filter: blur(2px);
}

.about-section::after {
  right: -4vw;
  bottom: -150px;
  width: 44vw;
  height: 390px;
  background: rgba(224, 224, 224, 0.42);
  clip-path: polygon(28% 0, 100% 38%, 82% 100%, 0 72%);
  filter: blur(10px);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(500px, 720px) minmax(390px, 560px);
  align-items: start;
  justify-content: center;
  max-width: 1370px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  min-height: 610px;
}

.about-visual img {
  display: block;
  width: min(100%, 600px);
  height: auto;
  margin-top: 0;
}

.about-copy {
  position: relative;
  padding-top: 8px;
}

.about-copy h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(45px, 4vw, 64px);
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0;
}

.about-copy h2 span {
  white-space: nowrap;
}

.about-lonca {
  position: relative;
  display: inline-block;
  margin: 18px 0 42px;
  padding-inline: 3px 16px;
  color: #2364a9;
  font-size: clamp(58px, 5vw, 69px);
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.about-lonca::after {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  bottom: 0px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.about-text {
  max-width: 520px;
  padding-left: 50px;
}

.about-text p {
  margin: 0 0 27px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.48;
  font-weight: 500;
}

.about-dot {
  position: absolute;
  left: 65%;
  top: 650px;
  display: block;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.features-section {
  padding: clamp(30px, 8vw, 50px) var(--page-pad) clamp(30px, 9vw, 50px);
  color: var(--white);
}

.features-panel {
  position: relative;
  max-width: 1600px;
  min-height: 860px;
  margin: 0 auto;
  padding: 72px 62px 70px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(6, 46, 79, 0.98), rgba(11, 75, 130, 0.96)),
    #0b4779;
}

.features-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.features-copy h2 {
  margin: 0;
  font-size: clamp(44px, 3.2vw, 50px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: 0;
}

.features-copy h2 span {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 12px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.features-copy h2 span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 3px;
  bottom: -10px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.features-copy p {
  max-width: 590px;
  margin: 78px 0 0 48px;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.52;
  font-weight: 400;
}

.feature-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, 118px);
  grid-auto-rows: 122px;
  gap: 13px 11px;
  width: max-content;
  margin-top: 58px;
}

.feature-card {
  position: relative;
  width: 118px;
  height: 122px;
  padding: 17px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(145, 188, 238, 0.58);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(7, 45, 82, 0.78) 0 84px,
      rgba(38, 103, 184, 0.98) 84px 100%
    ),
    rgba(11, 55, 98, 0.74);
}

.feature-card strong,
.feature-card span {
  display: block;
  padding: 0;
}

.feature-card strong {
  font-size: 13px;
  line-height: 1.18;
  font-weight: 500;
  text-transform: uppercase;
}

.feature-card span {
  font-size: 12px;
  line-height: 1.22;
  font-weight: 400;
}

.feature-card:nth-child(1) > strong:first-child,
.feature-card:nth-child(2) > strong:first-child,
.feature-card:nth-child(8) > strong:first-child,
.feature-card:nth-child(9) > strong:first-child {
  margin-bottom: 5px;
  font-size: 23px;
  line-height: 0.95;
  text-transform: none;
}

.feature-card:nth-child(4) > strong,
.feature-card:nth-child(6) > strong,
.feature-card:nth-child(7) > strong,
.feature-card:nth-child(10) > strong,
.feature-card:nth-child(12) > strong,
.feature-card:nth-child(13) > strong {
  font-size: 12px;
  line-height: 1.6;
}

.feature-card:nth-child(7) > span:not(.feature-icon),
.feature-card:nth-child(10) > span:not(.feature-icon) {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.16;
}

.feature-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  background: transparent;
}

.feature-icon img {
  display: block;
  width: 40px;
  height: 35px;
  object-fit: contain;
}

.feature-card:nth-child(3) > span:first-child {
  margin-bottom: 6px;
  font-size: 13px;
}

.feature-card-load {
  display: grid;
  grid-template-rows: 36px 48px 36px;
  padding: 0;
}

.feature-card-load > span:first-child {
  padding: 13px 16px 0;
}

.feature-card-load .load-value {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  background: rgba(39, 106, 190, 0.9);
}

.feature-card-load .load-value img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature-card-load .load-value strong {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  text-transform: none;
  flex-direction: column;
}

.feature-card-load .load-value small {
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.feature-card-load > span:last-child {
  padding: 8px 16px 0;
  font-size: 14px;
  background-color: #072f55;
}

.features-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features-exterior {
  position: absolute;
  top: -50px;
  right: 65px;
  width: min(43vw, 770px);
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
}

.features-interior {
  position: absolute;
  right: 90px;
  bottom: 74px;
  width: min(29vw, 470px);
  height: 265px;
  object-fit: cover;
  border-radius: 26px;
}

.features-worker {
  position: absolute;
  right: -40px;
  bottom: 0px;
  width: min(24vw, 400px);
  height: auto;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.24));
}

.future-section {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 50px) var(--page-pad) clamp(30px, 7vw, 40px);
  color: #65666a;
}

.future-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0 45%,
      rgba(230, 230, 230, 0.42) 45% 63%,
      transparent 63%
    ),
    linear-gradient(
      20deg,
      transparent 0 73%,
      rgba(238, 238, 238, 0.58) 73% 100%
    );
  pointer-events: none;
}

.future-inner {
  position: relative;
  z-index: 1;
  min-height: 885px;
  max-width: 1490px;
  margin: 0 auto;
}

.future-top {
  display: grid;
  grid-template-columns: minmax(460px, 740px) minmax(420px, 600px);
  align-items: start;
  justify-content: center;
  gap: 50px;
}

.future-office {
  width: 100%;
  height: 448px;
  object-fit: cover;
  border-radius: 34px;
  z-index: 1;
}

.future-copy {
  padding-top: 4px;
}

.future-copy h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(48px, 4.2vw, 50px);
  line-height: 1.05;
  font-weight: 700;
  display: flex;
}

.future-copy h2 span {
  position: relative;
  display: inline-block;
  margin-left: 24px;
  padding-right: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.future-copy h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.future-copy p {
  max-width: 535px;
  margin: 58px 0 0 72px;
  font-size: clamp(18px, 1.3vw, 19px);
  line-height: 1.48;
  font-weight: 500;
}

.future-band {
  position: absolute;
  left: 50%;
  top: 385px;
  width: 100vw;
  height: 478px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #347abd 0 10%, #f07d45 100%);
  opacity: 0.94;
}

.future-height {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 480px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #ffffff;
}

.future-icon {
  display: flex;
  width: 50px;
  aspect-ratio: 0.8;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: 5px;
  color: #ffffff;
  background: rgba(24, 97, 166, 0.68);
  font-size: 40px;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  padding-bottom: 3%;
}

.future-height strong {
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
}

.future-loading {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 350px;
  width: min(55vw, 1010px);
  height: 305px;
  object-fit: cover;
  border-radius: 30px;
}

.future-warehouse {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 610px;
  width: min(46vw, 600px);
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
}

.future-maneuver {
  position: absolute;
  z-index: 5;
  left: min(47vw, 650px);
  right: 110px;
  top: 700px;
  display: grid;
  grid-template-columns: 54px minmax(360px, 640px) 44px;
  align-items: start;
  gap: 22px;
  color: #ffffff;
}

.future-maneuver h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.4vw, 37px);
  line-height: 1.1;
  font-weight: 500;
}

.future-maneuver p {
  margin: 0;
  font-size: clamp(15px, 1vw, 15px);
  line-height: 1.7;
  font-weight: 400;
}

.future-dot {
  display: block;
  width: 44px;
  aspect-ratio: 1;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(244, 244, 244, 0.78);
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.18);
}

.location-section {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 50px) var(--page-pad) clamp(30px, 8vw, 50px);
  color: #5f6268;
}

.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      transparent 0 35%,
      rgba(227, 227, 227, 0.34) 35% 50%,
      transparent 50%
    ),
    linear-gradient(
      35deg,
      transparent 0 76%,
      rgba(233, 233, 233, 0.52) 76% 100%
    );
  pointer-events: none;
}

.location-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 520px minmax(660px, 1fr);
  gap: 52px;
  max-width: 1520px;
  margin: 0 auto;
}

.location-copy h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(50px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 600;
}

.location-copy h2 span {
  position: relative;
  display: inline-block;
  margin: 20px 0 0 92px;
  padding-right: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-copy h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.location-copy > p {
  max-width: 505px;
  margin: 60px 0 0 86px;
  font-size: clamp(18px, 1.22vw, 21px);
  line-height: 1.5;
  font-weight: 500;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.distance-card {
  padding: 20px 22px 15px;
  border: 2px solid #2364a9;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.62);
  color: #2364a9;
}

.distance-card span,
.distance-card small {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.distance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.map-card {
  align-self: start;
  overflow: hidden;
  min-height: 610px;
  border-radius: 35px;
  background: #75b2e1;
}

.map-card img {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.access-panel {
  position: relative;
  grid-column: 1 / -1;
  min-height: 270px;
  margin-top: -40px;
  padding: 30px 30px;
  overflow: visible;
  border-radius: 34px;
  color: #ffffff;
  background: linear-gradient(90deg, #062f55, #236bb8);
}

.access-copy {
  max-width: 930px;
}

.access-copy h3 {
  margin: 0;
  font-size: clamp(31px, 2.4vw, 38px);
  line-height: 1.1;
  font-weight: 500;
}

.access-copy h3 span {
  position: relative;
  display: inline-block;
  margin-left: 18px;
  padding-right: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.access-copy h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.access-copy p {
  margin: 55px 0 0;
  font-size: clamp(16px, 1vw, 16px);
  line-height: 1.75;
  font-weight: 400;
}

.access-panel img {
  position: absolute;
  right: -160px;
  top: -120px;
  width: min(48vw, 670px);
  height: 345px;
  object-fit: cover;
  border-radius: 30px;
}

.plans-section {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 50px) var(--page-pad) clamp(30px, 8vw, 50px);
  color: #62656b;
}

.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      118deg,
      transparent 0 28%,
      rgba(226, 226, 226, 0.34) 28% 45%,
      transparent 45%
    ),
    linear-gradient(
      28deg,
      transparent 0 74%,
      rgba(236, 236, 236, 0.5) 74% 100%
    );
  pointer-events: none;
}

.plans-inner {
  position: relative;
  z-index: 1;
  max-width: 1520px;
  margin: 0 auto;
}

.plans-copy {
  display: grid;
  grid-template-columns: minmax(360px, 540px) minmax(320px, 520px);
  align-items: end;
  gap: clamp(34px, 5vw, 78px);
}

.plans-copy h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(48px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 600;
}

.plans-copy h2 span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 18px 0 0 72px;
  padding-right: 10px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plans-copy h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.plans-copy p {
  max-width: 460px;
  margin: 0 0 8px;
  font-size: clamp(18px, 1.2vw, 20px);
  line-height: 1.5;
  font-weight: 500;
}

.plans-gallery {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.plan-card {
  position: relative;
  margin: 0;
  padding: clamp(18px, 2.5vw, 30px);
  overflow: hidden;
}

.plan-card::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(35, 100, 169, 0.15);
  border-radius: inherit;
  pointer-events: none;
}

.plan-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border-radius: 24px;
}

.plan-card figcaption {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 22px 0 0;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2364a9, #f47b43);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 10vw, 50px) var(--page-pad) clamp(30px, 9vw, 50px);
  color: #66686d;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      transparent 0 38%,
      rgba(225, 225, 225, 0.28) 38% 54%,
      transparent 54%
    ),
    linear-gradient(22deg, transparent 0 72%, rgba(235, 235, 235, 0.5) 72% 100%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 655px) minmax(360px, 530px);
  align-items: start;
  justify-content: center;
  gap: clamp(50px, 6vw, 82px);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  position: relative;
  padding-top: 38px;
}

.form-fields {
  display: grid;
  grid-template-columns: minmax(260px, 315px) minmax(270px, 315px);
  gap: 24px;
}

.form-left {
  display: grid;
  gap: 34px;
}

.contact-form label,
.lead-form label {
  position: relative;
  display: block;
}

.contact-form label > span:not(.kvkk-check span),
.lead-form label > span:not(.kvkk-check span) {
  position: absolute;
  z-index: 2;
  left: 36px;
  top: 18px;
  color: #66686d;
  font-size: 16px;
  font-style: italic;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.contact-form label:focus-within > span:not(.kvkk-check span),
.lead-form label:focus-within > span:not(.kvkk-check span),
.contact-form label.is-filled > span:not(.kvkk-check span),
.lead-form label.is-filled > span:not(.kvkk-check span) {
  opacity: 0;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.lead-form input:not([type="checkbox"]),
.lead-form textarea {
  width: 100%;
  border: 2px solid #2364a9;
  border-radius: 999px;
  color: #17395c;
  background: rgba(255, 255, 255, 0.82);
  font:
    600 18px/1.3 "Segoe UI",
    Arial,
    sans-serif;
  outline: none;
}

.contact-form input:not([type="checkbox"]),
.lead-form input:not([type="checkbox"]) {
  height: 58px;
  padding: 16px 30px;
}

.message-field textarea {
  height: 240px;
  resize: vertical;
  border-radius: 28px;
  padding: 48px 30px 18px;
}

.kvkk-check {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 2px;
  font-size: 18px;
  font-style: italic;
  cursor: pointer;
}

.kvkk-check input {
  appearance: none;
  width: 22px;
  aspect-ratio: 1;
  margin: 0;
  border: 2px solid #2364a9;
  border-radius: 50%;
  background: #ffffff;
}

.kvkk-check input:checked {
  box-shadow: inset 0 0 0 5px #ffffff;
  background: #2364a9;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #2364a9;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.form-status.is-error {
  color: #b43a2f;
}

.form-status.is-success {
  color: #2364a9;
}

.send-button {
  position: absolute;
  right: 0;
  bottom: -10px;
  cursor: pointer;
}

.send-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form .send-button {
  position: static;
  min-width: 176px;
  float: right;
}

.contact-info h2 {
  margin: 0;
  color: #2364a9;
  font-size: clamp(48px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 700;
}

.contact-info h2 span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 18px 0 0 62px;
  padding-right: 10px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.contact-info h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(42, 99, 162, 0.92),
    rgba(238, 119, 53, 0.9)
  );
}

.contact-info address {
  display: grid;
  gap: 18px;
  margin-top: 72px;
  font-style: normal;
  font-size: clamp(19px, 1.3vw, 19px);
  line-height: 1.35;
  font-weight: 500;
}

.contact-phone {
  margin-top: 28px;
  color: #2364a9;
  font-size: clamp(44px, 4vw, 50px);
  line-height: 1;
  font-weight: 500;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(90deg, #062c4b 0%, #123f70 48%, #2467ae 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1610px;
  min-height: 122px;
  margin: 0 auto;
  padding: 22px var(--page-pad);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: clamp(200px, 15vw, 270px);
  height: auto;
}

.footer-copy {
  display: grid;
  gap: 14px;
  padding-right: clamp(10px, 3vw, 54px);
  font-size: clamp(18px, 1.25vw, 18px);
  line-height: 1.2;
  font-style: italic;
  text-align: left;
}

.footer-copy p {
  margin: 0;
}

.post-hero-bg {
  background: url("assets/pattern.jpg") center top / cover repeat-y;
}

.post-hero-bg > section::before,
.post-hero-bg > section::after {
  display: none;
}

.lonca_animation {
  position: absolute;
  top: 0;
}

@media (max-width: 1500px) and (min-width: 1181px) {
  :root {
    --page-pad: clamp(18px, 4vw, 70px);
  }

  .site-header {
    gap: clamp(18px, 2.6vw, 42px);
  }

  .brand {
    min-width: clamp(205px, 16vw, 250px);
  }

  .nav-links {
    gap: clamp(16px, 1.65vw, 25px);
    font-size: 15px;
  }

  .catalog-button {
    min-width: 160px;
    gap: 14px;
    font-size: 16px;
  }

  .hero-copy {
    padding-top: clamp(88px, 9vh, 128px);
  }

  .hero-copy p {
    margin-bottom: clamp(42px, 5vh, 60px);
  }

  .about-inner {
    grid-template-columns: minmax(430px, 600px) minmax(390px, 520px);
    gap: clamp(28px, 4vw, 58px);
  }

  .about-visual {
    min-height: 520px;
  }

  .about-visual img {
    width: min(100%, 540px);
  }

  .about-text {
    padding-left: 28px;
  }

  .features-panel {
    min-height: 800px;
    padding: 58px clamp(34px, 4vw, 54px) 56px;
  }

  .features-copy {
    max-width: 560px;
  }

  .features-copy p {
    max-width: 520px;
    margin-left: 32px;
  }

  .feature-grid {
    grid-template-columns: repeat(7, minmax(96px, 98px));
    grid-auto-rows: 114px;
    gap: 11px 9px;
  }

  .feature-card {
    width: auto;
    height: 114px;
    padding: 14px 12px 0;
  }

  .feature-card strong {
    font-size: 12px;
  }

  .feature-card span {
    font-size: 11px;
    height: 35px;
  }

  .feature-card-load {
    grid-template-rows: 33px 45px 36px;
    padding: 0;
  }

  .feature-card-load > span:first-child,
  .feature-card-load .load-value,
  .feature-card-load > span:last-child {
    padding: 10px 0;
    text-align: center;
    justify-content: center;
  }

  .features-exterior {
    right: clamp(34px, 4.5vw, 65px);
    width: min(42vw, 630px);
    height: 470px;
  }

  .features-interior {
    right: clamp(54px, 6vw, 90px);
    width: min(30vw, 410px);
    height: 235px;
  }

  .features-worker {
    width: min(23vw, 330px);
  }

  .future-inner {
    min-height: 835px;
  }

  .future-top {
    grid-template-columns: minmax(410px, 640px) minmax(390px, 540px);
    gap: clamp(30px, 3.5vw, 50px);
  }

  .future-office {
    height: 400px;
  }

  .future-copy p {
    margin-left: 38px;
  }

  .future-band {
    top: 360px;
    height: 450px;
  }

  .future-height {
    top: 450px;
  }

  .future-loading {
    top: 330px;
    width: min(56vw, 820px);
    height: 285px;
  }

  .future-warehouse {
    top: 575px;
    width: min(45vw, 540px);
    height: 275px;
  }

  .future-maneuver {
    left: min(45vw, 590px);
    right: 40px;
    top: 660px;
    grid-template-columns: 54px minmax(0, 1fr) 44px;
  }

  .location-inner {
    grid-template-columns: minmax(430px, 500px) minmax(560px, 1fr);
    gap: clamp(32px, 3.5vw, 52px);
  }

  .location-copy h2 span,
  .location-copy > p {
    margin-left: 52px;
  }

  .distance-card {
    padding-inline: 16px;
  }

  .map-card,
  .map-card img {
    min-height: 560px;
    height: 560px;
  }

  .access-panel img {
    right: -40px;
    width: min(43vw, 540px);
  }

  .access-copy {
    max-width: min(760px, 58vw);
  }

  .plans-copy {
    grid-template-columns: minmax(360px, 500px) minmax(300px, 470px);
  }

  .plan-card {
    padding: clamp(18px, 2vw, 26px);
  }

  .contact-inner {
    grid-template-columns: minmax(500px, 620px) minmax(330px, 480px);
    gap: clamp(34px, 4vw, 62px);
  }

  .form-fields {
    grid-template-columns: minmax(230px, 1fr) minmax(245px, 1fr);
  }
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .hero-copy h1 {
    font-size: clamp(42px, 4.4vw, 56px);
  }

  .video-card {
    width: min(360px, 29vw);
  }

  .lead-tab {
    min-height: 360px;
  }

  .features-panel {
    min-height: 760px;
  }

  .features-copy {
    max-width: 510px;
  }

  .features-copy h2 {
    font-size: 42px;
  }

  .features-copy p {
    max-width: 470px;
    margin-top: 58px;
    margin-left: 20px;
  }

  .feature-grid {
    grid-template-columns: repeat(7, minmax(88px, 98px));
    grid-auto-rows: 108px;
  }

  .feature-card {
    height: 108px;
    padding: 12px 10px 0;
  }

  .feature-icon {
    height: 34px;
    padding-inline: 10px;
  }

  .feature-icon img {
    width: 44px;
    height: 34px;
  }

  .features-exterior {
    width: min(41vw, 540px);
    height: 420px;
  }

  .features-interior {
    width: min(29vw, 360px);
    height: 215px;
  }

  .features-worker {
    width: min(22vw, 285px);
  }

  .future-top {
    grid-template-columns: minmax(380px, 560px) minmax(360px, 500px);
  }

  .future-office {
    height: 365px;
  }

  .future-copy h2 {
    font-size: 44px;
  }

  .future-copy p {
    margin-top: 44px;
    margin-left: 24px;
  }

  .future-maneuver {
    left: min(44vw, 560px);
    right: 20px;
  }

  .location-inner {
    grid-template-columns: minmax(390px, 460px) minmax(500px, 1fr);
  }

  .location-copy h2 span,
  .location-copy > p {
    margin-left: 34px;
  }

  .distance-grid {
    gap: 9px;
  }

  .distance-card {
    padding: 17px 13px 13px;
  }

  .distance-card span,
  .distance-card small {
    font-size: 13px;
  }

  .distance-card strong {
    font-size: 26px;
  }

  .map-card,
  .map-card img {
    min-height: 520px;
    height: 520px;
  }

  .access-copy {
    max-width: min(700px, 56vw);
  }

  .access-panel img {
    width: min(42vw, 500px);
    height: 315px;
  }

  .plans-copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    position: relative;
    z-index: 60;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
  }

  .nav-links,
  .catalog-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 70;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    justify-self: end;
    width: 54px;
    height: 54px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
      rgba(4, 20, 34, 0.5);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    cursor: pointer;
    transition:
      border-color 0.22s ease,
      background 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.22s ease;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transform-origin: center;
    transition:
      opacity 0.18s ease,
      transform 0.22s ease,
      width 0.22s ease;
  }

  .menu-toggle span:nth-child(2) {
    width: 18px;
    justify-self: end;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .site-header.is-open .menu-toggle {
    border-color: rgba(255, 255, 255, 0.94);
    background:
      linear-gradient(145deg, rgba(244, 123, 67, 0.9), rgba(35, 100, 169, 0.9)),
      rgba(4, 20, 34, 0.72);
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(5px);
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 62;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 16px 86px;
    overflow: hidden;
    counter-reset: mobileNav;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 26px;
    background:
      radial-gradient(circle at 85% 0%, rgba(244, 123, 67, 0.28), transparent 34%),
      linear-gradient(150deg, rgba(4, 30, 52, 0.96), rgba(8, 63, 108, 0.92) 58%, rgba(5, 26, 44, 0.96)),
      rgba(4, 18, 30, 0.94);
    box-shadow:
      0 34px 90px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    animation: mobileMenuIn 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .site-header.is-open .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 36%);
  }

  .site-header.is-open .nav-links::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  }

  .site-header.is-open .nav-links a {
    position: relative;
    z-index: 1;
    counter-increment: mobileNav;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    text-shadow: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
      border-color 0.2s ease,
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .site-header.is-open .nav-links a::after {
    content: "";
    width: 9px;
    aspect-ratio: 1;
    margin-left: auto;
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(45deg);
  }

  .site-header.is-open .nav-links a:hover,
  .site-header.is-open .nav-links a:focus-visible {
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    background:
      linear-gradient(90deg, rgba(244, 123, 67, 0.24), rgba(255, 255, 255, 0.12));
    transform: translateX(3px);
    outline: none;
  }

  .site-header.is-open .catalog-button {
    position: absolute;
    top: calc(100% + 280px);
    left: 16px;
    right: 16px;
    z-index: 63;
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    width: auto;
    min-height: 58px;
    padding-inline: 18px;
    border: 0;
    border-radius: 18px;
    background:
      linear-gradient(90deg, #ffffff, #ffe8d9);
    color: #165a99;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    animation: mobileMenuIn 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s both;
  }

  .site-header.is-open .catalog-button svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.9;
  }

  @keyframes mobileMenuIn {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

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

  .about-section {
    min-height: 0;
  }

  .about-visual {
    min-height: 0;
  }

  .about-visual img {
    margin-inline: auto;
  }

  .about-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .about-text {
    padding-left: 0;
  }

  .about-dot {
    top: auto;
    right: 12%;
    bottom: -44px;
    left: auto;
  }

  .features-panel {
    padding: 56px 32px 44px;
  }

  .features-copy,
  .features-copy p {
    max-width: 100%;
  }

  .features-copy p {
    margin-left: 0;
  }

  .features-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
    pointer-events: auto;
  }

  .features-exterior,
  .features-interior,
  .features-worker {
    position: relative;
    inset: auto;
  }

  .features-exterior,
  .features-interior {
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
  }

  .features-worker {
    position: absolute;
    right: 0;
    bottom: -44px;
    width: min(40vw, 300px);
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    width: auto;
  }

  .future-inner {
    min-height: 0;
  }

  .future-top {
    grid-template-columns: 1fr;
  }

  .future-band {
    top: 520px;
    height: calc(100% - 520px);
  }

  .future-loading,
  .future-warehouse,
  .future-height,
  .future-maneuver {
    position: relative;
    inset: auto;
  }

  .future-height {
    margin: 42px 0 18px;
  }

  .future-loading,
  .future-warehouse {
    width: 100%;
    height: auto;
    aspect-ratio: 2.5;
    margin-bottom: 22px;
  }

  .future-maneuver {
    grid-template-columns: 54px 1fr 44px;
    right: auto;
    left: auto;
    margin-top: 22px;
    padding-bottom: 30px;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }

  .location-copy > p,
  .location-copy h2 span {
    margin-left: 0;
  }

  .map-card {
    border-radius: 28px;
  }

  .access-panel {
    margin-top: 0;
    padding-bottom: 360px;
  }

  .access-panel img {
    top: auto;
    right: 32px;
    bottom: 32px;
    width: calc(100% - 64px);
    height: 300px;
  }

  .lead-form-modal__panel {
    width: min(460px, calc(100vw - 26px));
  }

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

  .lead-form .form-left {
    gap: 22px;
  }

  .lead-form .message-field textarea {
    height: 190px;
  }

  .plans-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plans-copy h2 span {
    margin-left: 0;
  }

  .plans-copy p {
    max-width: 660px;
  }

  .plan-card {
    border-radius: 28px;
  }

  .plan-card img {
    border-radius: 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .send-button {
    position: static;
    margin-top: 26px;
    justify-self: end;
  }

  .footer-inner {
    min-height: 120px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 12px 12px 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 206px;
  }

  .hero {
    inset: 91px 12px 22px;
    min-height: auto;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 78px 18px 0;
  }

  .hero-copy h1 {
    font-size: 43px;
    row-gap: 5px;
  }

  .accent-word {
    padding-inline: 5px;
    letter-spacing: 6px;
  }

  .hero-copy p {
    margin: 22px 0 38px;
    font-size: 16px;
  }

  .discover-button {
    min-width: 176px;
    min-height: 52px;
    font-size: 20px;
  }

  .video-card {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: clamp(142px, 32vw, 190px);
    aspect-ratio: auto;
    border-right: 0;
    border-radius: 0;
  }

  .video-label {
    font-size: 12px;
    letter-spacing: 5px;
    left: 0;
    right: 0;
    text-align: center;
  }

  .lead-tab {
    right: 0;
    bottom: 0;
    width: 56px;
    min-height: clamp(236px, 46vw, 280px);
    flex-direction: column;
    justify-content: end;
    padding: 16px 0 14px;
    border-left: 1.5px solid var(--line);
    border-radius: 28px 0 0 0;
  }

  .lead-tab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 4px;
  }

  .lead-form-modal__panel {
    width: min(420px, calc(100vw - 18px));
    height: 100%;
    max-height: none;
    padding: 28px 18px 22px;
    overflow-y: auto;
    border-radius: 24px 0 0 24px;
  }

  .lead-form-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
  }

  .lead-form-modal__copy {
    margin-bottom: 24px;
    padding-right: 42px;
  }

  .lead-form-modal__copy h2 {
    font-size: 34px;
  }

  .lead-form-modal__copy h2 span {
    display: block;
    width: fit-content;
    margin: 12px 0 0;
    letter-spacing: 4px;
  }

  .lead-form-modal__copy p {
    margin-top: 28px;
    font-size: 15px;
  }

  .lead-form .send-button {
    float: none;
    width: 100%;
  }

  .about-section {
    padding: 64px 20px 10px;
  }

  .about-copy h2 {
    font-size: 39px;
  }

  .about-copy h2 span {
    white-space: normal;
  }

  .about-lonca {
    margin: 16px 0 28px;
    font-size: 50px;
    letter-spacing: 10px;
  }

  .about-text p {
    font-size: 17px;
  }

  .about-dot {
    width: 40px;
    right: 20px;
  }

  .features-section {
    padding: 10px 12px 10px;
  }

  .features-panel {
    min-height: 0;
    padding: 38px 18px 34px;
    border-radius: 24px;
  }

  .features-copy h2 {
    font-size: 34px;
  }

  .features-copy h2 span {
    letter-spacing: 3px;
  }

  .features-copy p {
    margin-top: 48px;
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  .feature-card {
    min-height: 116px;
  }

  .features-media {
    margin-top: 28px;
  }

  .features-exterior,
  .features-interior {
    border-radius: 20px;
  }

  .features-worker {
    width: 210px;
    right: -20px;
    bottom: -30px;
  }

  .future-section {
    padding: 10px 12px 10px;
  }

  .future-top {
    gap: 28px;
  }

  .future-office {
    height: auto;
    aspect-ratio: 1.45;
    border-radius: 22px;
  }

  .future-copy h2 {
    font-size: 37px;
  }

  .future-copy h2 span {
    display: block;
    width: fit-content;
    margin: 12px 0 0;
    letter-spacing: 5px;
    white-space: normal;
  }

  .future-copy p {
    margin: 38px 0 0;
    font-size: 16px;
  }

  .future-band {
    top: 540px;
  }

  .future-height {
    gap: 14px;
    z-index: 8;
    width: 100%;
    margin: 34px 0 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(35, 100, 169, 0.72);
  }

  .future-height strong {
    font-size: 24px;
  }

  .future-icon {
    width: 48px;
    font-size: 37px;
  }

  .future-loading,
  .future-warehouse {
    aspect-ratio: 1.55;
    border-radius: 20px;
  }

  .future-maneuver {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .future-maneuver h3 {
    font-size: 27px;
  }

  .future-maneuver p {
    font-size: 14px;
    line-height: 1.55;
  }

  .future-dot {
    grid-column: 2;
    width: 40px;
  }

  .location-section {
    padding: 10px 12px 10px;
  }

  .location-inner {
    gap: 30px;
  }

  .location-copy h2 {
    font-size: 39px;
  }

  .location-copy h2 span {
    letter-spacing: 5px;
  }

  .location-copy > p {
    margin-top: 44px;
    font-size: 16px;
  }

  .distance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .distance-card {
    min-height: 112px;
    padding: 16px 14px 13px;
  }

  .distance-card strong {
    font-size: 29px;
  }

  .map-card img {
    width: 760px;
    height: 410px;
    transform: translateX(-155px);
  }

  .map-card {
    min-height: 410px;
    border-radius: 22px;
  }

  .access-panel {
    padding: 30px 18px 270px;
    border-radius: 24px;
  }

  .access-copy h3 {
    font-size: 28px;
  }

  .access-copy h3 span {
    display: block;
    width: fit-content;
    margin: 12px 0 0;
    letter-spacing: 4px;
  }

  .access-copy p {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.6;
  }

  .access-panel img {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    height: 220px;
    border-radius: 20px;
  }

  .plans-section {
    padding: 10px 12px 10px;
  }

  .plans-copy {
    gap: 22px;
    margin-bottom: 30px;
  }

  .plans-copy h2 {
    font-size: 38px;
  }

  .plans-copy h2 span {
    margin-top: 12px;
    letter-spacing: 4px;
    white-space: normal;
  }

  .plans-copy p {
    font-size: 16px;
  }

  .plans-gallery {
    gap: 22px;
  }

  .plan-card {
    padding: 12px;
    border-radius: 22px;
  }

  .plan-card img {
    border-radius: 16px;
  }

  .plan-card figcaption {
    margin-top: 14px;
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .contact-section {
    min-height: 0;
    padding: 10px 20px 20px;
  }

  .contact-form {
    padding-top: 0;
    order: 1;
  }

  .form-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-left {
    gap: 20px;
  }

  .contact-form label > span:not(.kvkk-check span),
  .lead-form label > span:not(.kvkk-check span) {
    left: 24px;
    top: 15px;
    font-size: 17px;
  }

  .contact-form input:not([type="checkbox"]),
  .lead-form input:not([type="checkbox"]) {
    height: 54px;
  }

  .message-field textarea {
    height: 180px;
    border-radius: 24px;
  }

  .send-button {
    width: 100%;
  }

  .contact-info h2 {
    font-size: 40px;
  }

  .contact-info h2 span {
    margin-left: 0;
    letter-spacing: 7px;
  }

  .contact-info address {
    margin-top: 54px;
    font-size: 17px;
  }

  .contact-phone {
    font-size: 40px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-copy {
    gap: 10px;
    padding-right: 0;
    font-size: 16px;
  }
}

.whatsapp-fab {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 65px;
        height: 65px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        z-index: 9999;
        transition: transform 0.3s ease;
        /* Yayılan yeşil ışık (pulse) animasyonu */
        animation: pulse-glow 2s infinite;
      }

      .whatsapp-fab__icon {
        width: 36px;
        height: 36px;
        fill: #fff;
      }

      /* Hover (Üzerine gelince) Efekti */
      .whatsapp-fab:hover {
        transform: scale(1.1); /* Butonu %10 büyütür */
        animation: pulse-glow 1.5s infinite; /* Dalga hızını biraz artırır */
      }

      /* Yayılan Dalga Animasyonu Keyframes */
      @keyframes pulse-glow {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      /* Mobil Cihazlar İçin Boyut Ayarlaması */
      @media (max-width: 768px) {
        .whatsapp-fab {
          width: 55px;
          height: 55px;
          bottom: 20px;
          right: 20px;
        }
        .whatsapp-fab__icon {
          width: 30px;
          height: 30px;
        }
      }
