/* ============================================================
   Dobuz — style.css
   Dark futuristic creative digital studio

   Sections:
   1.  Reset & Custom Properties
   2.  Utilities & Base
   3.  Header / Navbar
   4.  Hero
   5.  Stats
   6.  Services
   7.  Products
   8.  Portfolio
   9.  Why Dobuz
   10. Process
   11. CTA Section
   12. Contact
   13. Footer
   14. Back To Top
   15. Animations (@keyframes)
   16. Responsive Breakpoints
============================================================ */

/* ── 1. Reset & Custom Properties ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — edit here to retheme the whole site */
  --bg:        #070711;
  --bg-2:      #121225;
  --bg-card:   rgba(18, 18, 37, 0.72);
  --purple:    #8B5CF6;
  --purple-d:  #6D28D9;
  --cyan:      #00D4FF;
  --pink:      #EC4899;
  --gold:      #F4B942;
  --white:     #FFFFFF;
  --muted:     #A7B0C0;
  --border:    rgba(255, 255, 255, 0.12);
  --border-h:  rgba(255, 255, 255, 0.22);

  /* Typography */
  --font-head: 'Poppins', Arial, sans-serif;
  --font-body: 'Inter',   Arial, sans-serif;

  /* Spacing */
  --section-py: 96px;

  /* Radius */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows & glows */
  --shadow:      0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg:   0 8px 48px rgba(0, 0, 0, 0.55);
  --glow-purple: 0 0 40px rgba(139, 92, 246, 0.25);
  --glow-cyan:   0 0 40px rgba(0, 212, 255, 0.20);
  --glow-pink:   0 0 40px rgba(236, 72, 153, 0.20);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 2. Utilities & Base ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section         { padding: var(--section-py) 0; }
.section--alt    { background: var(--bg-2); }

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* Glass card utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.40);
}
.btn--primary:hover { box-shadow: 0 6px 28px rgba(139, 92, 246, 0.55); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-h);
}
.btn--outline:hover { border-color: var(--purple); color: var(--purple); }

.btn--ghost {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.30);
}
.btn--ghost:hover { background: rgba(139, 92, 246, 0.22); }

.btn--sm   { padding: 9px 20px; font-size: 13px; border-radius: 8px; }
.btn--full { width: 100%; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger grid children */
.services-grid  .fade-in:nth-child(2) { transition-delay: 0.08s; }
.services-grid  .fade-in:nth-child(3) { transition-delay: 0.16s; }
.services-grid  .fade-in:nth-child(4) { transition-delay: 0.24s; }
.services-grid  .fade-in:nth-child(5) { transition-delay: 0.08s; }
.services-grid  .fade-in:nth-child(6) { transition-delay: 0.16s; }
.services-grid  .fade-in:nth-child(7) { transition-delay: 0.24s; }
.services-grid  .fade-in:nth-child(8) { transition-delay: 0.32s; }
.products-grid  .fade-in:nth-child(2) { transition-delay: 0.10s; }
.products-grid  .fade-in:nth-child(3) { transition-delay: 0.20s; }
.products-grid  .fade-in:nth-child(4) { transition-delay: 0.10s; }
.products-grid  .fade-in:nth-child(5) { transition-delay: 0.20s; }
.products-grid  .fade-in:nth-child(6) { transition-delay: 0.30s; }
.portfolio-grid .fade-in:nth-child(2) { transition-delay: 0.10s; }
.portfolio-grid .fade-in:nth-child(3) { transition-delay: 0.20s; }
.portfolio-grid .fade-in:nth-child(4) { transition-delay: 0.10s; }
.portfolio-grid .fade-in:nth-child(5) { transition-delay: 0.20s; }
.portfolio-grid .fade-in:nth-child(6) { transition-delay: 0.30s; }


/* ── 3. Header / Navbar ──────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
  background: rgba(7, 7, 17, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── 4. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Background blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blobDrift 12s ease-in-out infinite;
}
.blob--purple {
  width: 560px; height: 560px;
  background: rgba(139, 92, 246, 0.22);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.blob--cyan {
  width: 440px; height: 440px;
  background: rgba(0, 212, 255, 0.16);
  top: 40%; right: -80px;
  animation-delay: -4s;
}
.blob--pink {
  width: 360px; height: 360px;
  background: rgba(236, 72, 153, 0.13);
  bottom: -60px; left: 35%;
  animation-delay: -8s;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.10);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
}

/* Hero visual — right side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating chips */
.chip {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  color: var(--white);
  white-space: nowrap;
  z-index: 2;
  box-shadow: var(--shadow);
}
.chip--1 { top: 10px;  left: -10px; animation: float 5s ease-in-out infinite; }
.chip--2 { bottom: 10px; right: -10px; animation: float 6s ease-in-out infinite 1s; }

/* Floating animation utility */
.floating { animation: float 5.5s ease-in-out infinite; }

/* Dashboard card */
.dashboard {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 18, 37, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--glow-purple);
  overflow: hidden;
}

/* Dashboard titlebar */
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.dash-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--r { background: #FF5F57; }
.dot--y { background: #FEBC2E; }
.dot--g { background: #28C840; }
.dash-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

/* Mini cards row */
.dash-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 14px;
}
.dash-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.dmc-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
.dmc--app  .dmc-icon { background: linear-gradient(135deg, var(--purple), var(--purple-d)); }
.dmc--web  .dmc-icon { background: linear-gradient(135deg, var(--cyan), #0099bb); }
.dmc-name  { display: block; font-size: 11px; font-weight: 600; color: var(--white); }
.dmc-val   { display: block; font-size: 10px; color: var(--muted); }

/* CSS Browser preview inside dashboard */
.dash-browser {
  margin: 0 14px 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.db-titlebar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border);
}
.db-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-h);
}
.db-url {
  font-size: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 6px;
}
.db-screen { padding: 10px; }
.db-hero-strip {
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--cyan) 100%);
  margin-bottom: 8px;
  opacity: 0.7;
}
.db-cards {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.db-card {
  flex: 1;
  height: 30px;
  border-radius: 5px;
}
.db-card--purple { background: linear-gradient(135deg, var(--purple), var(--purple-d)); opacity: 0.8; }
.db-card--cyan   { background: linear-gradient(135deg, var(--cyan), #005f80);          opacity: 0.8; }
.db-card--pink   { background: linear-gradient(135deg, var(--pink), #a0205e);          opacity: 0.8; }

/* Bar chart */
.db-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  padding-top: 4px;
}
.db-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--purple), var(--cyan));
  opacity: 0.75;
  transform-origin: bottom;
  animation: barGrow 1.2s ease-out backwards;
}
.db-bar:nth-child(1) { animation-delay: 0.1s; }
.db-bar:nth-child(2) { animation-delay: 0.2s; }
.db-bar:nth-child(3) { animation-delay: 0.3s; }
.db-bar:nth-child(4) { animation-delay: 0.4s; }
.db-bar:nth-child(5) { animation-delay: 0.5s; }
.db-bar:nth-child(6) { animation-delay: 0.6s; }
.db-bar:nth-child(7) { animation-delay: 0.7s; }

/* Dashboard footer stats */
.dash-footer {
  display: flex;
  justify-content: space-around;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--border);
}
.df-item { text-align: center; }
.df-val  {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.df-val:first-of-type { color: var(--cyan); }
.df-lbl { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }


/* ── 5. Stats ────────────────────────────────────────────── */
.stats {
  background: var(--bg-2);
  padding: 48px 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--glow-purple);
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}


/* ── 6. Services ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
  box-shadow: var(--shadow);
}

.sc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.sc-icon svg { width: 22px; height: 22px; }

/* Icon background colors */
.si--purple { background: rgba(139, 92, 246, 0.18); color: var(--purple); }
.si--cyan   { background: rgba(0,  212, 255, 0.14); color: var(--cyan);   }
.si--pink   { background: rgba(236, 72, 153, 0.14); color: var(--pink);   }
.si--gold   { background: rgba(244,185,  66, 0.14); color: var(--gold);   }

.sc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}


/* ── 7. Products ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.40);
  box-shadow: var(--glow-purple);
}

/* CSS Placeholder preview area */
.product-preview {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* ── App UI preview ── */
.pp--app { background: linear-gradient(160deg, #1a0d3a 0%, #0d1b3b 100%); }
.pp-phone {
  width: 90px; height: 160px;
  background: #1e1e3f;
  border: 2px solid rgba(139,92,246,0.4);
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(139,92,246,0.3);
}
.pp-phone-screen { height: 100%; display: flex; flex-direction: column; gap: 6px; }
.pp-s-bar        { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.15); }
.pp-s-bar--purple { background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.pp-s-bar--short  { width: 70%; }
.pp-s-bar--shorter { width: 50%; }
.pp-s-row { display: flex; gap: 5px; flex: 1; }
.pp-s-tile { flex: 1; border-radius: 6px; }
.pp-s-tile--cyan { background: rgba(0,212,255,0.3); }
.pp-s-tile--pink { background: rgba(236,72,153,0.3); }

/* ── Browser / web preview ── */
.pp--web { background: linear-gradient(160deg, #0d1b2a 0%, #0f2040 100%); }
.pp-browser {
  width: 160px;
  background: #141432;
  border: 1.5px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,212,255,0.2);
}
.pp-browser-bar {
  display: flex;
  gap: 4px;
  padding: 7px 9px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pp-browser-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.pp-browser-screen { padding: 8px; }
.pp-b-hero {
  height: 36px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0.6;
  margin-bottom: 7px;
}
.pp-b-cols { display: flex; gap: 5px; }
.pp-b-col { height: 50px; flex: 1; border-radius: 5px; }
.pp-b-col--1 { background: rgba(139,92,246,0.35); }
.pp-b-col--2 { background: rgba(0,212,255,0.25); }
.pp-b-col--3 { background: rgba(236,72,153,0.25); }

/* ── Wallpaper preview ── */
.pp--wall { background: #0a0a1a; }
.pp-wall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 140px;
  height: 140px;
}
.pp-w { border-radius: 8px; }
.pw--1 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.pw--2 { background: linear-gradient(135deg, #00D4FF, #6D28D9); }
.pw--3 { background: linear-gradient(135deg, #F4B942, #EC4899); }
.pw--4 { background: linear-gradient(135deg, #00D4FF, #22d3ee); }

/* ── Icon grid preview ── */
.pp--icons { background: linear-gradient(160deg, #0f0f25 0%, #1a1040 100%); }
.pp-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 130px;
}
.pp-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
}
.pp-ico--purple  { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.pp-ico--cyan    { background: linear-gradient(135deg, #00D4FF, #0099bb); }
.pp-ico--pink    { background: linear-gradient(135deg, #EC4899, #a0205e); }
.pp-ico--gold    { background: linear-gradient(135deg, #F4B942, #b88220); }
.pp-ico--purple2 { background: linear-gradient(135deg, #7C3AED, #4C1D95); }
.pp-ico--cyan2   { background: linear-gradient(135deg, #06b6d4, #0284c7); }
.pp-ico--pink2   { background: linear-gradient(135deg, #f472b6, #db2777); }
.pp-ico--gold2   { background: linear-gradient(135deg, #fbbf24, #d97706); }
.pp-ico--sm      { background: rgba(255,255,255,0.08); border: 1px dashed var(--border); }

/* ── Game preview ── */
.pp--game { background: linear-gradient(160deg, #000d1a 0%, #001a35 100%); }
.pp-game-screen {
  width: 140px; height: 150px;
  background: #060f1e;
  border: 1.5px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 0 24px rgba(0,212,255,0.15);
}
.pp-g-score {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  text-align: center;
}
.pp-g-mid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-g-player {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.pp-g-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.pp-g-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--cyan), var(--purple)); border-radius: 3px; }

/* ── Prompt pack preview ── */
.pp--prompt { background: linear-gradient(160deg, #150d2a 0%, #0d1540 100%); }
.pp-prompt-card {
  width: 150px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(139,92,246,0.2);
}
.pp-p-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 10px;
}
.pp-p-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12); margin-bottom: 6px; }
.pp-p-l--1 { width: 100%; }
.pp-p-l--2 { width: 80%; }
.pp-p-l--3 { width: 60%; }
.pp-p-chip {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(139,92,246,0.18);
  border-radius: 6px;
  padding: 4px 10px;
}

/* Product body */
.product-body { padding: 20px 22px 24px; }
.product-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}


/* ── 8. Portfolio ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Gradient backgrounds for portfolio cards */
.pc--app   { background: linear-gradient(160deg, #1a0d3a 0%, #2d1060 60%, #0d1b3b 100%); }
.pc--wall  { background: linear-gradient(160deg, #2d0d3a 0%, #500d6a 60%, #1a0530 100%); }
.pc--store { background: linear-gradient(160deg, #0d2a2a 0%, #0a3d4a 60%, #071525 100%); }
.pc--game  { background: linear-gradient(160deg, #0d1a00 0%, #1a3300 60%, #0a1400 100%); }
.pc--icons { background: linear-gradient(160deg, #3a1500 0%, #5a2200 60%, #2a0c00 100%); }
.pc--ai    { background: linear-gradient(160deg, #0d002a 0%, #1a0040 60%, #080016 100%); }

.pc-overlay {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.pc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 4px 12px;
}
.pc-preview-label {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}
.pc-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border);
}
.pc-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
}
.pc-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
}


/* ── 9. Why Dobuz ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
}

/* Glow blob inside card */
.why-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(55px);
  top: -40px; right: -40px;
  pointer-events: none;
}
.why-glow--purple { background: rgba(139, 92, 246, 0.20); }
.why-glow--cyan   { background: rgba(0,  212, 255, 0.16); }
.why-glow--pink   { background: rgba(236, 72, 153, 0.16); }

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(139,92,246,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
  position: relative;
}
.why-icon svg { width: 22px; height: 22px; }
.why-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.why-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
}


/* ── 10. Process ─────────────────────────────────────────── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.ps-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  background: rgba(139,92,246,0.12);
  border: 2px solid rgba(139,92,246,0.40);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Horizontal connector line between steps */
.ps-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: linear-gradient(90deg, rgba(139,92,246,0.55), rgba(0,212,255,0.35));
}

.ps-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ps-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }


/* ── 11. CTA Section ─────────────────────────────────────── */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}
.cta-card {
  position: relative;
  text-align: center;
  padding: 72px 48px;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.12) 0%,
    rgba(0,212,255,0.08) 50%,
    rgba(236,72,153,0.10) 100%);
  border: 1px solid rgba(139,92,246,0.30);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glow-purple);
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-blob--purple {
  width: 350px; height: 350px;
  background: rgba(139,92,246,0.22);
  top: -80px; left: -60px;
}
.cta-blob--cyan {
  width: 280px; height: 280px;
  background: rgba(0,212,255,0.16);
  bottom: -60px; right: -40px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 12px 0 16px;
  position: relative;
}
.cta-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}


/* ── 12. Contact ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}
.info-card:hover { border-color: rgba(139,92,246,0.40); }
.info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}
.info-icon svg { width: 18px; height: 18px; }
.info-label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--white); transition: color 0.2s; }
a.info-value:hover { color: var(--purple); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  color: var(--white);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(167,176,192,0.5); }
.form-group select option { background: var(--bg-2); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}


/* ── 13. Footer ──────────────────────────────────────────── */
.footer {
  background: #04040c;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { font-size: 20px; margin-bottom: 14px; display: inline-block; }
.footer-brand-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }


/* ── 14. Back to Top ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139,92,246,0.50);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--purple-d); }
.back-to-top svg { width: 18px; height: 18px; }


/* ── 15. Animations ──────────────────────────────────────── */
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -25px) scale(1.06); }
  66%       { transform: translate(-18px, 20px) scale(0.95); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
  50%       { box-shadow: 0 0 12px 2px rgba(0,212,255,0.20); }
}


/* ── 16. Responsive ──────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 56px; }
  .hero-content      { text-align: center; }
  .hero-sub          { max-width: 100%; }
  .hero-btns         { justify-content: center; }
  .hero-visual       { justify-content: center; order: -1; }
  .dashboard         { max-width: 380px; }

  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .process-track     { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ps-connector      { display: none; }
}

/* Large mobile — 768px */
@media (max-width: 768px) {
  :root { --section-py: 68px; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    background: rgba(7,7,17,0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open    { transform: translateY(0); }
  .nav-link          { padding: 11px 14px; }
  .nav-cta           { display: none; }
  .hamburger         { display: flex; }

  .portfolio-grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .cta-card          { padding: 48px 28px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero-btns      { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .dashboard      { max-width: 100%; }
  .chip           { display: none; }

  .services-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-track  { grid-template-columns: 1fr; gap: 28px; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .cta-btns .btn  { width: 100%; justify-content: center; }
}
