:root {
  --bg: #07070f;
  --surface: #0d0d1e;
  --surface-2: #13132b;
  --accent: #7c3aed;
  --accent-l: #a855f7;
  --accent-b: #c084fc;
  --cyan: #06b6d4;
  --cyan-l: #22d3ee;
  --text-1: #f0f0fe;
  --text-2: #8892a4;
  --text-3: #4a5568;
  --border: rgba(124, 58, 237, 0.2);
  --border-h: rgba(124, 58, 237, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 72px;
  --max-w: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(124, 58, 237, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: -3;
  pointer-events: none;
}

/* ORBS */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite alternate;
}

.orb-1 {
  background: radial-gradient(circle, rgba(124,58,237,0.45), rgba(124,58,237,0.05));
  width: 50vw; height: 50vw;
  top: -15%; right: -10%;
}

.orb-2 {
  background: radial-gradient(circle, rgba(6,182,212,0.3), rgba(6,182,212,0.04));
  width: 40vw; height: 40vw;
  bottom: -10%; left: -10%;
  animation-delay: -8s;
}

.orb-3 {
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent);
  width: 30vw; height: 30vw;
  top: 40%; left: 35%;
  animation-delay: -15s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4%, 8%) scale(1.08); }
  100% { transform: translate(-4%, -4%) scale(0.92); }
}

/* CURSOR */
.custom-cursor {
  position: fixed;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(168, 100, 255, 0.75);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s, border-color 0.2s;
  mix-blend-mode: normal;
}

.custom-cursor.hover {
  width: 50px; height: 50px;
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.55);
}

@media (hover: none) {
  .custom-cursor { display: none; }
  *, *::before, *::after { cursor: auto; }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.03em; font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--text-2); }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-l) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.28);
}

.btn-white {
  background: #fff;
  color: #0d0d1e;
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.22);
}

.btn-lg  { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* NAV */
.nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(7,7,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-1);
  margin-right: auto;
  flex-shrink: 0;
}
.logo-dot { color: var(--accent-l); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 4px;
  width: 32px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  padding: 2rem;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent-l); }

/* CONTAINER / SECTION */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}
.sec-head h2 { margin-bottom: 1rem; }
.sec-head p  { font-size: 1.05rem; }

.sec-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 1rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(124,58,237,0.05);
}

.label-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-l);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(168,85,247,0); }
}

.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-l) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-n {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}
.stat-l {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* BROWSER MOCKUP */
.browser {
  background: var(--surface);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 40px rgba(124,58,237,0.18);
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.browser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124,58,237,0.08), transparent 40%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.browser:hover::before { opacity: 1; }

.browser-bar {
  background: rgba(10,10,24,0.95);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.bd-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; display: block; }
.bd-y { width: 10px; height: 10px; border-radius: 50%; background: #ffbd2e; display: block; }
.bd-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; display: block; }

.browser-url {
  flex: 1;
  max-width: 200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mock-nav-strip {
  background: rgba(10,10,24,0.7);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mnav-logo {
  width: 48px; height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  border-radius: 4px;
  margin-right: auto;
}
.mnav-links { display: flex; gap: 8px; }
.mnav-links i { width: 26px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; display: block; }
.mnav-btn { width: 38px; height: 17px; background: rgba(124,58,237,0.5); border-radius: 10px; }

.mock-hero-strip {
  min-height: 110px;
  background: linear-gradient(135deg, rgba(10,10,24,1) 0%, rgba(36,14,72,0.9) 100%);
  padding: 1.25rem 1rem;
  position: relative;
  overflow: hidden;
}
.mock-hero-strip::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.45), transparent 70%);
  filter: blur(18px);
}
.mhs-content { position: relative; z-index: 1; }
.mhs-h1 { width: 65%; height: 9px; background: rgba(255,255,255,0.75); border-radius: 5px; margin-bottom: 6px; }
.mhs-h2 { width: 45%; height: 7px; background: rgba(255,255,255,0.35); border-radius: 4px; margin-bottom: 14px; }
.mhs-btns { display: flex; gap: 8px; }
.mhs-btns div:first-child {
  width: 58px; height: 17px;
  background: linear-gradient(135deg, var(--accent), var(--accent-l));
  border-radius: 10px;
}
.mhs-btns div:last-child {
  width: 48px; height: 17px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
}

.mock-cards-strip {
  display: flex;
  gap: 7px;
  padding: 0.65rem;
  background: rgba(7,7,15,0.55);
}
.mcs-card {
  flex: 1;
  border-radius: 7px;
  padding: 9px 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mcs-card div:first-child { width: 100%; height: 5px; border-radius: 3px; }
.mcs-card div:last-child  { width: 55%; height: 4px; border-radius: 2px; }

.mc-v { background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.22); }
.mc-v div { background: rgba(168,85,247,0.5); }
.mc-c { background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.18); }
.mc-c div { background: rgba(34,211,238,0.4); }
.mc-d { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); }
.mc-d div { background: rgba(255,255,255,0.14); }

/* FLOAT CHIPS */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(13,13,30,0.94);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 3;
  animation: chipFloat 5s ease-in-out infinite alternate;
}
.chip-1 { bottom: 16%; right: -6%; animation-delay: 0s; }
.chip-2 { top: 18%; left: -9%; animation-delay: -2.5s; }

@keyframes chipFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.chip-icon { font-size: 1.1rem; }
.chip-info { display: flex; flex-direction: column; gap: 1px; }
.chip-info strong { font-size: 0.78rem; font-weight: 700; color: var(--text-1); }
.chip-info span   { font-size: 0.68rem; color: var(--text-3); }

.visual-glow {
  position: absolute;
  inset: -25%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.13), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.5s var(--ease);
  transform-style: preserve-3d;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124,58,237,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 0 30px rgba(124,58,237,0.1);
}

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--accent-l); }
.svc-card:hover .svc-icon {
  background: rgba(124,58,237,0.2);
  transform: scale(1.08) rotate(-3deg);
}
.svc-card h3 { margin-bottom: 0.6rem; position: relative; z-index: 1; }
.svc-card p  { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-b);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 100px;
  padding: 0.22rem 0.7rem;
  position: relative;
  z-index: 1;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-left .sec-label { display: block; }
.why-left h2  { margin-bottom: 1.25rem; }
.why-left p   { margin-bottom: 0; }
.why-cta      { margin-top: 2rem; display: inline-flex; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.why-ico svg { width: 19px; height: 19px; stroke: var(--accent-l); }
.why-item:hover .why-ico { background: rgba(124,58,237,0.18); transform: scale(1.05); }
.why-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-1); }
.why-item p  { font-size: 0.88rem; line-height: 1.6; }

/* PROCESS */
.process-wrap {
  position: relative;
}
.process-line {
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0.3;
  z-index: 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.proc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(124,58,237,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-l);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(124,58,237,0.12);
  transition: all 0.3s;
  flex-shrink: 0;
}
.proc-step:hover .proc-num {
  background: rgba(124,58,237,0.18);
  border-color: var(--accent-l);
  box-shadow: 0 0 28px rgba(124,58,237,0.3);
  transform: scale(1.05);
}
.proc-step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-1); }
.proc-step p  { font-size: 0.82rem; line-height: 1.6; color: var(--text-2); }

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.port-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.5s var(--ease);
  transform-style: preserve-3d;
  position: relative;
}
.port-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124,58,237,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}
.port-card:hover::before { opacity: 1; }
.port-card:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.port-preview { border-bottom: 1px solid rgba(255,255,255,0.04); }
.pv-chrome {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(10,10,24,0.85);
}
.pv-chrome i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.pv-chrome i:nth-child(1) { background: rgba(255,95,87,0.7); }
.pv-chrome i:nth-child(2) { background: rgba(255,189,46,0.7); }
.pv-chrome i:nth-child(3) { background: rgba(40,200,64,0.7); }

.pv-body { min-height: 160px; }
.pv-hero { height: 90px; position: relative; overflow: hidden; }

.pv-hero-1 { background: linear-gradient(135deg, #1a0a08 0%, #3d1206 50%, #5c1a00 100%); }
.pv-hero-1::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(234,88,12,0.5), transparent 60%);
}
.pv-hero-2 { background: linear-gradient(135deg, #0f0a1a 0%, #2d0d4a 50%, #1a0638 100%); }
.pv-hero-2::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(168,85,247,0.55), transparent 60%);
}
.pv-hero-3 { background: linear-gradient(135deg, #060e1a 0%, #0d2040 50%, #0a1828 100%); }
.pv-hero-3::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(6,182,212,0.45), transparent 60%);
}
.pv-hero-4 { background: linear-gradient(135deg, #060f0a 0%, #0d2a18 50%, #061a0c 100%); }
.pv-hero-4::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(16,185,129,0.4), transparent 60%);
}

.pv-row {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(7,7,15,0.6);
}
.pv-row div {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.055);
}

.port-info { padding: 1.5rem; position: relative; z-index: 2; }
.port-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-1); }
.port-info p  { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }

.port-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.port-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.14) 0%, rgba(6,182,212,0.07) 100%);
  z-index: 0;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), rgba(6,182,212,0.3), transparent);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.22), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(40px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-inner p  { font-size: 1.1rem; margin-bottom: 2.5rem; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-left .sec-label { display: block; }
.contact-left h2 { margin-bottom: 1.25rem; }
.contact-left p  { margin-bottom: 2rem; }

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-l);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  background: rgba(124,58,237,0.05);
  transition: all 0.25s;
}
.contact-mail svg { width: 18px; height: 18px; stroke: var(--accent-l); }
.contact-mail:hover {
  background: rgba(124,58,237,0.12);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grp { display: flex; flex-direction: column; gap: 0.45rem; }
.form-grp label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.opt { font-weight: 400; color: var(--text-3); }

.form-grp input,
.form-grp textarea,
.form-grp select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-1);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--text-3); }
.form-grp input:focus,
.form-grp textarea:focus,
.form-grp select:focus {
  outline: none;
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-grp select option { background: #1a1a35; color: var(--text-1); }
.form-grp textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-l); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,0.18);
  border: 1px solid var(--border);
  color: var(--accent-l);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: rgba(124,58,237,0.35); border-color: var(--border-h); transform: translateY(-2px); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 4rem; }
  .process-steps { gap: 0.75rem; }
  .proc-step p { font-size: 0.78rem; }
  .contact-grid { gap: 4rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero {
    padding: calc(var(--nav-h) + 2.5rem) 1.5rem 5rem;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-label  { justify-content: center; }
  .hero-sub    { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-right  { order: -1; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .chip-2      { display: none; }
  .chip-1      { right: -2%; bottom: 12%; }

  .section { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-left { text-align: center; }
  .why-cta  { margin: 2rem auto 0; }

  .process-line  { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .proc-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .proc-num { flex-shrink: 0; margin-bottom: 0; width: 52px; height: 52px; font-size: 0.78rem; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row-2   { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-banner { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-h1  { font-size: 2.4rem; }
  h2        { font-size: 1.85rem; }
  .hero-visual { max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats  { gap: 1rem; }
  .stat-n      { font-size: 1.15rem; }
  .btn-lg      { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .cta-inner h2 { font-size: 1.7rem; }
}

/* ── PRICING / PAKETE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pricing-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: rgba(124,58,237,0.45);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.25), 0 20px 60px rgba(124,58,237,0.15);
  transform: scale(1.02);
}

.pricing-featured:hover {
  border-color: rgba(124,58,237,0.7);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.5), 0 24px 70px rgba(124,58,237,0.22);
  transform: scale(1.02) translateY(-4px);
}

.pricing-premium {
  border-color: rgba(6,182,212,0.2);
  background: rgba(6,182,212,0.03);
}

.pricing-premium:hover {
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 0 30px rgba(6,182,212,0.08);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-l));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.pricing-header { display: flex; flex-direction: column; gap: 0.75rem; }

.pkg-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-l);
}

.pricing-featured .pkg-name { color: var(--accent-b); }
.pricing-premium .pkg-name  { color: var(--cyan-l); }

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-from {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-3);
}

.price-num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
}

.price-cur {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-2);
  align-self: flex-end;
  margin-bottom: 0.15rem;
}

.pkg-for {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-2);
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

.feat-check {
  color: var(--accent-l);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-featured .feat-check { color: var(--accent-b); }
.pricing-premium .feat-check  { color: var(--cyan-l); }

.pkg-cta { margin-top: auto; }

.pricing-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.6;
}

.pricing-unsure {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-unsure span {
  font-size: 0.95rem;
  color: var(--text-2);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .pricing-grid { gap: 1.25rem; }
  .pricing-featured { transform: scale(1.01); }
  .pricing-featured:hover { transform: scale(1.01) translateY(-4px); }
  .price-num { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-featured { transform: none; order: -1; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .pricing-unsure { flex-direction: column; gap: 0.75rem; }
}
