:root {
  --primary: #ffffff;
  --accent: #00ffa3;
  --bg: #000000;
  --bg-subtle: #0a0a0a;
  --bg-card: #111111;
  --text: #ffffff;
  --text-muted: #888888;
  --border: #222222;
  --glow: #00ffa326;
}

[data-theme="light"] {
  --primary: #000000;
  --accent: #00c87a;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-card: #f5f5f5;
  --text: #000000;
  --text-muted: #666666;
  --border: #e5e5e5;
  --glow: rgba(0, 200, 122, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), rgba(0, 255, 163, 0.6));
  border-radius: 10px;
  border: 2px solid var(--bg-subtle);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-subtle);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.015"/></svg>');
  opacity: 1;
  mix-blend-mode: overlay;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav.scrolled::before {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .nav::before {
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav.scrolled::before {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
  width: 100%;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 28px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.1), rgba(0, 217, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.lang-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.theme-toggle::before,
.lang-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 255, 163, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-toggle:hover::before,
.lang-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:hover,
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 255, 163, 0.2);
}

[data-theme="light"] .theme-toggle,
[data-theme="light"] .lang-toggle {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .lang-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.lang-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.nav-cta {
  padding: 11px 24px;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 163, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.nav-cta:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 20px -6px rgba(0, 255, 163, 0.3);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 40px 140px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 800px at 80% 20%, rgba(0, 255, 163, 0.15), transparent 50%),
    radial-gradient(circle 600px at 20% 80%, rgba(0, 217, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 1200px 800px at 50% -300px, rgba(0, 255, 163, 0.06), transparent);
  pointer-events: none;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: 
    radial-gradient(ellipse 70% 60% at 30% 40%, black 20%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 60%, black 10%, transparent 60%);
  mask-composite: add;
  pointer-events: none;
  animation: gridFloat 30s linear infinite;
}

@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.2), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  animation: float 25s ease-in-out infinite;
}

.hero-glow:nth-child(1) {
  top: -200px;
  left: -100px;
}

.hero-glow:nth-child(2) {
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
  animation-delay: -12s;
  animation-duration: 30s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle, rgba(0, 255, 163, 0.08), transparent 70%);
  border: 1px solid rgba(0, 255, 163, 0.1);
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.6;
  top: 10%;
  right: 5%;
  animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-100px, 50px) rotate(180deg); }
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.3), transparent);
  pointer-events: none;
  animation: lineSlide 15s linear infinite;
}

.hero-line:nth-child(3) {
  width: 100%;
  top: 30%;
  left: -100%;
}

.hero-line:nth-child(4) {
  width: 100%;
  top: 60%;
  left: -100%;
  animation-delay: -7s;
}

@keyframes lineSlide {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  width: fit-content;
  position: relative;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  margin-left: 4px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--text);
  max-width: 1100px;
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span,
.btn > * {
  position: relative;
  z-index: 1;
}

.btn.primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 4px 14px -4px rgba(255, 255, 255, 0.15);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px -10px rgba(255, 255, 255, 0.3);
}

.btn.primary:active {
  transform: translateY(-1px) scale(1);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: var(--bg-card);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px -6px rgba(0, 255, 163, 0.2);
}

.btn.secondary:active {
  transform: translateY(-1px) scale(1);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

section {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 10% 50%, rgba(0, 255, 163, 0.03), transparent 60%),
    radial-gradient(circle 500px at 90% 50%, rgba(0, 217, 255, 0.02), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

section:hover::before {
  opacity: 1;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}

.section-head::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.section-label::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: var(--border);
}

.section-label::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: var(--border);
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.section-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.credibility-zone {
  background: var(--bg);
  position: relative;
}

.credibility-zone::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  pointer-events: none;
}

.stats {
  background: var(--bg);
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}

.stats-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(0, 255, 163, 0.03) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(0, 255, 163, 0.03) 0px, transparent 1px, transparent 60px);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.stats-floating-orb {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08), transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloatSlow 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -80px) scale(1.2); }
  66% { transform: translate(-80px, 100px) scale(0.9); }
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
      rgba(0, 255, 163, 0.08), 
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.stat-card:hover {
  background: var(--bg-subtle);
  border-color: rgba(0, 255, 163, 0.3);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 255, 163, 0.1);
}

.stat-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 60%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.stat-card:hover .stat-card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.stat-badge {
  position: relative;
  width: fit-content;
  margin-bottom: 28px;
}

.stat-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  opacity: 0;
  animation: pulseRing 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
  0% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1.3); }
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 255, 163, 0.06);
  border: 1px solid rgba(0, 255, 163, 0.12);
  display: grid;
  place-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 30%,
    var(--accent),
    transparent 70%
  );
  opacity: 0;
  animation: iconSpin 6s linear infinite;
  animation-play-state: paused;
}

.stat-card:hover .stat-pulse {
  animation-play-state: running;
}

.stat-card:hover .stat-icon::before {
  opacity: 0.25;
  animation-play-state: running;
}

@keyframes iconSpin {
  100% { transform: rotate(360deg); }
}

.stat-card:hover .stat-icon {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 
    0 12px 28px rgba(0, 255, 163, 0.35),
    inset 0 0 20px rgba(0, 255, 163, 0.1);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-card:hover .stat-icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px var(--accent));
}

.stat-card h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: all 0.4s ease;
}

.stat-card:hover h3 {
  color: var(--accent);
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0, 255, 163, 0.3);
}

.stat-card .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat-card .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  animation: marquee 50s linear infinite;
  gap: 60px;
  white-space: nowrap;
  will-change: transform;
  flex-shrink: 0;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.marquee:hover .marquee-content span {
  color: var(--primary);
}

@keyframes marquee {
  0% { 
    transform: translateX(0%); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}

.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.06), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.04), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 44px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1) {
  grid-column: span 2;
  order: 1;
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 163, 0.02));
}

.service-card:nth-child(2) {
  grid-row: span 2;
  order: 2;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), var(--bg-card));
}

.service-card:nth-child(3) {
  order: 3;
}

.service-card:nth-child(4) {
  grid-column: span 2;
  order: 5;
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 163, 0.03));
}

.service-card:nth-child(5) {
  order: 6;
}

.service-card:nth-child(6) {
  order: 4;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.02), var(--bg-card));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), transparent, rgba(0, 217, 255, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
      rgba(0, 255, 163, 0.06), 
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 24px 48px -12px rgba(0, 0, 0, 0.4),
    0 0 60px -10px rgba(0, 255, 163, 0.15);
}

.service-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.08), rgba(0, 217, 255, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
}

.service-card:hover .service-number {
  opacity: 1;
  transform: scale(1.05) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), rgba(0, 217, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.5));
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(0, 255, 163, 0.06);
  border: 1px solid rgba(0, 255, 163, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--accent),
    transparent 90deg
  );
  opacity: 0;
  animation: iconRotate 6s linear infinite;
  animation-play-state: paused;
}

@keyframes iconRotate {
  100% { transform: rotate(360deg); }
}

.service-card:hover .service-icon::before {
  opacity: 0.4;
  animation-play-state: running;
}

.service-card:hover .service-icon {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 
    0 12px 32px rgba(0, 255, 163, 0.3),
    inset 0 0 20px rgba(0, 255, 163, 0.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px var(--accent));
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.process {
  background: radial-gradient(ellipse 150% 100% at 50% 0%, rgba(0, 255, 163, 0.02), var(--bg) 60%);
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
}

.process::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.1) 50%, transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.process-timeline {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.process-track {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  z-index: 0;
}

.process-track-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%,
    var(--border) 5%,
    var(--border) 95%,
    transparent 100%
  );
}

.process-track-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), rgba(0, 217, 255, 0.6));
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0, 255, 163, 0.3);
  animation: trackProgress 10s ease-in-out infinite;
}

@keyframes trackProgress {
  0%, 100% { height: 0%; opacity: 0; }
  50% { height: 100%; opacity: 1; }
}

.process-phases {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.process-phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: start;
}

.phase-marker {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.marker-ring:nth-child(1) {
  animation: ringPulse1 4s ease-in-out infinite;
}

.marker-ring:nth-child(2) {
  animation: ringPulse2 4s ease-in-out infinite 2s;
}

@keyframes ringPulse1 {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0; }
}

@keyframes ringPulse2 {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0; }
}

.marker-pulse {
  position: absolute;
  inset: -8px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
}

.process-phase:hover .marker-pulse {
  animation: markerPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes markerPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.marker-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.marker-core::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--accent),
    transparent 60deg
  );
  opacity: 0;
  animation: coreRotate 8s linear infinite;
  animation-play-state: paused;
}

.process-phase:hover .marker-core::before {
  opacity: 0.4;
  animation-play-state: running;
}

@keyframes coreRotate {
  100% { transform: rotate(360deg); }
}

.process-phase:hover .marker-core {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 
    0 0 30px rgba(0, 255, 163, 0.5),
    0 0 60px rgba(0, 255, 163, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.marker-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-phase:hover .marker-number {
  color: #000;
  transform: scale(1.1);
}

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-phase:hover .phase-card::before {
  opacity: 1;
}

.process-phase:hover .phase-card {
  background: var(--bg-subtle);
  border-color: rgba(0, 255, 163, 0.3);
  transform: translateX(12px);
  box-shadow: 
    -8px 0 32px -8px rgba(0, 255, 163, 0.2),
    0 20px 48px -12px rgba(0, 0, 0, 0.4);
}

.phase-card-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.12), transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
}

.process-phase:hover .phase-card-glow {
  opacity: 1;
  top: -150px;
  right: -150px;
  animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.phase-card-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 163, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 163, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 80% 50%, black 20%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.process-phase:hover .phase-card-mesh {
  opacity: 1;
}

.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.phase-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.phase-icon-orbit {
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(0, 255, 163, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}

.process-phase:hover .phase-icon-orbit {
  opacity: 1;
  animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
  100% { transform: rotate(360deg); }
}

.phase-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.08), rgba(0, 217, 255, 0.05));
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.phase-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 30%,
    var(--accent),
    transparent 70%
  );
  opacity: 0;
  animation: iconShine 4s linear infinite;
  animation-play-state: paused;
}

.process-phase:hover .phase-icon::before {
  opacity: 0.3;
  animation-play-state: running;
}

@keyframes iconShine {
  100% { transform: rotate(360deg); }
}

.process-phase:hover .phase-icon {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.1));
  border-color: var(--accent);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(0, 255, 163, 0.25);
}

.phase-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.process-phase:hover .phase-icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px var(--accent));
}

.phase-meta {
  flex: 1;
}

.phase-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.8;
}

.phase-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.phase-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.phase-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 24px;
  background: rgba(0, 255, 163, 0.02);
  border: 1px solid rgba(0, 255, 163, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.process-phase:hover .phase-details {
  background: rgba(0, 255, 163, 0.04);
  border-color: rgba(0, 255, 163, 0.12);
}

.phase-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.3s ease;
}

.detail-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 163, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-phase:hover .detail-icon {
  background: var(--accent);
  color: #000;
  transform: scale(1.1);
}

.phase-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.phase-duration svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.process-phase:hover .phase-duration {
  background: rgba(0, 255, 163, 0.08);
  border-color: var(--accent);
  color: var(--text);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .process-phase {
    grid-template-columns: 100px 1fr;
    gap: 40px;
  }
  
  .phase-marker {
    width: 100px;
    height: 100px;
  }
  
  .marker-core {
    width: 60px;
    height: 60px;
  }
  
  .marker-number {
    font-size: 24px;
  }
  
  .process-track {
    left: 50px;
  }
}

@media (max-width: 768px) {
  .process-phases {
    gap: 60px;
  }
  
  .process-phase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .phase-marker {
    margin: 0 auto;
  }
  
  .process-track {
    display: none;
  }
  
  .phase-card {
    padding: 36px 28px;
  }
  
  .phase-header h3 {
    font-size: 22px;
  }
  
  .process-phase:hover .phase-card {
    transform: translateX(0) translateY(-8px);
  }
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 100%;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0, 255, 163, 0.04), transparent 60%);
  pointer-events: none;
}

.process-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--border) 10%, 
    var(--border) 90%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.process-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(0, 217, 255, 0.6));
  animation: progressFlow 8s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent);
}

@keyframes progressFlow {
  0%, 100% { width: 0%; opacity: 0; }
  50% { width: 100%; opacity: 1; }
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 48px 32px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.03), rgba(0, 217, 255, 0.02));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 60px -10px rgba(0, 255, 163, 0.2);
}

.process-step-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.15), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.process-step:hover .process-step-glow {
  opacity: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.process-step-orb {
  position: absolute;
  top: 20%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.1), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.process-step:hover .process-step-orb {
  opacity: 1;
  right: -20px;
  animation: orbRotate 4s linear infinite;
}

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

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-number::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    var(--accent),
    rgba(0, 217, 255, 0.6),
    var(--accent)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  z-index: -1;
}

.process-step:hover .process-step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 255, 163, 0.4);
}

.process-step:hover .process-step-number::before {
  opacity: 1;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.process-step-number span {
  position: relative;
  z-index: 1;
}

.process-step-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step-progress {
  transform: scaleX(1);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 255, 163, 0.05);
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-step-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .process-step-icon {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: scale(1.1);
}

.process-step:hover .process-step-icon::before {
  opacity: 0.3;
}

.process-step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: all 0.4s ease;
}

.process-step:hover .process-step-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--accent));
}

.process-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
}

.process-step-content h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-step-content h3::after {
  width: 60px;
}

.process-step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.process-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.process-highlights li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.process-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.process-step:hover .process-highlights li::before {
  opacity: 1;
  transform: translateX(0);
}

.process-step:hover .process-highlights li {
  color: var(--text);
  padding-left: 28px;
}

.process-highlights li:nth-child(1)::before { transition-delay: 0.1s; }
.process-highlights li:nth-child(2)::before { transition-delay: 0.2s; }
.process-highlights li:nth-child(3)::before { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .process-connector {
    display: none;
  }
  
  .process-flow {
    grid-template-columns: 1fr;
  }
}

.why-us {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.03), transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.why-us-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 40px 32px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.why-card:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 255, 163, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-icon {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 255, 163, 0.3);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: transform 0.4s ease;
}

.why-card:hover .why-icon svg {
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tech-stack-marquee {
  background: var(--bg);
  padding: 100px 40px;
  overflow: hidden;
  position: relative;
}

.tech-stack-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    linear-gradient(90deg, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.tech-marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.tech-marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-logo-card {
  min-width: 180px;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tech-logo-card:hover {
  background: var(--bg-subtle);
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 28px -6px rgba(0, 255, 163, 0.25);
}

.tech-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 255, 163, 0.05);
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.4s ease;
}

.tech-logo-card:hover .tech-logo-icon {
  background: rgba(0, 255, 163, 0.12);
  border-color: var(--accent);
  transform: rotate(360deg) scale(1.1);
}

.tech-logo-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.tech-logo-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq {
  background: var(--bg);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(0, 255, 163, 0.3);
}

.faq-question {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  background: rgba(0, 255, 163, 0.03);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 32px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-marquee-track {
    animation-duration: 25s;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-answer p {
    padding: 0 24px 20px;
  }
}

.portfolio {
  background: var(--bg);
  position: relative;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.06), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-item {
  background: var(--bg-subtle);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  transform-origin: left;
}

.portfolio-item:hover::before {
  transform: scaleX(1);
}

.portfolio-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0);
}

.portfolio-img {
  position: relative;
  padding-top: 56%;
  overflow: hidden;
}

.portfolio-img::after {
  content: "";
  position: absolute;
  inset: 0;
}


.portfolio-placeholder {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: all 0.6s ease;
}

.portfolio-item:hover .portfolio-placeholder img {
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-overlay {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 163, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 255, 163, 0.1);
  border-color: var(--accent);
  transform: scale(1.1) rotate(10deg);
}

.portfolio-item:hover .portfolio-overlay svg {
  opacity: 1;
  transform: rotate(-10deg);
}

.portfolio-placeholder:has(img[style*="display: none"]) .portfolio-overlay,
.portfolio-placeholder:not(:has(img)) .portfolio-overlay {
  display: flex;
}

.portfolio-placeholder:has(img:not([style*="display: none"])) .portfolio-overlay {
  opacity: 0;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-placeholder {
  opacity: 1;
  transform: scale(1.05) rotate(1deg);
}

.portfolio-info {
  padding: 32px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.portfolio-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

.portfolio-metrics {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

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

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.1), rgba(0, 217, 255, 0.05));
  border: 1px solid rgba(0, 255, 163, 0.2);
  border-radius: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.portfolio-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), rgba(0, 217, 255, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-link:hover::before {
  opacity: 0.15;
}

.portfolio-link:hover {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 255, 163, 0.2);
}

.tech-stack {
  background: var(--bg);
  padding: 80px 40px;
}

.tech-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.tech-item {
  padding: 24px;
  background: var(--bg-subtle);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: var(--bg-card);
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonials {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle 800px at 20% 30%, rgba(0, 255, 163, 0.04), transparent 50%),
    radial-gradient(circle 600px at 80% 70%, rgba(0, 217, 255, 0.03), transparent 50%);
  pointer-events: none;
}

.testimonials-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 500px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
      rgba(0, 255, 163, 0.06), 
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 217, 255, 0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-card:hover {
  background: var(--bg-subtle);
  border-color: rgba(0, 255, 163, 0.25);
  transform: translateY(-8px);
  box-shadow: 
    0 24px 48px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 255, 163, 0.1);
}

.testimonial-quote-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.1), rgba(0, 217, 255, 0.05));
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-quote-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 40%,
    var(--accent),
    transparent 60%
  );
  opacity: 0;
  animation: quoteRotate 8s linear infinite;
  animation-play-state: paused;
}

.testimonial-card:hover .testimonial-quote-icon::before {
  opacity: 0.2;
  animation-play-state: running;
}

@keyframes quoteRotate {
  100% { transform: rotate(360deg); }
}

.testimonial-card:hover .testimonial-quote-icon {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.1));
  border-color: var(--accent);
  transform: scale(1.08) rotate(-5deg);
}

.testimonial-quote-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon svg {
  transform: scale(1.1);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars span {
  font-size: 20px;
  color: rgba(0, 255, 163, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .rating-stars span {
  color: var(--accent);
}

.testimonial-card:hover .rating-stars span:nth-child(1) { transition-delay: 0.05s; }
.testimonial-card:hover .rating-stars span:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:hover .rating-stars span:nth-child(3) { transition-delay: 0.15s; }
.testimonial-card:hover .rating-stars span:nth-child(4) { transition-delay: 0.2s; }
.testimonial-card:hover .rating-stars span:nth-child(5) { transition-delay: 0.25s; }

.rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 12px;
  background: rgba(0, 255, 163, 0.05);
  border: 1px solid rgba(0, 255, 163, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .rating-text {
  background: rgba(0, 255, 163, 0.1);
  border-color: var(--accent);
  color: var(--text);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: auto;
  font-style: normal;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  position: relative;
}

.testimonial-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-footer::before {
  width: 100px;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.1));
  border: 2px solid rgba(0, 255, 163, 0.2);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.avatar-placeholder::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--accent),
    transparent 90deg
  );
  opacity: 0;
  animation: avatarSpin 6s linear infinite;
  animation-play-state: paused;
}

.testimonial-card:hover .avatar-placeholder::before {
  opacity: 0.3;
  animation-play-state: running;
}

@keyframes avatarSpin {
  100% { transform: rotate(360deg); }
}

.testimonial-card:hover .avatar-placeholder {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.25), rgba(0, 217, 255, 0.15));
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 255, 163, 0.25);
}

.testimonial-author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 255, 163, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.testimonial-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-badge {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15) rotate(15deg);
}

.testimonial-card:hover .testimonial-badge svg {
  color: #000;
}

@media (max-width: 768px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 36px 28px;
  }
}

.cta-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 50% 50%, rgba(0, 255, 163, 0.08), transparent 60%),
    radial-gradient(circle 400px at 20% 80%, rgba(0, 217, 255, 0.05), transparent 50%),
    radial-gradient(circle 400px at 80% 20%, rgba(0, 217, 255, 0.05), transparent 50%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.cta-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-actions .btn:hover {
  box-shadow: 0 12px 32px rgba(0, 255, 163, 0.2);
  transform: translateY(-4px);
}

.about {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.about-bg-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.03), transparent 60%);
  filter: blur(120px);
  pointer-events: none;
}

.about-floating-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 163, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 10%, transparent 80%);
  opacity: 0.3;
  animation: dotsFloat 30s linear infinite;
  pointer-events: none;
}

@keyframes dotsFloat {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.profile-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.15), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.about-profile:hover .profile-glow {
  opacity: 1;
}

.profile-rings {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.profile-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-profile:hover .profile-ring:nth-child(1) {
  opacity: 0.4;
  transform: scale(1.1);
  transition-delay: 0s;
}

.about-profile:hover .profile-ring:nth-child(2) {
  opacity: 0.2;
  transform: scale(1.2);
  transition-delay: 0.1s;
}

.profile-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-profile:hover .profile-image {
  border-color: var(--accent);
  transform: scale(1.05);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.05), rgba(0, 217, 255, 0.05));
  position: relative;
  z-index: 1;
}

.profile-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--accent);
  opacity: 0.4;
}

.profile-info {
  flex: 1;
}

.profile-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.profile-title {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.profile-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0.6;
}

.about-story {
  margin-bottom: 80px;
}

.story-chapter {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding-left: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: chapterSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.story-chapter:nth-child(1) { animation-delay: 0.1s; }
.story-chapter:nth-child(2) { animation-delay: 0.2s; }
.story-chapter:nth-child(3) { animation-delay: 0.3s; }
.story-chapter:nth-child(4) { animation-delay: 0.4s; }

@keyframes chapterSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-chapter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: -48px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.2;
}

.story-chapter:last-child::before {
  display: none;
}

.chapter-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  font-family: 'Space Grotesk', monospace;
  flex-shrink: 0;
  width: 80px;
  position: relative;
}

.chapter-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-chapter:hover .chapter-number::after {
  width: 60px;
}

.chapter-content {
  flex: 1;
}

.chapter-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.chapter-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-principles {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-principles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.03), transparent 50%);
  pointer-events: none;
}

.principles-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
}

.principles-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.principle-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(0, 255, 163, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.principle-item:hover::before {
  opacity: 1;
}

.principle-item:hover {
  border-color: rgba(0, 255, 163, 0.3);
  transform: translateY(-4px);
}

.principle-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.principle-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 30%, var(--accent), transparent 70%);
  animation: iconRotateSlow 8s linear infinite;
  animation-play-state: paused;
  opacity: 0.3;
}

.principle-item:hover .principle-icon::before {
  animation-play-state: running;
}

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

.principle-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.principle-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .about-profile {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  
  .profile-info h3 {
    font-size: 28px;
  }
  
  .profile-meta {
    justify-content: center;
  }
  
  .story-chapter {
    gap: 20px;
    padding-left: 12px;
  }
  
  .chapter-number {
    font-size: 36px;
    width: 60px;
  }
  
  .about-principles {
    padding: 32px 24px;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  background: var(--bg);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.contact-bg-orb {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.05), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.contact-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 163, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 163, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
      rgba(0, 255, 163, 0.06), 
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-method:hover::before {
  opacity: 1;
}

.contact-method::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 217, 255, 0.6));
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover::after {
  width: 100%;
}

.contact-method:hover {
  background: var(--bg-subtle);
  border-color: rgba(0, 255, 163, 0.3);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 255, 163, 0.1);
}

.method-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.method-icon-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 14px;
  opacity: 0;
}

.contact-method:hover .method-icon-pulse {
  animation: methodPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes methodPulse {
  0% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; }
  100% { opacity: 0; transform: scale(1.25); }
}

.method-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.08), rgba(0, 217, 255, 0.04));
  border: 1px solid rgba(0, 255, 163, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.method-icon::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 30%, var(--accent), transparent 70%);
  opacity: 0;
  animation: iconSpinSlow 8s linear infinite;
  animation-play-state: paused;
}

.contact-method:hover .method-icon::before {
  opacity: 0.25;
  animation-play-state: running;
}

@keyframes iconSpinSlow {
  100% { transform: rotate(360deg); }
}

.contact-method:hover .method-icon {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.1));
  border-color: var(--accent);
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 
    0 12px 28px rgba(0, 255, 163, 0.3),
    inset 0 0 20px rgba(0, 255, 163, 0.05);
}

.method-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-method:hover .method-icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px var(--accent));
}

.method-content {
  flex: 1;
}

.method-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.method-content p {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-method:hover .method-content p {
  color: var(--accent);
}

.method-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-arrow svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
}

.contact-method:hover .method-arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-availability {
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.04), rgba(0, 217, 255, 0.02));
  border: 1px solid rgba(0, 255, 163, 0.12);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.contact-availability::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 300px at 80% 50%, rgba(0, 255, 163, 0.08), transparent 60%);
  pointer-events: none;
}

.availability-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.availability-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 
    0 0 12px var(--accent),
    0 0 24px rgba(0, 255, 163, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

.contact-availability p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  position: relative;
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-method {
    padding: 24px 20px;
  }
  
  .method-icon {
    width: 56px;
    height: 56px;
  }
}

.footer {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 10, 5, 0.95) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-aurora {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(0, 255, 163, 0.12), transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 217, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 255, 163, 0.06), transparent 60%);
  filter: blur(80px);
  opacity: 0.6;
  animation: auroraShift 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes auroraShift {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateX(-50%) translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }
}

.footer-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 255, 163, 0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 25px 25px;
  opacity: 0.15;
  animation: particlesDrift 60s linear infinite;
  pointer-events: none;
}

@keyframes particlesDrift {
  0% { background-position: 0 0, 25px 25px; }
  100% { background-position: 50px 50px, 105px 105px; }
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  position: relative;
  z-index: 1;
}

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 80px;
  margin-bottom: 80px;
  position: relative;
}

.footer-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.footer-logo-section {
  flex: 1;
}

.footer-logo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.logo-pulse {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: logoPulseWave 3s ease-out infinite;
}

@keyframes logoPulseWave {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.logo-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.1));
  border: 2px solid rgba(0, 255, 163, 0.3);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-core::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 30%, var(--accent), transparent 70%);
  animation: logoSpin 8s linear infinite;
  animation-play-state: paused;
  opacity: 0.4;
}

.footer:hover .logo-core::before {
  animation-play-state: running;
}

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

.logo-core:hover {
  border-color: var(--accent);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 0 40px rgba(0, 255, 163, 0.4),
    inset 0 0 30px rgba(0, 255, 163, 0.1);
}

.logo-core img {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  filter: brightness(1.2);
}

.footer-brand-name {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-slogan {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  opacity: 0.9;
}

.footer-stats-mini {
  display: flex;
  gap: 48px;
  align-items: center;
}

.stat-mini {
  text-align: center;
  position: relative;
}

.stat-mini::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-mini:hover::before {
  opacity: 1;
}

.stat-mini-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', monospace;
  transition: all 0.4s ease;
}

.stat-mini:hover .stat-mini-number {
  color: var(--accent);
  transform: scale(1.15);
}

.stat-mini-number span {
  font-size: 24px;
  color: var(--accent);
  opacity: 0.7;
}

.stat-mini-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.footer-nav-group h4,
.footer-contact-quick h4,
.footer-social-section h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}

.footer-nav-group h4::after,
.footer-contact-quick h4::after,
.footer-social-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.nav-columns ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-columns ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.nav-columns ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-columns ul li a:hover {
  color: var(--accent);
  padding-left: 12px;
}

.nav-columns ul li a:hover::before {
  width: calc(100% - 12px);
}

.quick-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 255, 163, 0.03);
  border: 1px solid rgba(0, 255, 163, 0.1);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quick-contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.08), transparent);
  transition: left 0.5s ease;
}

.quick-contact-item:not(.location):hover::before {
  left: 100%;
}

.quick-contact-item:not(.location):hover {
  background: rgba(0, 255, 163, 0.08);
  border-color: var(--accent);
  transform: translateX(8px);
  color: var(--accent);
}

.quick-contact-item.location {
  cursor: default;
}

.quick-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.quick-contact-item:not(.location):hover svg {
  transform: scale(1.2) rotate(10deg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-card:hover::before {
  opacity: 0.1;
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 163, 0.2);
  color: var(--accent);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.1), rgba(0, 217, 255, 0.05));
  border: 1px solid rgba(0, 255, 163, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.social-card:hover .social-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-12deg) scale(1.1);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  transition: fill 0.4s ease;
}

.social-card:hover .social-icon svg {
  fill: #000;
}

.footer-bottom {
  position: relative;
  padding: 0 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.3), transparent);
  margin-bottom: 32px;
  position: relative;
}

.footer-bottom-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.footer-legal-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-legal-links .separator {
  color: var(--border);
  opacity: 0.5;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-copyright .heart {
  color: #ff4444;
  animation: heartBeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.2); }
  20%, 40% { transform: scale(1); }
}

.footer-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-badge {
  padding: 6px 12px;
  background: rgba(0, 255, 163, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-badge:hover {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer-hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .footer-logo-wrapper {
    margin: 0 auto 24px;
  }

  .footer-stats-mini {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nav-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 60px 24px 40px;
  }

  .footer-hero {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .footer-brand-name {
    font-size: 28px;
  }

  .footer-stats-mini {
    flex-direction: column;
    gap: 24px;
  }

  .footer-grid {
    gap: 40px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 0 24px 32px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-subtle);
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cookie-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

.cookie-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.cookie-text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cookie-text a {
  color: var(--text);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--accent);
  color: #000;
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 140px 24px 100px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero h1::after {
    width: 80px;
    height: 3px;
    bottom: -16px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    padding-top: 24px;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 80px 24px;
  }

  .marquee-section {
    padding: 24px 0;
  }

  .marquee-content {
    gap: 40px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 36px 28px;
  }
  
  .stat-card h3 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .service-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    padding: 36px 28px;
  }

  .service-number {
    font-size: 48px;
    top: 24px;
    right: 24px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .tech-item {
    padding: 20px;
  }

  .tech-item span {
    font-size: 12px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .portfolio-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-newsletter {
    padding: 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

  .cookie-banner {
    left: 16px;
    right: 16px;
  }

  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

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