.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info li i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent-2);
  font-size: 1.08rem;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--accent-2);
}

.real-project-card {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.real-project-image {
  display: grid;
  align-items: center;
  min-height: clamp(430px, 42vw, 560px);
}

.real-project-image .device-showcase.compact {
  width: 100%;
  max-width: 920px;
  min-height: clamp(430px, 38vw, 540px);
  padding: 64px 76px 46px 28px;
}

.real-project-image .device-showcase.compact .desktop-device {
  width: 91%;
}

.real-project-image .device-showcase.compact .phone-device {
  right: 4%;
  bottom: 34px;
  width: 23%;
}

.desktop-screen,
.phone-screen,
.real-site-frame {
  background: #fff;
}

.desktop-screen img,
.phone-screen img,
.real-site-frame > img {
  object-position: top center;
  image-rendering: auto;
}

.project-showcase .device-showcase {
  min-height: clamp(560px, 54vw, 720px);
  padding: clamp(76px, 7vw, 96px) clamp(88px, 9vw, 120px) clamp(58px, 6vw, 76px) clamp(34px, 4vw, 48px);
}

.project-showcase .desktop-device {
  width: min(87%, 930px);
}

.project-showcase .phone-device {
  right: 4.5%;
  bottom: 48px;
  width: clamp(150px, 19%, 225px);
}

.project-showcase .showcase-caption {
  gap: 14px;
}

.case-visual {
  min-height: 350px;
}

.real-site-frame {
  min-height: 286px;
}

@media (max-width: 860px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  html.mobile-nav-open .navbar::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(3, 5, 15, .66);
    -webkit-backdrop-filter: blur(9px) saturate(130%);
    backdrop-filter: blur(9px) saturate(130%);
  }

  .navbar .container {
    position: relative;
    z-index: 125;
  }

  .hamburger {
    position: relative;
    z-index: 132;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(133, 232, 255, .22);
    border-radius: 14px;
    background: rgba(9, 13, 32, .78);
    box-shadow: inset 0 1px rgba(255,255,255,.12), 0 10px 28px rgba(0,0,0,.28);
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 12px;
    bottom: auto;
    left: 12px;
    z-index: 126;
    width: auto;
    max-height: calc(100dvh - 92px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 14px;
    border: 1px solid rgba(126, 232, 255, .22);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(7, 10, 28, .98), rgba(17, 13, 45, .98) 64%, rgba(4, 15, 31, .98));
    box-shadow: 0 24px 70px rgba(0,0,0,.62), inset 0 1px rgba(255,255,255,.13);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    opacity: 0;
    transform: translate3d(0, -16px, 0) scale(.98);
    transition: opacity .2s ease, transform .22s ease, visibility .22s ease;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.open {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
    visibility: visible;
  }

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

  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    color: #f7f9ff;
    font-size: .95rem;
  }

  .nav-links a.active {
    border-color: rgba(114, 235, 255, .38);
    background: linear-gradient(120deg, rgba(33,230,193,.16), rgba(124,92,255,.18));
  }

  .nav-links .nav-call,
  .nav-links .nav-cta {
    min-height: 48px;
    justify-content: center;
    border-radius: 15px;
  }

  .nav-services {
    width: 100%;
    text-align: left;
  }

  .nav-services > a {
    justify-content: space-between;
  }

  .services-menu {
    position: static;
    width: 100%;
    max-height: 248px;
    margin: 6px 0 2px;
    padding: 8px;
    overflow-y: auto;
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 1px rgba(255,255,255,.1);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .services-menu-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0;
  }

  .services-menu-grid > a {
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(4, 8, 22, .54);
  }

  .services-menu-head,
  .services-menu-all {
    display: none !important;
  }

  html.nav-force-closed .nav-links {
    opacity: 0 !important;
    transform: translate3d(0, -16px, 0) scale(.98) !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  html.nav-force-closed .hamburger.open span:nth-child(1) {
    transform: none !important;
  }

  html.nav-force-closed .hamburger.open span:nth-child(2) {
    opacity: 1 !important;
  }

  html.nav-force-closed .hamburger.open span:nth-child(3) {
    transform: none !important;
  }

  html.route-touch-guard .hero-canvas,
  html.route-touch-guard .hero-sticky,
  html.route-touch-guard .hero-bg,
  html.route-touch-guard .hero-overlay {
    pointer-events: none !important;
  }

  .project-device-tour .tour-canvas-wrap,
  .project-device-tour .tour-canvas-wrap canvas {
    touch-action: pan-y pinch-zoom !important;
  }

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

  .real-project-image {
    min-height: clamp(360px, 74vw, 500px);
  }

  .real-project-image .device-showcase.compact {
    min-height: clamp(360px, 72vw, 490px);
    padding: 56px 58px 36px 18px;
  }

  .real-project-image .device-showcase.compact .phone-device {
    right: 2%;
    bottom: 24px;
    width: 25%;
  }

  .project-showcase .device-showcase {
    min-height: clamp(410px, 78vw, 560px);
    padding: 70px 54px 42px 14px;
  }

  .project-showcase .desktop-device {
    width: 94%;
  }

  .project-showcase .phone-device {
    right: 1.5%;
    bottom: 28px;
    width: 25%;
  }
}

@media (max-width: 560px) {
  .navbar .logo-img {
    width: 152px;
  }

  .nav-links {
    top: 66px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 78px);
    padding: 12px;
    border-radius: 18px;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 12px;
    font-size: .9rem;
  }

  .services-menu {
    max-height: 220px;
  }

  .real-project-image {
    min-height: 330px;
  }

  .real-project-image .device-showcase.compact {
    min-height: 330px;
    padding: 48px 44px 28px 10px;
  }

  .real-project-image .device-showcase.compact .desktop-bar {
    height: 24px;
  }

  .project-showcase .device-showcase {
    min-height: 360px;
    padding: 58px 42px 30px 8px;
    border-radius: 22px;
  }

  .project-showcase .phone-device {
    bottom: 20px;
    width: 26%;
  }

  .showcase-caption {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .showcase-caption span {
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
