:root {
  --ink: #08080a;
  --graphite: #1d1b1b;
  --muted: #6d7480;
  --line: #e5e8ee;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --blue: #c4162a;
  --blue-deep: #8f0f1f;
  --champagne: #d7af55;
  --shadow: 0 24px 70px rgba(8, 8, 10, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 22, 42, 0.09), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(215, 175, 85, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 58%, #ffffff 100%);
}

.cube-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
}

.cube-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateY(var(--cube-scroll, 0px)) rotateX(var(--cube-tilt, 0deg));
  transition: transform 120ms linear;
}

.bg-brand-logo {
  --logo-cube-size: clamp(112px, 12vw, 190px);
  position: absolute;
  left: 7vw;
  top: 18vh;
  height: calc(var(--logo-cube-size) + 40px);
  gap: clamp(18px, 3vw, 46px);
  opacity: 0.16;
  transform: rotateX(8deg) rotateY(-10deg);
  filter: drop-shadow(0 34px 60px rgba(8, 8, 10, 0.22));
}

.bg-brand-logo .logo-face {
  font-size: clamp(1.05rem, 1.55vw, 1.7rem);
}

.bg-brand-logo .logo-workers .front {
  font-size: clamp(0.8rem, 1.1vw, 1.2rem);
}

.bg-brand-logo .logo-shadow {
  height: 16px;
  filter: blur(8px);
}

.brand-cube {
  --cube-size: clamp(98px, 9vw, 158px);
  --cube-half: calc(var(--cube-size) / 2);
  --cube-main: #111111;
  --cube-side: #1f1f1f;
  --cube-top: #343434;
  --cube-text: #ffffff;
  position: absolute;
  width: var(--cube-size);
  height: var(--cube-size);
  transform-style: preserve-3d;
  opacity: 0.32;
  filter: drop-shadow(0 30px 44px rgba(8, 8, 10, 0.28));
  animation: cube-spin 16s linear infinite;
}

.cube-design {
  left: 5vw;
  top: 15vh;
  --cube-main: #070709;
  --cube-side: #171719;
  --cube-top: #303035;
  --cube-text: #ffffff;
  animation-duration: 18s;
}

.cube-for {
  right: 10vw;
  top: 54vh;
  --cube-main: #c4162a;
  --cube-side: #8f0f1f;
  --cube-top: #e13a4e;
  --cube-text: #ffffff;
  animation-duration: 14s;
  animation-direction: reverse;
}

.cube-workers {
  left: 42vw;
  top: 104vh;
  --cube-main: #d7af55;
  --cube-side: #9d7629;
  --cube-top: #f1cf75;
  --cube-text: #08080a;
  animation-duration: 20s;
}

.cube-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--cube-main);
  color: var(--cube-text);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
  backface-visibility: hidden;
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.1), inset 0 -26px 36px rgba(0, 0, 0, 0.28);
}

.cube-front { transform: translateZ(var(--cube-half)); }
.cube-back {
  background: var(--cube-side);
  transform: rotateY(180deg) translateZ(var(--cube-half));
}
.cube-right {
  background: var(--cube-side);
  transform: rotateY(90deg) translateZ(var(--cube-half));
}
.cube-left {
  background: color-mix(in srgb, var(--cube-side) 78%, black);
  transform: rotateY(-90deg) translateZ(var(--cube-half));
}
.cube-top {
  background: var(--cube-top);
  transform: rotateX(90deg) translateZ(var(--cube-half));
}
.cube-bottom {
  background: color-mix(in srgb, var(--cube-side) 62%, black);
  transform: rotateX(-90deg) translateZ(var(--cube-half));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 232, 238, 0.82);
  backdrop-filter: blur(18px);
}

.brand img,
footer img {
  display: block;
  width: 210px;
  height: auto;
}

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

.brand-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--graphite);
  font-size: 0.84rem;
  line-height: 1.18;
  white-space: nowrap;
}

.brand-address strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.brand-logo {
  --logo-cube-size: 54px;
  --logo-cube-half: calc(var(--logo-cube-size) / 2);
  display: inline-flex;
  align-items: flex-end;
  gap: 9px;
  height: 74px;
  perspective: 700px;
}

.footer-logo {
  --logo-cube-size: 46px;
  height: 64px;
}

.logo-cube-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.logo-cube {
  position: relative;
  display: block;
  width: var(--logo-cube-size);
  height: var(--logo-cube-size);
  transform-style: preserve-3d;
  animation: logo-bounce 2.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

.logo-cube-wrap:nth-child(2) .logo-cube,
.logo-cube-wrap:nth-child(2) .logo-shadow {
  animation-delay: 0.18s;
}

.logo-cube-wrap:nth-child(3) .logo-cube,
.logo-cube-wrap:nth-child(3) .logo-shadow {
  animation-delay: 0.36s;
}

.logo-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backface-visibility: hidden;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.1), inset 0 -14px 18px rgba(0, 0, 0, 0.26);
}

.logo-design .front { color: #d7af55; background: #141414; transform: translateZ(var(--logo-cube-half)); }
.logo-design .back { background: #0c0c0c; transform: rotateY(180deg) translateZ(var(--logo-cube-half)); }
.logo-design .right { background: #181818; transform: rotateY(90deg) translateZ(var(--logo-cube-half)); }
.logo-design .left { background: #0e0e0e; transform: rotateY(-90deg) translateZ(var(--logo-cube-half)); }
.logo-design .top { background: #1c1c1c; transform: rotateX(90deg) translateZ(var(--logo-cube-half)); }
.logo-design .bottom { background: #080808; transform: rotateX(-90deg) translateZ(var(--logo-cube-half)); }

.logo-for .front { color: white; background: #c4162a; transform: translateZ(var(--logo-cube-half)); }
.logo-for .back { background: #8f0f1f; transform: rotateY(180deg) translateZ(var(--logo-cube-half)); }
.logo-for .right { background: #a82228; transform: rotateY(90deg) translateZ(var(--logo-cube-half)); }
.logo-for .left { background: #9c2024; transform: rotateY(-90deg) translateZ(var(--logo-cube-half)); }
.logo-for .top { background: #d33338; transform: rotateX(90deg) translateZ(var(--logo-cube-half)); }
.logo-for .bottom { background: #7a1518; transform: rotateX(-90deg) translateZ(var(--logo-cube-half)); }

.logo-workers .front { color: #141414; background: #d7af55; font-size: 0.52rem; transform: translateZ(var(--logo-cube-half)); }
.logo-workers .back { background: #a5842a; transform: rotateY(180deg) translateZ(var(--logo-cube-half)); }
.logo-workers .right { background: #bd9730; transform: rotateY(90deg) translateZ(var(--logo-cube-half)); }
.logo-workers .left { background: #b18d2c; transform: rotateY(-90deg) translateZ(var(--logo-cube-half)); }
.logo-workers .top { background: #e6c250; transform: rotateX(90deg) translateZ(var(--logo-cube-half)); }
.logo-workers .bottom { background: #8f7020; transform: rotateX(-90deg) translateZ(var(--logo-cube-half)); }

.logo-shadow {
  display: block;
  width: calc(var(--logo-cube-size) * 0.78);
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(4px);
  animation: logo-shadow-pulse 2.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--graphite);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a,
.header-action {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--blue);
}

.header-action {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 750;
}

.header-action:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 84px);
  overflow: hidden;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(48px, 6vw, 78px);
  background:
    radial-gradient(circle at 78% 30%, rgba(196, 22, 42, 0.18), transparent 31%),
    radial-gradient(circle at 52% 78%, rgba(215, 175, 85, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 19, 23, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 23, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 82%, transparent);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(196, 22, 42, 0.3);
}

.button.primary:hover {
  background: var(--blue-deep);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  perspective: 1200px;
}

.scene {
  position: relative;
  min-height: 610px;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms ease-out;
}

.halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.9;
  transform: translateZ(-140px);
}

.halo-blue {
  inset: 11% 8% auto auto;
  width: 280px;
  height: 280px;
  background: rgba(196, 22, 42, 0.2);
  animation: float-soft 8s ease-in-out infinite;
}

.halo-gold {
  left: 4%;
  bottom: 9%;
  width: 210px;
  height: 210px;
  background: rgba(215, 175, 85, 0.3);
  animation: float-soft 9s ease-in-out infinite reverse;
}

.device-stack {
  position: absolute;
  inset: 7% 2% 6%;
  transform-style: preserve-3d;
  animation: stage-drift 8s ease-in-out infinite;
}

.main-panel,
.panel-back,
.phone-card,
.orbit {
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.main-panel {
  position: absolute;
  inset: 16% 8% 13% 5%;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transform: translateZ(72px) rotateY(-12deg) rotateX(6deg);
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: #111317;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--champagne);
}

.panel-top span:nth-child(2) {
  background: #7faeff;
}

.panel-top span:nth-child(3) {
  background: #eef2f8;
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: center;
  min-height: 260px;
  padding: 30px;
}

.tiny-blue,
.headline-line,
.cta-line {
  display: block;
  border-radius: 999px;
}

.tiny-blue {
  width: 110px;
  height: 10px;
  margin-bottom: 18px;
  background: var(--blue);
}

.headline-line {
  width: 64%;
  height: 20px;
  margin-top: 12px;
  background: #111317;
}

.headline-line.wide {
  width: 90%;
  height: 34px;
}

.cta-line {
  width: 150px;
  height: 42px;
  margin-top: 28px;
  background: var(--blue);
}

.preview-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 22px;
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(196, 22, 42, 0.92), rgba(8, 8, 10, 0.98)),
    radial-gradient(circle at top left, rgba(215, 175, 85, 0.56), transparent 45%);
}

.preview-card strong {
  font-size: 2.4rem;
  line-height: 1;
}

.preview-card span {
  color: rgba(255, 255, 255, 0.75);
}

.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 30px 30px;
}

.tile-row span {
  display: block;
  height: 82px;
  border-radius: 8px;
  background: #f0f3f8;
}

.panel-back {
  position: absolute;
  right: 0;
  top: 2%;
  width: 44%;
  min-height: 230px;
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(17, 19, 23, 0.96), rgba(35, 38, 45, 0.88));
  transform: translateZ(-12px) translateX(24px) rotateY(-26deg) rotateX(9deg);
  animation: float-card 6.5s ease-in-out infinite;
}

.panel-label {
  display: block;
  margin-bottom: 24px;
  color: var(--champagne);
  font-weight: 850;
  text-transform: uppercase;
}

.chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 128px;
}

.chart i {
  flex: 1;
  min-width: 24px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--blue), rgba(196, 22, 42, 0.24));
}

.phone-card {
  position: absolute;
  left: 0;
  bottom: 2%;
  width: 168px;
  min-height: 292px;
  padding: 15px;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  transform: translateZ(132px) rotateY(18deg) rotateX(8deg);
  animation: float-phone 7s ease-in-out infinite;
}

.phone-top {
  width: 58px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #d8dde6;
}

.phone-post {
  height: 138px;
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(196, 22, 42, 0.8), rgba(8, 8, 10, 0.96)),
    radial-gradient(circle at 30% 24%, rgba(215, 175, 85, 0.55), transparent 38%);
}

.phone-lines span {
  display: block;
  height: 11px;
  margin-top: 13px;
  border-radius: 999px;
  background: #e6eaf1;
}

.phone-lines span:nth-child(2) {
  width: 78%;
}

.phone-lines span:nth-child(3) {
  width: 54%;
}

.orbit {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(17, 19, 23, 0.82);
  backdrop-filter: blur(14px);
}

.orbit span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.orbit strong {
  font-size: 1.08rem;
}

.orbit-one {
  top: 4%;
  left: 6%;
  animation: orbit-one 11s linear infinite;
}

.orbit-two {
  right: 7%;
  bottom: 8%;
  animation: orbit-two 12s linear infinite;
}

.orbit-three {
  top: 44%;
  right: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  animation: orbit-three 13s linear infinite;
}

.orbit-three span {
  color: var(--blue);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 20px;
  text-align: center;
  color: var(--graphite);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

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

.section,
.split-section,
.contact-section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(196, 22, 42, 0.08), rgba(215, 175, 85, 0.1));
  transition: opacity 220ms ease;
}

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

.service-card .icon,
.service-card h3,
.service-card p,
.service-example {
  position: relative;
  z-index: 2;
}

.service-example {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 22, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  cursor: zoom-in;
  box-shadow: 0 16px 34px rgba(8, 8, 10, 0.08);
}

.service-example img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease;
}

.service-example:hover img {
  transform: scale(1.04);
}

.service-example:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.service-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.service-motion span {
  position: absolute;
  display: block;
}

.service-web .service-motion {
  background-image:
    linear-gradient(rgba(196, 22, 42, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 22, 42, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: service-grid-drift 9s linear infinite;
}

.service-web .service-motion span {
  right: 22px;
  width: 42%;
  height: 10px;
  border-radius: 999px;
  background: rgba(196, 22, 42, 0.12);
  animation: web-lines 4s ease-in-out infinite;
}

.service-web .service-motion span:nth-child(1) { top: 34px; width: 30%; }
.service-web .service-motion span:nth-child(2) { top: 58px; animation-delay: 0.35s; }
.service-web .service-motion span:nth-child(3) { top: 82px; width: 24%; animation-delay: 0.7s; }
.service-web .service-motion span:nth-child(4) { right: 34%; bottom: 28px; width: 36%; animation-delay: 1s; }

.service-social .service-motion span {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(196, 22, 42, 0.2);
  border-radius: 8px;
  background: rgba(196, 22, 42, 0.07);
  animation: social-float 7s ease-in-out infinite;
}

.service-social .service-motion span:nth-child(1) { top: 22px; right: 44px; }
.service-social .service-motion span:nth-child(2) { top: 86px; right: 116px; background: rgba(215, 175, 85, 0.12); animation-delay: -1.4s; }
.service-social .service-motion span:nth-child(3) { right: 24px; bottom: 38px; animation-delay: -2.5s; }
.service-social .service-motion span:nth-child(4) { right: 148px; bottom: 18px; width: 44px; height: 44px; animation-delay: -3.6s; }

.service-brand .service-motion span {
  border: 1px solid rgba(215, 175, 85, 0.34);
  animation: brand-spin 10s linear infinite;
}

.service-brand .service-motion span:nth-child(1) {
  right: 46px;
  top: 38px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
}

.service-brand .service-motion span:nth-child(2) {
  right: 118px;
  bottom: 34px;
  width: 74px;
  height: 74px;
  background: rgba(196, 22, 42, 0.06);
  transform: rotate(45deg);
  animation-delay: -2s;
}

.service-brand .service-motion span:nth-child(3) {
  right: 24px;
  bottom: 42px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(215, 175, 85, 0.11);
  animation-delay: -4s;
}

.service-brand .service-motion span:nth-child(4) {
  right: 178px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(196, 22, 42, 0.08);
  animation-delay: -6s;
}

.service-marketing .service-motion {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(196, 22, 42, 0.14) 45% 46%, transparent 46%),
    linear-gradient(160deg, transparent 0 56%, rgba(215, 175, 85, 0.16) 56% 57%, transparent 57%);
}

.service-marketing .service-motion span {
  right: 26px;
  bottom: 26px;
  width: 22px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(196, 22, 42, 0.24), rgba(196, 22, 42, 0.08));
  transform-origin: bottom;
  animation: bar-grow 3.8s ease-in-out infinite;
}

.service-marketing .service-motion span:nth-child(1) { height: 54px; right: 150px; animation-delay: -0.4s; }
.service-marketing .service-motion span:nth-child(2) { height: 86px; right: 112px; animation-delay: -1.1s; }
.service-marketing .service-motion span:nth-child(3) { height: 66px; right: 74px; animation-delay: -1.8s; }
.service-marketing .service-motion span:nth-child(4) { height: 112px; right: 36px; background: linear-gradient(180deg, rgba(215, 175, 85, 0.34), rgba(215, 175, 85, 0.1)); animation-delay: -2.5s; }

.service-card:hover,
.package-card:hover {
  transform: translateY(-7px) rotateX(2deg);
  border-color: rgba(196, 22, 42, 0.28);
  box-shadow: 0 22px 52px rgba(17, 19, 23, 0.11);
}

.service-card p,
.package-card p,
.contact-section p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(196, 22, 42, 0.1);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 22, 42, 0.28), transparent 34%),
    var(--ink);
}

.split-section .eyebrow {
  color: var(--champagne);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.audience-list span {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.packages {
  background: var(--soft);
}

.package-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  min-height: 310px;
}

.package-card.featured {
  color: white;
  border-color: var(--blue);
  background:
    radial-gradient(circle at 88% 16%, rgba(215, 175, 85, 0.22), transparent 34%),
    linear-gradient(145deg, #c4162a 0%, #8f0f1f 58%, #160407 100%);
  box-shadow: var(--shadow);
}

.package-starter {
  color: white;
  border-color: #08080a;
  background:
    radial-gradient(circle at 84% 14%, rgba(196, 22, 42, 0.26), transparent 34%),
    linear-gradient(145deg, #08080a 0%, #171719 58%, #000000 100%);
  box-shadow: 0 24px 70px rgba(8, 8, 10, 0.18);
}

.package-starter p {
  color: rgba(255, 255, 255, 0.72);
}

.package-starter li::before {
  background: var(--champagne);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.package-business li::before {
  background: var(--champagne);
}

.package-growth {
  color: var(--ink);
  border-color: rgba(215, 175, 85, 0.72);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(145deg, #f1cf75 0%, #d7af55 52%, #9d7629 100%);
  box-shadow: 0 24px 70px rgba(157, 118, 41, 0.2);
}

.package-growth p {
  color: rgba(8, 8, 10, 0.68);
}

.package-growth li::before {
  background: var(--blue);
}

.badge {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 850;
}

.price-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 14px;
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid rgba(196, 22, 42, 0.24);
  border-radius: 999px;
  background: rgba(196, 22, 42, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.price-note:hover {
  transform: translateY(-1px);
}

.package-card.featured .price-note {
  color: var(--champagne);
  border-color: rgba(215, 175, 85, 0.38);
  background: rgba(215, 175, 85, 0.1);
}

.package-starter .price-note {
  color: var(--champagne);
  border-color: rgba(215, 175, 85, 0.38);
  background: rgba(215, 175, 85, 0.1);
}

.package-growth .price-note {
  color: #6f0915;
  border-color: rgba(111, 9, 21, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

li {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  color: inherit;
}

li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.portfolio-item {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: white;
  border-radius: 8px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.portfolio-item:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  box-shadow: var(--shadow);
}

.portfolio-item span {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-item p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.portfolio-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 24px;
}

.portfolio-shots img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(215, 175, 85, 0.28);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.shot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: zoom-in;
}

.shot-button:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  display: block;
  max-width: min(96vw, 1480px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(215, 175, 85, 0.36);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(8, 8, 10, 0.78);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.inquiry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-card {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(215, 175, 85, 0.34);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 22, 42, 0.34), transparent 34%),
    linear-gradient(145deg, #111114, #08080a);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.inquiry-card h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.inquiry-card label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.inquiry-card input,
.inquiry-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.inquiry-card textarea {
  resize: vertical;
}

.inquiry-card input:focus,
.inquiry-card textarea:focus {
  border-color: var(--champagne);
  outline: none;
}

.inquiry-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.inquiry-submit:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.restaurant-content,
.handwerker-content,
.personal-brand-content {
  justify-content: flex-end;
  min-height: 420px;
}

.personal-brand-content h3,
.personal-brand-content p,
.personal-brand-content span,
.handwerker-content h3,
.handwerker-content p,
.handwerker-content span,
.restaurant-content h3,
.restaurant-content p,
.restaurant-content span {
  position: relative;
  z-index: 2;
}

.portfolio-item.champagne p {
  color: rgba(8, 8, 10, 0.68);
}

.portfolio-item.blue {
  background:
    linear-gradient(160deg, rgba(196, 22, 42, 0.86), rgba(8, 8, 10, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.12) 34px 35px);
}

.portfolio-item.graphite {
  background:
    linear-gradient(160deg, rgba(17, 19, 23, 0.92), rgba(35, 38, 45, 0.9)),
    radial-gradient(circle at 22% 24%, rgba(215, 175, 85, 0.5), transparent 34%);
}

.portfolio-item.champagne {
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(215, 175, 85, 0.98), rgba(255, 255, 255, 0.76)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(17, 19, 23, 0.08) 18px 19px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  color: white;
  background:
    radial-gradient(circle at 78% 26%, rgba(196, 22, 42, 0.36), transparent 33%),
    linear-gradient(135deg, var(--ink), #2b2f37);
}

.contact-section .eyebrow {
  color: var(--champagne);
}

.contact-section p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 10px;
  min-width: min(100%, 330px);
  padding: 24px;
  border: 1px solid rgba(215, 175, 85, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.contact-details a {
  color: var(--champagne);
  font-weight: 900;
}

.contact-details span,
.contact-details address {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes stage-drift {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg) translateY(0);
  }
  50% {
    transform: rotateX(2.2deg) rotateY(-3.2deg) translateY(-12px);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: translateZ(-140px) translateY(0) scale(1);
  }
  50% {
    transform: translateZ(-140px) translateY(-18px) scale(1.06);
  }
}

@keyframes float-card {
  0%, 100% {
    transform: translateZ(-12px) translateX(24px) rotateY(-26deg) rotateX(9deg) translateY(0);
  }
  50% {
    transform: translateZ(-12px) translateX(24px) rotateY(-22deg) rotateX(7deg) translateY(-18px);
  }
}

@keyframes float-phone {
  0%, 100% {
    transform: translateZ(132px) rotateY(18deg) rotateX(8deg) translateY(0);
  }
  50% {
    transform: translateZ(132px) rotateY(12deg) rotateX(10deg) translateY(-18px);
  }
}

@keyframes orbit-one {
  from {
    transform: rotate(0deg) translateX(18px) rotate(0deg) translateZ(160px);
  }
  to {
    transform: rotate(360deg) translateX(18px) rotate(-360deg) translateZ(160px);
  }
}

@keyframes orbit-two {
  from {
    transform: rotate(360deg) translateX(22px) rotate(-360deg) translateZ(120px);
  }
  to {
    transform: rotate(0deg) translateX(22px) rotate(0deg) translateZ(120px);
  }
}

@keyframes orbit-three {
  from {
    transform: rotate(0deg) translateY(20px) rotate(0deg) translateZ(96px);
  }
  to {
    transform: rotate(360deg) translateY(20px) rotate(-360deg) translateZ(96px);
  }
}

@keyframes service-grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 34px 34px;
  }
}

@keyframes web-lines {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-20px);
    opacity: 0.95;
  }
}

@keyframes social-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(5deg);
  }
}

@keyframes brand-spin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.06);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes bar-grow {
  0%, 100% {
    transform: scaleY(0.65);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes cube-spin {
  from {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(300deg) rotateZ(45deg);
  }
}

@keyframes logo-bounce {
  0% {
    transform: translateY(0) rotateX(-18deg) rotateY(28deg);
  }
  35% {
    transform: translateY(-24px) rotateX(-18deg) rotateY(28deg);
  }
  55% {
    transform: translateY(-24px) rotateX(-18deg) rotateY(28deg);
  }
  72% {
    transform: translateY(0) rotateX(-18deg) rotateY(28deg) scale(1.08, 0.88);
  }
  82% {
    transform: translateY(-6px) rotateX(-18deg) rotateY(28deg) scale(0.97, 1.05);
  }
  100% {
    transform: translateY(0) rotateX(-18deg) rotateY(28deg);
  }
}

@keyframes logo-shadow-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  35% {
    transform: scale(0.55);
    opacity: 0.22;
  }
  55% {
    transform: scale(0.55);
    opacity: 0.22;
  }
  72% {
    transform: scale(1.12);
    opacity: 0.55;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-action {
    display: none;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .scene {
    min-height: 560px;
  }

  .service-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img,
  footer img {
    width: 190px;
  }

  .brand-logo {
    --logo-cube-size: 42px;
    height: 62px;
    gap: 7px;
  }

  .brand {
    align-items: flex-start;
    gap: 12px;
  }

  .brand-address {
    font-size: 0.76rem;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

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

  .button {
    width: 100%;
  }

  .scene {
    min-height: 500px;
  }

  .main-panel {
    inset: 15% 0 16% 0;
  }

  .panel-content {
    grid-template-columns: 1fr;
    min-height: 260px;
    padding: 24px;
  }

  .preview-card {
    min-height: 130px;
  }

  .tile-row,
  .panel-back,
  .orbit-three {
    display: none;
  }

  .phone-card {
    width: 132px;
    min-height: 232px;
  }

  .orbit {
    width: 108px;
    height: 108px;
  }

  .service-grid,
  .trust-strip,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-cube {
    opacity: 0.12;
  }
}

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