:root {
  --bg: #050608;
  --panel: #101116;
  --panel-soft: #151720;
  --text: #cfd4dd;
  --muted: #aeb5c2;
  --soft: #7f8796;
  --line: rgba(238, 240, 245, 0.12);
  --gold: #d4b258;
  --silver: #d5d9e2;
  --red: #5f0d15;
  --deep-red: #090406;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section {
  scroll-margin-top: 96px;
}

#home {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(95, 13, 21, 0.18), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(212, 178, 88, 0.055), transparent 28%),
    linear-gradient(180deg, #07080b 0%, var(--bg) 42%, #030405 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

body::before {
  content: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
  padding: 0 4vw;
  background: rgba(5, 6, 8, 0.88);
  border-bottom: 0;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 178, 88, 0.22), rgba(255, 230, 158, 0.74), rgba(153, 103, 28, 0.28), transparent);
  box-shadow:
    0 -1px 0 rgba(255, 238, 185, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.8);
}

.brand, .nav-links, .header-phone, .mobile-menu-phone, .hero-actions, .area-points, .contact-details {
  display: flex;
  align-items: center;
}

.brand {
  order: 1;
  gap: 12px;
  color: var(--silver);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.nav-links {
  order: 2;
  margin-left: auto;
  gap: clamp(16px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
}

.header-phone,
.mobile-menu-phone {
  gap: 7px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.header-phone {
  order: 3;
  margin-left: clamp(8px, 1.5vw, 18px);
}

.header-phone svg,
.mobile-menu-phone svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-phone {
  display: none;
}

.nav-links a {
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  outline: 0;
}

.nav-toggle {
  order: 4;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 7px auto;
  background: var(--silver);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(420px, 0.55fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  min-height: calc(88vh - 76px);
  padding: clamp(48px, 6vw, 82px) 5vw clamp(54px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(74, 114, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(155, 95, 255, 0.14), transparent 28%),
    radial-gradient(circle at 14% 30%, rgba(212, 178, 88, 0.08), transparent 28%),
    linear-gradient(135deg, #050608 0%, #0b0d13 52%, #050608 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.9), rgba(0,0,0,0.5));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 7% 10% auto;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 178, 88, 0.13), transparent 68%);
  filter: blur(2px);
  z-index: -1;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(620px, 100%);
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 640px;
  margin: 0 0 20px;
  color: var(--silver);
  font-size: clamp(2.18rem, 4.15vw, 4.35rem);
  font-weight: 300;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  color: var(--silver);
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  font-weight: 300;
  line-height: 1.18;
}

h3 {
  color: var(--silver);
  font-size: 1rem;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 610px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.13rem);
}

.hero-actions {
  justify-content: flex-start;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--gold);
  color: #111111;
  border-color: var(--gold);
  font-weight: 400;
}

.button.ghost { color: var(--silver); }

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 178, 88, 0.28);
}

.hero-trust {
  margin: 18px 0 0;
  color: rgba(213, 217, 226, 0.76);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  min-height: min(590px, 60vh);
  border: 1px solid rgba(238, 240, 245, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 20%, rgba(212, 178, 88, 0.16), transparent 28%),
    radial-gradient(circle at 76% 24%, rgba(81, 128, 255, 0.22), transparent 32%),
    radial-gradient(circle at 72% 82%, rgba(154, 100, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(19, 22, 32, 0.92), rgba(7, 8, 12, 0.94));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  z-index: 2;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(213, 217, 226, 0.13);
  animation: slowSpin 18s linear infinite;
}

.hero-orbit {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px dashed rgba(212, 178, 88, 0.32);
  animation: slowSpin 26s linear infinite reverse;
}

.mockup,
.float-card,
.camera-badge {
  position: absolute;
  z-index: 3;
}

.desktop-mockup {
  left: 9%;
  top: 14%;
  width: 68%;
  min-height: 58%;
  border: 1px solid rgba(238, 240, 245, 0.14);
  border-radius: 20px;
  background: rgba(8, 10, 16, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: floatSoft 8s ease-in-out infinite;
}

.mockup-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(238, 240, 245, 0.1);
}

.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(213, 217, 226, 0.36);
}

.mockup-screen {
  padding: 24px;
}

.phone-lines span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(213, 217, 226, 0.18), rgba(212, 178, 88, 0.32), rgba(74, 114, 255, 0.2));
}

.mockup-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-bottom: 22px;
  color: rgba(243, 247, 255, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-nav span {
  margin-right: auto;
}

.mockup-nav i {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: rgba(213, 217, 226, 0.2);
}

.mockup-hero-panel {
  min-height: 138px;
  padding: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(238, 240, 245, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 22%, rgba(74, 114, 255, 0.36), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(212, 178, 88, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
}

.mockup-hero-panel span,
.phone-image span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-hero-panel strong,
.phone-image strong {
  display: block;
  max-width: 300px;
  margin-top: 8px;
  color: #f3f7ff;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.mockup-hero-panel small {
  display: block;
  margin-top: 12px;
  color: rgba(226, 233, 244, 0.72);
}

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

.mockup-grid span {
  display: block;
  min-height: 92px;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at 72% 20%, rgba(212,178,88,0.3), transparent 34%);
}

.mockup-grid b,
.mockup-grid em {
  display: block;
  font-style: normal;
}

.mockup-grid b {
  color: #f3f7ff;
  font-size: 0.92rem;
  font-weight: 500;
}

.mockup-grid em {
  margin-top: 8px;
  color: rgba(226, 233, 244, 0.64);
  font-size: 0.72rem;
  line-height: 1.35;
}

.mobile-mockup {
  right: 8%;
  bottom: 11%;
  width: 25%;
  min-width: 132px;
  aspect-ratio: 0.52;
  border: 1px solid rgba(238, 240, 245, 0.16);
  border-radius: 26px;
  padding: 16px 14px;
  background: rgba(8, 10, 16, 0.88);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.4);
  animation: floatSoft 8s ease-in-out infinite 0.7s;
}

.phone-speaker {
  width: 34px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(213, 217, 226, 0.28);
}

.phone-image {
  height: 42%;
  padding: 18px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 65% 30%, rgba(212, 178, 88, 0.5), transparent 30%),
    linear-gradient(145deg, rgba(74, 114, 255, 0.35), rgba(154, 100, 255, 0.18));
}

.phone-image strong {
  max-width: none;
  font-size: 1rem;
}

.phone-lines {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.phone-lines span {
  height: 8px;
}

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

.float-card {
  border: 1px solid rgba(238, 240, 245, 0.14);
  border-radius: 18px;
  background: rgba(12, 15, 24, 0.76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.seo-card {
  right: 6%;
  top: 12%;
  width: 176px;
  padding: 18px;
  animation: floatSoft 7s ease-in-out infinite 0.25s;
}

.float-card span {
  display: block;
  color: rgba(213, 217, 226, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.float-card strong {
  display: block;
  margin-top: 5px;
  color: var(--silver);
  font-size: 1.5rem;
  font-weight: 400;
}

.float-card small {
  display: block;
  margin-top: 5px;
  color: rgba(174, 181, 194, 0.78);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 48px;
  margin-top: 14px;
}

.mini-chart i {
  width: 100%;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--gold), rgba(74, 114, 255, 0.5));
  animation: dataPulse 2.8s ease-in-out infinite;
}

.mini-chart i:nth-child(1) { height: 34%; }
.mini-chart i:nth-child(2) { height: 58%; animation-delay: 0.2s; }
.mini-chart i:nth-child(3) { height: 76%; animation-delay: 0.4s; }
.mini-chart i:nth-child(4) { height: 100%; animation-delay: 0.6s; }

.ai-card {
  left: 6%;
  bottom: 12%;
  width: 214px;
  padding: 18px;
  animation: floatSoft 7.5s ease-in-out infinite 0.45s;
}

.ai-card strong {
  font-size: 1.02rem;
}

.camera-badge {
  right: 35%;
  bottom: 8%;
  width: 86px;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 240, 245, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(5, 6, 8, 0.98) 0 24%, rgba(213, 217, 226, 0.2) 25% 27%, rgba(12, 15, 24, 0.88) 28%),
    conic-gradient(from 20deg, rgba(212, 178, 88, 0.42), rgba(74, 114, 255, 0.24), rgba(154, 100, 255, 0.22), rgba(212, 178, 88, 0.42));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.camera-badge span {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(213, 217, 226, 0.26);
}

.hero {
  grid-template-columns: minmax(0, 0.45fr) minmax(420px, 0.55fr);
  justify-items: end;
  min-height: calc(86vh - 76px);
  padding: clamp(54px, 6vw, 90px) 5vw clamp(62px, 7vw, 104px);
  background:
    linear-gradient(90deg, rgba(3, 7, 14, 0.18) 0%, rgba(4, 11, 22, 0.08) 34%, rgba(4, 9, 17, 0.44) 58%, rgba(3, 6, 12, 0.76) 100%),
    linear-gradient(180deg, rgba(3, 7, 14, 0.08), rgba(3, 6, 12, 0.62)),
    url("images/hero-web-media-blue-code.png") center / cover no-repeat;
}

.hero::before {
  z-index: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(88, 150, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.1), rgba(5, 6, 8, 0.01) 42%, rgba(5, 6, 8, 0.42));
  mask-image: none;
}

.hero::after {
  inset: 18% 6% auto auto;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border-radius: 50%;
  border: 1px solid rgba(213, 217, 226, 0.12);
  background: radial-gradient(circle, rgba(69, 137, 255, 0.12), transparent 64%);
  animation: slowSpin 24s linear infinite;
  z-index: 1;
}

.hero-copy {
  grid-column: 2;
  width: min(650px, 100%);
  padding: clamp(24px, 3vw, 42px) 0;
  text-align: left;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 178, 88, 0.78), transparent);
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: rgba(235, 242, 255, 0.82);
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  color: #f3f7ff;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.48);
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(226, 233, 244, 0.82);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
}

.hero-actions {
  gap: 14px;
}

.hero .button {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
}

.hero .button.primary {
  background: linear-gradient(135deg, #d4b258, #f2d988);
  border-color: rgba(242, 217, 136, 0.86);
  box-shadow: 0 12px 34px rgba(212, 178, 88, 0.18);
}

.hero .button.ghost {
  background: rgba(8, 18, 34, 0.46);
  border-color: rgba(226, 233, 244, 0.24);
  color: #f3f7ff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-trust {
  margin-top: 18px;
  color: rgba(226, 233, 244, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: 64px 5vw;
  border-top: 1px solid var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 5vw 5vw;
  background: linear-gradient(180deg, transparent, rgba(9, 10, 15, 0.26));
}

.trust-strip article {
  min-height: 154px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(19, 13, 18, 0.82);
}

.trust-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact { margin-bottom: 28px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: transparent;
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--panel);
}

.service-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
}

.service-grid p, .about-copy p, .area-copy p, .contact-intro p {
  color: var(--muted);
}

.industries { background: #08090d; }

.ai-section {
  position: relative;
  overflow: hidden;
  background: #050608;
}

.ai-section::before {
  content: none;
}

.ai-section > * {
  position: relative;
  z-index: 1;
}

.ai-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
  gap: 5vw;
  align-items: center;
  margin-bottom: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.ai-hero h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 4.2vw, 4rem);
}

.ai-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ai-kicker {
  color: var(--gold) !important;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ai-console {
  padding: 20px;
  border: 1px solid rgba(212, 178, 88, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(9, 10, 15, 0.78);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.86;
}

.chat-row {
  max-width: 88%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--silver);
  font-size: 0.93rem;
}

.chat-row.customer {
  margin-left: auto;
  background: rgba(212, 178, 88, 0.14);
}

.chat-row.agent {
  background: rgba(246, 248, 252, 0.06);
}

.ai-definition,
.ai-scenario {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  align-items: start;
  margin: 32px 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.ai-definition h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.18;
}

.ai-definition p,
.ai-grid p {
  color: var(--muted);
}

.check-list,
.ai-grid ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.check-list li,
.ai-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.ai-grid li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: transparent;
}

.ai-grid article {
  min-height: 300px;
  padding: 24px;
  background: rgba(17, 19, 27, 0.94);
}

.ai-grid h3 {
  color: var(--gold);
  font-size: 1.12rem;
}

.ai-grid article p:last-child {
  margin-bottom: 0;
}

.ai-heading {
  margin-top: 58px;
}

.why-ai,
.ai-cta {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 7vw;
  align-items: start;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.why-ai p,
.ai-cta p {
  color: var(--muted);
}

.split-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.ai-scenario ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-scenario li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(9, 10, 15, 0.42);
}

.ai-scenario li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.ai-process {
  margin-top: 52px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-track span {
  min-height: 108px;
  padding: 18px;
  color: var(--silver);
  background: rgba(9, 10, 15, 0.72);
}

.process-track strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 400;
}

.process-track small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ai-cta {
  grid-template-columns: 1fr;
}

.ai-cta .contact-details {
  padding-top: 8px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span, .area-points span {
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  font-size: 0.92rem;
}

.area-points .primary-area {
  border-color: rgba(212, 178, 88, 0.72);
  color: #111111;
  background: var(--gold);
  font-weight: 400;
}

.signature-offers {
  background:
    radial-gradient(circle at 14% 20%, rgba(212, 178, 88, 0.11), transparent 28%),
    linear-gradient(135deg, #0d0e13, #07080b);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.offer-grid article {
  min-height: 280px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(19, 13, 18, 0.96);
}

.offer-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
}

.offer-grid p {
  color: var(--muted);
}

.offer-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 400;
}

.portfolio {
  position: relative;
  background:
    linear-gradient(rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.98)),
    #050608;
  padding-top: 28px;
}

.portfolio .section-heading {
  display: block;
  text-align: center;
}

.portfolio .section-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.portfolio .eyebrow {
  display: none;
}

.portfolio .eyebrow::after {
  content: none;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}

.gallery-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
  cursor: pointer;
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
  border-color: rgba(212, 178, 88, 0.7);
  color: #111111;
  background: var(--gold);
}

.gallery-frame {
  position: relative;
  height: clamp(480px, 72vh, 760px);
  min-height: 480px;
  padding: 0;
  background: #050609;
  border: 1px solid var(--line);
  overflow: hidden;
}

.gallery-track,
.gallery-track img {
  width: 100%;
  height: 100%;
}

.gallery-track img {
  object-fit: contain;
  background: #050609;
  opacity: 0;
  animation: slideIn 520ms ease forwards;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(9, 10, 15, 0.72);
  color: var(--gold);
  font-size: 2.3rem;
  font-weight: 300;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(215, 219, 228, 0.35);
  padding: 0;
  cursor: pointer;
}

.gallery-dot.active {
  background: var(--gold);
}

.about, .areas, .contact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 7vw;
  align-items: start;
}

.blog {
  background: #050608;
}

.featured-article {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 5vw;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.featured-article h3 {
  max-width: 520px;
  color: var(--silver);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.2;
}

.article-byline {
  color: var(--gold);
}

.article-body {
  columns: 2 280px;
  column-gap: 34px;
}

.article-body p,
.blog-grid p {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-top: 0;
  background: transparent;
}

.blog-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--panel);
}

.blog-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-button {
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font: inherit;
  font-weight: 400;
  cursor: pointer;
}

.article-modal {
  width: min(860px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 36px));
  padding: 34px;
  border: 1px solid var(--line);
  color: var(--silver);
  background: #08090d;
  box-shadow: var(--shadow);
}

.article-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.article-modal h2 {
  max-width: 720px;
  margin-bottom: 20px;
}

.modal-content {
  display: grid;
  gap: 12px;
}

.modal-content p {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--silver);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.map-embed {
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: none;
}

.contact {
  grid-template-columns: 0.78fr 0.86fr;
}

.contact-map {
  grid-column: 1 / -1;
  min-height: 300px;
}

.about-copy {
  display: grid;
  gap: 12px;
  font-size: 1.04rem;
}

.areas {
  align-items: center;
  background: #08090d;
}

.area-points {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-form h3 {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 1.25rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label, .contact-form legend {
  color: var(--silver);
  font-size: 0.92rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #0b0d13;
  color: var(--silver);
  padding: 13px 14px;
  font: inherit;
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.contact-form fieldset input {
  width: auto;
  margin: 0 8px 0 0;
}

.contact-details {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  color: var(--silver);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 5vw;
  color: var(--soft);
  border-top: 1px solid var(--line);
  background: transparent;
}

@keyframes heroFade {
  0%, 26% { opacity: 0.15; transform: scale(1); }
  34%, 100% { opacity: 0; transform: scale(1.05); }
}

@keyframes floatCode {
  from { transform: translateY(-12px); }
  to { transform: translateY(18px); }
}

@keyframes slideIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-header {
    gap: 14px;
  }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 5vw;
    background: rgba(9, 10, 15, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav-links .mobile-menu-phone {
    display: flex;
    margin-bottom: 6px;
  }
  .nav-links.open { display: flex; }
  .section-heading, .about, .areas, .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 56px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .ai-hero,
  .ai-definition,
  .ai-scenario,
  .why-ai {
    grid-template-columns: 1fr;
  }
  .ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; padding: 0 16px; gap: 10px; }
  .brand img { height: 56px; }
  .header-phone {
    order: 2;
    margin-left: auto;
    font-size: 0.78rem;
    gap: 5px;
  }
  .header-phone svg {
    width: 13px;
    height: 13px;
  }
  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-color: rgba(212, 178, 88, 0.42);
  }
  .nav-links {
    inset: 68px 0 auto 0;
  }
  .hero, .section { padding-left: 18px; padding-right: 18px; }
  .hero-lines { gap: 7px 12px; }
  .hero-subtitle { white-space: normal; font-size: 0.92rem; }
  .hero-actions, .site-footer { flex-direction: column; align-items: stretch; }
  .service-grid, .contact-form fieldset { grid-template-columns: 1fr; }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 18px 44px;
  }
  .trust-strip article,
  .offer-grid article {
    min-height: auto;
    padding: 22px;
  }
  .ai-grid, .ai-scenario ul, .process-track { grid-template-columns: 1fr; }
  .split-list { grid-template-columns: 1fr; }
  .ai-definition, .ai-scenario { padding: 22px; }
  .why-ai, .ai-cta { padding: 22px; }
  .ai-actions { flex-direction: column; align-items: stretch; }
  .gallery-frame { min-height: 360px; height: 62vh; }
  .gallery-tabs { justify-content: stretch; gap: 8px; margin-bottom: 18px; }
  .gallery-tabs button { flex: 1 1 calc(50% - 8px); padding: 0 10px; font-size: 0.92rem; }
  .gallery-arrow { width: 42px; height: 42px; font-size: 1.8rem; }
  .contact-form { padding: 20px; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 70px;
    background-position: 32% center;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(3, 6, 12, 0.86), rgba(3, 6, 12, 0.62));
  }
  .hero::after {
    right: -16%;
    top: 16%;
    width: 420px;
    height: 420px;
  }
  .hero-copy {
    grid-column: 1;
    width: min(650px, 100%);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 58px;
    background-position: 28% center;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.74)),
      linear-gradient(180deg, rgba(3, 6, 12, 0.18), rgba(3, 6, 12, 0.78));
  }
  .hero-copy::before {
    left: 0;
    top: -14px;
    bottom: auto;
    width: 78px;
    height: 1px;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .hero-subtitle {
    font-size: 0.96rem;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero-orbit,
  .mockup,
  .float-card,
  .mini-chart i,
  .code-wash,
  .hero-slider img {
    animation: none;
  }
}

.hero {
  grid-template-columns: minmax(0, 0.44fr) minmax(420px, 0.56fr);
  justify-items: stretch;
  gap: clamp(30px, 4vw, 70px);
  background:
    linear-gradient(90deg, rgba(3, 7, 14, 0.84) 0%, rgba(4, 11, 22, 0.62) 42%, rgba(4, 9, 17, 0.34) 68%, rgba(3, 6, 12, 0.66) 100%),
    linear-gradient(180deg, rgba(3, 7, 14, 0.08), rgba(3, 6, 12, 0.68)),
    url("images/hero-web-media-blue-code.png") 32% center / cover no-repeat;
}

.hero-copy {
  grid-column: 1;
  align-self: center;
  width: min(620px, 100%);
  padding: clamp(18px, 2vw, 34px) 0;
}

.hero-copy::before {
  left: -22px;
}

.hero-visual {
  grid-column: 2;
  align-self: center;
  justify-self: stretch;
  min-height: clamp(460px, 56vh, 620px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 16%, rgba(212, 178, 88, 0.16), transparent 30%),
    radial-gradient(circle at 75% 22%, rgba(58, 139, 255, 0.25), transparent 34%),
    radial-gradient(circle at 74% 82%, rgba(126, 66, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(12, 18, 31, 0.72), rgba(3, 7, 14, 0.7));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-visual::before {
  opacity: 0.44;
}

.desktop-mockup {
  left: 7%;
  top: 14%;
  width: 72%;
  min-height: 60%;
}

.mobile-mockup {
  right: 6%;
  bottom: 9%;
  width: 22%;
  min-width: 126px;
}

.seo-card {
  top: 9%;
  right: 5%;
  width: 154px;
  padding: 15px;
}

.ai-card {
  left: 5%;
  bottom: 8%;
  width: 196px;
  padding: 15px;
}

.camera-badge {
  right: 34%;
  bottom: 6%;
  width: 74px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    background-position: 32% center;
  }
  .hero-copy,
  .hero-visual {
    grid-column: 1;
  }
  .hero-copy {
    width: min(680px, 100%);
  }
  .hero-visual {
    width: 100%;
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 46px;
  }
  .hero h1 {
    font-size: clamp(1.82rem, 8.4vw, 2.55rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }
  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 0.92rem;
    line-height: 1.54;
  }
  .hero-trust {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .hero-visual {
    min-height: 380px;
    border-radius: 18px;
  }
  .desktop-mockup {
    left: 5%;
    top: 15%;
    width: 76%;
    min-height: 0;
  }
  .desktop-mockup .mockup-bar {
    padding: 10px 12px;
  }
  .desktop-mockup .mockup-screen {
    padding: 13px;
  }
  .desktop-mockup .mockup-nav {
    min-height: 20px;
    margin-bottom: 10px;
    font-size: 0.55rem;
  }
  .desktop-mockup .mockup-nav i {
    width: 16px;
  }
  .desktop-mockup .mockup-hero-panel {
    min-height: 76px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 12px;
  }
  .desktop-mockup .mockup-hero-panel span {
    font-size: 0.55rem;
  }
  .desktop-mockup .mockup-hero-panel strong {
    max-width: 180px;
    font-size: 0.92rem;
  }
  .desktop-mockup .mockup-hero-panel small {
    margin-top: 6px;
    font-size: 0.62rem;
  }
  .desktop-mockup .mockup-grid {
    gap: 7px;
  }
  .desktop-mockup .mockup-grid span {
    min-height: 52px;
    padding: 8px;
    border-radius: 10px;
  }
  .desktop-mockup .mockup-grid b {
    font-size: 0.68rem;
  }
  .desktop-mockup .mockup-grid em {
    margin-top: 3px;
    font-size: 0.55rem;
  }
  .mobile-mockup {
    right: 5%;
    bottom: 9%;
    min-width: 90px;
  }
  .seo-card {
    right: 4%;
    top: 7%;
    width: 116px;
    padding: 10px;
  }
  .ai-card {
    display: none;
  }
  .camera-badge {
    width: 62px;
    right: 34%;
  }
  .float-card strong {
    font-size: 1.02rem;
  }
}

/* Premium right-side hero composition only */
.hero-visual {
  overflow: visible;
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 26%, rgba(59, 146, 255, 0.24), transparent 22%),
    radial-gradient(circle at 70% 62%, rgba(143, 69, 255, 0.28), transparent 32%),
    radial-gradient(circle at 30% 82%, rgba(212, 178, 88, 0.1), transparent 24%);
  box-shadow: none;
}

.hero-visual::before {
  inset: 4% 2% 6%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 58% 48%, rgba(76, 149, 255, 0.17), transparent 35%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.7;
}

.hero-visual::after,
.hero-orbit {
  border-color: rgba(111, 159, 255, 0.34);
  box-shadow: 0 0 34px rgba(76, 149, 255, 0.18);
}

.hero-orbit {
  inset: 5% 7% 11% 14%;
  border-style: solid;
  border-color: rgba(96, 157, 255, 0.34) rgba(154, 92, 255, 0.3) transparent rgba(212, 178, 88, 0.18);
}

.desktop-mockup {
  left: 9%;
  top: 16%;
  width: 66%;
  min-height: 54%;
  border-color: rgba(244, 247, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(15, 25, 48, 0.92), rgba(4, 7, 16, 0.94));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(108, 165, 255, 0.1),
    0 0 46px rgba(75, 132, 255, 0.18);
}

.desktop-mockup::before {
  content: "";
  position: absolute;
  left: 36%;
  right: 36%;
  bottom: -42px;
  height: 42px;
  background: linear-gradient(180deg, rgba(199, 207, 226, 0.32), rgba(58, 66, 88, 0.06));
  clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%);
}

.desktop-mockup::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -54px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 145, 255, 0.7), rgba(165, 83, 255, 0.78), rgba(212, 178, 88, 0.42));
  filter: blur(0.2px);
  box-shadow: 0 12px 34px rgba(77, 133, 255, 0.22);
}

.mockup-screen {
  position: relative;
}

.mockup-screen::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 72px;
  width: 45%;
  height: 38%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(74, 156, 255, 0.34) 0 1px, transparent 2px 11px),
    linear-gradient(135deg, rgba(65, 154, 255, 0.3), rgba(141, 76, 255, 0.2));
  opacity: 0.56;
  pointer-events: none;
}

.mockup-hero-panel {
  background:
    radial-gradient(circle at 76% 30%, rgba(46, 164, 255, 0.42), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(146, 78, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(10, 19, 38, 0.98), rgba(7, 10, 20, 0.88));
}

.mockup-grid span {
  background:
    linear-gradient(145deg, rgba(17, 31, 58, 0.92), rgba(10, 13, 28, 0.84)),
    radial-gradient(circle at 20% 18%, rgba(74, 156, 255, 0.28), transparent 25%);
}

.mobile-mockup {
  right: 12%;
  bottom: 13%;
  width: 20%;
  border-color: rgba(243, 247, 255, 0.28);
  background: linear-gradient(160deg, rgba(10, 15, 30, 0.98), rgba(3, 5, 12, 0.96));
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(134, 86, 255, 0.22);
}

.phone-image {
  background:
    radial-gradient(circle at 74% 26%, rgba(212, 178, 88, 0.45), transparent 24%),
    linear-gradient(145deg, rgba(37, 142, 255, 0.52), rgba(128, 65, 255, 0.36));
}

.seo-card,
.ai-card {
  border-color: rgba(235, 240, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(22, 28, 52, 0.72), rgba(8, 10, 22, 0.68));
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.seo-card {
  right: 1%;
  top: 18%;
}

.ai-card {
  left: 55%;
  bottom: 0%;
}

.camera-badge {
  right: 9%;
  bottom: -1%;
  width: 102px;
  border-color: rgba(226, 233, 244, 0.24);
  background:
    radial-gradient(circle at center, #02040a 0 20%, rgba(92, 142, 255, 0.3) 21% 24%, rgba(13, 18, 32, 0.96) 25% 38%, rgba(212, 178, 88, 0.22) 39% 41%, rgba(11, 14, 28, 0.82) 42%),
    conic-gradient(from 30deg, rgba(66, 156, 255, 0.72), rgba(155, 78, 255, 0.64), rgba(212, 178, 88, 0.42), rgba(66, 156, 255, 0.72));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.46), 0 0 28px rgba(83, 154, 255, 0.24);
}

.camera-badge span {
  inset: 28px;
  box-shadow: inset 0 0 18px rgba(91, 148, 255, 0.24);
}

@media (max-width: 980px) {
  .desktop-mockup {
    left: 8%;
    top: 14%;
    width: 68%;
  }
  .mobile-mockup {
    right: 11%;
    bottom: 13%;
  }
  .seo-card {
    right: 3%;
    top: 15%;
  }
  .ai-card {
    left: 50%;
    bottom: 2%;
  }
  .camera-badge {
    right: 8%;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    overflow: hidden;
  }
  .desktop-mockup {
    left: 6%;
    top: 16%;
    width: 72%;
  }
  .desktop-mockup::before,
  .desktop-mockup::after {
    display: none;
  }
  .mobile-mockup {
    right: 6%;
    bottom: 10%;
    width: 25%;
  }
  .seo-card {
    right: 5%;
    top: 6%;
  }
  .camera-badge {
    right: 28%;
    bottom: 4%;
    width: 58px;
  }
  .camera-badge span {
    inset: 17px;
  }
}

/* Premium centered hero slider */
.hero.hero-slider-hero {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: min(820px, calc(88vh - 74px));
  padding: clamp(76px, 9vw, 118px) 5vw clamp(82px, 8vw, 108px);
  overflow: hidden;
  text-align: center;
  background: #020306;
}

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

.hero-slider-hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(42, 123, 255, 0.34), transparent 22%),
    radial-gradient(circle at 50% 58%, rgba(116, 76, 255, 0.18), transparent 33%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.44));
}

.hero-slider-hero::after {
  z-index: 2;
  opacity: 0.18;
  background:
    linear-gradient(rgba(132, 168, 222, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 168, 222, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, #000 0 48%, transparent 78%);
  animation: heroGridDrift 22s linear infinite;
}

.hero-bg-slider {
  position: absolute;
  inset: -2%;
  z-index: 0;
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  transition: transform 360ms ease-out;
}

.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1);
  animation: heroSlideFade 27s infinite ease-in-out;
}

.hero-bg-slider img:nth-child(1) {
  opacity: 1;
  object-position: 42% center;
}

.hero-bg-slider img:nth-child(2) {
  animation-delay: 9s;
  object-position: center center;
}

.hero-bg-slider img:nth-child(3) {
  animation-delay: 18s;
  object-position: center center;
}

.hero-code-layer {
  position: absolute;
  inset: 18% 0 auto;
  z-index: 3;
  display: grid;
  gap: 18px;
  justify-items: start;
  width: min(900px, 88vw);
  margin: 0 auto;
  color: rgba(217, 226, 241, 0.14);
  font-family: "Courier New", monospace;
  font-size: clamp(0.68rem, 0.72vw, 0.86rem);
  line-height: 1;
  text-align: left;
  transform: translateY(0);
  animation: heroCodeMove 20s linear infinite;
}

.hero-code-layer span:nth-child(even) {
  justify-self: end;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(122, 181, 255, 0.9);
  box-shadow: 0 0 18px rgba(76, 147, 255, 0.9), 0 0 34px rgba(136, 88, 255, 0.5);
  animation: heroParticleFloat 12s ease-in-out infinite;
}

.hero-particles i:nth-child(1) { left: 14%; top: 23%; animation-delay: 0s; }
.hero-particles i:nth-child(2) { left: 78%; top: 20%; animation-delay: 1.4s; }
.hero-particles i:nth-child(3) { left: 68%; top: 62%; animation-delay: 2.8s; }
.hero-particles i:nth-child(4) { left: 24%; top: 71%; animation-delay: 4.2s; }
.hero-particles i:nth-child(5) { left: 86%; top: 48%; animation-delay: 5.5s; background: rgba(212, 178, 88, 0.9); }
.hero-particles i:nth-child(6) { left: 42%; top: 18%; animation-delay: 6.8s; }
.hero-particles i:nth-child(7) { left: 54%; top: 78%; animation-delay: 8.1s; }
.hero-particles i:nth-child(8) { left: 10%; top: 54%; animation-delay: 9.4s; background: rgba(212, 178, 88, 0.78); }

.hero-slider-hero .hero-copy {
  position: relative;
  z-index: 4;
  width: min(1060px, 100%);
  max-width: 1060px;
  padding: 0;
  text-align: center;
}

.hero-slider-hero .hero-copy::before {
  display: none;
}

.hero-slider-hero .eyebrow {
  margin: 0 auto clamp(18px, 2vw, 26px);
  color: #d7b95a;
  font-size: clamp(0.86rem, 1.12vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(212, 178, 88, 0.26);
}

.hero-slider-hero h1 {
  margin: 0;
  color: #d8dce5;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    0 0 26px rgba(72, 148, 255, 0.36),
    0 0 64px rgba(85, 95, 255, 0.18),
    0 2px 22px rgba(0, 0, 0, 0.62);
}

.hero-services {
  display: grid;
  gap: 9px;
  margin: clamp(24px, 3vw, 34px) auto 0;
  color: rgba(226, 231, 242, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.42rem);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-services strong {
  color: rgba(238, 241, 248, 0.92);
  font-weight: 400;
}

.hero-slider-hero .hero-trust {
  margin: clamp(18px, 2.3vw, 28px) auto 0;
  color: rgba(222, 227, 238, 0.78);
  font-size: clamp(0.98rem, 1.24vw, 1.16rem);
  line-height: 1.6;
}

.hero-slider-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(26px, 3.2vw, 40px);
}

.hero-slider-hero .button {
  min-height: 50px;
  padding-inline: clamp(22px, 3vw, 34px);
}

.hero-slider-hero .button.primary {
  border-color: rgba(212, 178, 88, 0.85);
  background: linear-gradient(135deg, #f4d36a, #caa143);
  color: #080808;
  box-shadow: 0 16px 42px rgba(212, 178, 88, 0.22);
}

.hero-slider-hero .button.ghost {
  border-color: rgba(216, 220, 229, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: #edf1f7;
}

.hero-slider-hero .button:hover,
.hero-slider-hero .button:focus-visible {
  border-color: #e4c35f;
  box-shadow: 0 18px 46px rgba(212, 178, 88, 0.24);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  width: 34px;
  height: 34px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid rgba(212, 178, 88, 0.85);
  border-bottom: 1px solid rgba(212, 178, 88, 0.85);
  opacity: 0.82;
  animation: scrollCuePulse 2.8s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  inset: 12px;
  border-right: 1px solid rgba(212, 178, 88, 0.55);
  border-bottom: 1px solid rgba(212, 178, 88, 0.55);
}

@keyframes heroSlideFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5%,
  31% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.048);
  }
}

@keyframes heroGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 0, 74px 74px; }
}

@keyframes heroCodeMove {
  from { transform: translateY(0); }
  to { transform: translateY(-54px); }
}

@keyframes heroParticleFloat {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  50% {
    opacity: 0.95;
    transform: translate3d(14px, -22px, 0) scale(1.25);
  }
}

@keyframes scrollCuePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0) rotate(45deg);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) translateY(7px) rotate(45deg);
  }
}

@media (max-width: 1024px) {
  .hero.hero-slider-hero {
    min-height: min(760px, calc(82vh - 70px));
    padding-top: clamp(70px, 10vw, 96px);
  }

  .hero-slider-hero h1 {
    font-size: clamp(3rem, 8.2vw, 5.9rem);
    letter-spacing: 0.08em;
  }

  .hero-services {
    font-size: clamp(0.96rem, 2vw, 1.22rem);
  }
}

@media (max-width: 720px) {
  .hero.hero-slider-hero {
    min-height: min(700px, calc(78vh - 64px));
    padding: 70px 6vw 78px;
  }

  .hero-bg-slider {
    inset: -1%;
  }

  .hero-bg-slider img:nth-child(1) {
    object-position: 28% center;
  }

  .hero-slider-hero::before {
    background:
      radial-gradient(circle at 50% 36%, rgba(42, 123, 255, 0.3), transparent 30%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.44)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
  }

  .hero-code-layer {
    display: none;
  }

  .hero-slider-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: 0.06em;
  }

  .hero-services {
    gap: 7px;
    font-size: clamp(0.86rem, 3.4vw, 1.08rem);
    letter-spacing: 0.06em;
  }

  .hero-slider-hero .hero-actions {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .hero-slider-hero .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero.hero-slider-hero {
    min-height: min(660px, calc(76vh - 60px));
    padding-inline: 18px;
  }

  .hero-slider-hero .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero-slider-hero h1 {
    font-size: clamp(2.34rem, 13vw, 3.25rem);
    letter-spacing: 0.045em;
  }

  .hero-services {
    letter-spacing: 0.04em;
  }

  .scroll-cue {
    width: 24px;
    height: 24px;
    bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-slider img,
  .hero-slider-hero::after,
  .hero-code-layer,
  .hero-particles i,
  .scroll-cue {
    animation: none;
  }

  .hero-bg-slider img:first-child {
    opacity: 1;
  }
}

/* Final premium split hero: left message, right real-image slider */
.hero.hero-slider-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  justify-items: stretch;
  box-sizing: border-box;
  min-height: calc(100svh - 76px);
  padding: clamp(72px, 9vw, 96px) 5vw clamp(54px, 5vw, 66px);
  text-align: left;
}

.hero-slider-hero::before {
  background:
    radial-gradient(circle at 26% 36%, rgba(42, 123, 255, 0.28), transparent 28%),
    radial-gradient(circle at 72% 52%, rgba(101, 74, 220, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.56));
}

.hero-bg-slider {
  opacity: 0.24;
  filter: blur(1.5px) brightness(0.72) saturate(0.95);
}

.hero-slider-hero .hero-copy {
  width: min(720px, 100%);
  max-width: 720px;
  text-align: left;
}

.hero-slider-hero .eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: absolute;
  top: clamp(18px, 2.4vw, 30px);
  left: 50%;
  z-index: 6;
  width: min(760px, calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
  color: #d9dde6;
  font-size: clamp(1.12rem, 1.5vw, 1.46rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-align: center;
}

.hero-slider-hero .eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 178, 88, 0), rgba(212, 178, 88, 0.92));
  box-shadow: 0 0 16px rgba(212, 178, 88, 0.34);
}

.hero-slider-hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 4.34vw, 4.92rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
  text-transform: none;
}

.hero-slider-hero .hero-subtitle {
  max-width: 660px;
  margin-top: clamp(18px, 2.1vw, 26px);
  color: rgba(231, 235, 244, 0.84);
  font-size: clamp(0.98rem, 1.22vw, 1.16rem);
  line-height: 1.62;
}

.hero-slider-hero .hero-trust {
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: rgba(218, 224, 236, 0.72);
}

.hero-slider-hero .hero-actions {
  justify-content: flex-start;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.hero-code-layer {
  inset: 14% 5vw auto;
  width: min(1240px, 90vw);
  opacity: 0.42;
  color: rgba(217, 226, 241, 0.1);
}

.hero-media-slider {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 660px;
  justify-self: end;
  transform: translateY(-6px);
}

@media (min-width: 1101px) and (max-height: 820px) {
  .hero-slider-hero .eyebrow {
    top: 16px;
    font-size: clamp(0.98rem, 1.28vw, 1.2rem);
  }

  .hero-slider-hero h1 {
    font-size: clamp(2.45rem, 4.06vw, 4.36rem);
    line-height: 0.98;
  }

  .hero-slider-hero .hero-subtitle {
    margin-top: 16px;
    line-height: 1.52;
  }

  .hero-slider-hero .hero-actions {
    margin-top: 20px;
  }

  .hero-slider-hero .hero-trust {
    margin-top: 16px;
  }

  .hero-media-slider {
    max-width: 640px;
    transform: translateY(-12px);
  }
}

.hero-media-slider::before {
  content: "";
  position: absolute;
  inset: -12% -8% -14%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 34% 26%, rgba(71, 155, 255, 0.34), transparent 29%),
    radial-gradient(circle at 76% 66%, rgba(135, 78, 255, 0.24), transparent 36%);
  filter: blur(4px);
  opacity: 0.86;
  pointer-events: none;
}

.hero-media-frame {
  position: relative;
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
  border: 1px solid rgba(222, 229, 242, 0.18);
  border-radius: 24px;
  background: #05080f;
  box-shadow:
    0 32px 86px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(91, 150, 255, 0.1),
    0 0 52px rgba(70, 137, 255, 0.16);
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 35%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 46%);
  pointer-events: none;
}

.media-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  animation: mediaSlideFade 45s ease-in-out infinite;
}

.media-slide:nth-child(1) {
  opacity: 1;
  object-position: 42% center;
}

.media-slide:nth-child(2) {
  animation-delay: 9s;
}

.media-slide:nth-child(3) {
  animation-delay: 18s;
}

.media-slide:nth-child(4) {
  animation-delay: 27s;
  object-position: center center;
}

.media-slide:nth-child(5) {
  animation-delay: 36s;
  object-position: center center;
}

.media-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  min-height: 28px;
  color: #f1f4fb;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.media-caption span {
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  opacity: 0;
  animation: mediaCaptionFade 45s ease-in-out infinite;
}

.media-caption span:nth-child(1) { opacity: 1; }
.media-caption span:nth-child(2) { animation-delay: 9s; }
.media-caption span:nth-child(3) { animation-delay: 18s; }
.media-caption span:nth-child(4) { animation-delay: 27s; }
.media-caption span:nth-child(5) { animation-delay: 36s; }

.media-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.media-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(218, 224, 236, 0.34);
  animation: mediaDotFade 45s ease-in-out infinite;
}

.media-dots span:nth-child(1) { background: #d4b258; }
.media-dots span:nth-child(2) { animation-delay: 9s; }
.media-dots span:nth-child(3) { animation-delay: 18s; }
.media-dots span:nth-child(4) { animation-delay: 27s; }
.media-dots span:nth-child(5) { animation-delay: 36s; }

.hero-service-line {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  width: min(920px, calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
  color: rgba(222, 227, 238, 0.78);
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.hero-service-line::before,
.hero-service-line::after {
  content: "";
  display: inline-block;
  width: min(58px, 9vw);
  height: 1px;
  margin: 0 16px 0.28em;
  background: linear-gradient(90deg, transparent, rgba(212, 178, 88, 0.86), transparent);
}

.hero-slider-hero .scroll-cue {
  display: none;
}

@keyframes mediaSlideFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5%,
  24% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1.048);
  }
}

@keyframes mediaCaptionFade {
  0%,
  4% {
    opacity: 0;
    transform: translateY(8px);
  }
  8%,
  24% {
    opacity: 1;
    transform: translateY(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes mediaDotFade {
  0%,
  4% {
    background: rgba(218, 224, 236, 0.34);
    transform: scale(1);
  }
  8%,
  24% {
    background: #d4b258;
    transform: scale(1.38);
  }
  30%,
  100% {
    background: rgba(218, 224, 236, 0.34);
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .hero.hero-slider-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    min-height: auto;
    padding-top: clamp(56px, 8vw, 84px);
  }

  .hero-slider-hero .hero-copy {
    max-width: 820px;
    text-align: center;
    justify-self: center;
  }

  .hero-slider-hero .eyebrow {
    margin-inline: auto;
  }

  .hero-slider-hero .hero-actions {
    justify-content: center;
  }

  .hero-slider-hero .hero-trust {
    margin-inline: auto;
  }

  .hero-media-slider {
    max-width: 680px;
    justify-self: center;
    transform: translateY(-10px);
  }

  .hero-service-line {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: 3;
    width: min(720px, 100%);
    margin: -4px auto 0;
  }
}

@media (max-width: 720px) {
  .hero.hero-slider-hero {
    min-height: auto;
    padding: 42px 6vw 48px;
    gap: 24px;
  }

  .hero-slider-hero .eyebrow {
    font-size: clamp(0.9rem, 3.5vw, 1.08rem);
    letter-spacing: 0.16em;
  }

  .hero-slider-hero h1 {
    font-size: clamp(2.24rem, 9.2vw, 3.85rem);
    line-height: 1.02;
  }

  .hero-slider-hero .hero-subtitle {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-media-frame {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .hero-media-slider {
    transform: none;
  }

  .hero-media-slider::before {
    inset: -8%;
  }

  .media-caption {
    left: 16px;
    bottom: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .hero-service-line {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-service-line::before,
  .hero-service-line::after {
    width: 28px;
    margin-inline: 8px;
  }
}

@media (max-width: 420px) {
  .hero-slider-hero h1 {
    font-size: clamp(2.08rem, 9.8vw, 2.7rem);
  }

  .hero-media-frame {
    aspect-ratio: 16 / 11;
  }
}
