/* ═══════════════════════════════════════════
   WEBStudios — style.css
   Dark Luxury × Electric Purple × Glassmorphism
   2025 Premium Web Agency
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --void:       #07060f;
  --ink:        #0e0d1c;
  --ink-2:      #161428;
  --ink-3:      #1e1b35;
  --surface:    #252240;

  --purple-950: #1e0044;
  --purple-900: #2d0060;
  --purple-700: #5b21b6;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;

  --white:  #ffffff;
  --ghost:  rgba(255,255,255,0.06);
  --ghost-2: rgba(255,255,255,0.1);
  --ghost-3: rgba(255,255,255,0.15);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(139,92,246,0.3);

  --text-primary:   #f1eeff;
  --text-secondary: rgba(196, 181, 253, 0.75);
  --text-muted:     rgba(255,255,255,0.35);

  --glow:      0 0 40px rgba(139,92,246,0.35);
  --glow-lg:   0 0 80px rgba(139,92,246,0.25);
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.25s var(--ease);
}

/* ── 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(--void);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(5rem, 10vw, 8rem); }
.section-dark {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* ── GLASSMORPHISM ── */
.glass {
  background: rgba(37, 34, 64, 0.5);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border-2);
}

/* ── ANIMACJE REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── TYPOGRAFIA ── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--purple-400);
  font-weight: 300;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-400), #e879f9, var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin-top: 0.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), opacity var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--ghost-2);
  color: var(--text-primary);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--ghost-3); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 9, 20, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-400));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline: auto;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--purple-400);
  transition: right var(--t);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t);
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-phone:hover { color: var(--purple-300); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 8rem 5rem;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,121,249,0.15) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-300);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(74,222,128,0.05); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-sep {
  width: 1px; height: 32px;
  background: var(--border-2);
}

/* Browser Mockup */
.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--ink-2);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-lg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.browser-url {
  flex: 1;
  background: var(--ghost);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}
.browser-screen {
  padding: 16px;
  min-height: 260px;
  position: relative;
}

.bs-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bs-logo { width: 60px; height: 8px; background: var(--purple-700); border-radius: 4px; }
.bs-nav-links { display: flex; gap: 8px; margin-left: auto; }
.bs-line { height: 5px; border-radius: 3px; background: var(--ghost-3); }
.bs-line--short { width: 30px; }
.bs-line--md { width: 55px; }
.bs-line--lg { width: 80%; }
.bs-line--xl { width: 90%; }
.bs-btn { width: 50px; height: 20px; background: var(--purple-600); border-radius: 4px; }
.bs-hero { margin-bottom: 16px; }
.bs-hero .bs-line { margin-bottom: 6px; }
.bs-btns { display: flex; gap: 8px; margin-top: 10px; }
.bs-cta { width: 70px; height: 22px; background: var(--purple-600); border-radius: 4px; }
.bs-cta--ghost { background: var(--ghost-2); border: 1px solid var(--border-2); }
.bs-cards { display: flex; gap: 8px; }
.bs-card {
  flex: 1; height: 50px;
  background: var(--ghost);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.bs-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 80px;
  background: var(--purple-600);
  filter: blur(40px);
  opacity: 0.3;
  border-radius: 50%;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,34,64,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 10px 16px;
  box-shadow: var(--shadow);
}
.floating-badge strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); }
.floating-badge span { font-size: 0.72rem; color: var(--text-muted); }
.fb-icon { font-size: 1.25rem; }
.float-1 {
  bottom: -20px; left: -40px;
  animation: floatBadge 4s ease-in-out infinite;
}
.float-2 {
  top: -15px; right: -30px;
  animation: floatBadge 5s ease-in-out infinite 1.5s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  z-index: 2;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-300); }
.scroll-dot {
  width: 4px; height: 40px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--purple-400), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-photo-placeholder {
  height: 420px;
  background: var(--ink-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.about-photo-placeholder svg { width: 64px; height: 64px; }

/* Zastąp placeholder swoim zdjęciem:
.about-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
}
*/

.about-photo-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 60px;
  background: var(--purple-600);
  filter: blur(40px);
  opacity: 0.3;
  border-radius: 50%;
}

.about-stat-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow), var(--glow);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-size: 2rem; color: rgba(255,255,255,0.7); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

.about-content .section-title { margin-top: 0.5rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 500;
}
.about-body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-values { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(139,92,246,0.12);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}
.value-icon svg { width: 18px; height: 18px; }
.value-item strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.value-item span { font-size: 0.82rem; color: var(--text-secondary); }

/* ── OFFER ── */
.section-dark-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  top: -200px; left: -100px;
  filter: blur(60px);
  pointer-events: none;
}
.section-dark-orb--right {
  left: auto; right: -100px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.offer-card {
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), transparent);
  opacity: 0;
  transition: opacity var(--t);
  border-radius: inherit;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.5);
  box-shadow: var(--shadow), var(--glow);
}
.offer-card:hover::before { opacity: 1; }

.offer-icon {
  width: 48px; height: 48px;
  background: rgba(139,92,246,0.12);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--purple-400);
  transition: background var(--t), border-color var(--t);
}
.offer-icon svg { width: 22px; height: 22px; }
.offer-card:hover .offer-icon {
  background: rgba(139,92,246,0.22);
  border-color: var(--purple-400);
}

.offer-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.offer-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--purple-300);
  font-style: italic;
}

.offer-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  background: var(--ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
  opacity: 0;
  transform: translateX(-8px);
}
.offer-arrow svg { width: 14px; height: 14px; }
.offer-card:hover .offer-arrow { opacity: 1; transform: translateX(0); color: var(--purple-400); }

/* ── DLACZEGO WARTO ── */
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-item:hover { border-color: var(--border-2); }

.why-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--purple-600);
  font-style: italic;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 28px;
}
.why-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1.4;
}
.why-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.metrics-card {
  border-radius: var(--r-xl);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.metric-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.metric-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.metric-row:last-child { margin-bottom: 0; }
.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  min-width: 130px;
}
.metric-bar {
  flex: 1;
  height: 4px;
  background: var(--ghost-2);
  border-radius: 2px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400));
  border-radius: 2px;
  transition: width 1.5s var(--ease) 0.3s;
}
.metric-fill.animated { width: var(--fill); }
.metric-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-300);
  min-width: 26px;
  text-align: right;
}

.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--purple-300);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── PORTFOLIO ── */
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--ghost);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  color: var(--white);
  background: rgba(139,92,246,0.2);
  border-color: var(--purple-500);
}
.filter-btn.active { box-shadow: 0 0 16px rgba(139,92,246,0.2); }

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

.portfolio-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--ink-2);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), opacity 0.4s var(--ease);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg), var(--glow);
}
.portfolio-card.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); }

/* Portfolio mockup thumbs */
.portfolio-thumb {
  height: 200px;
  padding: 1rem 1rem 0;
  display: flex;
  align-items: flex-end;
}
.portfolio-thumb--1 { background: linear-gradient(135deg, #1a0044, #5b21b6); }
.portfolio-thumb--2 { background: linear-gradient(135deg, #042f2e, #0f766e); }
.portfolio-thumb--3 { background: linear-gradient(135deg, #431407, #c2410c); }
.portfolio-thumb--4 { background: linear-gradient(135deg, #0f0f0f, #262626); }
.portfolio-thumb--5 { background: linear-gradient(135deg, #1e1b4b, #4338ca); }
.portfolio-thumb--6 { background: linear-gradient(135deg, #0c0a20, #7c3aed); }

.pt-browser {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.pt-bar {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.2);
}
.pt-bar span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.pt-content { padding: 8px 8px 0; display: flex; flex-direction: column; gap: 5px; }
.pt-hero-block {
  height: 36px; border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.pt-hero-block--dark { background: rgba(255,255,255,0.05); }
.pt-row { display: flex; gap: 6px; }
.pt-line {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
}
.pt-line--lg { width: 70%; }
.pt-cards, .pt-products, .pt-features, .pt-grid-3 { display: flex; gap: 5px; }
.pt-c, .pt-prod, .pt-feat, .pt-g {
  flex: 1; height: 28px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}
.pt-nav-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.pt-logo-sm { width: 32px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px; }
.pt-nav-sm { flex: 1; display: flex; gap: 5px; }
.pt-nav-sm::before, .pt-nav-sm::after {
  content: '';
  display: block;
  width: 22px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.pt-cart { width: 16px; height: 16px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.pt-products--2 .pt-prod { height: 36px; }
.pt-banner {
  height: 40px; border-radius: 4px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 5px;
}
.pt-full-hero {
  height: 50px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.pt-cta-row { padding: 4px 0 0; }
.pt-cta-btn { width: 60px; height: 16px; background: rgba(255,255,255,0.4); border-radius: 3px; }
.pt-saas-hero { height: 44px; background: linear-gradient(90deg, rgba(139,92,246,0.4), rgba(232,121,249,0.2)); border-radius: 4px; }
.pt-pricing { display: flex; gap: 5px; margin-top: 5px; }
.pt-price-card { flex: 1; height: 40px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.pt-price-card--featured { background: rgba(139,92,246,0.4); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,6,15,0.97) 0%, rgba(7,6,15,0.7) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-400);
  margin-bottom: 4px;
}
.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.portfolio-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.portfolio-cta p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,6,15,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  width: min(100%, 720px);
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s var(--ease-spring);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  background: var(--ghost-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--t);
}
.modal-close:hover { background: var(--ghost-3); color: var(--white); }
.modal-close svg { width: 16px; height: 16px; }

.modal-project-header { margin-bottom: 2rem; }
.modal-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-400);
  margin-bottom: 8px;
  display: block;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.modal-desc { color: var(--text-secondary); line-height: 1.75; font-size: 0.95rem; }
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.modal-tag {
  font-size: 0.75rem;
  color: var(--purple-300);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}
.modal-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── TESTIMONIALS ── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  min-width: calc(50% - 0.75rem);
  border-radius: var(--r-xl);
  padding: 2rem;
  flex-shrink: 0;
}

.testimonial-stars {
  font-size: 1rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 42px; height: 42px;
  background: var(--ghost-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all var(--t);
}
.slider-btn:hover { background: rgba(139,92,246,0.2); border-color: var(--purple-500); }
.slider-btn svg { width: 16px; height: 16px; }

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: all var(--t);
}
.slider-dot.active {
  background: var(--purple-500);
  width: 24px;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1rem;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ghost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-500);
  background: rgba(139,92,246,0.06);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--ink-3); }
.form-group textarea { resize: vertical; min-height: 120px; }

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.budget-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--ghost);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--t);
}
.budget-btn:hover, .budget-btn.selected {
  color: var(--white);
  background: rgba(139,92,246,0.2);
  border-color: var(--purple-500);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: #4ade80; flex-shrink: 0; }
.form-success strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); }
.form-success span { font-size: 0.8rem; color: var(--text-secondary); }

.contact-info-card {
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-info-card > p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.contact-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: rgba(139,92,246,0.12);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}
.ci-icon svg { width: 17px; height: 17px; }
.contact-item > div span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-item > div a,
.contact-item > div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--t);
}
.contact-item > div a:hover { color: var(--purple-300); }

.social-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.social-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ghost);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 14px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--t);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: rgba(139,92,246,0.15);
  border-color: var(--purple-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139,92,246,0.2);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--void);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links strong {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--purple-300); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--t); }
.footer-legal a:hover { color: var(--purple-400); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .nav-menu, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-menu.open .nav-link { font-size: 1rem; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-stat-card { position: static; display: inline-block; margin-top: 1rem; }
  .contact-form { padding: 1.5rem; }
}
