/* ============================================================
   dCode Studio — styles.css  (commercial upgrade v2)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg-base:        #080910;
  --bg-surface:     #0f1016;
  --bg-card:        #141620;
  --bg-card-hover:  #1a1d2a;
  --bg-glass:       rgba(20, 22, 32, 0.75);

  --accent:         #6c63ff;
  --accent-light:   #8b84ff;
  --accent-dim:     rgba(108, 99, 255, 0.15);
  --accent-glow:    rgba(108, 99, 255, 0.28);
  --accent-2:       #00d4aa;
  --accent-2-dim:   rgba(0, 212, 170, 0.12);

  --text-primary:   #eeeef8;
  --text-secondary: #8888a8;
  --text-muted:     #4a4a68;

  --border:         rgba(255,255,255,0.065);
  --border-hover:   rgba(255,255,255,0.12);
  --border-accent:  rgba(108, 99, 255, 0.38);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --section-gap:  8rem;
  --card-radius:  18px;
  --btn-radius:   12px;
  --tr: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.section-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
}

.section-title {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: var(--btn-radius);
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; stroke: currentColor; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5046e5 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(108,99,255,0.5);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ── Global background effects ────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(108,99,255,0.16) 0%, transparent 70%);
  top: -180px; left: -120px;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,212,170,0.09) 0%, transparent 70%);
  top: 280px; right: -100px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(108,99,255,0.1) 0%, transparent 70%);
  bottom: -80px; left: 50%;
}

/* ── Noise texture ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--tr);
}
#navbar.scrolled {
  background: rgba(8, 9, 16, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  outline: none;
  border: none;
}
.nav-logo:focus {
  outline: none;
}
.nav-logo:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav-logo em {
  font-style: normal;
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: var(--tr);
}
.nav-links a:hover,
.nav-links a.active-nav { color: var(--text-primary); background: var(--bg-card); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 23px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--tr);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1rem 1rem;
  background: rgba(8, 9, 16, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: var(--tr);
}
.nav-mobile a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-mobile .btn { margin-top: 0.5rem; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { }

/* Live badge */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-2-dim);
  border: 1px solid rgba(0,212,170,0.22);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  animation: pulse-live 2.5s ease-in-out infinite;
}
.hero-nextgen-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 0.38rem 1rem;
  border-radius: 50px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(0,212,170,0); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* Headline */
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hero-headline .hl {
  display: block;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub */
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.075rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Proof pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.4rem 0.95rem;
  border-radius: 50px;
  transition: var(--tr);
}
.pill:hover { border-color: var(--border-accent); transform: translateY(-1px); }
.pill-icon { font-size: 0.95rem; }

/* CTA row */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ── CSS Device Mockup ────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 440px;
}

/* Laptop */
.mock-laptop {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
.mock-laptop-body {
  background: linear-gradient(145deg, #1e2030, #12141e);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px 12px 0 0;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
.mock-laptop-screen {
  background: #080910;
  border-radius: 6px;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.mock-screen-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-card);
}
.mock-bar.accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 60%; }
.mock-bar.w80 { width: 80%; }
.mock-bar.w55 { width: 55%; }
.mock-bar.w70 { width: 70%; }
.mock-bar.w40 { width: 40%; }
.mock-screen-hero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 8px 0;
}
.mock-btn-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.mock-btn-sm {
  height: 18px;
  border-radius: 5px;
  background: var(--accent);
  width: 60px;
}
.mock-btn-sm.ghost { background: var(--bg-card-hover); border: 1px solid var(--border); }
.mock-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.mock-logo-dot {
  width: 28px; height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
}
.mock-nav-dots { display: flex; gap: 4px; }
.mock-nav-dots span {
  width: 22px; height: 5px;
  border-radius: 2px;
  background: var(--bg-card-hover);
}

.mock-laptop-base {
  height: 10px;
  background: linear-gradient(145deg, #252838, #181a26);
  border-radius: 0 0 8px 8px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-top: none;
  position: relative;
}
.mock-laptop-base::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(145deg, #1a1c2a, #0f1018);
  border-radius: 0 0 6px 6px;
}

/* Phone */
.mock-phone {
  position: absolute;
  right: -10px;
  bottom: 24px;
  width: 96px;
  background: linear-gradient(145deg, #1e2030, #12141e);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 8px 6px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
.mock-phone-notch {
  width: 24px; height: 5px;
  background: var(--bg-card);
  border-radius: 3px;
  margin: 0 auto 8px;
}
.mock-phone-screen {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-phone-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-card);
}
.mock-phone-bar.accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 75%; }
.mock-phone-bar.w90 { width: 90%; }
.mock-phone-bar.w65 { width: 65%; }
.mock-phone-btn {
  height: 14px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 6px;
}

/* Mock Dashboard Layout Styles */
.mock-dash-layout {
  display: flex;
  gap: 8px;
  flex: 1;
}
.mock-dash-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-dash-right {
  flex: 0.9;
  display: flex;
}
.mock-ui-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
}
.mock-avatar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.mock-badge-status {
  width: 25px;
  height: 6px;
  border-radius: 3px;
  background: var(--accent-2-dim);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
}
.mock-ui-stats {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 6px 10px 4px;
  height: 48px;
}
.mock-chart-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.mock-chart-bar.accent {
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
}
.mock-ui-card.form-preview {
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.mock-input-field {
  height: 12px;
  border-radius: 3px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.mock-btn-cta {
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
}

/* Mock Phone UI Styles */
.mock-phone-screen {
  text-align: center;
}
.mock-phone-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  margin: 0 auto;
}
.mock-phone-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}

/* Glow behind mockup */
.mock-glow {
  position: absolute;
  width: 340px; height: 200px;
  bottom: 0;
  background: radial-gradient(ellipse, rgba(108,99,255,0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* Floating badges on visual */
.mock-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.mock-float-badge:nth-child(2) { animation-delay: 1s; }
.mock-float-badge:nth-child(3) { animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.badge-top    { top: 10px; left: -20px; }
.badge-middle { top: 50%;  left: -30px; transform: translateY(-50%); }
.badge-right  { top: 20px; right: 0; }
.badge-icon { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════ */
#trust {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
  z-index: 1;
}
.trust-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 2.5rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.trust-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   KAM SKIRTA
══════════════════════════════════════════════════════════ */
#kam-skirta {
  padding: var(--section-gap) 0;
  position: relative;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 0.85rem;
}
.audience-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.1rem 1.3rem;
  transition: var(--tr);
}
.audience-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.audience-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
  flex-shrink: 0;
}
.audience-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Audience note */
.audience-note {
  margin-bottom: 2.5rem;
  font-size: 0.975rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 2px solid var(--border-accent);
}

/* Catch-all closing line */
.audience-catchall {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--bg-surface);
}

/* ══════════════════════════════════════════════════════════
   KAS ĮEINA
══════════════════════════════════════════════════════════ */
#kas-ieina {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.025) 50%, transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.4rem;
  transition: var(--tr);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.feature-check {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), #5046e5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-check svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════
   GALIMYBĖS / CAPABILITY SHOWCASE
══════════════════════════════════════════════════════════ */
#galimybes {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.03) 50%, transparent);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--tr);
}
.cap-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.cap-card:hover::before { opacity: 1; }

/* Accent card — Mini sistemos */
.cap-card-accent {
  border-color: var(--border-accent);
  background: linear-gradient(145deg, #13162a 0%, #0f1222 100%);
}
.cap-card-accent::before { opacity: 0.6; }
.cap-card-accent:hover { box-shadow: 0 16px 40px rgba(108,99,255,0.25); }

.cap-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cap-icon {
  font-size: 1.3rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  flex-shrink: 0;
}
.cap-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.cap-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cap-item {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.cap-dot {
  font-size: 0.5rem;
  color: var(--accent-light);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* CTA note below grid */
.cap-cta-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--card-radius);
  padding: 1.1rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.cap-cta-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.cap-cta-note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.cap-cta-link {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(139,132,255,0.4);
  transition: var(--tr);
}
.cap-cta-link:hover {
  color: var(--accent-2);
  text-decoration-color: var(--accent-2);
}

.section-disclaimer {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 1.75rem auto 0;
  text-align: center;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
#kainos {
  padding: var(--section-gap) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0;
  transition: var(--tr);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 20px rgba(255, 255, 255, 0.03);
}
.pricing-card:hover::after { opacity: 1; }

/* Featured (Pro) */
.pricing-card.featured {
  border-color: rgba(108, 99, 255, 0.45);
  background: linear-gradient(145deg, #16192a 0%, #10121d 100%);
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.04);
}
.pricing-card.featured::after { opacity: 1; }
.pricing-card.featured:hover {
  border-color: var(--accent-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(108, 99, 255, 0.22);
}
.pricing-card.featured .btn-primary:hover {
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.45);
}
.featured-ring {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(108,99,255,0.12) 0%, transparent 100%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.pricing-badge.tier { color: var(--accent-light); background: var(--accent-dim); border: 1px solid var(--border-accent); }
.pricing-badge.rec  { color: var(--accent-2); background: var(--accent-2-dim); border: 1px solid rgba(0,212,170,0.3); }

.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: var(--font-mono);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}
.pricing-price .currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-top: 0.3rem; display: inline-block; }
.pricing-price .from { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); font-family: var(--font-body); margin-left: 0.2rem; }

.pricing-benefit {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.55;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.pricing-dot {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-dot svg { width: 10px; height: 10px; stroke: var(--accent-light); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   INSTAGRAM / WHY SECTION
══════════════════════════════════════════════════════════ */
#kodėl-ne-instagram {
  padding: var(--section-gap) 0;
}
.insta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.insta-text-content .section-title { margin-bottom: 1rem; }
.insta-text-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.compare-header-cell {
  padding: 0.65rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-header-cell.bad  { color: #ff6b6b; }
.compare-header-cell.good { color: var(--accent-2); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.compare-cell.bad  { color: var(--text-secondary); background: rgba(255,107,107,0.04); }
.compare-cell.good { color: var(--text-primary);   background: rgba(0,212,170,0.04); border-left: 1px solid var(--border); }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
#procesas {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.025) 50%, transparent);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  position: relative;
}
/* connector line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.2;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-radius: var(--card-radius);
  transition: var(--tr);
  position: relative;
  z-index: 1;
}
.process-step:hover { background: var(--bg-card); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent-light);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(108,99,255,0.07);
}
.step-content h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.step-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.process-note {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.process-note::before { content: 'ℹ️'; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════════ */
#portfolio {
  padding: var(--section-gap) 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.portfolio-thumb {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CSS mockup inside portfolio card */
.port-screen {
  width: 80%;
  height: 120px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.port-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-card-hover);
}
.port-bar.hero-line { background: linear-gradient(90deg, var(--accent), var(--accent-2)); width: 70%; height: 6px; margin-bottom: 2px; }
.port-bar.w80 { width: 80%; }
.port-bar.w60 { width: 60%; }
.port-bar.w45 { width: 45%; }

.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-card) 100%);
  pointer-events: none;
}

.portfolio-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.portfolio-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.35rem;
}
.portfolio-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--tr);
  width: 100%;
  justify-content: center;
}
.portfolio-cta:hover {
  color: var(--accent-light);
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

/* Thumb accent colors */
.pt-1 { background: linear-gradient(135deg, #0d0820 0%, #1e1040 100%); }
.pt-2 { background: linear-gradient(135deg, #120808 0%, #2a1010 100%); }
.pt-3 { background: linear-gradient(135deg, #061410 0%, #0e2820 100%); }
.pt-4 { background: linear-gradient(135deg, #10080e 0%, #220f1c 100%); }
.pt-5 { background: linear-gradient(135deg, #080e08 0%, #0f2010 60%, #1a3a10 100%); }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
#faq {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.025) 50%, transparent);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.925rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--tr);
}
.faq-question:hover { color: var(--accent-light); }

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--text-secondary); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; transition: transform var(--tr); }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   CONTACT — FINAL CTA
══════════════════════════════════════════════════════════ */
#kontaktai {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.contact-bg-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(108,99,255,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.contact-wrapper {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-wrapper .section-title { font-size: clamp(1.75rem, 4.5vw, 2.75rem); margin-bottom: 1.25rem; }
.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
  padding-bottom: 2.5rem;
}

/* Primary CTA row */
.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact-cta-row .btn { padding: 1rem 2rem; font-size: 0.975rem; }

/* Copy Email Button copied state styling */
.copy-email-btn {
  transition: var(--tr);
}
.copy-email-btn.copied {
  border-color: var(--accent-2) !important;
  color: var(--accent-2) !important;
  background: var(--accent-2-dim) !important;
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.18);
}

/* Secondary contact links */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  transition: var(--tr);
}
.contact-link:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.contact-link.messenger:hover { border-color: rgba(0,149,255,0.4); color: #4db3ff; }
.contact-link.instagram:hover { border-color: rgba(228,64,95,0.4); color: #f06; }
.contact-link.email:hover     { border-color: var(--border-accent);  color: var(--accent-light); }

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { font-size: 1rem; font-weight: 700; }
.footer-logo em { font-style: normal; color: var(--accent-light); }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.15rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.6s cubic-bezier(0.4,0,0.2,1),
    transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i,0) * 70ms); }

/* ══════════════════════════════════════════════════════════
   VIZUALINĖS GALIMYBĖS / VISUAL SHOWCASE
   ══════════════════════════════════════════════════════════ */
#vizualai {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,170,0.02) 50%, transparent);
  border-top: 1px solid rgba(255,255,255,0.02);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: var(--tr);
}

.showcase-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.showcase-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}

.showcase-visual {
  height: 160px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.02);
}

.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(108, 99, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.showcase-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.showcase-card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ── Showcase Card Visuals ─────────────────────────────── */

/* 1. 3D Mockup */
.mockup-3d {
  width: 130px;
  height: 100px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  position: relative;
  transform: perspective(600px) rotateX(20deg) rotateY(-20deg) rotateZ(5deg);
  transition: var(--tr);
  transform-style: preserve-3d;
  box-shadow: -10px 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--accent-glow);
}
.showcase-card:hover .mockup-3d {
  transform: perspective(600px) rotateX(15deg) rotateY(-15deg) rotateZ(3deg) translateY(-5px);
  box-shadow: -15px 15px 30px rgba(0,0,0,0.6), 0 0 25px rgba(108,99,255,0.4);
}
.mockup-screen {
  position: absolute;
  inset: 2px;
  background: #0f1016;
  border-radius: 6px;
  overflow: hidden;
  padding: 6px;
}
.mockup-ui {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.ui-header {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  width: 40%;
}
.ui-hero-title {
  height: 12px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-2));
  border-radius: 3px;
  width: 80%;
  margin-top: 6px;
}
.ui-hero-text {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  width: 90%;
}
.ui-hero-btn {
  height: 10px;
  background: var(--accent);
  border-radius: 3px;
  width: 30%;
  margin-top: auto;
}

/* 2. Cards Stack */
.cards-stack {
  position: relative;
  width: 140px;
  height: 100px;
}
.stack-card {
  position: absolute;
  width: 80px;
  height: 55px;
  background: rgba(20, 22, 32, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: var(--tr);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.stack-card.c1 {
  top: 10px;
  left: 10px;
  z-index: 3;
  border-color: var(--border-accent);
}
.stack-card.c2 {
  top: 25px;
  left: 30px;
  z-index: 2;
  transform: rotate(3deg);
  background: rgba(15, 16, 22, 0.9);
}
.stack-card.c3 {
  top: 40px;
  left: 50px;
  z-index: 1;
  transform: rotate(-3deg);
  background: rgba(8, 9, 16, 0.95);
}
.showcase-card:hover .stack-card.c1 {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-light);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 10px var(--accent-glow);
}
.showcase-card:hover .stack-card.c2 {
  transform: translate(8px, -4px) rotate(6deg);
  border-color: rgba(255,255,255,0.1);
}
.showcase-card:hover .stack-card.c3 {
  transform: translate(16px, 2px) rotate(-6deg);
}
.stack-card::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--accent-2);
}
.stack-card.c1::after { background: var(--accent-light); }
.stack-card::before {
  content: '';
  position: absolute;
  top: 25px; left: 8px; right: 8px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

/* 3. Before/After Split */
.ba-slider {
  width: 160px;
  height: 100px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-before {
  background: linear-gradient(135deg, #1f1f2e, #11111b);
}
.ba-before::after {
  content: 'PRIEŠ';
  position: absolute;
  top: 8px; left: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 4px;
}
.ba-after {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  width: 50%;
  transition: width var(--tr);
}
.ba-after::after {
  content: 'PO';
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 4px;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transition: left var(--tr);
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
}
.ba-handle::before {
  content: '↔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 9px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.showcase-card:hover .ba-after {
  width: 80%;
}
.showcase-card:hover .ba-handle {
  left: 80%;
}

/* 4. Mini Form UI */
.mini-form {
  width: 140px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: var(--tr);
}
.showcase-card:hover .mini-form {
  border-color: var(--border-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 12px rgba(108,99,255,0.15);
}
.form-input {
  height: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  position: relative;
}
.form-input::before {
  content: '';
  position: absolute;
  top: 5px; left: 6px;
  width: 30px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.form-btn {
  height: 18px;
  background: linear-gradient(90deg, var(--accent), #5046e5);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.form-btn::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}
.showcase-card:hover .form-btn {
  background: var(--accent-light);
}

/* 5. Glowing CTA Button */
.glowing-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(108,99,255,0.1);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.glowing-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: showcaseShine 4s infinite linear;
}
@keyframes showcaseShine {
  0% { left: -150%; }
  15% { left: 150%; }
  100% { left: 150%; }
}
.showcase-card:hover .glowing-btn {
  background: var(--accent);
  border-color: var(--accent-light);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* 6. Mini Dashboard / CRM */
.mini-dashboard {
  width: 140px;
  height: 85px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: var(--tr);
}
.showcase-card:hover .mini-dashboard {
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 12px rgba(0,212,170,0.15);
}
.dash-sidebar {
  width: 30px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-sidebar::before, .dash-sidebar::after {
  content: '';
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.dash-sidebar::after { background: var(--accent-2); }
.dash-content {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-row {
  height: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 4px;
}
.dash-row::before {
  content: '';
  width: 25px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.dash-row:nth-child(2)::before { background: var(--accent-light); width: 35px; }
.dash-row:nth-child(3)::before { background: var(--accent-2); width: 15px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr 1fr; }
  /* Showcase */
  .showcase-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-gap: 5.5rem; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-sub { max-width: 100%; }
  .hero-pills { justify-content: center; }
  .hero-cta  { justify-content: center; }
  .hero-visual { height: 320px; }
  .mock-laptop { width: 260px; }
  .mock-laptop-screen { height: 160px; }
  .mock-phone { width: 80px; right: 0; }

  .insta-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-gap: 4.5rem; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  #hero { padding: 7.5rem 0 4rem; }

  /* Trust */
  .trust-grid { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); min-width: 50%; padding: 1rem 1.5rem; }
  .trust-item:nth-child(2n) { border-left: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

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

  /* Contact */
  .contact-cta-row { flex-direction: column; align-items: stretch; }
  .contact-cta-row .btn { width: 100%; }
  .contact-links { flex-direction: column; align-items: stretch; }
  .contact-link { justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-item { min-width: 100%; border-right: none; border-left: none !important; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr; }
  /* Showcase */
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .reveal {
    transform: none !important;
    opacity: 1 !important;
  }
  .showcase-card:hover {
    transform: none !important;
  }
  .mockup-3d {
    transform: none !important;
    transition: none !important;
  }
  .showcase-card:hover .mockup-3d {
    transform: none !important;
  }
  .stack-card {
    transition: none !important;
  }
  .showcase-card:hover .stack-card.c1,
  .showcase-card:hover .stack-card.c2,
  .showcase-card:hover .stack-card.c3 {
    transform: none !important;
  }
  .ba-after, .ba-handle {
    transition: none !important;
  }
  .showcase-card:hover .ba-after {
    width: 50% !important;
  }
  .showcase-card:hover .ba-handle {
    left: 50% !important;
  }
  .glowing-btn::after {
    animation: none !important;
  }
}
