:root{
  --bg:#0a0a0f;
  --bg-secondary:#0f0f1a;
  --panel:#141424;
  --card:#1a1a2e;
  --card-hover:#22223a;
  --border:#2a2a4a;
  --text:#ffffff;
  --text-muted:#9ca3af;
  --text-dim:#6b7280;
  --royal-purple:#7c3aed;
  --royal-purple-dark:#6d28d9;
  --royal-purple-light:#8b5cf6;
  --neon-cyan:#00f5ff;
  --neon-cyan-dark:#00d9e3;
  --neon-cyan-light:#4dfffe;
  --toxic-green:#39ff14;
  --toxic-green-dark:#32e510;
  --toxic-green-light:#5eff3d;
  --portal-green:#97ce4c;
  --portal-blue:#44b4d6;
  --gradient-royal:linear-gradient(135deg,#7c3aed 0%,#a855f7 100%);
  --gradient-toxic:linear-gradient(135deg,#39ff14 0%,#00f5ff 100%);
  --gradient-neon:linear-gradient(135deg,#00f5ff 0%,#7c3aed 100%);
  --gradient-portal:linear-gradient(135deg,#97ce4c 0%,#44b4d6 100%);
  --gradient-dark:linear-gradient(135deg,#1a1a2e 0%,#0a0a0f 100%);
  --glow-purple:0 0 30px rgba(124,58,237,0.6);
  --glow-cyan:0 0 30px rgba(0,245,255,0.6);
  --glow-toxic:0 0 30px rgba(57,255,20,0.6);
  --glow-mixed:0 0 20px rgba(124,58,237,0.4),0 0 40px rgba(0,245,255,0.3),0 0 60px rgba(57,255,20,0.2);
  --shadow-sm:0 1px 2px rgba(0,0,0,0.5);
  --shadow-md:0 4px 6px rgba(0,0,0,0.6);
  --shadow-lg:0 10px 15px rgba(0,0,0,0.7);
  --shadow-xl:0 20px 25px rgba(0,0,0,0.8);
  --shadow-2xl:0 25px 50px rgba(0,0,0,0.9);
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:16px;
  --radius-xl:24px;
  --radius-full:9999px;
  --transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast:all 0.15s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:all 0.5s cubic-bezier(0.4,0,0.2,1);
  --container:1200px;
  --header-height:80px;
  color-scheme:dark;
}

/* Respect user preferences for motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html{
  scroll-behavior:smooth;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  position:relative;
  min-height:100vh;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--toxic-green);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--toxic-green);
  color: var(--bg);
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 6px;
}

/* Reading Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-toxic);
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--text);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  max-width: 300px;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid var(--toxic-green);
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast.info {
  border-left: 4px solid var(--neon-cyan);
}

/* Mobile First - Container */
.container {
  max-width:var(--container);
  margin:0 auto;
  padding:0 16px;
}

/* Mobile First - Typography */
h1 { font-size:32px; line-height: 1.2; }
h2 { font-size:28px; line-height: 1.3; }
h3 { font-size:20px; line-height: 1.4; }

/* Tablet */
@media (min-width:768px) {
  .container { padding:0 24px; }
  h1 { font-size:48px; }
  h2 { font-size:36px; }
  h3 { font-size:24px; }
}

/* Desktop */
@media (min-width:1024px) {
  .container { padding:0 32px; }
  h1 { font-size:clamp(40px,6vw,72px); }
  h2 { font-size:clamp(32px,4vw,48px); }
}

/* Enhanced Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1em;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-text:last-child {
  width: 60%;
}

/* Custom Cursor - Desktop only */
@media (min-width:1024px) {
  .cursor {
    position:fixed;
    width:30px;
    height:30px;
    border:2px solid var(--toxic-green);
    border-radius:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:9999;
    transition:all 0.1s ease;
    mix-blend-mode:screen;
    box-shadow:var(--glow-toxic);
  }

  .cursor-dot {
    position:fixed;
    width:6px;
    height:6px;
    background:var(--neon-cyan);
    border-radius:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:9999;
    transition:all 0.05s ease;
    box-shadow:var(--glow-cyan);
  }

  .cursor.hover {
    width:50px;
    height:50px;
    border-color:var(--royal-purple);
    background:rgba(124,58,237,0.1);
    box-shadow:var(--glow-purple);
  }
}

/* Custom Scrollbar - Desktop only */
@media (min-width:1024px) {
  ::-webkit-scrollbar {
    width:12px;
  }

  ::-webkit-scrollbar-track {
    background:var(--bg-secondary);
    border-left:1px solid var(--border);
  }

  ::-webkit-scrollbar-thumb {
    background:linear-gradient(180deg,var(--royal-purple),var(--toxic-green));
    border-radius:6px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background:linear-gradient(180deg,var(--toxic-green),var(--neon-cyan));
  }
}

/* Animated Background */
.portal-bg {
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-2;
  overflow:hidden;
  background:radial-gradient(ellipse at center,rgba(124,58,237,0.1) 0%,transparent 50%),
  radial-gradient(ellipse at bottom left,rgba(57,255,20,0.05) 0%,transparent 50%),
  radial-gradient(ellipse at top right,rgba(0,245,255,0.05) 0%,transparent 50%);
}

.portal {
  position:absolute;
  width:200px;
  height:200px;
  border-radius:50%;
  background:radial-gradient(circle,var(--portal-green) 0%,transparent 30%);
  filter:blur(60px);
  opacity:0.3;
  animation:portalPulse 8s ease-in-out infinite;
}

.portal:nth-child(1) {
  top:10%;
  left:10%;
  animation-delay:0s;
}

.portal:nth-child(2) {
  bottom:20%;
  right:15%;
  background:radial-gradient(circle,var(--portal-blue) 0%,transparent 30%);
  animation-delay:3s;
}

.portal:nth-child(3) {
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,var(--royal-purple) 0%,transparent 30%);
  animation-delay:5s;
}

@media (min-width:768px) {
  .portal {
    width:300px;
    height:300px;
  }
}

@keyframes portalPulse {
  0%,100%{transform:scale(1) rotate(0deg);opacity:0.3}
  25%{transform:scale(1.2) rotate(90deg);opacity:0.5}
  50%{transform:scale(0.8) rotate(180deg);opacity:0.2}
  75%{transform:scale(1.1) rotate(270deg);opacity:0.4}
}

/* Grid Background */
.grid-bg {
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-1;
  background-image:linear-gradient(rgba(124,58,237,0.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(0,245,255,0.03) 1px,transparent 1px);
  background-size:30px 30px;
  animation:gridGlitch 20s linear infinite;
}

@media (min-width:768px) {
  .grid-bg {
    background-size:50px 50px;
  }
}

@keyframes gridGlitch {
  0%{transform:translate(0,0)}
  10%{transform:translate(-5px,5px)}
  20%{transform:translate(5px,-5px)}
  30%{transform:translate(0,0)}
  100%{transform:translate(50px,50px)}
}

/* Floating Particles */
.particles-container {
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-1;
  overflow:hidden;
}

.particle {
  position:absolute;
  width:3px;
  height:3px;
  background:var(--toxic-green);
  border-radius:50%;
  box-shadow:0 0 10px var(--toxic-green);
  animation:floatUp 15s linear infinite;
}

@media (min-width:768px) {
  .particle {
    width:4px;
    height:4px;
  }
}

@keyframes floatUp {
  0%{transform:translateY(100vh) translateX(0) scale(0);opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-100vh) translateX(100px) scale(1.5);opacity:0}
}

/* Header - Mobile First */
header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--header-height);
  background:rgba(10,10,15,0.9);
  backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid var(--border);
  z-index:100;
  transition:var(--transition);
}

header::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--toxic-green) 20%,var(--royal-purple) 50%,var(--neon-cyan) 80%,transparent);
  animation:borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}

header.scrolled {
  background:rgba(10,10,15,0.98);
  box-shadow:var(--shadow-lg),var(--glow-mixed);
}

header .container {
  height: 100%;
}

.header-content {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Logo - Mobile First */
.logo {
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  position:relative;
  flex-shrink:0;
}

.logo-icon {
  width:36px;
  height:36px;
  background:var(--gradient-toxic);
  border-radius:var(--radius-md);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--glow-toxic);
  animation:logoRotate 10s linear infinite;
}

.logo-icon i {
  font-size:18px;
  color:var(--bg);
  z-index:1;
  animation:logoRotate 10s linear infinite reverse;
}

.logo-text {
  font-family:'Space Grotesk',sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:-0.5px;
  background:linear-gradient(135deg,var(--toxic-green),var(--neon-cyan),var(--royal-purple));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 200%;
  animation:gradientShift 3s ease infinite;
}

/* Tablet */
@media (min-width:768px) {
  .logo {
    gap:12px;
  }
  .logo-icon {
    width:44px;
    height:44px;
  }
  .logo-icon i {
    font-size:24px;
  }
  .logo-text {
    font-size:22px;
  }
}

@keyframes logoRotate {
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

@keyframes gradientShift {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Navigation - Mobile First */
nav {
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-links {
  display:none;
  position:fixed;
  top:var(--header-height);
  left:0;
  right:0;
  background:rgba(10,10,15,0.98);
  backdrop-filter:blur(20px);
  flex-direction:column;
  padding:24px;
  border-bottom:1px solid var(--border);
  list-style:none;
  gap:20px;
  z-index:99;
  transform:translateY(-100%);
  transition:transform 0.3s ease;
}

.nav-links.active {
  display:flex;
  transform:translateY(0);
}

/* Desktop Navigation */
@media (min-width:1024px) {
  .nav-links {
    display:flex !important;
    position:static;
    background:transparent;
    backdrop-filter:none;
    flex-direction:row;
    padding:0;
    border:none;
    gap:32px;
    transform:none;
  }
}

.nav-link {
  color:var(--text-muted);
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:var(--transition);
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 0;
}

.nav-link::before {
  content:'';
  width:20px;
  height:2px;
  background:var(--gradient-toxic);
  margin-right:8px;
  border-radius:2px;
}

.nav-link::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--gradient-toxic);
  transition:width 0.3s;
}

/* Desktop nav link styling */
@media (min-width:1024px) {
  .nav-link {
    font-size:14px;
    padding:0;
  }
  .nav-link::before {
    display:none;
  }
  .nav-link::after {
    bottom:-8px;
  }
}

.nav-link:hover,
.nav-link.active {
  color:var(--toxic-green);
  text-shadow:0 0 10px var(--toxic-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width:100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display:flex;
  flex-direction:column;
  gap:4px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:8px;
  border-radius:var(--radius-sm);
  transition:var(--transition);
}

.mobile-menu-toggle:hover {
  background:rgba(57,255,20,0.1);
}

.mobile-menu-toggle span {
  width:24px;
  height:2px;
  background:var(--text);
  transition:var(--transition);
  border-radius:2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform:rotate(45deg) translate(5px,5px);
  background:var(--toxic-green);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity:0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform:rotate(-45deg) translate(7px,-6px);
  background:var(--toxic-green);
}

@media (min-width:1024px) {
  .mobile-menu-toggle {
    display:none !important;
  }
}

/* Header CTA Button */
.header-cta {
  display:none;
}

@media (min-width:768px) {
  .header-cta {
    display:inline-flex;
  }
}

/* Header Social Icons - Mobile */
.header-social {
  display:flex;
  gap:8px;
}

.header-social-link {
  width:36px;
  height:36px;
  background:var(--bg-secondary);
  border:2px solid var(--border);
  border-radius:var(--radius-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--text-muted);
  font-size:16px;
  transition:var(--transition);
  position: relative;
}

.header-social-link:hover {
  color:var(--toxic-green);
  border-color:var(--toxic-green);
  background:rgba(57,255,20,0.1);
  box-shadow:var(--glow-toxic);
  transform: translateY(-2px);
}

@media (min-width:1024px) {
  .header-social {
    display:none;
  }
}

/* Copy to clipboard functionality */
.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--toxic-green);
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  cursor: pointer;
  font-size: 12px;
  opacity: 0;
  transition: var(--transition);
}

.contact-method:hover .copy-btn {
  opacity: 1;
}

/* Buttons - Mobile First */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:var(--radius-md);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  border:none;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:0.5px;
  min-height:48px;
}

@media (min-width:768px) {
  .btn {
    padding:12px 24px;
    min-height:auto;
  }
}

.btn-primary {
  background:var(--gradient-toxic);
  color:var(--bg);
  box-shadow:var(--shadow-md),var(--glow-toxic);
  border:2px solid transparent;
}

.btn-primary::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transition:left 0.5s;
}

.btn-primary:hover::before {
  left:100%;
}

.btn-primary:hover {
  transform:translateY(-2px) scale(1.05);
  box-shadow:var(--shadow-lg),0 0 30px var(--toxic-green);
  border-color:var(--toxic-green);
}

.btn-secondary {
  background:transparent;
  color:var(--neon-cyan);
  border:2px solid var(--neon-cyan);
  box-shadow:inset 0 0 0 0 var(--neon-cyan);
  transition:all 0.3s;
}

.btn-secondary:hover {
  box-shadow:inset 0 0 20px 0 var(--neon-cyan),var(--glow-cyan);
  color:var(--text);
  transform:translateY(-2px);
}

/* Hero Section - Mobile First */
.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:calc(var(--header-height) + 40px) 0 60px;
  position:relative;
  overflow:hidden;
}

.hero::before {
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:radial-gradient(circle,var(--portal-green) 0%,transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:0.1;
  animation:portalRotate 20s linear infinite;
}

@media (min-width:768px) {
  .hero {
    padding:calc(var(--header-height) + 60px) 0 60px;
  }
  .hero::before {
    width:500px;
    height:500px;
  }
}

@keyframes portalRotate {
  0%{transform:translate(-50%,-50%) rotate(0deg) scale(1)}
  50%{transform:translate(-50%,-50%) rotate(180deg) scale(1.2)}
  100%{transform:translate(-50%,-50%) rotate(360deg) scale(1)}
}

.hero-content {
  text-align:center;
  position:relative;
  z-index:2;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:rgba(57,255,20,0.1);
  border:1px solid var(--toxic-green);
  border-radius:var(--radius-full);
  font-size:12px;
  font-weight:500;
  color:var(--toxic-green);
  margin-bottom:20px;
  animation:badgePulse 2s ease-in-out infinite;
  box-shadow:var(--glow-toxic);
}

@media (min-width:768px) {
  .hero-badge {
    font-size:13px;
    margin-bottom:24px;
  }
}

@keyframes badgePulse {
  0%,100%{transform:scale(1);box-shadow:0 0 20px rgba(57,255,20,0.5)}
  50%{transform:scale(1.05);box-shadow:0 0 30px rgba(57,255,20,0.8)}
}

.hero h1 {
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
  letter-spacing:-1px;
  animation:glitchText 3s infinite;
}

@media (min-width:768px) {
  .hero h1 {
    margin-bottom:24px;
    letter-spacing:-2px;
  }
}

@keyframes glitchText {
  0%,100%{text-shadow:2px 2px 0 var(--toxic-green),-2px -2px 0 var(--neon-cyan)}
  25%{text-shadow:-2px 2px 0 var(--royal-purple),2px -2px 0 var(--toxic-green)}
  50%{text-shadow:2px -2px 0 var(--neon-cyan),-2px 2px 0 var(--royal-purple)}
  75%{text-shadow:-2px -2px 0 var(--toxic-green),2px 2px 0 var(--neon-cyan)}
}

.gradient-text {
  background:linear-gradient(135deg,var(--toxic-green) 0%,var(--neon-cyan) 50%,var(--royal-purple) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 200%;
  animation:gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.hero-description {
  font-size:16px;
  color:var(--text-muted);
  max-width:100%;
  margin:0 auto 32px;
  line-height:1.8;
  opacity:0;
  animation:fadeInUp 0.8s 0.5s forwards;
}

@media (min-width:768px) {
  .hero-description {
    font-size:18px;
    max-width:600px;
    margin:0 auto 40px;
  }
}

.hero-stats {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin:32px 0;
  opacity:0;
  animation:fadeInUp 0.8s 0.6s forwards;
}

@media (min-width:768px) {
  .hero-stats {
    display:flex;
    gap:48px;
    justify-content:center;
    margin:48px 0;
  }
}

.hero-stat {
  text-align:center;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.hero-stat:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.hero-stat-number {
  font-size:28px;
  font-weight:700;
  color:var(--toxic-green);
  margin-bottom:4px;
}

@media (min-width:768px) {
  .hero-stat-number {
    font-size:36px;
  }
}

.hero-stat-label {
  font-size:12px;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:1px;
}

@media (min-width:768px) {
  .hero-stat-label {
    font-size:14px;
  }
}

.hero-cta {
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  opacity:0;
  animation:fadeInUp 0.8s 0.7s forwards;
}

@media (min-width:768px) {
  .hero-cta {
    flex-direction:row;
    justify-content:center;
  }
}

/* Floating Tech Icons - Desktop only */
.floating-icons {
  display:none;
}

@media (min-width:1024px) {
  .floating-icons {
    display:block;
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    overflow:hidden;
    z-index:1;
  }

  .floating-icon {
    position:absolute;
    font-size:30px;
    opacity:0.15;
    animation:floatAround 20s infinite ease-in-out;
  }

  .floating-icon:nth-child(odd) {
    color:var(--toxic-green);
  }

  .floating-icon:nth-child(even) {
    color:var(--neon-cyan);
  }

  @keyframes floatAround {
    0%,100%{transform:translateY(0) rotate(0deg) scale(1)}
    25%{transform:translateY(-30px) rotate(90deg) scale(1.1)}
    50%{transform:translateY(0) rotate(180deg) scale(0.9)}
    75%{transform:translateY(30px) rotate(270deg) scale(1.05)}
  }
}

/* Section Styles - Mobile First */
section {
  padding:60px 0;
  position:relative;
}

@media (min-width:768px) {
  section {
    padding:80px 0;
  }
}

@media (min-width:1024px) {
  section {
    padding:100px 0;
  }
}

.section-header {
  text-align:center;
  margin-bottom:40px;
}

@media (min-width:768px) {
  .section-header {
    margin-bottom:60px;
  }
}

.section-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  background:rgba(124,58,237,0.1);
  border:1px solid var(--royal-purple);
  border-radius:var(--radius-full);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--royal-purple);
  margin-bottom:16px;
  box-shadow:var(--glow-purple);
}

.section-title {
  font-weight:800;
  margin-bottom:16px;
  background:linear-gradient(135deg,var(--text) 0%,var(--royal-purple) 50%,var(--toxic-green) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.section-description {
  font-size:16px;
  color:var(--text-muted);
  max-width:100%;
  margin:0 auto;
}

@media (min-width:768px) {
  .section-description {
    font-size:18px;
    max-width:600px;
  }
}

/* About Section - Mobile First */
.about-features {
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-top:40px;
}

@media (min-width:768px) {
  .about-features {
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    margin-top:60px;
  }
}

@media (min-width:1024px) {
  .about-features {
    grid-template-columns:repeat(4,1fr);
  }
}

.about-feature {
  text-align:center;
  padding:24px;
  background:var(--card);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  .about-feature {
    padding:32px;
  }
}

.about-feature::before {
  content:'';
  position:absolute;
  top:-2px;
  left:-2px;
  right:-2px;
  bottom:-2px;
  background:var(--gradient-toxic);
  border-radius:var(--radius-lg);
  opacity:0;
  transition:opacity 0.3s;
  z-index:-1;
}

.about-feature:hover::before {
  opacity:1;
}

.about-feature:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-xl),var(--glow-mixed);
}

.about-feature-icon {
  width:56px;
  height:56px;
  margin:0 auto 20px;
  background:var(--gradient-royal);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:white;
  box-shadow:var(--glow-purple);
}

@media (min-width:768px) {
  .about-feature-icon {
    width:64px;
    height:64px;
    margin:0 auto 24px;
    font-size:28px;
  }
}

.about-feature h3 {
  font-size:18px;
  margin-bottom:12px;
}

@media (min-width:768px) {
  .about-feature h3 {
    font-size:20px;
  }
}

.about-feature p {
  color:var(--text-muted);
  line-height:1.6;
  font-size:14px;
}

@media (min-width:768px) {
  .about-feature p {
    font-size:16px;
  }
}

/* Services Section - Mobile First */
.services-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}

@media (min-width:1024px) {
  .services-grid {
    grid-template-columns:repeat(3,1fr);
  }
}

.service-card {
  background:linear-gradient(135deg,var(--card) 0%,rgba(124,58,237,0.05) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:24px;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  .service-card {
    padding:32px;
  }
}

.service-card::after {
  content:'';
  position:absolute;
  width:150%;
  height:150%;
  background:radial-gradient(circle,var(--toxic-green) 0%,transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  opacity:0.1;
  transition:transform 0.5s,opacity 0.5s;
}

.service-card:hover::after {
  transform:translate(-50%,-50%) scale(1);
  opacity:0.2;
}

.service-card:hover {
  transform:translateY(-8px) scale(1.02);
  border-color:var(--toxic-green);
  box-shadow:var(--shadow-xl),var(--glow-toxic);
}

.service-header {
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:20px;
}

.service-icon {
  width:48px;
  height:48px;
  background:var(--gradient-neon);
  border-radius:var(--radius-md);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:var(--bg);
  flex-shrink:0;
  box-shadow:var(--glow-cyan);
}

.service-title {
  font-size:18px;
  font-weight:700;
  margin-bottom:4px;
}

@media (min-width:768px) {
  .service-title {
    font-size:20px;
  }
}

.service-price {
  font-size:14px;
  color:var(--toxic-green);
  font-weight:600;
}

.service-features {
  list-style:none;
  margin-top:20px;
}

.service-features li {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  color:var(--text-muted);
  font-size:14px;
}

@media (min-width:768px) {
  .service-features li {
    font-size:16px;
  }
}

.service-features li i {
  color:var(--toxic-green);
  font-size:16px;
  flex-shrink:0;
}

/* Projects Section - Mobile First */
.projects-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}

@media (min-width:768px) {
  .projects-grid {
    grid-template-columns:repeat(2,1fr);
    gap:32px;
  }
}

@media (min-width:1200px) {
  .projects-grid {
    grid-template-columns:repeat(3,1fr);
  }
}

.project-card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:var(--transition);
  position:relative;
}

.project-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:100%;
  background:linear-gradient(135deg,rgba(57,255,20,0.1) 0%,rgba(0,245,255,0.1) 33%,rgba(124,58,237,0.1) 66%,rgba(57,255,20,0.1) 100%);
  opacity:0;
  transition:opacity 0.3s;
}

.project-card:hover::before {
  opacity:1;
  animation:holographic 2s linear infinite;
}

@keyframes holographic {
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}

.project-card:hover {
  transform:translateY(-8px) scale(1.02);
  box-shadow:var(--shadow-2xl),var(--glow-mixed);
  border-color:var(--toxic-green);
}

.project-image {
  width:100%;
  height:180px;
  background:linear-gradient(135deg,var(--royal-purple) 0%,var(--neon-cyan) 100%);
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  .project-image {
    height:200px;
  }
}

.project-overlay {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(10,10,15,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  opacity:0;
  transition:opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity:1;
}

.project-overlay-btn {
  width:48px;
  height:48px;
  background:transparent;
  border:2px solid var(--toxic-green);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--toxic-green);
  text-decoration:none;
  transition:var(--transition);
}

.project-overlay-btn:hover {
  background:var(--toxic-green);
  color:var(--bg);
  transform:scale(1.2) rotate(360deg);
  box-shadow:var(--glow-toxic);
}

.project-tech-icons {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: center;
  color: var(--toxic-green);
}

.project-tech-icons .ri-shopping-cart-2-line {
  color: var(--text-muted);
}

.project-content {
  padding:20px;
}

@media (min-width:768px) {
  .project-content {
    padding:24px;
  }
}

.project-tags {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.project-tag {
  padding:4px 10px;
  background:rgba(0,245,255,0.1);
  border:1px solid var(--neon-cyan);
  border-radius:var(--radius-full);
  font-size:11px;
  font-weight:500;
  color:var(--neon-cyan);
}

@media (min-width:768px) {
  .project-tag {
    font-size:12px;
  }
}

.project-title {
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
}

@media (min-width:768px) {
  .project-title {
    font-size:22px;
  }
}

.project-description {
  color:var(--text-muted);
  margin-bottom:20px;
  line-height:1.6;
  font-size:14px;
}

@media (min-width:768px) {
  .project-description {
    font-size:16px;
  }
}

.project-stats {
  display:flex;
  gap:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
}

@media (min-width:768px) {
  .project-stats {
    gap:24px;
    flex-wrap:nowrap;
  }
}

.project-stat {
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

.project-stat-value {
  font-size:16px;
  font-weight:700;
  color:var(--toxic-green);
}

@media (min-width:768px) {
  .project-stat-value {
    font-size:18px;
  }
}

.project-stat-label {
  font-size:11px;
  color:var(--text-muted);
  text-transform:uppercase;
}

@media (min-width:768px) {
  .project-stat-label {
    font-size:12px;
  }
}

/* Process Section - Mobile First */
.process-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-top:40px;
}

@media (min-width:768px) {
  .process-grid {
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    margin-top:60px;
  }
}

@media (min-width:1200px) {
  .process-grid {
    grid-template-columns:repeat(5,1fr);
  }
}

.process-step {
  text-align:center;
  position:relative;
  padding:24px;
  background:var(--card);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  transition:var(--transition);
}

@media (min-width:768px) {
  .process-step {
    padding:32px 24px;
  }
}

.process-step::after {
  display:none;
}

@media (min-width:1200px) {
  .process-step::after {
    content:'';
    position:absolute;
    top:50%;
    right:-32px;
    width:32px;
    height:2px;
    background:var(--gradient-toxic);
    z-index:1;
    display:block;
  }

  .process-step:last-child::after {
    display:none;
  }
}

.process-step:hover {
  transform:translateY(-8px);
  border-color:var(--toxic-green);
  box-shadow:var(--shadow-xl),var(--glow-toxic);
}

.process-number {
  width:50px;
  height:50px;
  margin:0 auto 20px;
  background:var(--gradient-royal);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:20px;
  color:white;
  box-shadow:var(--glow-purple);
}

@media (min-width:768px) {
  .process-number {
    width:60px;
    height:60px;
    margin:0 auto 24px;
    font-size:24px;
  }
}

.process-title {
  font-size:16px;
  font-weight:700;
  margin-bottom:12px;
}

@media (min-width:768px) {
  .process-title {
    font-size:18px;
  }
}

.process-time {
  display:inline-block;
  padding:4px 8px;
  background:rgba(57,255,20,0.1);
  border:1px solid var(--toxic-green);
  border-radius:var(--radius-full);
  font-size:10px;
  color:var(--toxic-green);
  margin-bottom:12px;
}

@media (min-width:768px) {
  .process-time {
    font-size:11px;
  }
}

.process-description {
  color:var(--text-muted);
  font-size:13px;
  line-height:1.6;
}

@media (min-width:768px) {
  .process-description {
    font-size:14px;
  }
}

/* Tech Stack - Mobile First */
.tech-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

@media (min-width:768px) {
  .tech-grid {
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
}

@media (min-width:1024px) {
  .tech-grid {
    grid-template-columns:repeat(6,1fr);
  }
}

.tech-card {
  background:var(--card);
  border:2px solid transparent;
  border-radius:var(--radius-lg);
  padding:16px;
  text-align:center;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

@media (min-width:768px) {
  .tech-card {
    padding:24px;
  }
}

.tech-card::before {
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:conic-gradient(from 0deg,transparent,var(--toxic-green),transparent,var(--neon-cyan),transparent,var(--royal-purple),transparent);
  animation:techRotate 4s linear infinite;
  opacity:0;
  transition:opacity 0.3s;
}

.tech-card:hover::before {
  opacity:1;
}

@keyframes techRotate {
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

.tech-card:hover {
  transform:translateY(-8px) scale(1.05);
  border-color:var(--toxic-green);
  box-shadow:var(--shadow-xl),var(--glow-mixed);
}

.tech-icon {
  font-size:28px;
  margin-bottom:8px;
  transition:var(--transition);
  position:relative;
  z-index:1;
}

@media (min-width:768px) {
  .tech-icon {
    font-size:40px;
    margin-bottom:12px;
  }
}

.tech-card:hover .tech-icon {
  transform:rotateY(360deg);
  filter:drop-shadow(0 0 20px currentColor);
}

.tech-name {
  font-size:11px;
  font-weight:600;
  color:var(--text-muted);
  position:relative;
  z-index:1;
}

@media (min-width:768px) {
  .tech-name {
    font-size:14px;
  }
}

/* Contact Section - Mobile First */
.contact-container {
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:start;
  position:relative;
  z-index:1;
}

@media (min-width:1024px) {
  .contact-container {
    grid-template-columns:1fr 1fr;
    gap:60px;
  }
}

.contact-info {
  background:linear-gradient(135deg,var(--card) 0%,rgba(124,58,237,0.05) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  .contact-info {
    padding:40px;
  }
}

.contact-info::after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:var(--gradient-toxic);
  animation:slideGlow 3s linear infinite;
}

@keyframes slideGlow {
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}

.contact-methods {
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:32px;
}

@media (min-width:768px) {
  .contact-methods {
    gap:24px;
  }
}

.contact-method {
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px;
  background:var(--bg-secondary);
  border-radius:var(--radius-md);
  transition:var(--transition);
  text-decoration:none;
  color:inherit;
  position: relative;
}

@media (min-width:768px) {
  .contact-method {
    padding:20px;
  }
}

.contact-method:hover {
  background:var(--card-hover);
  transform:translateX(8px);
}

.contact-method-icon {
  width:40px;
  height:40px;
  background:var(--gradient-toxic);
  border-radius:var(--radius-md);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:20px;
  color:var(--bg);
}

@media (min-width:768px) {
  .contact-method-icon {
    width:48px;
    height:48px;
    font-size:24px;
  }
}

.contact-method-content h4 {
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:4px;
}

@media (min-width:768px) {
  .contact-method-content h4 {
    font-size:14px;
  }
}

.contact-method-content p {
  font-weight:500;
  font-size:14px;
}

@media (min-width:768px) {
  .contact-method-content p {
    font-size:16px;
  }
}

/* Contact Form - DODANE STYLE */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width:768px) {
  .form-group label {
    font-size: 14px;
  }
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: var(--transition);
  resize: vertical;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width:768px) {
  .form-group input,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 16px;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  opacity: 1;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--royal-purple);
  background: rgba(124,58,237,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--toxic-green);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.1), var(--glow-toxic);
}

/* Input validation states */
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group input.success,
.form-group textarea.success {
  border-color: var(--toxic-green);
  background: rgba(57, 255, 20, 0.05);
}

.error-message {
  font-size: 12px;
  color: #ef4444;
  margin: 0;
  display: none;
}

@media (min-width:768px) {
  .error-message {
    font-size: 13px;
  }
}

.error-message.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.form-result {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  display: none;
  animation: fadeInUp 0.3s ease;
}

@media (min-width:768px) {
  .form-result {
    font-size: 15px;
    padding: 16px 20px;
  }
}

.form-result.show {
  display: block;
}

.form-result.success {
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid var(--toxic-green);
  color: var(--toxic-green);
  box-shadow: var(--glow-toxic);
}

.form-result.error {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  color: #ef4444;
}

/* Loading state for submit button */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary.loading {
  position: relative;
  color: transparent;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--border);
  transition: var(--transition-fast);
}

.faq-item[open] {
  border-left-color: var(--toxic-green);
}

.faq-question {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.2s ease-in-out;
}

.faq-item[open] > summary .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 16px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Social Links - Mobile First */
.social-links {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

@media (min-width:768px) {
  .social-links {
    justify-content:flex-start;
  }
}

.social-link {
  width:44px;
  height:44px;
  background:var(--bg-secondary);
  border:2px solid var(--border);
  border-radius:var(--radius-md);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--text-muted);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  .social-link {
    width:48px;
    height:48px;
  }
}

.social-link::before {
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:var(--gradient-toxic);
  transform:translateY(100%);
  transition:transform 0.3s;
}

.social-link:hover::before {
  transform:translateY(0);
}

.social-link:hover {
  color:var(--bg);
  transform:translateY(-4px) rotate(-5deg);
  border-color:transparent;
  box-shadow:var(--glow-toxic);
}

.social-link i {
  position:relative;
  z-index:1;
  font-size:18px;
}

@media (min-width:768px) {
  .social-link i {
    font-size:20px;
  }
}

/* Footer - Mobile First */
footer {
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg-secondary) 100%);
  border-top:1px solid var(--border);
  padding:60px 0 32px;
  margin-top:80px;
  position:relative;
  overflow:hidden;
}

@media (min-width:768px) {
  footer {
    padding:80px 0 40px;
    margin-top:100px;
  }
}

footer::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,var(--toxic-green) 0%,var(--neon-cyan) 33%,var(--royal-purple) 66%,var(--toxic-green) 100%);
  animation:footerGlow 5s linear infinite;
}

@keyframes footerGlow {
  0%{transform:translateX(-100%)}
  100%{transform:translateX(0)}
}

.footer-content {
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  margin-bottom:32px;
}

@media (min-width:768px) {
  .footer-content {
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-bottom:40px;
  }
}

@media (min-width:1024px) {
  .footer-content {
    grid-template-columns:2fr 1fr 1fr;
    gap:48px;
    margin-bottom:48px;
  }
}

.footer-main h3 {
  font-size:20px;
  margin-bottom:16px;
  background:var(--gradient-toxic);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

@media (min-width:768px) {
  .footer-main h3 {
    font-size:24px;
  }
}

.footer-main p {
  color:var(--text-muted);
  line-height:1.8;
  margin-bottom:24px;
  font-size:14px;
}

@media (min-width:768px) {
  .footer-main p {
    font-size:16px;
  }
}

.footer-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

@media (min-width:768px) {
  .footer-stats {
    display:flex;
    gap:24px;
  }
}

.footer-stat {
  text-align:center;
}

@media (min-width:768px) {
  .footer-stat {
    text-align:left;
  }
}

.footer-stat-number {
  font-size:20px;
  font-weight:700;
  margin-bottom:4px;
}

@media (min-width:768px) {
  .footer-stat-number {
    font-size:24px;
  }
}

.footer-stat-label {
  font-size:10px;
  color:var(--text-muted);
  text-transform:uppercase;
}

@media (min-width:768px) {
  .footer-stat-label {
    font-size:12px;
  }
}

.footer-section h4 {
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--royal-purple);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:8px;
}

@media (min-width:768px) {
  .footer-section h4 {
    font-size:14px;
  }
}

.footer-section ul {
  list-style:none;
}

.footer-section ul li {
  margin-bottom:12px;
}

.footer-section ul li a {
  color:var(--text-dim);
  text-decoration:none;
  transition:var(--transition);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}

@media (min-width:768px) {
  .footer-section ul li a {
    font-size:14px;
  }
}

.footer-section ul li a:hover {
  color:var(--toxic-green);
  transform:translateX(4px);
}

.footer-section ul li a i {
  font-size:14px;
  width:16px;
  text-align:center;
  color:var(--toxic-green);
}

.footer-bottom {
  padding-top:24px;
  border-top:1px solid var(--border);
  text-align:center;
}

@media (min-width:768px) {
  .footer-bottom {
    padding-top:32px;
  }
}

.footer-bottom p {
  color:var(--text-dim);
  font-size:13px;
  margin:0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width:768px) {
  .footer-bottom p {
    font-size:14px;
  }
}

.footer-heart {
  color: #ff6b6b;
  animation: heartbeat 2s infinite;
  font-size: 16px;
}

.footer-coffee {
  color: #8B4513;
  animation: bounce 2s infinite;
  font-size: 16px;
}

@keyframes heartbeat {
  0%, 50%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
}

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

/* Back to Top - Mobile First */
.back-to-top {
  position:fixed;
  bottom:20px;
  right:20px;
  width:48px;
  height:48px;
  background:var(--gradient-toxic);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--bg);
  font-size:20px;
  text-decoration:none;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  z-index:90;
  box-shadow:var(--shadow-lg),var(--glow-toxic);
  cursor:pointer;
  border:none;
}

@media (min-width:768px) {
  .back-to-top {
    bottom:32px;
    right:32px;
    width:56px;
    height:56px;
    font-size:24px;
  }
}

.back-to-top.visible {
  opacity:1;
  visibility:visible;
}

.back-to-top:hover {
  transform:translateY(-8px) rotate(360deg);
  box-shadow:var(--shadow-xl),var(--glow-mixed);
}

/* Animations */
@keyframes fadeInUp {
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

.animate-on-scroll {
  opacity:0;
  transform:translateY(30px);
  transition:all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.animate-on-scroll.animated {
  opacity:1;
  transform:translateY(0);
}

/* Loading Screen */
.loader-wrapper {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  transition:opacity 0.5s,visibility 0.5s;
}

.loader-wrapper.hidden {
  opacity:0;
  visibility:hidden;
}

.loader-portal {
  width:120px;
  height:120px;
  border-radius:50%;
  border:3px solid transparent;
  border-top-color:var(--toxic-green);
  border-right-color:var(--neon-cyan);
  border-bottom-color:var(--royal-purple);
  animation:portalSpin 1s linear infinite;
  box-shadow:var(--glow-mixed);
}

@media (min-width:768px) {
  .loader-portal {
    width:150px;
    height:150px;
  }
}

@keyframes portalSpin {
  0%{transform:rotate(0deg) scale(1)}
  50%{transform:rotate(180deg) scale(1.1)}
  100%{transform:rotate(360deg) scale(1)}
}

/* Wyszukiwarka */
#search_widget {
  position: relative;
}

#search_widget .js-search-input {
  background-color: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 10px 40px 10px 16px;
  transition: var(--transition);
  width: 250px;
}

#search_widget .js-search-input:focus {
  border-color: var(--toxic-green);
  box-shadow: var(--glow-toxic);
  outline: none;
}

#search_widget .search, #search_widget .clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

#search_widget .search {
  right: 12px;
}

#search_widget .clear {
  right: 40px;
  font-size: 18px;
}

#search_widget .search:hover, #search_widget .clear:hover {
  color: var(--toxic-green);
}

/* Newsletter */
.email-subscription {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.email-subscription__label {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

.email-subscription__content__inputs input[type="email"] {
  background-color: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 10px 16px;
  transition: var(--transition);
  flex-grow: 1;
}

.email-subscription__content__inputs input[type="email"]:focus {
  border-color: var(--toxic-green);
  box-shadow: var(--glow-toxic);
  outline: none;
}

.email-subscription__content__inputs input[name="submitNewsletter"] {
  background: var(--gradient-toxic);
  color: var(--bg);
  box-shadow: var(--shadow-md), var(--glow-toxic);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.email-subscription__content__inputs input[name="submitNewsletter"]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 30px var(--toxic-green);
  border-color: var(--toxic-green);
}

.email-subscription__content__infos p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 10px;
}

/* Cart Counter */
.header-block__badge {
  background-color: var(--toxic-green);
  color: var(--bg);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0 6px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  box-shadow: var(--glow-toxic);
  animation: badgePulse 2s ease-in-out infinite;
}

/* General Text Color Fixes */
#content-wrapper,
#content-wrapper p,
#content-wrapper label,
#content-wrapper span,
#content-wrapper div,
#content-wrapper .h1, #content-wrapper .h2, #content-wrapper .h3, #content-wrapper .h4, #content-wrapper .h5, #content-wrapper .h6,
#content-wrapper h1, #content-wrapper h2, #content-wrapper h3, #content-wrapper h4, #content-wrapper h5, #content-wrapper h6 {
  color: var(--text);
}

#content-wrapper a, #content-wrapper .link {
  color: var(--neon-cyan);
  transition: var(--transition-fast);
}

#content-wrapper a:hover, #content-wrapper .link:hover {
  color: var(--toxic-green);
  text-shadow: 0 0 8px var(--toxic-green);
}

.header-top, .header-top a,
.footer__main .footer__block__content, .footer__main .copyright a,
.breadcrumb a {
  color: var(--text-muted);
}

.header-top a:hover,
.footer__main a:hover, .footer__main .copyright a:hover,
.breadcrumb a:hover {
  color: var(--toxic-green);
}

#main .tabs .nav-link {
  color: var(--text-muted);
}

#main .tabs .nav-link.active {
  color: var(--toxic-green);
  border-bottom-color: var(--toxic-green);
}

/* Layout & Alignment Fixes */
#header .row,
.header-bottom__row {
  align-items: center;
}

#search_widget {
  margin-left: auto;
}

.email-subscription__content .row {
  align-items: center;
}

.product-miniature .product-description {
  margin-bottom: 1rem;
}

.product-miniature .product-thumbnail {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

#content-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  #content-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.page-content {
  padding: 2rem 0;
}

/* === Visual Polish & Transitions === */

/* Buttons, Links, and Form elements */
.btn, a, input, textarea, .form-control, .form-select, .product-miniature .card {
  transition: all var(--transition-fast) !important;
}

.btn:hover, a:hover {
  transform: translateY(-2px);
}

.product-miniature .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--glow-mixed);
}

/* Header Icons */
.header-block__action-btn:hover {
    transform: scale(1.1);
    color: var(--toxic-green) !important;
}

/* Main menu links */
.main-menu__tree>li>a::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--neon-cyan);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    transform-origin: center;
}

.main-menu__tree>li>a:hover::after,
.main-menu__tree>li>a.active::after {
    transform: scaleX(1);
}

/* === Global Style Overrides === */

/* General Body and Text Color */
body, #wrapper, .wrapper {
  background: var(--bg) !important;
  color: var(--text) !important;
}

p, span, div, label, .label {
  color: var(--text-muted) !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--text) !important;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

a, .link {
  color: var(--neon-cyan) !important;
  text-decoration: none !important;
  transition: var(--transition-fast) !important;
}

a:hover, .link:hover {
  color: var(--toxic-green) !important;
  text-shadow: 0 0 10px var(--glow-toxic) !important;
}

/* Header and Footer Text */
.header-top, .header-top a,
.footer__main .footer__block__content, .footer__main .copyright a,
.breadcrumb a {
  color: var(--text-muted) !important;
}

.header-top a:hover,
.footer__main a:hover, .footer__main .copyright a:hover,
.breadcrumb a:hover {
  color: var(--toxic-green) !important;
}

/* Form Inputs */
.form-control, .form-select,
input[type="text"], input[type="email"], input[type="password"], textarea {
  background-color: var(--panel) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-md) !important;
}

.form-control:focus, .form-select:focus,
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: var(--toxic-green) !important;
  box-shadow: var(--glow-toxic) !important;
  outline: none !important;
}

/* Product Miniature */
.product-miniature .product-title a {
  color: var(--text) !important;
}

.product-miniature .product-title a:hover {
  color: var(--toxic-green) !important;
}

.product-miniature .product-price-and-shipping, .product-price {
  color: var(--toxic-green) !important;
}

.product-miniature .regular-price {
  color: var(--text-dim) !important;
}

/* Tabs */
#main .tabs .nav-link {
  color: var(--text-muted) !important;
  border-bottom: 2px solid transparent;
}

#main .tabs .nav-link.active,
#main .tabs .nav-link:hover {
  color: var(--toxic-green) !important;
  border-bottom-color: var(--toxic-green) !important;
  background: transparent !important;
}

/* === Layout & Alignment Fixes 2.0 === */

/* Header alignment */
.header-top__right, .header-top__left {
  display: flex;
  align-items: center;
}
.header-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#_desktop_user_info, #_desktop_cart {
  margin-left: 1rem;
}

/* Product grid */
.products.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.product-miniature {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-miniature .product-thumbnail {
  flex-shrink: 0;
}

.product-miniature .product-description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

/* Newsletter form alignment */
.email-subscription__content .row {
    align-items: center;
}
.email-subscription__content__inputs {
    display: flex;
    width: 100%;
}
.email-subscription__content__inputs input[type="email"] {
    flex-grow: 1;
    margin-right: 1rem;
}

/* General Spacing */
#content-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  #content-wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.page-content {
  padding: 2rem 0;
}
>>>>>>> REPLACE