:root {
  --zec-bg: #020812;
  --zec-bg-2: #06111f;
  --zec-panel: #071523;
  --zec-panel-2: #0b1b31;
  --zec-text: #f5f8ff;
  --zec-muted: #93a7bf;
  --zec-blue: #1777ff;
  --zec-cyan: #45c7ff;
  --zec-green: #34d399;
  --zec-border: rgba(151, 190, 232, .16);
  --zec-border-strong: rgba(69, 199, 255, .34);
  --zec-shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --zec-radius: 24px;
  --zec-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--zec-text);
  background:
    radial-gradient(circle at 78% 5%, rgba(23, 119, 255, .15), transparent 30%),
    radial-gradient(circle at 17% 32%, rgba(69, 199, 255, .07), transparent 28%),
    linear-gradient(145deg, var(--zec-bg), var(--zec-bg-2) 55%, #020710);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: .33;
  background-image:
    linear-gradient(rgba(69, 199, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 199, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: -26rem;
  right: -18rem;
  width: 54rem;
  height: 54rem;
  pointer-events: none;
  border: 1px solid rgba(69, 199, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(23, 119, 255, .09), inset 0 0 140px rgba(69, 199, 255, .03);
}

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

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--zec-cyan);
  color: #02101c;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--zec-cyan);
  outline-offset: 4px;
}

.zec-shell {
  width: min(var(--zec-max), calc(100% - clamp(36px, 7vw, 112px)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(2, 8, 18, .92), rgba(2, 8, 18, .56), transparent);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--zec-border);
  background: rgba(3, 10, 20, .93);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px) saturate(1.2);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--zec-text);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .045em;
  text-decoration: none;
}

.brand-z {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(69, 199, 255, .5);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(69, 199, 255, .2), rgba(23, 119, 255, .05));
  color: var(--zec-cyan);
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 0 26px rgba(69, 199, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.brand-it {
  color: var(--zec-blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 35px);
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #a8bbd1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .105em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}

.nav-link::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--zec-cyan), var(--zec-green));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: #fff;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(330px, 86vw);
  padding: 10px;
  border: 1px solid var(--zec-border);
  border-radius: 17px;
  background: rgba(5, 16, 29, .97);
  box-shadow: var(--zec-shadow);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-link {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px;
  border-radius: 12px;
  color: #dcecff;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.dropdown-link:hover {
  background: rgba(69, 199, 255, .08);
  transform: translateX(3px);
}

.dropdown-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(69, 199, 255, .2);
  border-radius: 11px;
  background: rgba(69, 199, 255, .07);
  color: var(--zec-cyan);
  font-weight: 900;
}

.dropdown-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.dropdown-copy strong,
.dropdown-copy span {
  display: block;
}

.dropdown-copy strong {
  font-size: 13px;
}

.dropdown-copy span {
  margin-top: 1px;
  color: #788ea9;
  font-size: 11px;
}

.header-cta,
.zec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--zec-border-strong);
  border-radius: 12px;
  padding: 11px 18px;
  background: linear-gradient(135deg, rgba(23, 119, 255, .25), rgba(69, 199, 255, .1));
  color: #edfaff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(23, 119, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover,
.zec-button:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 199, 255, .8);
  box-shadow: 0 19px 46px rgba(23, 119, 255, .24), 0 0 32px rgba(69, 199, 255, .08);
}

.zec-button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--zec-blue), #22b8ff);
  color: #fff;
  box-shadow: 0 17px 42px rgba(23, 119, 255, .3), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.zec-button-ghost {
  border-color: rgba(151, 190, 232, .2);
  background: rgba(255, 255, 255, .035);
  color: #c6d5e7;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--zec-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  cursor: pointer;
}

.mobile-toggle-lines,
.mobile-toggle-lines::before,
.mobile-toggle-lines::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-toggle-lines {
  position: relative;
}

.mobile-toggle-lines::before,
.mobile-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle-lines::before { top: -6px; }
.mobile-toggle-lines::after { top: 6px; }

.site-header.is-open .mobile-toggle-lines { background: transparent; }
.site-header.is-open .mobile-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .mobile-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 780px;
  padding: 145px 0 76px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 16% -10% 0 43%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(23, 119, 255, .19), rgba(69, 199, 255, .05) 37%, transparent 68%);
  filter: blur(8px);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -17%;
  left: 37%;
  height: 46%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 199, 255, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 199, 255, .15) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom;
  mask-image: radial-gradient(ellipse, #000, transparent 73%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 650px;
}

.hero-eyebrow,
.section-kicker,
.subhero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--zec-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-kicker::before,
.subhero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--zec-green), var(--zec-cyan));
  box-shadow: 0 0 10px rgba(69, 199, 255, .6);
}

.home-hero h1,
.subhero h1 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(48px, 5.9vw, 91px);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .92;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-hero h1 .gradient-text,
.subhero h1 .gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #eefaff, #55cfff 40%, #1777ff 75%, #34d399 115%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 28px rgba(69, 199, 255, .1));
}

.hero-lead,
.subhero-lead {
  max-width: 570px;
  margin: 25px 0 0;
  color: #a7b8cc;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.7;
}

.hero-lead strong,
.subhero-lead strong {
  color: #edf6ff;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
  color: #7187a0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-check {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: 50%;
  color: var(--zec-green);
  font-size: 10px;
}

.hero-scene {
  position: relative;
  min-width: 0;
  height: 620px;
  perspective: 1150px;
  transform-style: preserve-3d;
}

.hero-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 52%;
  width: min(43vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(69, 199, 255, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-14deg);
  box-shadow: 0 0 90px rgba(23, 119, 255, .08), inset 0 0 90px rgba(69, 199, 255, .03);
}

.zec-webgl {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 34px 55px rgba(23, 119, 255, .2));
}

.zec-fallback {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  display: block;
  width: clamp(300px, 30vw, 470px);
  height: auto;
  opacity: .94;
  transform: translate(-50%, -50%) rotate(-2deg);
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, .42)) drop-shadow(0 0 38px rgba(69, 199, 255, .25));
  transition: opacity .5s ease;
}

.hero-scene[data-zec-static] .zec-webgl {
  display: none;
}

.hero-scene[data-zec-static] .zec-fallback {
  visibility: visible;
  opacity: .98;
  animation: zecImageFloat 7s ease-in-out infinite;
}

.webgl-ready .zec-fallback {
  visibility: hidden;
  opacity: 0;
}

.device-mock {
  position: absolute;
  z-index: 7;
  overflow: hidden;
  border: 1px solid rgba(184, 214, 246, .22);
  border-radius: 15px;
  background: rgba(6, 17, 31, .78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(13px);
  transform-style: preserve-3d;
}

.device-left {
  top: 13%;
  left: -3%;
  width: clamp(185px, 18vw, 265px);
  transform: rotateY(17deg) rotateZ(2deg) translateZ(35px);
  animation: deviceFloatLeft 7s ease-in-out infinite;
}

.device-right {
  top: 16%;
  right: -2%;
  width: clamp(195px, 18vw, 280px);
  transform: rotateY(-16deg) rotateZ(-2deg) translateZ(48px);
  animation: deviceFloatRight 7.6s ease-in-out -1.8s infinite;
}

.device-phone {
  right: 14%;
  bottom: 3%;
  width: clamp(92px, 8vw, 125px);
  border-radius: 22px;
  transform: rotateY(-10deg) rotateZ(3deg) translateZ(65px);
  animation: phoneFloat 6.5s ease-in-out -.8s infinite;
}

.mock-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(158, 194, 235, .1);
  background: rgba(0, 0, 0, .24);
}

.mock-dots {
  display: flex;
  gap: 4px;
}

.mock-dots i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5d718a;
}

.mock-url {
  color: #677d96;
  font-size: 7px;
  font-style: normal;
}

.mock-screen {
  position: relative;
  display: flex;
  min-height: 155px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 15px;
}

.mock-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 18, .94), rgba(2, 8, 18, .04) 74%);
}

.mock-handwerk {
  background-image:
    linear-gradient(to top, rgba(2, 9, 18, .92), rgba(2, 9, 18, .04) 78%),
    url("/assets/project-handwerk-v2.webp");
  background-size: cover;
  background-position: center;
}

.mock-handwerk::before {
  content: none;
}

.mock-samir {
  background-image:
    linear-gradient(to top, rgba(35, 6, 10, .94), rgba(35, 6, 10, .06) 74%),
    url("https://fleischerei-samir.at/assets/img/samir-laden.jpg");
  background-size: cover;
  background-position: center;
}

.mock-copy {
  position: relative;
  z-index: 2;
}

.mock-copy small,
.mock-copy strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
}

.mock-copy small {
  color: rgba(255, 255, 255, .62);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.mock-copy strong {
  margin-top: 4px;
  font-size: clamp(12px, 1.3vw, 17px);
  line-height: 1.08;
}

.phone-top {
  height: 18px;
  background: rgba(0, 0, 0, .32);
}

.phone-notch {
  width: 36%;
  height: 7px;
  margin: 5px auto 0;
  border-radius: 0 0 7px 7px;
  background: #000;
}

.phone-screen {
  min-height: 205px;
  padding: 26px 10px 12px;
  background:
    radial-gradient(circle at 60% 16%, rgba(52, 211, 153, .22), transparent 29%),
    linear-gradient(145deg, #071d25, #071321 62%);
}

.phone-screen strong {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.phone-screen span {
  display: block;
  margin-top: 7px;
  color: #8ca6bd;
  font-size: 7px;
  line-height: 1.45;
}

.phone-action {
  display: block;
  width: max-content;
  margin-top: 13px;
  border-radius: 4px;
  padding: 6px 7px;
  background: var(--zec-green);
  color: #04130f !important;
  font-size: 6px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--zec-border);
  border-bottom: 1px solid var(--zec-border);
  background: rgba(4, 13, 25, .72);
}

.signal-item {
  min-width: 0;
  padding: 23px clamp(16px, 2.2vw, 34px);
  border-right: 1px solid var(--zec-border);
}

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

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  color: #f1f8ff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.signal-item span {
  margin-top: 2px;
  overflow: hidden;
  color: #687f9a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.zec-section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.zec-section-soft {
  border-top: 1px solid rgba(151, 190, 232, .1);
  border-bottom: 1px solid rgba(151, 190, 232, .1);
  background: linear-gradient(180deg, rgba(9, 24, 43, .38), rgba(3, 9, 19, .2));
}

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

.section-heading h2 {
  max-width: 800px;
  margin: 0;
  color: #f6faff;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--zec-muted);
  font-size: 14px;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.06fr .97fr .97fr;
  gap: 16px;
}

.project-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--zec-border);
  border-radius: 22px;
  background: var(--zec-panel);
  color: #fff;
  text-decoration: none;
  transform: perspective(1000px) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  transform-style: preserve-3d;
  transition: border-color .22s ease, box-shadow .22s ease, transform .17s ease-out;
}

.project-card:hover {
  border-color: var(--zec-border-strong);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32), 0 0 42px rgba(23, 119, 255, .06);
}

.project-visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: transform .65s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

.project-card:hover .project-visual {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.project-samir {
  background-image:
    linear-gradient(to top, rgba(22, 4, 7, .96), rgba(22, 4, 7, .04) 72%),
    url("https://fleischerei-samir.at/assets/img/samir-laden.jpg");
  background-size: cover;
  background-position: center;
}

.project-handwerk {
  background-image:
    linear-gradient(to top, rgba(3, 10, 19, .98), rgba(3, 10, 19, .42) 42%, rgba(3, 10, 19, .04) 80%),
    url("/assets/project-handwerk-v2.webp");
  background-size: cover;
  background-position: center;
}

.project-handwerk::before {
  content: none;
}

.project-praxis {
  background-image:
    linear-gradient(to top, rgba(4, 14, 21, .98), rgba(4, 14, 21, .36) 44%, rgba(4, 14, 21, .02) 82%),
    url("/assets/project-praxis-v2.webp");
  background-size: cover;
  background-position: 60% center;
}

.project-praxis::before {
  content: none;
}

.project-pergola {
  background-image:
    linear-gradient(to top, rgba(3, 10, 19, .98), rgba(3, 10, 19, .34) 46%, rgba(3, 10, 19, .03) 82%),
    url("https://pergola-studio-entwurf.netlify.app/assets/images/hero-pergola.webp");
  background-size: cover;
  background-position: center;
}

.project-motion {
  background-image:
    linear-gradient(to top, rgba(3, 8, 18, .98), rgba(3, 8, 18, .28) 48%, rgba(3, 8, 18, .08)),
    radial-gradient(circle at 70% 38%, rgba(69, 199, 255, .28), transparent 34%),
    url("/assets/zec-glass-v2.webp"),
    linear-gradient(145deg, #071a32, #020814 72%);
  background-repeat: no-repeat;
  background-size: auto, auto, auto 93%, auto;
  background-position: center, center, 73% 41%, center;
}

.project-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  transform: translateZ(25px);
}

.project-meta,
.project-name {
  display: block;
}

.project-meta {
  margin-bottom: 8px;
  color: rgba(220, 238, 255, .66);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-name {
  color: #fff;
  font-size: clamp(22px, 2.7vw, 35px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.project-live-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  border: 1px solid rgba(69, 199, 255, .28);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(23, 119, 255, .13);
  color: #bfeaff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220, 238, 255, .25);
  border-radius: 50%;
  background: rgba(3, 12, 22, .4);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, background .22s ease;
}

.project-card:hover .project-arrow {
  background: rgba(23, 119, 255, .55);
  transform: rotate(45deg);
}

.example-label {
  display: inline-flex;
  margin-bottom: 9px;
  border: 1px solid rgba(52, 211, 153, .25);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(52, 211, 153, .08);
  color: #9ff0d2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

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

.service-card,
.feature-card,
.price-card,
.content-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--zec-border);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(12, 31, 54, .76), rgba(5, 15, 27, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.service-card {
  min-height: 305px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  transition: transform .23s ease, border-color .23s ease, background .23s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--zec-border-strong);
  background: linear-gradient(145deg, rgba(14, 38, 66, .9), rgba(5, 15, 27, .8));
}

.service-index {
  color: var(--zec-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.service-symbol {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  margin: 39px 0 23px;
  border: 1px solid rgba(69, 199, 255, .25);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(69, 199, 255, .14), rgba(23, 119, 255, .04));
  color: var(--zec-cyan);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(69, 199, 255, .07);
}

.service-symbol svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

.service-card h3,
.feature-card h3,
.price-card h3,
.content-panel h2,
.content-panel h3 {
  margin: 0;
  color: #f2f8ff;
  letter-spacing: -.025em;
}

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

.service-card p,
.feature-card p,
.price-card p,
.content-panel p {
  color: var(--zec-muted);
  line-height: 1.75;
}

.service-card p {
  margin: 12px 0 0;
  font-size: 13px;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: #d9efff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-glow {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(23, 119, 255, .2);
  filter: blur(48px);
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover .service-glow {
  opacity: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 220px;
  border-top: 1px solid var(--zec-border-strong);
  padding: 28px 20px 20px 0;
  counter-increment: process;
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 42px;
  color: var(--zec-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.process-step h3 {
  margin: 0;
  font-size: 20px;
}

.process-step p {
  margin: 11px 0 0;
  color: var(--zec-muted);
  font-size: 13px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 199, 255, .23);
  border-radius: 26px;
  padding: clamp(38px, 6vw, 72px);
  background:
    radial-gradient(circle at 85% 16%, rgba(52, 211, 153, .17), transparent 25%),
    radial-gradient(circle at 68% 55%, rgba(23, 119, 255, .28), transparent 35%),
    linear-gradient(135deg, rgba(10, 30, 53, .95), rgba(5, 15, 28, .96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.cta-band::after {
  content: "Z";
  position: absolute;
  top: 50%;
  right: 4%;
  color: rgba(185, 229, 255, .055);
  font-size: clamp(180px, 25vw, 360px);
  font-weight: 1000;
  line-height: .7;
  transform: translateY(-47%) rotate(-7deg);
}

.cta-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-copy span {
  color: var(--zec-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cta-copy h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .97;
  text-transform: uppercase;
}

.subhero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  padding: 170px 0 95px;
}

.subhero::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -10%;
  width: 62%;
  height: 88%;
  background: radial-gradient(circle, rgba(23, 119, 255, .19), rgba(69, 199, 255, .05) 36%, transparent 68%);
}

.subhero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(380px, .72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.subhero h1 {
  font-size: clamp(47px, 6vw, 86px);
}

.subhero-visual {
  position: relative;
  min-height: 390px;
}

.subhero .hero-scene {
  height: 480px;
}

.visual-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(33vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(69, 199, 255, .2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, .26), transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(69, 199, 255, .14), rgba(23, 119, 255, .05) 55%, transparent 72%);
  box-shadow: 0 0 90px rgba(23, 119, 255, .1), inset 0 0 75px rgba(69, 199, 255, .06);
  transform: translate(-50%, -50%);
  animation: visualOrb 8s ease-in-out infinite;
}

.visual-orb::before,
.visual-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-orb::before {
  inset: 28px;
  border: 1px dashed rgba(52, 211, 153, .24);
  animation: orbitSpin 20s linear infinite;
}

.visual-orb::after {
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--zec-green);
  box-shadow: 0 0 20px rgba(52, 211, 153, .9);
}

.visual-symbol {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(108px, 13vw, 172px);
  height: clamp(108px, 13vw, 172px);
  place-items: center;
  color: #7ee2ff;
  transform: translate(-50%, -50%) rotate(-6deg);
  filter: drop-shadow(0 0 35px rgba(69, 199, 255, .3));
}

.visual-symbol svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
  opacity: .86;
}

.visual-object {
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-rx: 0deg;
  --scene-ry: 0deg;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(380px, 41vw, 540px);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--scene-x)), calc(-50% + var(--scene-y)), 0) perspective(1000px) rotateX(var(--scene-rx)) rotateY(var(--scene-ry));
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform;
}

.visual-object img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, .38)) drop-shadow(0 0 24px rgba(23, 119, 255, .15));
  transform-origin: center;
  animation: visualObjectFloat 6.8s cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: transform;
}

.visual-object--webdesign,
.visual-object--projects {
  width: clamp(410px, 43vw, 560px);
}

.visual-object--shop {
  width: clamp(340px, 37vw, 480px);
}

.visual-object--computer {
  width: clamp(430px, 45vw, 590px);
}

.visual-object--contact {
  width: clamp(310px, 34vw, 440px);
}

.visual-object--pricing {
  width: clamp(360px, 39vw, 510px);
}

.visual-object--shop img,
.visual-object--contact img {
  animation-delay: -1.4s;
}

.visual-object--projects img,
.visual-object--pricing img {
  animation-delay: -2.8s;
}

.visual-chip {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  border: 1px solid rgba(177, 210, 244, .2);
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(7, 20, 35, .72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(15px);
  color: #dceeff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.visual-chip-one {
  top: 12%;
  right: 0;
  transform: rotate(3deg);
}

.visual-chip-two {
  bottom: 12%;
  left: 0;
  transform: rotate(-4deg);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
}

.content-panel {
  padding: clamp(25px, 4vw, 42px);
}

.content-panel h2 {
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.04;
}

.content-panel h3 {
  font-size: 22px;
}

.feature-card,
.price-card {
  padding: 27px;
}

.feature-number {
  display: block;
  margin-bottom: 32px;
  color: var(--zec-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.feature-card h3 {
  font-size: 21px;
}

.feature-card p {
  margin: 12px 0 0;
  font-size: 13px;
}

.check-list,
.price-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-list li {
  position: relative;
  padding-left: 29px;
  color: #b3c4d7;
  font-size: 14px;
}

.check-list li::before,
.price-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(52, 211, 153, .28);
  border-radius: 50%;
  color: var(--zec-green);
  font-size: 10px;
}

.price-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.price-card.is-highlighted {
  border-color: rgba(69, 199, 255, .38);
  background:
    radial-gradient(circle at 88% 0, rgba(23, 119, 255, .22), transparent 30%),
    linear-gradient(145deg, rgba(12, 34, 60, .92), rgba(5, 15, 27, .82));
  transform: translateY(-8px);
}

.price-label {
  color: var(--zec-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 18px;
  font-size: 25px;
}

.price-value {
  margin-top: 16px;
  color: #fff;
  font-size: 39px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.price-value small {
  color: var(--zec-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.price-list {
  margin-bottom: 28px;
}

.price-card .zec-button {
  width: 100%;
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--zec-border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(69, 199, 255, .045), rgba(255, 255, 255, .018));
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

a.contact-detail:hover {
  border-color: rgba(69, 199, 255, .34);
  background: linear-gradient(135deg, rgba(69, 199, 255, .09), rgba(23, 119, 255, .025));
  transform: translateX(3px);
}

.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(69, 199, 255, .16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(69, 199, 255, .15), rgba(23, 119, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 0 24px rgba(69, 199, 255, .045);
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  color: #edf7ff;
  font-size: 15px;
}

.contact-detail span {
  color: var(--zec-muted);
  font-size: 14px;
}

.contact-detail .contact-detail-icon {
  color: var(--zec-cyan);
}

.contact-detail-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: #cbd9e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--zec-border);
  border-radius: 13px;
  padding: 14px 15px;
  background: rgba(1, 7, 14, .5);
  color: #f3f8ff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--zec-cyan);
  box-shadow: 0 0 0 3px rgba(69, 199, 255, .1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #70869f;
  font-size: 11px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 930px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--zec-border);
  border-radius: 16px;
  background: rgba(8, 23, 40, .64);
}

.faq-item summary {
  position: relative;
  padding: 20px 52px 20px 20px;
  color: #eaf5ff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--zec-cyan);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--zec-muted);
}

.site-footer {
  border-top: 1px solid var(--zec-border);
  background: rgba(2, 8, 17, .75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 40px;
  padding: 66px 0 46px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--zec-muted);
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 17px;
  color: #eaf4ff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 10px;
  color: #7f94ad;
  font-size: 12px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--zec-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(151, 190, 232, .1);
  padding: 22px 0 28px;
  color: #5f7690;
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-legal a {
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes deviceFloatLeft {
  0%, 100% { transform: rotateY(17deg) rotateZ(2deg) translate3d(0, 0, 35px); }
  50% { transform: rotateY(13deg) rotateZ(0) translate3d(8px, -13px, 48px); }
}

@keyframes deviceFloatRight {
  0%, 100% { transform: rotateY(-16deg) rotateZ(-2deg) translate3d(0, 0, 48px); }
  50% { transform: rotateY(-12deg) rotateZ(0) translate3d(-7px, 14px, 62px); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-10deg) rotateZ(3deg) translate3d(0, 0, 65px); }
  50% { transform: rotateY(-7deg) rotateZ(1deg) translate3d(-6px, -11px, 78px); }
}

@keyframes zecImageFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg) translateY(0) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-.5deg) translateY(-8px) scale(1.015); }
}

@keyframes visualObjectFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateZ(-.7deg) scale(1); }
  50% { transform: translate3d(0, -11px, 14px) rotateZ(.7deg) scale(1.018); }
}

@keyframes visualOrb {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-11px); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

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

  .desktop-nav {
    gap: 16px;
  }

  .nav-link,
  .nav-dropdown-toggle,
  .header-cta {
    font-size: 9px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .93fr) minmax(470px, 1.07fr);
  }

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

  .project-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-panel {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border: 1px solid var(--zec-border);
    border-radius: 18px;
    padding: 11px;
    background: rgba(3, 12, 23, .98);
    box-shadow: var(--zec-shadow);
  }

  .site-header.is-open .mobile-panel {
    display: grid;
  }

  .mobile-panel a,
  .mobile-section-title {
    display: block;
    border-radius: 11px;
    padding: 11px 13px;
    color: #b8c9db;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-panel a:hover {
    background: rgba(69, 199, 255, .07);
    color: #fff;
  }

  .mobile-section-title {
    margin-top: 4px;
    color: var(--zec-cyan);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-cta {
    margin-top: 8px;
    border: 1px solid var(--zec-border-strong);
    background: linear-gradient(135deg, rgba(23, 119, 255, .22), rgba(69, 199, 255, .08));
  }

  .home-hero {
    padding-top: 130px;
  }

  .hero-layout,
  .subhero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-scene {
    height: 540px;
  }

  .subhero {
    padding-top: 145px;
  }

  .subhero-visual {
    min-height: 340px;
  }

  .visual-object,
  .visual-object--webdesign,
  .visual-object--projects,
  .visual-object--computer {
    width: min(82vw, 560px);
  }

  .visual-object--shop {
    width: min(70vw, 480px);
  }

  .visual-object--contact {
    width: min(67vw, 440px);
  }

  .visual-object--pricing {
    width: min(73vw, 500px);
  }

  .subhero .hero-scene {
    height: 430px;
  }

  .service-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-four {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 20px;
  }

  .cta-layout {
    display: block;
  }

  .cta-layout .zec-button {
    margin-top: 26px;
  }

  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .zec-shell {
    width: min(100% - 36px, var(--zec-max));
  }

  .site-brand {
    font-size: 18px;
  }

  .brand-z {
    width: 35px;
    height: 35px;
    font-size: 19px;
  }

  .home-hero {
    min-height: 810px;
    padding: 125px 0 50px;
    text-align: center;
  }

  .hero-eyebrow,
  .subhero-kicker {
    justify-content: center;
    font-size: 8px;
  }

  .home-hero h1,
  .subhero h1 {
    font-size: clamp(41px, 13vw, 60px);
  }

  .hero-lead,
  .subhero-lead {
    margin-inline: auto;
    font-size: 15px;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-actions .zec-button {
    flex: 1 1 155px;
    padding-inline: 11px;
  }

  .hero-trust {
    gap: 11px;
  }

  .trust-item:last-child {
    display: none;
  }

  .hero-scene {
    height: 400px;
    margin: 0 -14px;
  }

  .zec-fallback {
    width: 225px;
  }

  .device-mock {
    border-radius: 10px;
  }

  .device-left,
  .device-right {
    width: 108px;
  }

  .device-left {
    top: 1%;
    left: 0;
  }

  .device-right {
    top: 3%;
    right: 0;
  }

  .device-phone {
    right: 3%;
    bottom: 1%;
    width: 74px;
  }

  .mock-browser-bar {
    height: 20px;
  }

  .mock-screen {
    min-height: 84px;
    padding: 8px;
  }

  .mock-copy strong {
    font-size: 9px;
  }

  .mock-copy small,
  .mock-url {
    font-size: 5px;
  }

  .phone-screen {
    min-height: 145px;
    padding: 19px 8px 9px;
  }

  .phone-screen strong {
    font-size: 8px;
  }

  .phone-screen span {
    font-size: 6px;
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--zec-border);
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .project-grid,
  .service-grid,
  .feature-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-four {
    grid-template-columns: 1fr;
  }

  .project-card:first-child {
    grid-column: auto;
  }

  .project-card {
    min-height: 330px;
  }

  .service-card {
    min-height: 265px;
  }

  .process-step {
    min-height: 190px;
  }

  .price-card.is-highlighted {
    transform: none;
  }

  .subhero {
    min-height: 760px;
    padding: 125px 0 70px;
    text-align: center;
  }

  .subhero-visual {
    min-height: 300px;
  }

  .subhero .hero-scene {
    height: 330px;
  }

  .visual-orb {
    width: 280px;
  }

  .visual-object,
  .visual-object--webdesign,
  .visual-object--projects,
  .visual-object--computer {
    width: min(106vw, 500px);
  }

  .visual-object--shop {
    width: min(94vw, 440px);
  }

  .visual-object--contact {
    width: min(90vw, 420px);
  }

  .visual-object--pricing {
    width: min(98vw, 455px);
  }

  .visual-chip {
    min-width: 125px;
    padding: 10px;
    font-size: 8px;
  }

  .content-panel,
  .feature-card,
  .price-card {
    padding: 23px;
  }

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

  .form-field-full,
  .form-note {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-legal {
    margin-top: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Mobile app shell */
.mobile-app-nav{display:none}
@media(max-width:820px){
  body{padding-bottom:86px}
  .site-header{top:10px;width:calc(100% - 20px);margin:0 10px;border:1px solid rgba(145,205,255,.13);border-radius:20px;background:rgba(3,12,25,.82);box-shadow:0 14px 40px rgba(0,0,0,.28);backdrop-filter:blur(18px)}
  .site-nav{min-height:66px;padding-inline:15px}
  .site-brand{transform:scale(.92);transform-origin:left center}
  .header-cta{display:none}
  .mobile-toggle{border-radius:14px;background:rgba(255,255,255,.06)}
  .mobile-panel{top:75px;max-height:calc(100svh - 175px);overflow:auto;border:1px solid rgba(145,205,255,.14);border-radius:20px;background:rgba(4,13,27,.96);box-shadow:0 22px 55px rgba(0,0,0,.48);backdrop-filter:blur(22px)}
  .mobile-app-nav{position:fixed;z-index:1200;left:10px;right:10px;bottom:max(10px,env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(4,1fr);min-height:68px;padding:7px;border:1px solid rgba(145,205,255,.16);border-radius:22px;background:rgba(3,12,25,.91);box-shadow:0 18px 50px rgba(0,0,0,.48),inset 0 1px rgba(255,255,255,.05);backdrop-filter:blur(22px)}
  .mobile-app-nav a{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;border-radius:16px;color:#8095ad;font-size:.68rem;font-weight:700;text-decoration:none;transition:.2s}
  .mobile-app-nav svg{width:23px;height:23px;fill:currentColor}
  .mobile-app-nav a.is-active{color:#56e7ff;background:linear-gradient(145deg,rgba(38,116,255,.2),rgba(77,228,255,.07));text-shadow:0 0 16px rgba(85,231,255,.45)}
  .mobile-app-nav a.is-active:after{content:"";position:absolute;bottom:2px;width:18px;height:2px;border-radius:3px;background:#55e7ff;box-shadow:0 0 9px #55e7ff}
  .hero,.subhero,.config{padding-top:112px}
  .zec-section{padding-block:64px}
  .content-panel,.feature-card,.price-card,.project-card{border-radius:20px}
}
@media(max-width:380px){.mobile-app-nav{left:6px;right:6px}.mobile-app-nav a{font-size:.62rem}}

/* Direct inquiry forms */
.bot-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-form .lead-consent{display:flex;align-items:flex-start;gap:10px;color:#8fa6bf;font-size:.82rem}
.contact-form .lead-consent input{width:18px;height:18px;margin-top:2px;accent-color:#55e7ff}
.contact-form .lead-consent a{color:#70e7ff}
.form-note.is-success{color:#70efb0}
.form-note.is-error{color:#ffacb8}
.contact-form button:disabled{opacity:.68;cursor:wait}

/* Prevent mobile horizontal drift */
html,body{max-width:100%;overflow-x:clip}
@media(max-width:820px){
  .zec-shell,.site-nav,main,section,.mobile-app-nav{box-sizing:border-box;max-width:100%}
  .mobile-app-nav{width:auto;overflow:hidden}
  .mobile-app-nav a{min-width:0}
  .mobile-app-nav span{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
}
