:root {
  --bg: #05070c;
  --panel: #080b12;
  --text: #f8fafc;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, .12);
  --violet: #6d38ff;
  --cyan: #34d7ff;
  --green: #72f7b3;
  --rose: #ff4fd8;
  --radius: 8px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 56, 255, .72) #05070c;
}
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: #05070c; }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(52, 215, 255, .46), rgba(109, 56, 255, .82));
  border: 2px solid #05070c;
  border-radius: 999px;
}
body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Aptos", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(52, 215, 255, .16), transparent 26rem),
    radial-gradient(circle at 83% 8%, rgba(109, 56, 255, .22), transparent 30rem),
    linear-gradient(180deg, #060912 0%, #020309 100%);
  overflow: clip;
  width: 100%;
  min-height: 100%;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
}
body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(52, 215, 255, .15), transparent 27rem),
    radial-gradient(circle at 78% 14%, rgba(109, 56, 255, .18), transparent 31rem),
    radial-gradient(circle at 48% 82%, rgba(255, 79, 216, .07), transparent 25rem);
  animation: pageAura 18s ease-in-out infinite alternate;
}
body::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  opacity: .16;
  transform: rotate(-3deg);
  animation: pageGridDrift 24s linear infinite;
}
body {
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: clip;
}
.view, #home {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(52, 215, 255, .16), transparent 62%);
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(52, 215, 255, .16), transparent 18rem),
    radial-gradient(circle at 50% 56%, rgba(109, 56, 255, .18), transparent 22rem),
    linear-gradient(145deg, #05070c, #080d17 56%, #020309);
  overflow: hidden;
  animation: introBackdrop 3.35s cubic-bezier(.76, 0, .24, 1) forwards;
}
.intro::before,
.intro::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  transform: translate(-50%, -50%) scale(.55);
  opacity: 0;
  animation: introRing 2.6s ease forwards;
}
.intro::after {
  width: 23rem;
  height: 23rem;
  border-color: rgba(52, 215, 255, .18);
  animation-delay: .22s;
}

.intro-logo {
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .22);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .2), transparent 32%),
    rgba(5, 7, 12, .44);
  box-shadow:
    0 0 3rem rgba(255, 255, 255, .13),
    0 0 5rem rgba(52, 215, 255, .14);
  transform: translate(var(--intro-x, 0), var(--intro-y, 0)) scale(var(--intro-scale, 1));
  transform-origin: center;
  animation: introLogoJourney 3.05s cubic-bezier(.76, 0, .24, 1) forwards;
}
.intro-logo::before,
.intro-logo::after {
  content: "";
  position: absolute;
  inset: -.7rem;
  border: 1px solid rgba(52, 215, 255, .24);
  opacity: 0;
  animation: introLogoOrbit 1.8s ease .42s forwards;
}
.intro-logo::after {
  inset: -1.15rem;
  border-color: rgba(255, 255, 255, .18);
  transform: rotate(45deg);
  animation-delay: .62s;
}

.intro-logo span, .brand-mark {
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff, #9ca3af 48%, #fff);
  -webkit-background-clip: text;
  color: transparent;
}

.intro-logo span { font-size: 4.6rem; }
.intro-logo i {
  position: absolute;
  inset: 1rem;
  border: 2px solid rgba(255, 255, 255, .7);
  clip-path: polygon(0 0, 100% 0, 100% 18%, 20% 18%, 20% 100%, 0 100%);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1rem, 5vw, 7rem);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
}
body.is-intro-running .site-header {
  opacity: 0;
  transform: translateY(-.85rem);
}
body.is-intro-complete .site-header {
  animation: headerSettle .7s cubic-bezier(.2, .8, .2, 1) both;
}
.site-header.is-hidden {
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
}
.site-header.is-quote-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-115%);
}

.brand, .header-actions { display: flex; align-items: center; }
.brand { gap: .9rem; min-width: 12rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 2px solid rgba(255, 255, 255, .88);
  font-size: 2rem;
  position: relative;
  animation: logoFloat 3.8s ease-in-out infinite;
  box-shadow: 0 0 1.5rem rgba(255, 255, 255, .08);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -.55rem;
  border: 1px solid rgba(52, 215, 255, .22);
  opacity: .7;
  animation: logoOrbit 5.5s linear infinite;
}
.brand strong { display: block; font-size: 1.15rem; }
.brand small { display: block; color: var(--muted); letter-spacing: .32rem; text-transform: uppercase; font-size: .62rem; }
.header-actions { gap: 1rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
  font-weight: 720;
  letter-spacing: .01em;
  text-shadow: 0 0 1.4rem rgba(0, 0, 0, .55);
}
.phone-icon {
  width: 1.1rem;
  height: 1.65rem;
  border: 2px solid currentColor;
  border-radius: .38rem;
  position: relative;
  opacity: .92;
}
.phone-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .14rem;
  width: .24rem;
  height: .24rem;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.lang-toggle, .menu-button, .float-contact, .quick-contact button, .menu-close {
  border: 0;
  color: #fff;
  cursor: pointer;
}
.lang-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}
.header-lang {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.16), transparent 38%),
    linear-gradient(135deg, rgba(52, 215, 255, .13), rgba(109, 56, 255, .2));
  color: #fff;
  font-weight: 820;
  letter-spacing: .04em;
  box-shadow: 0 0 1.4rem rgba(109, 56, 255, .2);
}
.mega-lang {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(109, 56, 255, .18);
}
.quote-btn, .primary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.65rem;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: .01em;
}
.quote-btn {
  min-height: 3.55rem;
  padding-inline: 1.85rem;
  font-size: 1.03rem;
}
.quote-btn, .primary-btn {
  background: linear-gradient(135deg, #7b3dff, #4b23c9);
  box-shadow: 0 0 2.3rem rgba(109, 56, 255, .38);
}
.ghost-btn { border: 1px solid var(--line); color: #d1d5db; }
.menu-button {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 35%),
    rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .42rem;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .25s ease, background .25s ease;
}
.menu-button:hover {
  transform: translateY(-2px);
  background: rgba(109, 56, 255, .22);
}
.menu-button span {
  display: block;
  width: 1.62rem;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, width .25s ease;
}
.menu-button span:nth-child(2) { width: 1.15rem; }
.menu-button:hover span:nth-child(2) { width: 1.62rem; }

.view {
  display: none;
  min-height: 100vh;
}
.view.is-active {
  display: block;
  animation: viewEnter .55s ease both;
}

.section-panel {
  position: relative;
  z-index: 2;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1rem, 6vw, 9rem);
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(20rem, .58fr);
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 9rem;
}
#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .72;
}
.hero-content { position: relative; max-width: 42rem; }
.eyebrow {
  color: #cbd5e1;
  font-size: clamp(.95rem, 1.2vw, 1.12rem);
  margin: 0 0 1.3rem;
  font-weight: 520;
}
h1, h2, h3, p { letter-spacing: 0; }
h1, h2, h3,
.mega-main a,
.service-pill h3,
.software-strip strong {
  font-family: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}
h1 {
  margin: 0;
  min-height: calc(clamp(2.55rem, 5.1vw, 5.55rem) * 2.12);
  font-size: clamp(2.55rem, 5.1vw, 5.55rem);
  line-height: 1.06;
  max-width: 11ch;
  text-wrap: balance;
  font-weight: 820;
}
.typewriter::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .82em;
  margin-left: .08em;
  background: #fff;
  transform: translateY(.08em);
  animation: caretBlink .8s steps(1) infinite;
}
.hero-copy {
  max-width: 36rem;
  color: #cbd5e1;
  line-height: 1.66;
  font-size: 1.02rem;
  margin: 1.55rem 0 1.9rem;
}
.holo-device {
  position: relative;
  min-height: 30rem;
  perspective: 900px;
}
.tablet {
  position: absolute;
  inset: 2rem 0 auto auto;
  width: min(31vw, 30rem);
  aspect-ratio: 1.34;
  padding: .65rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.38), rgba(255,255,255,.08) 18%, rgba(8,11,18,.9) 72%),
    #0b0f17;
  transform: rotateY(-18deg) rotateX(8deg);
  box-shadow: -1.6rem 1.8rem 5rem rgba(0, 0, 0, .34), 0 0 4rem rgba(52, 215, 255, .16);
  overflow: hidden;
}
.tablet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.28), transparent 28%, transparent 70%, rgba(52,215,255,.15));
  pointer-events: none;
}
.tablet-camera {
  position: absolute;
  top: .28rem;
  left: 50%;
  width: .38rem;
  height: .38rem;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  transform: translateX(-50%);
}
.tablet-screen {
  position: relative;
  height: 100%;
  border-radius: .85rem;
  background:
    radial-gradient(circle at 70% 22%, rgba(109,56,255,.2), transparent 28%),
    radial-gradient(circle at 24% 80%, rgba(52,215,255,.16), transparent 28%),
    #060913;
  overflow: hidden;
}
.erp-topbar {
  height: 2.45rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 0 .9rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.erp-topbar span {
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}
.erp-grid {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  height: calc(100% - 2.45rem);
}
.erp-sidebar {
  display: grid;
  align-content: start;
  gap: .8rem;
  padding: 1rem .9rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.erp-sidebar i, .erp-cards i {
  display: block;
  border-radius: .35rem;
  background: linear-gradient(90deg, rgba(52,215,255,.45), rgba(109,56,255,.28));
  animation: erpPulse 2.6s ease-in-out infinite;
}
.erp-sidebar i { height: .72rem; }
.erp-sidebar i:nth-child(2), .erp-sidebar i:nth-child(4) { width: 65%; }
.erp-main {
  position: relative;
  padding: 1rem;
}
.erp-chart {
  height: 7.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .55rem;
  background:
    linear-gradient(140deg, transparent 45%, rgba(52,215,255,.52) 46% 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 2rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 1.5rem);
  animation: chartDrift 4s ease-in-out infinite alternate;
}
.erp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-top: .8rem;
}
.erp-cards i { height: 3rem; animation-delay: calc(var(--i, 0) * .2s); }
.erp-cards i:nth-child(2) { --i: 1; }
.erp-cards i:nth-child(3) { --i: 2; }
.code-stream {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .85rem;
  display: grid;
  gap: .35rem;
}
.code-stream b {
  height: .34rem;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  transform-origin: left;
  animation: codeScan 2.8s linear infinite;
}
.code-stream b:nth-child(2) { width: 72%; animation-delay: .18s; }
.code-stream b:nth-child(3) { width: 88%; animation-delay: .36s; }
.code-stream b:nth-child(4) { width: 58%; animation-delay: .54s; }
.code-stream b:nth-child(5) { width: 78%; animation-delay: .72s; }
.erp-cursor {
  position: absolute;
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 1.2rem rgba(52,215,255,.8);
  animation: cursorTour 6s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 8.8rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(2, 3, 9, .45);
  color: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
.scroll-cue::before {
  content: "Aşağı kaydır";
  font-size: .78rem;
  font-weight: 650;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  bottom: -.7rem;
  width: 1px;
  height: 1rem;
  background: linear-gradient(rgba(255,255,255,.6), transparent);
}

.statement p {
  max-width: 78rem;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  line-height: 1.12;
}

.opportunity-software {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  overflow: hidden;
  background: transparent;
}
.opportunity-copy {
  max-width: 46rem;
}
.opportunity-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 6rem);
  line-height: 1;
}
.opportunity-copy p {
  color: #cbd5e1;
  line-height: 1.72;
  font-size: 1.08rem;
}
.opportunity-features {
  display: grid;
  gap: .75rem;
  margin: 1.8rem 0 2.2rem;
}
.opportunity-features span {
  width: fit-content;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #eef6ff;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}
.corporate-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #f8fafc;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-weight: 740;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.corporate-link-btn::after {
  content: "→";
  margin-left: .75rem;
  color: var(--cyan);
}
.corporate-link-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 215, 255, .42);
  background: rgba(255, 255, 255, .055);
}
.demo-link-btn::after {
  content: "↗";
}
.opportunity-visuals {
  position: relative;
  min-height: clamp(24rem, 42vw, 36rem);
  perspective: 1100px;
}
.device-frame {
  position: absolute;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform-style: preserve-3d;
}
.device-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.laptop-frame {
  width: min(43vw, 42rem);
  aspect-ratio: 16 / 10;
  right: 2rem;
  top: 3rem;
  transform: rotateY(-14deg) rotateX(6deg);
  filter: drop-shadow(0 2rem 4rem rgba(0,0,0,.34)) drop-shadow(0 0 3rem rgba(52,215,255,.12));
  animation: premiumDeviceFloat 5.8s ease-in-out infinite;
}
.mobile-frame {
  width: min(22vw, 17rem);
  aspect-ratio: 9 / 18;
  right: -1rem;
  bottom: .5rem;
  transform: rotateY(-10deg) rotateX(2deg) translateZ(3rem);
  filter: drop-shadow(0 2rem 3.2rem rgba(0,0,0,.38)) drop-shadow(0 0 2.8rem rgba(109,56,255,.18));
  animation: premiumDeviceFloat 5.8s ease-in-out .5s infinite;
}
.mobile-frame img {
  border-radius: 0;
  background: transparent;
}

.software-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(52,215,255,.14), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(109,56,255,.2), transparent 28rem),
    #05070c;
}
.software-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 6vw, 7rem);
}
.software-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(22rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 6vw, 8rem);
}
.software-page-hero h1 {
  max-width: 12ch;
  min-height: 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
}
.software-page-hero p {
  color: #cbd5e1;
  line-height: 1.72;
  font-size: 1.08rem;
}
.software-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.software-page-actions .corporate-link-btn {
  min-width: 9.5rem;
}
.software-page-devices {
  position: relative;
  min-height: clamp(26rem, 44vw, 38rem);
  perspective: 1200px;
}
.software-page-devices .laptop-frame {
  width: min(48vw, 46rem);
  right: 1rem;
}
.software-page-devices .mobile-frame {
  width: min(15vw, 11rem);
}
.software-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(1rem, 6vw, 8rem) clamp(5rem, 7vw, 8rem);
}
.software-page-grid article {
  min-height: 16rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.08);
}
.software-page-grid span {
  color: var(--cyan);
  font-weight: 800;
}
.software-page-grid h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.software-page-grid p {
  color: #cbd5e1;
  line-height: 1.7;
}

.discover-services {
  --service-shift: 0px;
  padding-top: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  background: transparent;
}
.discover-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .28;
  pointer-events: none;
}
.discover-services-head {
  position: relative;
  max-width: 64rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.discover-services-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 1.05;
}
.service-marquee {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 1rem 0 1.6rem;
  overflow: hidden;
  cursor: default;
}
.service-marquee::before,
.service-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 9vw, 8rem);
  pointer-events: none;
}
.service-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 7, 12, .98), rgba(5, 7, 12, 0));
}
.service-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 7, 12, .98), rgba(5, 7, 12, 0));
}
.service-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: clamp(2rem, 11vw, 10rem);
  transform: translate3d(var(--service-shift), 0, 0);
  transition: none;
  will-change: transform;
}
.service-pill {
  width: clamp(13.5rem, 22vw, 21rem);
  min-height: 14rem;
  display: grid;
  align-content: space-between;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.026)),
    rgba(5, 7, 12, .5);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.service-pill:hover {
  transform: translateY(-.45rem);
  border-color: rgba(52, 215, 255, .46);
  background:
    linear-gradient(145deg, rgba(52, 215, 255, .14), rgba(255, 79, 216, .07)),
    rgba(5, 7, 12, .58);
}
.service-pill.is-featured {
  cursor: pointer;
  border-color: rgba(114, 247, 179, .34);
  background:
    linear-gradient(145deg, rgba(114, 247, 179, .16), rgba(52, 215, 255, .08)),
    rgba(5, 7, 12, .55);
}
.service-pill span {
  color: #9ee7ff;
  font-size: .82rem;
  font-weight: 850;
}
.service-pill h3 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  line-height: 1.02;
}

.section-head, .system-copy { max-width: 58rem; }
.section-head h2, .system-copy h2, .process h2, .contact h2, .seo-cloud h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  line-height: 1.05;
}
.service-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 20rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  transition: transform .35s ease, background .35s ease;
}
.service-card:hover { transform: translateY(-.55rem); background: rgba(109, 56, 255, .14); }
.service-card span { color: var(--cyan); }
.service-card h3 { font-size: 1.55rem; margin: 3rem 0 1rem; }
.service-card p, .seo-cloud p { color: #cbd5e1; line-height: 1.75; }

.process { overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto 40%;
  height: 22rem;
  background: conic-gradient(from 40deg, var(--violet), var(--cyan), var(--green), var(--rose), var(--violet));
  filter: blur(90px);
  opacity: .16;
}
.metrics {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.metrics div { padding: 2rem 1rem 0 0; }
.metrics strong { display: block; font-size: clamp(3rem, 7vw, 7rem); }
.metrics span { color: var(--muted); }

.seo-cloud {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}
.seo-cloud p { max-width: 72rem; font-size: 1.08rem; }

.corporate-view {
  background: transparent;
}
.corporate-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(24rem, .62fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: 8rem;
}
.corporate-copy {
  max-width: 56rem;
}
.corporate-copy .back-home {
  margin-bottom: 2rem;
}
.corporate-copy h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5.2vw, 6.1rem);
  line-height: .98;
  text-wrap: balance;
}
.corporate-copy p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.76;
}
.corporate-orbit {
  position: relative;
  width: min(31rem, 78vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(52, 215, 255, .2), transparent 32%),
    radial-gradient(circle at 72% 24%, rgba(109, 56, 255, .22), transparent 28%);
  box-shadow: inset 0 0 4rem rgba(255,255,255,.04), 0 2rem 7rem rgba(0,0,0,.38);
  animation: orbitFloat 8s ease-in-out infinite;
}
.corporate-orbit::before,
.corporate-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: inherit;
  transform: rotate(28deg);
}
.corporate-orbit::after {
  inset: 28%;
  border-color: rgba(52, 215, 255, .28);
  transform: rotate(-24deg);
}
.corporate-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 5.5rem;
  min-height: 2.6rem;
  padding: .4rem .8rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(5, 7, 12, .68);
  color: #e5f7ff;
  font-weight: 800;
  backdrop-filter: blur(18px);
}
.corporate-orbit span:nth-child(1) { left: 50%; top: 3%; transform: translateX(-50%); }
.corporate-orbit span:nth-child(2) { right: -4%; top: 34%; }
.corporate-orbit span:nth-child(3) { right: 13%; bottom: 7%; }
.corporate-orbit span:nth-child(4) { left: 10%; bottom: 10%; }
.corporate-orbit span:nth-child(5) { left: -5%; top: 36%; }
.corporate-grid,
.difference-lanes,
.payment-steps {
  display: grid;
  gap: 1rem;
}
.corporate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.corporate-grid article,
.difference-lanes article,
.payment-steps article,
.payment-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  backdrop-filter: blur(20px);
  box-shadow: 0 1.4rem 5rem rgba(0,0,0,.22);
}
.corporate-grid article {
  min-height: 17rem;
  padding: 1.45rem;
}
.corporate-grid span,
.payment-steps span {
  color: var(--cyan);
  font-weight: 850;
}
.corporate-grid h3,
.payment-steps h3 {
  margin: 2.6rem 0 .8rem;
  font-size: 1.55rem;
}
.corporate-grid p,
.difference-lanes p,
.payment-steps p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.68;
}
.difference-stack {
  display: grid;
  gap: .9rem;
  transform: perspective(800px) rotateY(-12deg);
}
.difference-stack b {
  display: block;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(52, 215, 255, .13), rgba(109, 56, 255, .08)),
    rgba(5,7,12,.52);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.24);
}
.difference-stack b:nth-child(even) {
  transform: translateX(2.2rem);
}
.difference-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.difference-lanes article {
  min-height: 15rem;
  padding: 1.7rem;
}
.difference-lanes strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.04;
}
.payment-card {
  padding: 1.7rem;
  max-width: 32rem;
  justify-self: center;
  width: 100%;
  background:
    linear-gradient(145deg, rgba(114,247,179,.12), rgba(52,215,255,.05)),
    rgba(5,7,12,.58);
}
.payment-card span {
  color: #9ee7ff;
  font-weight: 850;
}
.payment-card strong {
  display: block;
  margin: 1rem 0 1.4rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}
.payment-card dl {
  display: grid;
  gap: .9rem;
  margin: 0;
}
.payment-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.payment-card dt {
  color: var(--muted);
}
.payment-card dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}
.payment-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 2rem;
}
.payment-steps article {
  min-height: 13rem;
  padding: 1.5rem;
}

.software-showcase {
  background: transparent;
}
.software-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(26rem, .9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 8rem;
}
.software-copy {
  max-width: 48rem;
}
.software-copy .back-home {
  margin-bottom: 2rem;
}
.software-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 6.4rem);
  line-height: .98;
  text-wrap: balance;
}
.software-copy p:not(.eyebrow) {
  color: #cbd5e1;
  max-width: 42rem;
  margin: 1.6rem 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}
.software-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.software-visual-stack {
  position: relative;
  min-height: clamp(31rem, 45vw, 43rem);
  perspective: 1200px;
}
.software-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .42);
}
.software-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.software-shot.is-main {
  inset: 2rem 0 auto auto;
  width: min(58vw, 48rem);
  aspect-ratio: 1.78;
  transform: rotateY(-14deg) rotateX(5deg);
}
.software-shot.is-login {
  left: 0;
  bottom: 1rem;
  width: min(31vw, 25rem);
  aspect-ratio: 1.9;
  transform: rotateY(16deg) rotateX(4deg);
  box-shadow: 0 1.4rem 5rem rgba(52, 215, 255, .18), 0 2rem 6rem rgba(0, 0, 0, .48);
}
.software-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 2rem;
}
.software-strip article,
.feature-matrix article,
.gift-grid article {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
  backdrop-filter: blur(18px);
}
.software-strip article {
  min-height: 13rem;
  display: grid;
  align-content: space-between;
  padding: 1.6rem;
}
.software-strip span {
  color: var(--cyan);
  font-weight: 850;
}
.software-strip strong {
  display: block;
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  line-height: 1.02;
}
.software-strip small {
  color: #cbd5e1;
  line-height: 1.55;
  font-size: .98rem;
}
.software-detail {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.software-detail h2,
.software-gifts h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 5.1rem);
  line-height: 1.04;
  text-wrap: balance;
}
.feature-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.feature-matrix article {
  padding: 1.35rem;
}
.feature-matrix h3 {
  margin: 0 0 .8rem;
  font-size: 1.25rem;
}
.feature-matrix p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.68;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gift-grid article {
  display: grid;
  gap: .8rem;
  min-height: 11rem;
  padding: 1.45rem;
}
.gift-grid b {
  font-size: 1.25rem;
}
.gift-grid span {
  color: #cbd5e1;
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 4rem;
  align-items: start;
}
.big-phone { display: inline-block; margin-top: 2rem; font-size: clamp(2rem, 5vw, 4.5rem); color: #fff; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .55rem; color: var(--muted); }
.contact-form input, .contact-form textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  outline: 0;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(52, 215, 255, .7); }
.contact-status {
  min-height: 1.3rem;
  color: #9ee7ff;
  font-weight: 750;
}

.quote-view {
  min-height: 100vh;
  padding-top: clamp(2rem, 4vw, 4rem);
}
.quote-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(52, 215, 255, .18), transparent 24rem),
    radial-gradient(circle at 80% 6%, rgba(109, 56, 255, .22), transparent 26rem),
    linear-gradient(145deg, #05070c, #09111b 52%, #05070c);
}
.quote-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.floating-brand {
  position: fixed;
  top: 2rem;
  left: clamp(1rem, 5vw, 6rem);
  z-index: 5;
}
.quote-back {
  position: fixed;
  z-index: 6;
  top: 2rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .22);
  transform: translateX(-50%);
  font-size: 2rem;
}
.quote-stage {
  width: min(1120px, calc(100vw - 2rem));
  min-height: 100vh;
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding-block: 6rem 3rem;
}
.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.quote-brand { min-width: auto; }
.quote-intro {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.quote-intro h1, .quote-intro h2 {
  margin: 0;
  min-height: 0;
  max-width: none;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 1.03;
}
.quote-grid {
  max-width: 1050px;
  margin: 3.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}
.quote-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3.4rem);
}
.quote-choice {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(5, 7, 12, .38);
  backdrop-filter: blur(22px);
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, .25);
  overflow: hidden;
  transition: transform .45s ease, opacity .35s ease, border-color .35s ease;
}
.quote-choice.is-muted {
  opacity: .48;
  transform: scale(.985);
}
.quote-choice.is-open {
  grid-column: 1 / -1;
  opacity: 1;
  transform: translateY(-.25rem);
  border-color: rgba(255, 255, 255, .28);
}
.quote-choice-button {
  width: 100%;
  min-height: 12rem;
  display: grid;
  place-items: center;
  gap: .65rem;
  padding: 2rem;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(109, 56, 255, .22), transparent 42%),
    transparent;
  cursor: pointer;
}
.quote-choice-button span {
  color: var(--cyan);
  font-weight: 850;
}
.quote-choice-button strong {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 760;
}
.quote-choice-button small {
  color: #9ee7ff;
  font-weight: 760;
}
.quote-expanded-form {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  max-height: 0;
  padding: 0 clamp(1.2rem, 3vw, 3rem);
  overflow: hidden;
  transition: max-height .8s cubic-bezier(.2, .9, .2, 1), opacity .4s ease, padding .55s ease;
}
.quote-choice.is-open .quote-expanded-form {
  max-height: 56rem;
  opacity: 1;
  padding-block: 0 clamp(1.5rem, 3vw, 3rem);
  animation: premiumFormIn .7s ease both;
}
.quote-expanded-form h2 {
  margin: 0 0 1.4rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
}
.premium-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.premium-form-grid label, .wide-label {
  display: grid;
  gap: .45rem;
  color: rgba(255, 255, 255, .68);
  font-weight: 650;
}
.wide-label { margin-top: 1.25rem; }
.premium-form-grid input, .wide-label textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 1rem 1.35rem;
  outline: 0;
}
.wide-label textarea {
  border-radius: 1rem;
  resize: vertical;
}
.quote-submit-btn {
  position: relative;
  min-width: 9.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(52, 215, 255, .18), transparent 34%),
    linear-gradient(135deg, #6d38ff, #4b23c9 52%, #1f8bff);
  box-shadow:
    0 1.2rem 3.2rem rgba(109, 56, 255, .34),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}
.quote-submit-btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}
.quote-submit-btn:hover::after { left: 115%; }
.quote-submit-btn:hover {
  border-color: rgba(158, 231, 255, .42);
  box-shadow:
    0 1.35rem 3.8rem rgba(52, 215, 255, .18),
    0 1rem 3rem rgba(109, 56, 255, .38),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}
.quote-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
}
.kvkk-check {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255, 255, 255, .62);
}
.kvkk-check input { width: 1.1rem; height: 1.1rem; }
.quote-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
}
.quote-card > span { color: var(--cyan); font-weight: 800; }
.quote-card h3 { margin: .7rem 0 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.quote-card p { margin: 0; color: #cbd5e1; line-height: 1.65; }
.quote-card label {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font-size: .95rem;
}
.quote-card input, .quote-card textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: .95rem 1rem;
  outline: 0;
}
.quote-card small { color: #9ee7ff; font-weight: 750; }
.references-stage {
  min-height: min(72vh, 52rem);
}
.references-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.references-placeholder article {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  padding: clamp(1.2rem, 3vw, 2rem);
}
.references-placeholder span {
  color: var(--cyan);
  font-weight: 900;
}
.references-placeholder strong {
  display: block;
  margin-top: .7rem;
  color: #fff;
  font-size: 1.35rem;
}
.references-placeholder p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.65;
}
.form-status {
  min-height: 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 1050px;
  color: #9ee7ff;
}
.quote-toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: clamp(1.2rem, 4vw, 2.2rem);
  width: min(520px, calc(100% - 2rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 1.4rem) scale(.98);
  transition: opacity .28s ease, visibility .28s ease, transform .38s cubic-bezier(.2, .8, .2, 1);
}
.quote-toast.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.quote-toast-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 3.3rem 1rem 1rem;
  border: 1px solid rgba(114, 247, 179, .32);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(114, 247, 179, .18), transparent 12rem),
    radial-gradient(circle at 92% 20%, rgba(52, 215, 255, .16), transparent 12rem),
    rgba(5, 7, 12, .92);
  backdrop-filter: blur(24px);
  box-shadow: 0 1.6rem 5rem rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.quote-toast.is-error .quote-toast-card {
  border-color: rgba(255, 95, 143, .38);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 95, 143, .18), transparent 12rem),
    radial-gradient(circle at 92% 20%, rgba(109, 56, 255, .16), transparent 12rem),
    rgba(5, 7, 12, .94);
}
.quote-toast-icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  color: #031009;
  background: linear-gradient(135deg, #72f7b3, #9ee7ff);
  font-weight: 950;
  box-shadow: 0 0 2rem rgba(114, 247, 179, .32);
}
.quote-toast.is-error .quote-toast-icon {
  color: #fff;
  background: linear-gradient(135deg, #ff5f8f, #6d38ff);
}
.quote-toast strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .2rem;
}
.quote-toast p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.45;
}
.quote-toast-close {
  position: absolute;
  right: .8rem;
  top: .8rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
}
.quote-toast-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.contact-drawer {
  position: fixed;
  z-index: 16;
  inset: auto 0 0;
  max-height: min(92vh, 58rem);
  overflow: hidden;
  padding-top: clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 50% 0, rgba(52, 215, 255, .16), transparent 22rem),
    radial-gradient(circle at 82% 20%, rgba(109, 56, 255, .2), transparent 24rem),
    rgba(5, 7, 12, .96);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 -2rem 7rem rgba(0, 0, 0, .55);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  contain: layout paint;
  transition: opacity .25s ease, visibility .25s ease;
}
.contact-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: auto;
  animation: contactWaveIn .92s cubic-bezier(.2, .9, .2, 1) both;
}
.panel-close {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 1.8rem;
}

.float-contact {
  position: fixed;
  z-index: 9;
  right: 1.8rem;
  bottom: 1.8rem;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b3dff, #4b23c9);
  box-shadow: 0 0 2rem rgba(109, 56, 255, .44);
}
.float-contact span::before {
  content: "✎";
  font-size: 1.8rem;
}
.quick-contact {
  position: fixed;
  z-index: 12;
  inset: auto 1.5rem 6.8rem auto;
  width: min(28rem, calc(100vw - 3rem));
  padding: 1.5rem;
  background: rgba(5, 7, 12, .86);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px);
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.quick-contact.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.quick-contact button, .menu-close {
  float: right;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 1.4rem;
}
.quick-contact h2 { font-size: 2.4rem; margin: 2rem 0 .5rem; }
.quick-contact p { color: var(--muted); }
.quick-contact a { display: block; margin-top: 1rem; font-size: 1.3rem; }

.mega-menu {
  position: fixed;
  z-index: 15;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 7rem clamp(1rem, 8vw, 9rem) 4rem;
  background:
    radial-gradient(circle at 50% 100%, rgba(52, 215, 255, .16), transparent 21rem),
    radial-gradient(circle at 82% 18%, rgba(109, 56, 255, .16), transparent 24rem),
    rgba(5, 7, 12, .97);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .75s cubic-bezier(.77, 0, .18, 1), opacity .35s ease;
  pointer-events: none;
  overflow: hidden;
  contain: layout paint;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14rem;
  background:
    radial-gradient(ellipse 16rem 8rem at 50% 0, rgba(52, 215, 255, .22), transparent 70%),
    linear-gradient(90deg, rgba(8, 15, 24, .55), rgba(29, 17, 61, .36));
  clip-path: ellipse(42% 58% at 50% 0);
  transform: translateY(-38%);
}
.mega-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mega-menu.has-panel {
  gap: clamp(3rem, 7vw, 8rem);
}
.menu-close {
  position: absolute;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  float: none;
}
.mega-main, .mega-sub { display: grid; gap: 1.15rem; }
.mega-main {
  position: relative;
  z-index: 1;
  min-width: min(44rem, 82vw);
  transition: transform .62s cubic-bezier(.2, .8, .2, 1);
}
.mega-menu.has-panel .mega-main {
  transform: translateX(clamp(-18rem, -18vw, -8rem));
}
.mega-main a {
  color: rgba(255, 255, 255, .52);
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: 1;
  text-align: center;
  transition: color .25s ease, transform .25s ease;
}
.mega-main a.is-active { color: #fff; }
.mega-main a:hover { color: #fff; transform: scale(1.03); }
.mega-sub {
  position: absolute;
  left: calc(50% + clamp(3rem, 9vw, 12rem));
  top: 50%;
  min-width: min(34rem, 38vw);
  opacity: 0;
  transform: translate(3rem, -50%);
  pointer-events: none;
  transition: opacity .45s ease, transform .58s cubic-bezier(.2, .8, .2, 1);
}
.mega-menu.has-panel .mega-sub {
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: auto;
}
.mega-sub a {
  color: #b7bdc7;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  transition: color .25s ease, transform .25s ease;
}
.mega-sub a:hover {
  color: #fff;
  transform: translateX(.45rem);
}
.submenu-panel {
  display: none;
  gap: 1.05rem;
}
.submenu-panel.is-active { display: grid; animation: viewEnter .35s ease both; }
.mega-social {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  display: flex;
  gap: 1.25rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .22);
  font-size: .82rem;
  font-weight: 800;
}
.mega-social span {
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: .25rem;
  background: rgba(255, 255, 255, .05);
}

.cookie-banner {
  position: fixed;
  z-index: 18;
  left: 50%;
  bottom: 1.3rem;
  width: min(42rem, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, .86);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .42);
  backdrop-filter: blur(22px);
  transform: translate(-50%, 1.2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.cookie-banner.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-banner p {
  margin: 0;
  color: #d1d5db;
  font-size: .95rem;
}
.cookie-banner div {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  cursor: pointer;
}
.cookie-banner button:last-child {
  background: linear-gradient(135deg, #7b3dff, #4b23c9);
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(52, 215, 255, .14), transparent 24rem),
    radial-gradient(circle at 80% 0, rgba(109, 56, 255, .18), transparent 28rem),
    #05070c;
}
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.admin-box {
  width: min(26rem, 100%);
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
}
.admin-box .brand-mark { margin-bottom: .7rem; }
.admin-box h1, .admin-panel h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); }
.admin-box label {
  display: grid;
  gap: .45rem;
  color: var(--muted);
}
.admin-box input {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 1rem;
}
.admin-error { color: #ffb4c8; margin: 0; }
.admin-panel {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}
.admin-table-wrap {
  margin-top: 2rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: rgba(255, 255, 255, .035);
}
.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.admin-table th {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
}
.admin-table td { color: #d1d5db; }

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes introBackdrop {
  0%, 70% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes introRing {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.38) rotate(0); }
  28% { opacity: .9; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08) rotate(28deg); }
}
@keyframes introLogoJourney {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate(0, 1rem) scale(.64) rotate(-10deg);
  }
  20% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1.1) rotate(0);
  }
  38% {
    transform: translate(0, 0) scale(.96) rotate(0);
  }
  57% {
    transform: translate(0, 0) scale(1) rotate(0);
  }
  73% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
  }
  100% {
    opacity: .98;
    filter: blur(0);
    transform: translate(var(--intro-x, 0), var(--intro-y, 0)) scale(var(--intro-scale, .39)) rotate(360deg);
  }
}
@keyframes introLogoOrbit {
  0% { opacity: 0; transform: scale(.74) rotate(-18deg); }
  45% { opacity: 1; }
  100% { opacity: .42; transform: scale(1) rotate(45deg); }
}
@keyframes headerSettle {
  from { opacity: 0; transform: translateY(-.85rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageAura {
  0% { transform: translate3d(-1.5rem, -1rem, 0) scale(1); filter: hue-rotate(0deg); }
  50% { transform: translate3d(1.2rem, .8rem, 0) scale(1.04); filter: hue-rotate(12deg); }
  100% { transform: translate3d(0, 1.4rem, 0) scale(1.02); filter: hue-rotate(-10deg); }
}
@keyframes pageGridDrift {
  to { background-position: 5.5rem 5.5rem; }
}
@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-.9rem) rotate(2deg); }
}
@keyframes logoPulse {
  0% { opacity: 0; transform: scale(.8) rotate(-8deg); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes erpPulse {
  0%, 100% { opacity: .45; transform: scaleX(.8); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes chartDrift {
  to { filter: hue-rotate(32deg) brightness(1.12); transform: translateY(-.2rem); }
}
@keyframes codeScan {
  0% { opacity: .2; transform: scaleX(.25); }
  45% { opacity: .9; transform: scaleX(1); }
  100% { opacity: .25; transform: scaleX(.45); }
}
@keyframes cursorTour {
  0%, 100% { left: 34%; top: 34%; }
  25% { left: 74%; top: 32%; }
  52% { left: 66%; top: 66%; }
  75% { left: 42%; top: 72%; }
}
@keyframes cue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .78; }
  50% { transform: translateX(-50%) translateY(.45rem); opacity: .42; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0); filter: drop-shadow(0 0 .25rem rgba(255,255,255,.22)); }
  35% { transform: translateY(-.28rem) rotate(-2deg); filter: drop-shadow(0 0 .8rem rgba(52,215,255,.32)); }
  70% { transform: translateY(.16rem) rotate(2deg); filter: drop-shadow(0 0 .7rem rgba(109,56,255,.34)); }
}
@keyframes logoOrbit {
  to { transform: rotate(360deg); }
}
@keyframes caretBlink {
  50% { opacity: 0; }
}
@keyframes contactWaveIn {
  0% {
    transform: translateY(112%) skewY(-3deg);
    border-radius: 42% 42% 0 0 / 8% 8% 0 0;
  }
  48% {
    transform: translateY(-3.5%) skewY(1.2deg);
    border-radius: 52% 48% 0 0 / 5% 7% 0 0;
  }
  68% {
    transform: translateY(1.8%) skewY(-.8deg);
    border-radius: 46% 54% 0 0 / 4% 6% 0 0;
  }
  84% {
    transform: translateY(-.7%) skewY(.35deg);
  }
  100% {
    transform: translateY(0) skewY(0);
    border-radius: 0;
  }
}
@keyframes viewEnter {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes premiumDeviceFloat {
  0%, 100% { translate: 0 0; filter: brightness(1); }
  50% { translate: 0 -.85rem; filter: brightness(1.08); }
}
@keyframes premiumFormIn {
  from { transform: translateY(1.2rem) scale(.985); filter: blur(8px); }
  to { transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 980px) {
  .site-header { min-height: 5.4rem; }
  .header-phone { display: none; }
  .hero, .contact, .software-hero, .software-detail, .corporate-hero { grid-template-columns: 1fr; }
  .holo-device { min-height: 18rem; }
  .tablet { position: relative; width: min(92vw, 34rem); margin: 0 auto; inset: auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .software-visual-stack { min-height: 32rem; }
  .software-shot.is-main {
    width: min(92vw, 44rem);
    transform: none;
  }
  .software-shot.is-login {
    width: min(62vw, 23rem);
    transform: none;
  }
  .software-strip, .gift-grid, .corporate-grid, .difference-lanes, .payment-steps { grid-template-columns: 1fr; }
  .feature-matrix { grid-template-columns: 1fr; }
  .difference-stack {
    transform: none;
  }
  .difference-stack b:nth-child(even) {
    transform: none;
  }
  .mega-menu {
    align-items: start;
    justify-content: start;
    gap: 2rem;
    overflow: auto;
  }
  .mega-menu.has-panel .mega-main { transform: none; }
  .mega-main { min-width: 100%; }
  .mega-sub {
    position: static;
    min-width: 100%;
    transform: translateY(1rem);
  }
  .mega-menu.has-panel .mega-sub {
    transform: translateY(0);
  }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-choice-grid { grid-template-columns: 1fr; }
  .premium-form-grid { grid-template-columns: 1fr; }
  .references-placeholder { grid-template-columns: 1fr; }
  .floating-brand { position: static; margin-bottom: 5rem; }
  .opportunity-software,
  .software-page-hero {
    grid-template-columns: 1fr;
  }
  .laptop-frame,
  .software-page-devices .laptop-frame {
    width: min(88vw, 40rem);
    right: auto;
    left: 0;
  }
  .mobile-frame,
  .software-page-devices .mobile-frame {
    width: min(38vw, 14rem);
  }
  .software-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand small, .quote-btn { display: none; }
  .header-actions { gap: .6rem; }
  .menu-button { width: 3.4rem; height: 3.4rem; }
  .service-grid, .metrics { grid-template-columns: 1fr; }
  .statement p { text-align: left; }
  .discover-services-head { text-align: left; }
  .service-marquee {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: default;
  }
  .service-marquee::-webkit-scrollbar { display: none; }
  .service-track {
    padding-inline: 0;
    transform: none !important;
  }
  .service-pill { width: min(78vw, 20rem); }
  .mega-main a { font-size: clamp(2.7rem, 16vw, 5rem); }
  .menu-close { top: 6rem; }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  .quote-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

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