:root {
  --header-height: 96px;
  --logo-header-width: 230px;
  --logo-header-max-height: 96px;
  --logo-header-margin: 0px;
  --logo-footer-width: 230px;
  --logo-footer-margin: 0px;
}

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

:root {
  --bg: #05070d;
  --bg-2: #090d18;
  --surface: #0d1324;
  --surface-2: #111a30;
  --surface-3: #151f36;
  --line: rgba(123, 167, 255, 0.2);
  --line-strong: rgba(123, 167, 255, 0.36);
  --text: #edf2ff;
  --text-soft: #b5c0df;
  --text-muted: #8796bd;
  --ink: #11131c;
  --ink-soft: #353f5f;
  --paper: #f6f8ff;
  --paper-2: #eef2ff;
  --primary: #2f6bff;
  --primary-soft: #7ba7ff;
  --accent: #28d5ff;
  --danger: #ef4444;
  --success: #16a34a;
  --max: 1240px;
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --space: clamp(26px, 4vw, 52px);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --header-height: 94px;
  --logo-header-width: 220px;
  --logo-header-max-height: 94px;
  --logo-header-margin: 0px;
  --logo-footer-width: 240px;
  --logo-footer-margin: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% -20%, #121b35 0%, var(--bg) 40%) fixed;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(72, 94, 145, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 94, 145, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% -10%, #000 0%, #000 40%, transparent 92%);
  pointer-events: none;
}

.sec {
  max-width: var(--max);
  margin: 0 auto;
}

.site-main {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  backdrop-filter: blur(14px);
  background: rgba(6, 10, 20, 0.86);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(16px, 3vw, 36px);
}

.hdr {
  min-height: var(--header-height, 94px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  max-width: var(--max);
  margin: 0 auto;
}

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

.logo-image {
  width: var(--logo-header-width, 220px);
  max-height: var(--logo-header-max-height, 94px);
  margin: var(--logo-header-margin, 0px);
  height: auto;
}

.logo-image-footer {
  width: var(--logo-footer-width, 240px);
  max-height: none;
  margin: var(--logo-footer-margin, 0px);
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.nav-group {
  position: relative;
}

.nav-link {
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 8px 10px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--text);
  border-color: var(--line);
  background: rgba(123, 167, 255, 0.12);
}

.nav-link.is-cta {
  border-color: var(--line-strong);
  color: var(--accent);
}

.nav-hover-line {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #28d5ff 0%, #2f6bff 100%);
  box-shadow: 0 0 14px rgba(40, 213, 255, 0.42);
  opacity: 0;
  transform: translateX(0);
  transform-origin: left center;
  transition:
    width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.22s ease;
  pointer-events: none;
  z-index: 430;
}

.main-nav.has-hover-line .nav-hover-line {
  opacity: 1;
}

.nav-link-parent {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.nav-link-parent::-webkit-details-marker {
  display: none;
}

.nav-link-parent::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-group-web.is-current .nav-link-parent {
  color: var(--text);
  border-color: var(--line);
  background: rgba(123, 167, 255, 0.12);
}

.nav-group-web:hover .nav-link-parent::after,
.nav-group-web:focus-within .nav-link-parent::after,
.nav-group-web[open] .nav-link-parent::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(123, 167, 255, 0.34);
  background: rgba(8, 14, 30, 0.98);
  box-shadow: 0 22px 42px rgba(2, 7, 18, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 420;
}

.nav-group-web:hover .nav-submenu,
.nav-group-web:focus-within .nav-submenu,
.nav-group-web[open] .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-sublink {
  color: #c7d5f5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  padding: 9px 10px;
  transition: all 0.2s ease;
}

.nav-sublink:hover,
.nav-sublink.is-current {
  color: #f0f6ff;
  border-color: rgba(123, 167, 255, 0.32);
  background: rgba(123, 167, 255, 0.14);
}

.hdr-cta,
.btn-prim,
.btn-sec,
.btn-wire,
.f-btn,
.sticky-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hdr-cta {
  padding: 11px 16px;
  background: linear-gradient(120deg, var(--primary) 0%, #2050c7 100%);
  border: 1px solid rgba(197, 214, 255, 0.32);
  color: #fff;
  font-size: 13px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hdr-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(123, 167, 255, 0.12);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #d9e4ff;
}

.hero {
  position: relative;
  padding: clamp(50px, 8vw, 110px) clamp(16px, 4vw, 40px) 44px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 106, 170, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 106, 170, 0.16) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(26px, 4vw, 66px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
}

.hero-kicker,
.section-kicker {
  font: 600 11px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-soft);
  margin-bottom: 14px;
}

.hero-copy .hero-kicker {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
strong {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 14ch;
}

.hero-copy h1 {
  margin-bottom: 0;
}

h1 mark {
  background: transparent;
  color: var(--accent);
}

.hero-sub,
.section-sub {
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-sub {
  margin-bottom: 28px;
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero-copy .hero-sub {
  margin-bottom: 0;
}

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

.hero-copy .hero-actions {
  margin-top: 4px;
}

.btn-prim,
.btn-sec,
.btn-wire,
.f-btn {
  font-size: 13px;
  text-transform: uppercase;
}

.btn-prim {
  background: linear-gradient(120deg, #2f6bff 0%, #1f4dbf 100%);
  color: #fff;
  border: 1px solid rgba(205, 220, 255, 0.35);
  padding: 13px 18px;
}

.btn-prim:hover {
  filter: brightness(1.08);
}

.btn-sec {
  border: 1px solid rgba(183, 200, 241, 0.35);
  color: var(--text);
  background: rgba(22, 33, 63, 0.6);
  padding: 13px 18px;
}

.btn-sec:hover {
  border-color: rgba(218, 228, 255, 0.6);
}

.btn-wire {
  border: 1px solid rgba(150, 171, 222, 0.5);
  color: var(--text-soft);
  padding: 12px 16px;
  align-self: flex-start;
}

.btn-wire.dark {
  border-color: rgba(44, 59, 105, 0.3);
  color: #2e416f;
  background: #fff;
}

.hero-micro {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
}

.hero-copy .hero-micro {
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screen {
  position: relative;
  width: min(96%, 560px);
  min-height: 370px;
  border: 1px solid rgba(130, 166, 255, 0.36);
  background: #070e1f;
  box-shadow: 0 35px 70px rgba(2, 8, 24, 0.62);
  overflow: hidden;
}

.hero-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(130, 166, 255, 0.36);
  transform: translate(12px, 12px);
  pointer-events: none;
}

.hero-screen img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hero-screen-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0) 0%, rgba(3, 9, 20, 0.85) 60%, rgba(3, 9, 20, 0.96) 100%);
}

.overlay-chart {
  height: 58px;
  border: 1px solid rgba(40, 213, 255, 0.44);
  background: linear-gradient(100deg, rgba(40, 213, 255, 0.18) 0%, rgba(47, 107, 255, 0.28) 100%);
  clip-path: polygon(0 66%, 16% 48%, 32% 60%, 50% 34%, 67% 40%, 82% 20%, 100% 10%, 100% 100%, 0 100%);
}

.overlay-points {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.overlay-points span {
  height: 8px;
  border: 1px solid rgba(140, 175, 255, 0.35);
  background: rgba(28, 45, 88, 0.65);
}

.hero-note {
  position: absolute;
  max-width: 260px;
  background: rgba(8, 14, 30, 0.93);
  border: 1px solid rgba(123, 167, 255, 0.42);
  padding: 12px 13px;
}

.hero-note strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.hero-note span {
  color: var(--text-soft);
  font-size: 12px;
}

.hero-note-top {
  top: -20px;
  right: 10px;
}

.hero-note-bottom {
  left: 0;
  bottom: -20px;
}

.trust-band {
  background: linear-gradient(90deg, #1d4fc2 0%, #2d7bff 55%, #1d4fc2 100%);
  border-top: 1px solid rgba(201, 218, 255, 0.25);
  border-bottom: 1px solid rgba(201, 218, 255, 0.25);
  padding: 0 clamp(14px, 3vw, 32px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
}

.trust-item {
  padding: 20px 14px;
  border-right: 1px solid rgba(230, 239, 255, 0.2);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-value {
  display: block;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1;
}

.trust-value.is-small {
  font-size: clamp(16px, 3vw, 22px);
}

.trust-item p {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(234, 242, 255, 0.85);
}

section {
  padding: clamp(54px, 8vw, 108px) clamp(16px, 4vw, 40px);
}

.section-light {
  background:
    radial-gradient(circle at 10% -10%, rgba(47, 107, 255, 0.12) 0%, rgba(47, 107, 255, 0) 42%),
    radial-gradient(circle at 92% 18%, rgba(40, 213, 255, 0.1) 0%, rgba(40, 213, 255, 0) 38%),
    linear-gradient(180deg, #f5f8ff 0%, #edf2ff 100%);
  color: var(--ink);
}

.section-dark {
  background: linear-gradient(180deg, #070c17 0%, #0a1224 100%);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: clamp(22px, 4vw, 42px);
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.section-light .section-kicker,
.section-light .mini-kicker {
  color: #3557ab;
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--ink);
}

.section-light .section-sub,
.section-light p,
.section-light li,
.section-light .mini-card span {
  color: var(--ink-soft);
}

.section-dark .section-kicker {
  color: var(--accent);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: var(--text);
}

.section-dark p,
.section-dark .section-sub,
.section-dark li {
  color: var(--text-soft);
}

.section-sub {
  margin-top: 12px;
  font-size: clamp(15px, 1.4vw, 18px);
}

.section-cta-center {
  margin-top: clamp(18px, 3vw, 30px);
  display: flex;
  justify-content: center;
}

.issue-grid,
.service-grid,
.process-grid,
.project-grid,
.testimonial-grid,
.blog-grid,
.zone-grid {
  display: grid;
  gap: 16px;
}

.issue-grid,
.service-grid,
.project-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.issue-card,
.service-card,
.process-card,
.project-card,
.testimonial-card,
.page-panel,
.empty-state,
.zone-item,
.mini-card {
  border: 1px solid;
}

.issue-card {
  grid-column: span 6;
  padding: 22px;
  border-color: rgba(44, 59, 105, 0.18);
  background: #fff;
}

.issue-icon,
.service-icon,
.diagram-icon {
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.issue-icon,
.service-icon {
  width: 58px;
  height: 58px;
  padding: 10px;
  border: 1px solid rgba(58, 79, 136, 0.24);
  background: transparent;
}

.issue-icon .ico,
.service-icon .ico {
  width: 34px;
  height: 34px;
  stroke-width: 2.25;
}

.section-dark .service-icon {
  border-color: rgba(151, 180, 245, 0.34);
}

.issue-card h3,
.service-card h3,
.process-card h3,
.project-body h3,
.testimonial-author strong {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.issue-card p,
.service-card p,
.process-card p,
.project-body p,
.testimonial-quote,
.page-panel p,
.empty-state p {
  font-size: 15px;
}

.service-card {
  grid-column: span 3;
  padding: 20px;
  border-color: rgba(124, 154, 224, 0.24);
  background: linear-gradient(180deg, #0e1a33 0%, #111f3a 100%);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 197, 255, 0.58);
}

.service-card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 19px;
}

.service-link {
  margin-top: 16px;
  display: inline-flex;
  font: 600 12px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}

.diff-layout,
.seo-local-layout,
.cta-layout,
.page-hero-grid,
.contact-grid-page,
.service-row,
.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: clamp(18px, 3.2vw, 34px);
  align-items: start;
}

.diff-list {
  display: grid;
  gap: 12px;
}

.diff-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(44, 59, 105, 0.2);
  background: #fff;
}

.diff-point span {
  font: 700 12px/1 var(--font-display);
  color: #3557ab;
  padding-top: 4px;
}

.diff-point h3,
.diagram-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.diagram-panel,
.local-panel {
  border: 1px solid rgba(124, 154, 224, 0.34);
  background: linear-gradient(160deg, #102247 0%, #0e1b36 100%);
  padding: 18px;
}

.diagram-title {
  font: 600 11px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8eb8ff;
  margin-bottom: 12px;
}

.diagram-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px 13px;
  border: 1px solid rgba(132, 168, 245, 0.3);
  background: rgba(7, 18, 43, 0.72);
  margin-bottom: 10px;
}

.diagram-item:last-child {
  margin-bottom: 0;
}

.diagram-item h4 {
  color: #eef3ff;
}

.diagram-item p {
  color: #bdcdf1;
}

.diagram-item .diagram-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border: 0;
  background: transparent;
}

.diagram-item .diagram-icon .ico {
  width: 36px;
  height: 36px;
  stroke-width: 2.3;
  filter: drop-shadow(0 0 10px rgba(47, 107, 255, 0.28));
}

.process-section .section-head {
  margin-bottom: 22px;
}

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

.process-card {
  border-color: rgba(124, 154, 224, 0.22);
  background: linear-gradient(180deg, #101d36 0%, #0d162a 100%);
  padding: 20px;
}

.process-num {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(143, 174, 246, 0.44);
  color: var(--accent);
  font: 600 12px/1 var(--font-display);
}

.portfolio-slider-wrap {
  position: relative;
}

.portfolio-slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 14px;
  z-index: 8;
}

.portfolio-nav-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(145, 181, 255, 0.5);
  background:
    radial-gradient(circle at 30% 20%, rgba(83, 129, 255, 0.45) 0%, rgba(25, 44, 95, 0.95) 70%),
    linear-gradient(160deg, rgba(16, 29, 58, 0.92) 0%, rgba(12, 20, 40, 0.98) 100%);
  color: #eaf2ff;
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(8, 18, 42, 0.42),
    inset 0 1px 0 rgba(235, 246, 255, 0.2),
    0 0 0 1px rgba(31, 77, 191, 0.2);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.portfolio-nav-btn:hover,
.portfolio-nav-btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(174, 205, 255, 0.78);
  color: #fff;
  box-shadow:
    0 18px 34px rgba(7, 17, 41, 0.52),
    inset 0 1px 0 rgba(248, 253, 255, 0.28),
    0 0 0 1px rgba(47, 107, 255, 0.38),
    0 0 18px rgba(40, 213, 255, 0.3);
  outline: none;
}

.portfolio-nav-btn:active {
  transform: translateY(0) scale(0.98);
}

.portfolio-nav-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 4px rgba(35, 123, 255, 0.35));
}

.portfolio-slider {
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-slider::-webkit-scrollbar {
  display: none;
}

.portfolio-slider.is-dragging {
  cursor: grabbing;
}

.portfolio-slider::before,
.portfolio-slider::after {
  content: none;
}

.portfolio-track {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
  min-width: max-content;
}

.portfolio-slide {
  width: min(34vw, 420px);
  min-width: 280px;
  flex: 0 0 auto;
}

.portfolio-image {
  width: 100%;
  border-top: 1px solid rgba(44, 59, 105, 0.2);
  border-bottom: 1px solid rgba(44, 59, 105, 0.2);
  border-left: 0;
  border-right: 0;
  background: #101a2f;
  cursor: pointer;
  min-height: 230px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  transition: border-color 0.22s ease;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.portfolio-image:hover img {
  filter: grayscale(0);
  transform: scale(1.045);
}

.project-card {
  grid-column: span 4;
  background: #fff;
  border-color: rgba(44, 59, 105, 0.18);
  overflow: hidden;
}

.project-card-hover {
  background: transparent;
  border-color: transparent;
}

.project-hover-surface {
  position: relative;
  display: block;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(44, 59, 105, 0.2);
  background: #101a2f;
}

.project-hover-surface img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.project-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.1) 0%, rgba(4, 9, 18, 0.84) 66%, rgba(4, 9, 18, 0.94) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.project-hover-overlay h3 {
  margin: 0;
  color: #f3f7ff;
  font-size: 30px;
  line-height: 1.03;
}

.project-hover-overlay p {
  margin: 0;
  color: #d3def9;
  font-size: 14px;
  line-height: 1.45;
  overflow: visible;
}

.project-hover-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  border: 1px solid rgba(175, 201, 255, 0.5);
  padding: 8px 11px;
  color: #eef4ff;
  font: 700 11px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-card-hover:hover .project-hover-overlay,
.project-card-hover:focus-within .project-hover-overlay {
  opacity: 1;
}

.project-card-hover:hover .project-hover-surface img,
.project-card-hover:focus-within .project-hover-surface img {
  transform: scale(1.05);
}

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

  .project-hover-surface {
    min-height: 380px;
  }
}

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

  .project-hover-surface {
    min-height: 330px;
  }
}

.project-image,
.project-image-static {
  width: 100%;
  border: 0;
  background: #101a2f;
  cursor: pointer;
  min-height: 230px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.project-image img,
.project-image-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-fallback {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #d7e4ff;
  font: 600 22px/1.2 var(--font-display);
}

.project-body {
  padding: 18px;
}

.project-body h3 {
  color: var(--ink);
  font-size: 24px;
}

.project-body p {
  color: var(--ink-soft);
}

.zone-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.zone-item {
  border-color: rgba(123, 167, 255, 0.22);
  background: rgba(12, 21, 39, 0.78);
  padding: 14px;
}

.zone-item strong {
  display: block;
  font-size: 16px;
}

.zone-item span {
  font-size: 13px;
  color: var(--text-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  padding: 20px;
  border-color: rgba(44, 59, 105, 0.2);
  background: #fff;
}

.testimonial-stars {
  color: #1d4fc2;
  letter-spacing: 0.25em;
  font-size: 12px;
  margin-bottom: 10px;
}

.testimonial-quote {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.testimonial-author span {
  font-size: 13px;
  color: #4f628f;
}

.cta-section {
  background: linear-gradient(150deg, #1a4ab7 0%, #2f6bff 45%, #153683 100%);
  color: #fff;
  border-top: 1px solid rgba(215, 228, 255, 0.35);
  border-bottom: 1px solid rgba(215, 228, 255, 0.35);
}

.cta-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  max-width: 15ch;
}

.cta-copy p {
  margin-top: 12px;
  color: rgba(237, 244, 255, 0.92);
}

.cta-points {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.cta-points li {
  border: 1px solid rgba(220, 231, 255, 0.3);
  padding: 10px 12px;
  background: rgba(14, 27, 63, 0.25);
}

.contact-form-panel {
  background: rgba(10, 21, 48, 0.72);
  border: 1px solid rgba(220, 231, 255, 0.35);
  padding: clamp(16px, 2.6vw, 28px);
}

.contact-form-panel.is-light {
  background: #fff;
  border-color: rgba(44, 59, 105, 0.2);
}

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

.field-wrap {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}


.field-wrap span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(232, 240, 255, 0.85);
}

.contact-form-panel.is-light .field-wrap span {
  color: #3b4f7f;
}

.field-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(190, 208, 255, 0.45);
  background: rgba(9, 17, 39, 0.44);
  color: #f2f6ff;
  padding: 12px 12px;
}

.contact-form-panel.is-light .field-input {
  background: #f7f9ff;
  border-color: rgba(44, 59, 105, 0.2);
  color: #1e2f56;
}

.field-input:focus {
  outline: 0;
  border-color: rgba(40, 213, 255, 0.68);
}

textarea.field-input {
  min-height: 100px;
  resize: vertical;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 14px;
  font-size: 13px;
  color: rgba(230, 239, 255, 0.9);
}

.contact-form-panel.is-light .form-consent {
  color: #3c4e78;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #1f53cf;
}

.f-btn {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(220, 231, 255, 0.42);
  background: linear-gradient(120deg, #2f6bff 0%, #1f4dbf 100%);
  color: #fff;
}

.f-micro {
  margin-top: 9px;
  color: rgba(232, 240, 255, 0.8);
  font-size: 12px;
}

.contact-form-panel.is-light .f-micro {
  color: #51648f;
}

.form-alert {
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid;
  font-size: 14px;
}

.form-alert-success {
  border-color: rgba(22, 163, 74, 0.45);
  background: rgba(22, 163, 74, 0.14);
  color: #ffffff;
}

.form-alert-error {
  border-color: rgba(239, 68, 68, 0.44);
  background: rgba(239, 68, 68, 0.14);
  color: #7f1d1d;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.page-hero {
  position: relative;
  padding: clamp(50px, 7vw, 95px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.page-hero-simple {
  position: relative;
}

.page-hero-grid {
  position: relative;
  align-items: center;
}

.page-hero-grid > :first-child,
.location-hero-grid > :first-child,
.page-hero-simple {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
}

.page-hero-grid > :first-child .section-kicker,
.location-hero-grid > :first-child .section-kicker,
.page-hero-simple .section-kicker {
  margin-bottom: 0;
}

.page-hero-grid > :first-child h1,
.location-hero-grid > :first-child h1,
.page-hero-simple h1 {
  margin-bottom: 0;
}

.page-hero-grid > :first-child .section-sub,
.location-hero-grid > :first-child .section-sub,
.page-hero-simple .section-sub {
  margin-bottom: 0;
}

.page-hero-grid > :first-child .button-row,
.location-hero-grid > :first-child .button-row {
  margin-top: 4px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.6vw, 60px);
  max-width: 16ch;
}

.page-hero .section-sub {
  max-width: 70ch;
}

.page-hero-media {
  border: 1px solid rgba(123, 167, 255, 0.35);
  background: #0b1222;
  min-height: 300px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.page-panel,
.empty-state {
  padding: clamp(16px, 2.4vw, 24px);
  border-color: rgba(44, 59, 105, 0.2);
  background: #fff;
}

.empty-state-spaced {
  margin-top: 16px;
}

.page-panel h2,
.empty-state h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.page-panel p {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.page-panel p:last-child {
  margin-bottom: 0;
}

.content-main,
.content-side,
.service-stack {
  display: grid;
  gap: 18px;
}

.mini-kicker {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.mini-grid,
.feature-list,
.step-list,
.faq-list,
.contact-points {
  display: grid;
  gap: 10px;
}

.mini-card {
  border-color: rgba(44, 59, 105, 0.18);
  background: #f6f8ff;
  padding: 12px;
}

.mini-card strong {
  color: var(--ink);
  display: block;
  margin-bottom: 5px;
}

.feature-item,
.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.feature-dot,
.step-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(44, 59, 105, 0.22);
  color: #3557ab;
}

.feature-dot {
  width: 10px;
  height: 10px;
  border: 0;
  margin-top: 9px;
  background: #2f6bff;
}

.step-num {
  font: 700 11px/1 var(--font-display);
}

.faq-list details {
  border: 1px solid rgba(44, 59, 105, 0.2);
  background: #f8faff;
  padding: 12px;
}

.faq-list summary {
  cursor: pointer;
  font: 600 15px/1.35 var(--font-display);
  color: var(--ink);
}

.contact-points a,
.contact-points p {
  color: var(--ink-soft);
}

.content-shell {
  position: relative;
  gap: clamp(20px, 3vw, 34px);
}

.content-shell::before {
  content: '';
  position: absolute;
  inset: -60px -20px auto;
  height: 220px;
  background:
    radial-gradient(circle at 18% 40%, rgba(47, 107, 255, 0.14) 0%, rgba(47, 107, 255, 0) 52%),
    radial-gradient(circle at 78% 30%, rgba(40, 213, 255, 0.14) 0%, rgba(40, 213, 255, 0) 50%);
  pointer-events: none;
  z-index: 0;
}

.content-shell > * {
  position: relative;
  z-index: 1;
}

.content-shell .page-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 119, 204, 0.3);
  background:
    radial-gradient(circle at 94% -12%, rgba(47, 107, 255, 0.24) 0%, rgba(47, 107, 255, 0) 46%),
    radial-gradient(circle at -6% 100%, rgba(40, 213, 255, 0.16) 0%, rgba(40, 213, 255, 0) 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.98) 54%, rgba(237, 244, 255, 0.96) 100%);
  box-shadow:
    0 22px 54px rgba(18, 42, 96, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-shell .page-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f6bff 0%, #58d9ff 54%, #2f6bff 100%);
  opacity: 0.88;
}

.content-shell .page-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(81, 128, 226, 0.44);
  box-shadow:
    0 28px 64px rgba(18, 42, 96, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.content-shell .page-panel h2 {
  color: #0f1f42;
  margin-bottom: 16px;
}

.content-shell .content-main .page-panel p {
  color: #2a3f69;
  line-height: 1.72;
}

.content-shell .content-side .page-panel {
  border-color: rgba(119, 158, 242, 0.38);
  background:
    radial-gradient(circle at 86% -8%, rgba(88, 217, 255, 0.24) 0%, rgba(88, 217, 255, 0) 42%),
    radial-gradient(circle at -10% 102%, rgba(47, 107, 255, 0.28) 0%, rgba(47, 107, 255, 0) 45%),
    linear-gradient(155deg, #0a1a3b 0%, #0f2550 50%, #102143 100%);
  box-shadow:
    0 24px 58px rgba(4, 14, 35, 0.44),
    inset 0 1px 0 rgba(170, 198, 255, 0.16);
}

.content-shell .content-side .page-panel h2,
.content-shell .content-side .page-panel h3,
.content-shell .content-side .page-panel strong {
  color: #eef4ff;
}

.content-shell .content-side .page-panel p,
.content-shell .content-side .page-panel li {
  color: #c5d5f7;
}

.content-shell .mini-grid,
.content-shell .feature-list,
.content-shell .step-list,
.content-shell .faq-list {
  gap: 12px;
}

.content-shell .mini-card {
  position: relative;
  border: 1px solid rgba(79, 119, 204, 0.24);
  background: linear-gradient(160deg, rgba(252, 254, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
  padding: 13px 14px 13px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.content-shell .mini-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2f6bff 0%, #58d9ff 100%);
}

.content-shell .content-side .mini-card {
  border-color: rgba(130, 167, 246, 0.34);
  background: linear-gradient(160deg, rgba(11, 25, 55, 0.9) 0%, rgba(12, 31, 67, 0.9) 100%);
}

.content-shell .content-side .mini-card strong {
  color: #eef4ff;
}

.content-shell .content-side .mini-card span {
  color: #c4d5f8;
}

.content-shell .feature-item,
.content-shell .step-item {
  padding: 12px 13px;
  border: 1px solid rgba(92, 132, 219, 0.24);
  background: linear-gradient(160deg, rgba(252, 254, 255, 0.9) 0%, rgba(241, 248, 255, 0.95) 100%);
}

.content-shell .content-side .step-item,
.content-shell .content-side .feature-item {
  border-color: rgba(130, 167, 246, 0.34);
  background: linear-gradient(160deg, rgba(10, 22, 49, 0.72) 0%, rgba(12, 30, 65, 0.74) 100%);
}

.content-shell .feature-item p,
.content-shell .step-item p {
  margin: 0;
}

.content-shell .feature-dot {
  width: 11px;
  height: 11px;
  margin-top: 8px;
  background: linear-gradient(135deg, #2f6bff 0%, #58d9ff 100%);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

.content-shell .step-num {
  width: 34px;
  height: 34px;
  border-color: rgba(133, 170, 247, 0.48);
  color: #eaf1ff;
  background: linear-gradient(140deg, #2554ca 0%, #2f6bff 52%, #2f8dff 100%);
  box-shadow: 0 10px 22px rgba(14, 41, 100, 0.35);
  font-size: 12px;
}

.content-shell .faq-list details {
  border: 1px solid rgba(94, 133, 218, 0.24);
  background: linear-gradient(160deg, rgba(250, 253, 255, 0.96) 0%, rgba(238, 246, 255, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.content-shell .faq-list details[open] {
  border-color: rgba(82, 132, 236, 0.42);
  box-shadow: 0 14px 28px rgba(18, 42, 96, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.content-shell .faq-list summary {
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: #11254e;
}

.content-shell .faq-list summary::-webkit-details-marker {
  display: none;
}

.content-shell .faq-list summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: #2f6bff;
  font: 700 20px/1 var(--font-display);
}

.content-shell .faq-list details[open] summary::after {
  content: '-';
}

.content-shell .faq-list details p {
  margin-top: 9px;
  color: #2b426f;
}

.content-shell .content-side .faq-list details {
  border-color: rgba(130, 167, 246, 0.34);
  background: linear-gradient(160deg, rgba(10, 23, 49, 0.78) 0%, rgba(12, 30, 65, 0.8) 100%);
}

.content-shell .content-side .faq-list summary {
  color: #edf3ff;
}

.content-shell .content-side .faq-list summary::after {
  color: #58d9ff;
}

.content-shell .content-side .faq-list details p {
  color: #c5d5f7;
}

.service-row {
  border: 1px solid rgba(44, 59, 105, 0.18);
  background: #fff;
  padding: clamp(16px, 2.4vw, 24px);
}

.service-row h2 {
  font-size: clamp(26px, 3.5vw, 44px);
}

.service-row p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.service-row-media {
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(44, 59, 105, 0.2);
}

.service-row-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.location-hero {
  background: linear-gradient(170deg, #060d1d 0%, #0a1630 52%, #071126 100%);
  border-top: 1px solid rgba(123, 167, 255, 0.18);
}

.location-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 3.2vw, 42px);
  align-items: center;
}

.location-hero .section-kicker {
  color: #6fe1ff;
}

.location-hero h1 {
  color: #f2f7ff;
  max-width: 14.2ch;
}

.location-hero .section-sub {
  color: #bfcceb;
}

.location-hero-pills span {
  background: rgba(12, 28, 60, 0.72);
  border-color: rgba(129, 163, 240, 0.28);
  color: #d7e4ff;
}

.location-hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(125, 159, 232, 0.42);
  box-shadow: 0 34px 80px rgba(1, 8, 24, 0.54);
}

.location-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.location-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.06) 0%, rgba(4, 10, 22, 0.78) 100%);
}

.location-hero-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 13px 14px;
  border: 1px solid rgba(157, 187, 248, 0.38);
  background: rgba(6, 16, 36, 0.82);
  display: grid;
  gap: 4px;
}

.location-hero-badge strong {
  color: #f0f6ff;
  font-size: 18px;
}

.location-hero-badge span {
  color: #bdd0f5;
  font-size: 13px;
}

.location-seo-section {
  background: linear-gradient(180deg, #071126 0%, #0a1733 100%);
}

.location-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.location-copy-card {
  border: 1px solid rgba(124, 154, 224, 0.32);
  background: linear-gradient(160deg, rgba(13, 27, 56, 0.94) 0%, rgba(9, 20, 42, 0.96) 100%);
  padding: clamp(18px, 2.6vw, 30px);
}

.location-copy-card h2 {
  margin-bottom: 14px;
}

.location-copy-card p {
  color: #c2d1f0;
}

.location-dark-pills span {
  background: rgba(7, 18, 40, 0.86);
  border-color: rgba(122, 157, 236, 0.26);
  color: #d4e2ff;
}

.location-visual-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.location-visual-card {
  height: clamp(210px, 17vw, 330px);
  min-height: 0;
  border: 1px solid rgba(124, 154, 224, 0.34);
  overflow: hidden;
  background: #0a1326;
}

.location-visual-card.is-small {
  min-height: 180px;
}

.location-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.location-points-card {
  border: 1px solid rgba(124, 154, 224, 0.34);
  background: rgba(7, 18, 43, 0.76);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.location-point-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(124, 154, 224, 0.24);
  background: rgba(6, 15, 35, 0.74);
  padding: 10px;
}

.location-point-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.location-point-icon .ico {
  width: 24px;
  height: 24px;
}

.location-point-item strong {
  font-size: 14px;
  color: #eef4ff;
}

.location-point-item p {
  color: #bdd0f5;
  font-size: 13px;
  margin: 0;
}

.location-market-section {
  background: linear-gradient(180deg, #f6f8ff 0%, #eef2ff 100%);
}

.location-niche-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-niche-card {
  border: 1px solid rgba(44, 59, 105, 0.2);
  background: #fff;
  padding: 18px;
}

.location-niche-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(55, 79, 140, 0.24);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.location-niche-icon .ico {
  width: 30px;
  height: 30px;
}

.location-niche-card h3 {
  margin-bottom: 8px;
  color: #142242;
  font-size: 22px;
}

.location-niche-card p {
  margin: 0;
  color: #4f628f;
}

.location-services-section {
  background: linear-gradient(180deg, #060f24 0%, #0a1531 100%);
}

.location-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(18px, 3.2vw, 34px);
  align-items: start;
}

.location-service-list {
  display: grid;
  gap: 10px;
}

.location-service-item {
  display: block;
  border: 1px solid rgba(124, 154, 224, 0.28);
  background: rgba(9, 20, 42, 0.76);
  padding: 14px;
}

.location-service-item strong {
  display: block;
  color: #eaf1ff;
  font-size: 17px;
  margin-bottom: 6px;
}

.location-service-item span {
  color: #c2d1f0;
  font-size: 14px;
}

.location-objective-card {
  border: 1px solid rgba(124, 154, 224, 0.32);
  background: rgba(10, 24, 52, 0.9);
  padding: clamp(18px, 2.4vw, 28px);
}

.location-objective-card h3 {
  color: #f1f6ff;
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.location-objective-card > p {
  color: #c2d1f0;
  margin-bottom: 12px;
}

@media (max-width: 1200px) {
  .location-niche-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .location-hero-grid,
  .location-seo-grid,
  .location-services-grid {
    grid-template-columns: 1fr;
  }

  .location-hero-media,
  .location-hero-media img {
    min-height: 320px;
  }

  .location-visual-card {
    height: clamp(220px, 52vw, 320px);
  }
}

@media (max-width: 720px) {
  .location-niche-grid {
    grid-template-columns: 1fr;
  }

  .location-objective-card h3 {
    font-size: 30px;
  }
}

.site-footer {
  background: #050913;
  border-top: 1px solid var(--line);
  padding: clamp(42px, 6vw, 72px) clamp(16px, 4vw, 40px) 20px;
}

@media (min-width: 992px) {
  .site-main > section,
  .site-main > .hero,
  .site-main > .page-hero {
    position: relative;
    z-index: 1;
  }

  body.has-scroll-overlays-home .pre-cta-hold {
    position: sticky;
    top: var(--hold-top, 94px);
    z-index: 75;
    padding-bottom: clamp(88px, 9vw, 146px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-home .testimonial-section.pre-cta-hold {
    padding-bottom: clamp(112px, 11vw, 170px);
  }

  body.has-scroll-overlays-home .pre-cta-nohold {
    padding-bottom: clamp(92px, 10vw, 160px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-home .pre-footer-hold {
    position: sticky;
    top: var(--hold-top, 94px);
    z-index: 95;
  }

  body.has-scroll-overlays-home .pre-footer-nohold {
    padding-bottom: clamp(28px, 3.2vw, 46px);
  }

  body.has-scroll-overlays-home .scroll-overlay-panel {
    position: relative;
    transform: translate3d(0, 120px, 0);
    opacity: 0.98;
    transition: transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.78s ease;
    will-change: transform, opacity;
  }

  body.has-scroll-overlays-home .scroll-overlay-panel.is-overlay-visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  body.has-scroll-overlays-home .cta-section.scroll-overlay-panel {
    margin-top: clamp(-20px, -1.5vw, -10px);
    z-index: 120;
    box-shadow: 0 -1px 0 rgba(173, 197, 248, 0.24), 0 -28px 62px rgba(8, 18, 39, 0.32);
  }

  body.has-scroll-overlays-home .cta-section.pre-footer-hold.scroll-overlay-panel {
    position: sticky;
    top: var(--hold-top, 94px);
    padding-bottom: clamp(64px, 7vw, 102px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-home .site-footer.scroll-overlay-panel {
    margin-top: clamp(-10px, -0.9vw, -4px);
    z-index: 130;
    box-shadow: 0 -1px 0 rgba(121, 157, 235, 0.24), 0 -36px 76px rgba(4, 10, 24, 0.52);
  }

  body.has-scroll-overlays-home .site-main > section {
    margin-bottom: 0;
  }

  body.has-scroll-overlays-inner .pre-cta-hold {
    position: sticky;
    top: var(--pre-cta-top, var(--hold-top, 94px));
    z-index: 75;
    padding-bottom: clamp(108px, 10.2vw, 170px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-inner .pre-cta-nohold {
    position: relative;
    top: auto;
    z-index: 75;
    padding-bottom: clamp(108px, 10.2vw, 170px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-inner .pre-footer-hold {
    position: sticky;
    top: var(--hold-top, 94px);
    z-index: 95;
  }

  body.has-scroll-overlays-inner .pre-footer-nohold {
    position: relative;
    padding-bottom: clamp(42px, 4.8vw, 74px);
  }

  body.has-scroll-overlays-inner .scroll-overlay-panel {
    position: relative;
    transform: translate3d(0, 118px, 0);
    opacity: 0.98;
    transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.72s ease;
    will-change: transform, opacity;
  }

  body.has-scroll-overlays-inner .scroll-overlay-panel.is-overlay-visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  body.has-scroll-overlays-inner .cta-section.scroll-overlay-panel {
    margin-top: 0;
    z-index: 120;
    box-shadow: 0 -1px 0 rgba(173, 197, 248, 0.24), 0 -24px 56px rgba(8, 18, 39, 0.28);
  }

  body.has-scroll-overlays-inner .cta-section.pre-footer-hold.scroll-overlay-panel {
    position: sticky;
    top: var(--hold-top, 94px);
    padding-bottom: clamp(54px, 6vw, 90px);
    margin-bottom: 0;
  }

  body.has-scroll-overlays-inner .cta-section.pre-footer-nohold.scroll-overlay-panel {
    padding-bottom: clamp(34px, 4.2vw, 62px);
  }

  body.has-scroll-overlays-inner .site-footer.scroll-overlay-panel {
    margin-top: 0;
    z-index: 130;
    box-shadow: 0 -1px 0 rgba(121, 157, 235, 0.24), 0 -30px 64px rgba(4, 10, 24, 0.5);
  }

  body.has-scroll-overlays-inner .site-main > section {
    margin-bottom: 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.footer-brand p,
.footer-bottom p,
.footer-col a,
.footer-contact a {
  color: var(--text-muted);
}

.footer-brand p {
  margin-top: 10px;
  max-width: 34ch;
  font-size: 14px;
}

.footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.footer-col h5 {
  font: 600 11px/1.4 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c6d6ff;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.footer-col a:hover,
.footer-contact a:hover {
  color: #e4edff;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(123, 167, 255, 0.2);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 180;
  display: none;
  padding: 14px 16px;
  background: linear-gradient(120deg, #2f6bff 0%, #1f4dbf 100%);
  border: 1px solid rgba(220, 231, 255, 0.45);
  color: #fff;
}

.port-lightbox {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 30px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.port-lightbox.is-active {
  opacity: 1;
}

.port-lightbox[hidden] {
  display: none;
}

.port-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.78);
  backdrop-filter: blur(8px);
}

.port-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #0d1324;
  border: 1px solid rgba(125, 159, 232, 0.36);
  box-shadow: 0 42px 120px rgba(2, 8, 24, 0.72), 0 14px 34px rgba(2, 8, 24, 0.42);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.32s ease;
}

.port-lightbox.is-active .port-lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.port-lightbox-media {
  min-height: 320px;
  background: #0a0f1d;
}

.port-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.port-lightbox-body {
  padding: clamp(16px, 2.4vw, 30px);
  background: linear-gradient(180deg, #101a30 0%, #0d1428 100%);
}

.port-lightbox-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 10px;
  color: #eff4ff;
}

.port-lightbox-body .section-kicker {
  color: #8eb8ff;
}

.port-lightbox-body p {
  color: #c5d3f3;
  line-height: 1.55;
}

.port-lightbox-text {
  color: #c5d3f3;
  margin-bottom: 16px;
}

.port-lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(146, 178, 245, 0.4);
  background: rgba(7, 13, 27, 0.7);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(2, 8, 24, 0.32);
}

@media (max-width: 1200px) {
  .issue-card {
    grid-column: span 6;
  }

  .service-card {
    grid-column: span 6;
  }

  .project-card {
    grid-column: span 6;
  }
}

@media (max-width: 992px) {
  .site-header,
  .hero,
  section,
  .site-footer,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .hdr {
    display: flex;
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height, 94px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    background: rgba(9, 14, 28, 0.98);
    padding: 12px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    font-size: 12px;
    padding: 11px 10px;
  }

  .nav-hover-line {
    display: none;
  }

  .nav-group-web {
    width: 100%;
  }

  .nav-link-parent {
    width: 100%;
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 6px 0 2px 10px;
    margin: 4px 0 2px 8px;
    border: 0;
    border-left: 1px solid rgba(123, 167, 255, 0.3);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-group-web[open] .nav-submenu {
    display: grid;
  }

  .nav-sublink {
    font-size: 12px;
    padding: 9px 10px;
  }

  .hdr-cta {
    display: none;
  }

  .hero-layout,
  .diff-layout,
  .seo-local-layout,
  .cta-layout,
  .page-hero-grid,
  .content-shell,
  .contact-grid-page,
  .service-row {
    grid-template-columns: 1fr;
  }

  .split-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note {
    position: static;
    margin-top: 10px;
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-screen,
  .hero-screen img {
    min-height: 300px;
  }

  .port-lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .portfolio-slide {
    width: min(52vw, 360px);
    min-width: 250px;
  }

  .portfolio-slider-controls {
    padding: 0 10px;
  }

  .portfolio-nav-btn {
    width: 44px;
    height: 44px;
  }

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

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

@media (max-width: 720px) {
  h1 {
    font-size: clamp(30px, 9vw, 46px);
  }

  h2,
  .page-panel h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

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

  .btn-prim,
  .btn-sec,
  .btn-wire {
    width: 100%;
  }

  .issue-card,
  .service-card,
  .project-card {
    grid-column: span 12;
  }

  .portfolio-slide {
    width: 78vw;
    min-width: 78vw;
  }

  .portfolio-slider-controls {
    position: static;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0;
    pointer-events: auto;
  }

  .portfolio-nav-btn {
    width: 42px;
    height: 42px;
  }

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

  .sticky-mobile-cta {
    display: inline-flex;
  }

  .logo-image {
    width: 170px;
  }

  .logo-image-footer {
    width: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .port-lightbox,
  .port-lightbox-dialog {
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-28px, 0, 0);
}

.reveal-right {
  transform: translate3d(28px, 0, 0);
}

.reveal-up {
  transform: translate3d(0, 20px, 0);
}

.is-visible {
  opacity: 1;
  transform: none;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.15s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 0.2s;
}

.stagger .reveal:nth-child(6) {
  transition-delay: 0.25s;
}

.hero-screen {
  animation: floatScreen 8s ease-in-out infinite;
}

@keyframes floatScreen {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-screen {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

