*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050508;
  --surface: #0c0c14;
  --surface-2: #12121c;
  --border: rgba(255,255,255,0.08);
  --text: #f4f4f8;
  --muted: #8b8ba3;
  --indigo: #6366f1;
  --cyan: #22d3ee;
  --violet: #a78bfa;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Syne", sans-serif; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: 0.3s;
  isolation: isolate;
}
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  z-index: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-backdrop.open { display: block; }
.navbar .container {
  position: relative;
  z-index: 1;
}
.navbar.scrolled { padding: 0.6rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  transition: padding 0.3s, background 0.3s, border 0.3s, backdrop-filter 0.3s;
}
.nav-cta {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}
.nav-inner.shrink {
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.nav-inner.shrink .logo-img {
  height: 40px !important;
  width: auto;
}
.navbar.scrolled .nav-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.logo {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  line-height: 0;
  padding: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: auto;
  width: 125px;
  max-width: 176px;
  object-fit: contain;
  object-position: left center;
  background: none !important;
  background-color: transparent !important;
  mix-blend-mode: screen;
  opacity: 0.94;
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 20px rgba(34, 211, 238, 0.15));
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease, height 0.3s ease;
}
.logo-img-sm {
  width: 100px;
  height: auto;
  max-width: 148px;
  opacity: 0.9;
}
.logo:hover .logo-img {
  opacity: 1;
  filter:
    drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 26px rgba(34, 211, 238, 0.22));
  transform: scale(1.012);
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-links a {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  transition: 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: white;
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: scale(1.02); }
.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover { transform: scale(1.02); filter: brightness(1.05); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.35rem;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu {
  display: none;
  position: relative;
  z-index: 2;
  margin: 0.5rem 0 0;
  padding: 1rem;
  border-radius: 1rem;
  background: #0c0c14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mobile-menu.open { display: block; }
.navbar.menu-open .nav-inner {
  background: #0c0c14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar.menu-open .logo-img {
  mix-blend-mode: normal;
}
body.menu-open { overflow: hidden; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; color: var(--muted); border-radius: 8px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 4rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-hand-wrap {
  position: absolute;
  top: -8%;
  right: -12%;
  bottom: -18%;
  left: -12%;
  will-change: transform;
  transform-origin: 30% 85%;
}

.hero-hand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 95%;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,8,0.45) 0%, rgba(5,5,8,0.7) 50%, rgba(5,5,8,0.95) 100%);
  pointer-events: none;
}

.hero-bg-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(34,211,238,0.04) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scanLine 8s linear infinite;
  pointer-events: none;
}
.hero-lightning {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}
.hero-content {
  position: relative;
  z-index: 2;
}
@keyframes scanLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

.grid-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
}
.glow-1 {
  position: absolute; top: 5rem; left: -8rem;
  z-index: 1;
  width: 500px; height: 500px;
  background: rgba(99,102,241,0.12);
  border-radius: 50%; filter: blur(120px);
  animation: pulse 4s ease-in-out infinite;
  opacity: 0.5;
}
.glow-2 {
  position: absolute; top: 10rem; right: -8rem;
  z-index: 1;
  width: 400px; height: 400px;
  background: rgba(34,211,238,0.15);
  border-radius: 50%; filter: blur(100px);
  animation: pulse 4s ease-in-out infinite 1s;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:0.8} }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, #fff, #c7d2fe, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--muted);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.dashboard-mock {
  display: none;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(18,18,28,0.8);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99,102,241,0.2);
}
@media (min-width: 992px) {
  .dashboard-mock { display: block; }
}
.mock-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #eab308; }
.dot-g { background: #22c55e; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}
.mock-stat {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-align: left;
}
.mock-stat span { font-size: 0.75rem; color: var(--muted); }
.mock-stat strong { display: block; font-size: 1.5rem; font-family: "Syne", sans-serif; margin: 0.25rem 0; }
.mock-stat em { font-size: 0.75rem; color: #34d399; font-style: normal; }
.mock-chart {
  margin: 0 1.5rem 1.5rem;
  height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, rgba(99,102,241,0.1), rgba(34,211,238,0.05));
  display: flex; align-items: flex-end; gap: 4px; padding: 1rem;
}
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, rgba(99,102,241,0.6), rgba(34,211,238,0.6)); }

/* SECTIONS */
section { padding: 5rem 0; }
.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5b4fc;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
}
.service-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); }

/* STATS */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}
.about-text p { color: var(--muted); margin: 1rem 0 1.5rem; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.check-list li { font-size: 0.875rem; color: var(--muted); }
.check-list li::before { content: "✓ "; color: var(--cyan); }
.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.about-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #a5b4fc; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.875rem; color: var(--muted); }

/* PROCESS */
.process-list { margin-top: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.process-item {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-num { font-family: "Syne", sans-serif; font-size: 2rem; font-weight: 800; color: rgba(99,102,241,0.3); min-width: 3rem; }
.process-item h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.process-item p { font-size: 0.875rem; color: var(--muted); }

/* WORKS / PORTFOLIO */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
  justify-content: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.work-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
.work-card:hover {
  border-color: rgba(99,102,241,0.4);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.12);
}
.work-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.work-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a5b4fc;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.work-card > p:not(.work-tag) {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1rem;
}
.work-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: auto;
}
.work-card:hover .work-link { text-decoration: underline; }

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 0;
}
.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee span {
  margin: 0 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.marquee span::before { content: "● "; color: var(--cyan); font-size: 0.5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.package-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.package-section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.75rem 0 0.5rem;
}
.package-section-title p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}
.package-section-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #67e8f9;
}
.packages-section-block { margin-bottom: 4rem; }
.packages-section-block:last-child { margin-bottom: 0; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}
.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
}
.package-card:hover { border-color: rgba(99,102,241,0.3); }
.package-card.featured {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(to bottom, rgba(99,102,241,0.1), var(--surface));
  box-shadow: 0 20px 60px rgba(99,102,241,0.12);
}
.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.15);
  font-size: 0.7rem;
  color: #c7d2fe;
}
.package-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.package-card .pkg-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.package-price {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.package-price strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.package-price small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.package-annual {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.package-annual-full {
  color: var(--muted);
  text-decoration: line-through;
}
.package-annual-discount {
  font-weight: 600;
  color: var(--cyan, #22d3ee);
}
.package-annual-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.package-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.package-features li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.package-features li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}
.page-hero {
  padding: 7rem 0 2rem;
  text-align: center;
}

/* DEMO — YAKINDA SAYFASI */
.demo-page {
  background: #030306;
}
.demo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(99, 102, 241, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 25%, rgba(34, 211, 238, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 0% 75%, rgba(167, 139, 250, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, #0a0a12 0%, #050508 45%, #030306 100%);
}
.demo-soon-page {
  position: relative;
  min-height: calc(100vh - 2rem);
  overflow: hidden;
  isolation: isolate;
}
.demo-soon-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.demo-soon-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(12, 12, 20, 0.35) 0%, transparent 45%, rgba(5, 5, 8, 0.5) 100%);
}
.demo-soon-mesh {
  position: absolute;
  inset: -30%;
  opacity: 0.45;
  background:
    radial-gradient(at 20% 30%, rgba(99, 102, 241, 0.18) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(34, 211, 238, 0.14) 0px, transparent 45%),
    radial-gradient(at 60% 80%, rgba(167, 139, 250, 0.12) 0px, transparent 50%),
    radial-gradient(at 10% 85%, rgba(99, 102, 241, 0.1) 0px, transparent 40%);
  animation: demoSoonMesh 18s ease-in-out infinite alternate;
}
@keyframes demoSoonMesh {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-2%, 1.5%); }
}
.demo-soon-aurora {
  position: absolute;
  top: -35%;
  left: 50%;
  width: 140%;
  height: 85%;
  transform: translateX(-50%);
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      transparent 0deg,
      rgba(99, 102, 241, 0.09) 55deg,
      transparent 110deg,
      rgba(34, 211, 238, 0.08) 180deg,
      transparent 240deg,
      rgba(167, 139, 250, 0.07) 300deg,
      transparent 360deg
    );
  filter: blur(40px);
  opacity: 0.75;
  animation: demoSoonAurora 22s linear infinite;
}
@keyframes demoSoonAurora {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
.demo-soon-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, #000 20%, transparent 72%);
}
.demo-soon-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 68% 58% at 50% 42%, #000 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 68% 58% at 50% 42%, #000 15%, transparent 70%);
}
.demo-soon-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: demoSoonFloat 9s ease-in-out infinite;
}
.demo-soon-glow-1 {
  top: 6%;
  left: -8%;
  width: 480px;
  height: 480px;
  background: rgba(99, 102, 241, 0.22);
}
.demo-soon-glow-2 {
  top: 28%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(34, 211, 238, 0.18);
  animation-delay: -3s;
}
.demo-soon-glow-3 {
  bottom: 8%;
  left: 35%;
  width: 320px;
  height: 320px;
  background: rgba(167, 139, 250, 0.14);
  animation-delay: -5.5s;
}
@keyframes demoSoonFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(18px, -22px) scale(1.05); opacity: 1; }
}
.demo-soon-beam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 55%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.35), transparent);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.2);
  opacity: 0.5;
}
.demo-soon-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(34, 211, 238, 0.035) 48%, transparent 100%);
  background-size: 100% 220%;
  animation: scanLine 10s linear infinite;
  opacity: 0.7;
}
.demo-soon-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 45%, transparent 35%, rgba(3, 3, 6, 0.55) 100%),
    linear-gradient(to bottom, rgba(3, 3, 6, 0.35) 0%, transparent 18%, transparent 82%, rgba(3, 3, 6, 0.65) 100%);
}
.demo-code-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 94% 88% at 50% 42%, #000 10%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 94% 88% at 50% 42%, #000 10%, transparent 88%);
}
.demo-code-line {
  position: absolute;
  left: var(--x);
  top: 105%;
  font-family: ui-monospace, "Cascadia Code", "Consolas", "Courier New", monospace;
  font-size: var(--size, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(226, 232, 240, 0.72);
  text-shadow:
    0 0 14px rgba(99, 102, 241, 0.35),
    0 0 28px rgba(34, 211, 238, 0.18);
  opacity: 0;
  animation: demoCodeRise var(--dur, 18s) linear var(--delay, 0s) infinite;
  will-change: transform, opacity;
}
.demo-code-line-bright {
  text-shadow:
    0 0 18px rgba(34, 211, 238, 0.5),
    0 0 36px rgba(99, 102, 241, 0.35),
    0 0 60px rgba(167, 139, 250, 0.2);
  filter: brightness(1.12);
}
.demo-code-line .code-kw {
  color: #22d3ee;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.65);
}
.demo-code-line .code-fn {
  color: #a5b4fc;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(129, 140, 248, 0.45);
}
.demo-code-line .code-str {
  color: #4ade80;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.45);
}
.demo-code-line .code-tag {
  color: #f87171;
  text-shadow: 0 0 10px rgba(248, 113, 113, 0.35);
}
.demo-code-line .code-attr {
  color: #fbbf24;
}
.demo-code-line .code-type {
  color: #c4b5fd;
  font-weight: 600;
}
.demo-code-line .code-num {
  color: #fb923c;
}
.demo-code-line .code-prop {
  color: #7dd3fc;
}
.demo-code-line .code-op {
  color: #e2e8f0;
}
.demo-code-line .code-cmt {
  color: #64748b;
  font-style: italic;
}
.demo-code-line-h {
  top: var(--y);
  left: -105%;
  animation-name: demoCodeSlide;
}
@keyframes demoCodeRise {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  5% { opacity: var(--op, 0.5); }
  50% { opacity: calc(var(--op, 0.5) * 1.08); }
  95% { opacity: var(--op, 0.5); }
  100% { transform: translate3d(var(--drift, 0px), -125vh, 0); opacity: 0; }
}
@keyframes demoCodeSlide {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  5% { opacity: var(--op, 0.5); }
  50% { opacity: calc(var(--op, 0.5) * 1.08); }
  95% { opacity: var(--op, 0.5); }
  100% { transform: translate3d(calc(100vw + 120%), 0, 0); opacity: 0; }
}
.demo-soon-hero {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 5rem;
}
.demo-page footer {
  position: relative;
  z-index: 1;
  background: rgba(12, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top-color: rgba(255, 255, 255, 0.06);
}
.demo-soon-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.demo-soon-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.demo-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.75);
  animation: demoSoonPulse 2s ease-in-out infinite;
}
@keyframes demoSoonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.demo-soon-title { margin-bottom: 0.85rem; }
.demo-soon-lead {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}
.demo-soon-card {
  position: relative;
  text-align: left;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.95) 0%, rgba(12, 12, 20, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.demo-soon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.15), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.demo-soon-preview {
  padding: 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
}
.demo-soon-window {
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  background: rgba(5, 5, 8, 0.65);
  overflow: hidden;
}
.demo-soon-window-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}
.demo-soon-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.demo-soon-window-bar span:first-child { background: rgba(248, 113, 113, 0.55); }
.demo-soon-window-bar span:nth-child(2) { background: rgba(251, 191, 36, 0.55); }
.demo-soon-window-bar span:nth-child(3) { background: rgba(52, 211, 153, 0.55); }
.demo-soon-window-body {
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}
.demo-soon-skeleton {
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: demoSoonShimmer 2.2s ease-in-out infinite;
}
.demo-soon-skeleton-lg {
  width: 55%;
  height: 0.85rem;
  margin-bottom: 0.15rem;
}
.demo-soon-skeleton-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  width: 100%;
}
@keyframes demoSoonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.demo-soon-loader {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.demo-soon-loader span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.35;
  animation: demoSoonBounce 1.4s ease-in-out infinite;
}
.demo-soon-loader span:nth-child(2) { animation-delay: 0.15s; }
.demo-soon-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes demoSoonBounce {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}
.demo-soon-card-body {
  padding: 1.75rem 1.75rem 2rem;
  text-align: center;
}
.demo-soon-card-body h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.demo-soon-card-body p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.925rem;
  max-width: 30rem;
  margin: 0 auto 1.25rem;
}
.demo-soon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.demo-soon-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.08);
  font-size: 0.75rem;
  font-weight: 500;
  color: #c7d2fe;
  letter-spacing: 0.02em;
}
.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.coming-soon-actions .btn { min-width: 9.5rem; justify-content: center; }

@media (max-width: 640px) {
  .demo-soon-hero { padding: 6.5rem 0 3.5rem; }
  .demo-soon-card-body { padding: 1.5rem 1.25rem 1.75rem; }
  .demo-soon-preview { padding: 1.15rem 1.15rem 0; }
  .demo-soon-glow-1 { width: 280px; height: 280px; }
  .demo-soon-glow-2 { width: 240px; height: 240px; }
  .demo-soon-glow-3 { display: none; }
  .demo-soon-beam { display: none; }
  .demo-code-line { font-size: 0.65rem; }
  .coming-soon-actions { flex-direction: column; }
  .coming-soon-actions .btn { width: 100%; }
}

.demo-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 768px) {
  .demo-packages-grid { grid-template-columns: repeat(2, 1fr); }
}
.demo-package-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.95) 0%, rgba(12, 12, 20, 0.88) 100%);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.demo-package-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.65rem;
}
.demo-package-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.demo-package-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.demo-package-card-soon .demo-package-badge {
  background: rgba(251, 191, 36, 0.15);
  color: #fcd34d;
}
.demo-package-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.demo-package-features li {
  font-size: 0.85rem;
  color: #c7d2fe;
}
.demo-package-features li::before {
  content: "✓ ";
  color: var(--cyan);
}
.demo-package-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-box {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.info-box small { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-map-wrap {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  max-width: 100%;
}
.contact-map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  max-width: 100%;
}
@media (min-width: 640px) {
  .contact-map { height: 360px; }
}
.contact-map-link {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: #22d3ee;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: background 0.15s;
}
.contact-map-link:hover { background: rgba(255,255,255,0.05); }
.contact-form {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(99,102,241,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 1rem; font-size: 0.875rem; }
.form-msg.success { color: #34d399; }
.form-msg.error { color: #f87171; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid p { font-size: 0.875rem; color: var(--muted); margin-top: 1rem; max-width: 320px; }
.footer-grid h4 { font-size: 0.875rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { font-size: 0.875rem; color: var(--muted); transition: 0.2s; }
.footer-grid a:hover { color: var(--text); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  transition: 0.2s;
}
.social-links a:hover { color: var(--text); border-color: rgba(99,102,241,0.3); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* WhatsApp sabit buton */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem 0.85rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-label { white-space: nowrap; }
@media (max-width: 480px) {
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 0.95rem; border-radius: 50%; }
}

/* RESPONSIVE */
@media (prefers-reduced-motion: reduce) {
  .demo-soon-aurora,
  .demo-soon-mesh,
  .demo-soon-glow,
  .demo-soon-scan,
  .demo-soon-skeleton,
  .demo-code-line {
    animation: none;
  }
  .demo-code-layer { display: none; }
  .hero-hand-wrap { animation: none; }
  .hero-bg-scan { animation: none; }
}

@media (min-width: 1201px) {
  .nav-links a {
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
  }
  .nav-cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 1120px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-inner.shrink,
  .navbar.scrolled .nav-inner {
    background: #0c0c14;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mock-stats { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .glow-1, .glow-2 { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  section { padding: 3.5rem 0; }
  .navbar { padding: 0.65rem 0; }
  .nav-inner { padding: 0.45rem 0.65rem; }

  .hero {
    padding: 5.5rem 0 2rem;
    min-height: 100svh;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 0.25rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.25rem;
    gap: 0.75rem;
  }

  .hero-btns .btn {
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    max-width: 92vw;
  }

  .dashboard-mock { display: none !important; }

  .hero-hand-wrap {
    top: 0;
    right: -18%;
    left: -18%;
    bottom: -5%;
  }

  .hero-hand-img {
    opacity: 0.88;
    object-position: center 78%;
  }

  .hero-bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0.55) 0%,
      rgba(5, 5, 8, 0.42) 45%,
      rgba(5, 5, 8, 0.9) 100%
    );
  }

  .hero-btns { margin-bottom: 1.5rem; }

  .logo-img { height: auto; max-width: 80px; }
  .logo-img-sm { height: auto; max-width: 68px; }

  .stat-num { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }

  .whatsapp-float {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.15rem; }
  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: 0.95rem; }
  .process-num { font-size: 1.5rem; min-width: 2.25rem; }
  .process-item { gap: 1rem; padding: 1.15rem 0; }
}
