/* ============================================================
   K5.LV — COSMIC LIQUID GLASS DESIGN SYSTEM v2
   Aurora · Liquid Glass · IT Cosmic · 3D
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --bg-deep:       #020010;
  --bg-dark:       #050018;
  --bg-card:       rgba(255, 255, 255, 0.06);

  --primary:       #00e5ff;
  --primary-dim:   #00cfff;
  --primary-glow:  rgba(0, 229, 255, 0.5);
  --secondary:     #8b5cf6;
  --secondary-glow:rgba(139, 92, 246, 0.45);
  --accent:        #f59e0b;
  --accent-glow:   rgba(245, 158, 11, 0.4);
  --success:       #10b981;
  --pink:          #ec4899;
  --pink-glow:     rgba(236, 72, 153, 0.4);

  --text-primary:  #f0f0ff;
  --text-secondary:#b0b0d0;
  --text-muted:    #5a5a8a;

  /* LIQUID GLASS */
  --glass-bg:      rgba(255, 255, 255, 0.06);
  --glass-bg-hover:rgba(255, 255, 255, 0.10);
  --glass-border:  rgba(255, 255, 255, 0.12);
  --glass-border-bright: rgba(255, 255, 255, 0.22);
  --glass-shadow:  0 8px 32px rgba(0, 0, 0, 0.5),
                   inset 0 1px 0 rgba(255, 255, 255, 0.12),
                   inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --glass-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.6),
                     inset 0 2px 0 rgba(255, 255, 255, 0.15),
                     inset 0 -1px 0 rgba(0, 0, 0, 0.2);

  --gradient-1: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 100%);
  --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #f59e0b 100%);
  --gradient-3: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #00e5ff 100%);
  --gradient-hero: radial-gradient(ellipse 90% 70% at 60% -5%, rgba(0,229,255,0.22) 0%, transparent 60%),
                   radial-gradient(ellipse 70% 60% at 90% 50%, rgba(139,92,246,0.18) 0%, transparent 55%),
                   radial-gradient(ellipse 60% 70% at 5%  90%, rgba(245,158,11,0.10) 0%, transparent 55%),
                   radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0,0,30,0.8) 0%, transparent 100%);

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  30px;
  --radius-xl:  44px;

  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: 0.2s ease;

  --nav-height: 72px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* AURORA BACKGROUND */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 60% at 10% 20%, rgba(0,229,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 90% 80%, rgba(139,92,246,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(236,72,153,0.06) 0%, transparent 50%);
  animation: aurora-shift 12s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

@keyframes aurora-shift {
  0%   { opacity: 0.6; transform: scale(1)    rotate(0deg); }
  50%  { opacity: 1;   transform: scale(1.05) rotate(1deg); }
  100% { opacity: 0.7; transform: scale(1.02) rotate(-1deg); }
}

::selection { background: var(--primary); color: #000; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: 100px;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 16px var(--primary), 0 0 32px var(--primary-glow), 0 0 8px #fff;
}

#cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
  box-shadow: 0 0 12px rgba(0,229,255,0.15), inset 0 0 12px rgba(0,229,255,0.05);
}

body.cursor-hover #cursor-dot {
  width: 14px; height: 14px;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent-glow);
}
body.cursor-hover #cursor-ring {
  width: 58px; height: 58px;
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(245,158,11,0.2), inset 0 0 16px rgba(245,158,11,0.05);
}

/* ── CANVAS PARTICLES ───────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.7; color: var(--text-secondary); }

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.3));
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(139,92,246,0.3));
}

.gradient-text-3 {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LIQUID GLASS UTILITY ───────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(32px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(1.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  position: relative;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.glass-strong {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(48px) saturate(200%) brightness(1.15);
  -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-lg);
  position: relative;
}

.glass-strong::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

/* ── LIQUID GLASS BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Shimmer sweep on all buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn:hover::before {
  left: 160%;
  transition: left 0.55s ease;
}

/* Top highlight – glass feel */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
  border-radius: 100px 100px 0 0;
  pointer-events: none;
}

/* ── btn-primary ── */
.btn-primary {
  background: linear-gradient(135deg, rgba(0,229,255,0.25) 0%, rgba(139,92,246,0.25) 100%);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(0,229,255,0.4);
  color: #ffffff;
  box-shadow:
    0 0 30px rgba(0,229,255,0.25),
    0 6px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  text-shadow: 0 0 20px rgba(0,229,255,0.8);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0,229,255,0.40) 0%, rgba(139,92,246,0.40) 100%);
  border-color: rgba(0,229,255,0.7);
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 60px rgba(0,229,255,0.45),
    0 12px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  text-shadow: 0 0 30px rgba(0,229,255,1);
}

/* ── btn-ghost ── */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.btn-ghost:hover {
  background: rgba(0,229,255,0.10);
  border-color: rgba(0,229,255,0.45);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(0,229,255,0.2),
    0 8px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(0,229,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  text-shadow: 0 0 16px rgba(0,229,255,0.6);
}

/* ── btn-secondary ── */
.btn-secondary {
  background: rgba(139,92,246,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139,92,246,0.35);
  color: #d4b8ff;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(139,92,246,0.25);
  border-color: rgba(139,92,246,0.6);
  transform: translateY(-3px);
  box-shadow:
    0 0 35px rgba(139,92,246,0.35),
    0 8px 28px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 0 16px rgba(139,92,246,0.8);
}

/* ── SECTION LAYOUT ─────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-sm { padding: 60px 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.35);
  background: rgba(0,229,255,0.07);
  backdrop-filter: blur(12px);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 0 12px rgba(0,229,255,0.7);
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary-glow);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1);   box-shadow: 0 0 10px var(--primary); }
  50%       { opacity: 0.5; transform: scale(0.6); box-shadow: 0 0 4px var(--primary); }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(2, 0, 16, 0.75);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 4px 40px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(0,229,255,0.3), rgba(139,92,246,0.3));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 24px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: var(--transition);
  text-shadow: 0 0 16px var(--primary);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(10deg) scale(1.08);
  box-shadow: 0 0 40px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-phone:hover {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2,0,16,0.96);
  backdrop-filter: blur(48px) saturate(200%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
}

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  transition: color 0.2s;
}

.mobile-close:hover {
  color: var(--primary);
  text-shadow: 0 0 16px var(--primary);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

/* Aurora orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: orb-float 10s ease-in-out infinite, orb-appear 1.5s ease forwards;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.7) 0%, transparent 70%);
  top: -250px; right: -150px;
  animation-delay: 0s, 0s;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.7) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation-delay: -5s, 0.3s;
}

.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,158,11,0.7) 0%, transparent 70%);
  top: 42%; left: 38%;
  animation-delay: -2.5s, 0.6s;
}

.hero-orb-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(236,72,153,0.7) 0%, transparent 70%);
  top: 15%; left: 25%;
  animation-delay: -7s, 0.9s;
}

@keyframes orb-appear {
  to { opacity: 0.22; }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0)      scale(1);    }
  25%       { transform: translate(25px,-35px)  scale(1.04); }
  50%       { transform: translate(-15px,20px)  scale(0.97); }
  75%       { transform: translate(10px,-10px)  scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(0,229,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease both;
  box-shadow: 0 0 24px rgba(0,229,255,0.12), inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 0 10px rgba(0,229,255,0.6);
}

.hero-badge i {
  font-size: 0.9rem;
  animation: bolt-pulse 1.5s ease-in-out infinite;
}

@keyframes bolt-pulse {
  0%, 100% { filter: drop-shadow(0 0 4px var(--primary)); }
  50%       { filter: drop-shadow(0 0 10px var(--primary)) brightness(1.5); }
}

.hero h1 {
  margin-bottom: 24px;
  animation: fade-up 0.8s 0.1s ease both;
}

.hero-typewriter {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
  min-height: 2.5rem;
  animation: fade-up 0.8s 0.2s ease both;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: var(--primary);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s infinite;
  box-shadow: 0 0 8px var(--primary);
}

@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  animation: fade-up 0.8s 0.4s ease both;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.4));
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  pointer-events: none;
  z-index: 2;
  animation: fade-up 1s 0.2s ease both;
}

.hero-3d-scene {
  position: relative;
  width: 100%;
  height: 500px;
}

/* ── FLOATING CARDS (LIQUID GLASS) ──────────────────────────── */
.floating-card {
  position: absolute;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  animation: float-card 6s ease-in-out infinite;
  min-width: 180px;
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.floating-card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.floating-card-2 { top: 45%; right: 0%;  animation-delay: -2s; }
.floating-card-3 { top: 72%; right: 20%; animation-delay: -4s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(1.5deg); }
}

.floating-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.fc-cyan   { background: rgba(0,229,255,0.15);  color: var(--primary); box-shadow: 0 0 16px rgba(0,229,255,0.2); }
.fc-purple { background: rgba(139,92,246,0.15); color: #c4b5fd;        box-shadow: 0 0 16px rgba(139,92,246,0.2); }
.fc-amber  { background: rgba(245,158,11,0.15); color: var(--accent);  box-shadow: 0 0 16px rgba(245,158,11,0.2); }
.fc-green  { background: rgba(16,185,129,0.15); color: var(--success); box-shadow: 0 0 16px rgba(16,185,129,0.2); }

.floating-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.floating-card p  { font-size: 0.78rem; color: var(--text-muted); }

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(160%) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(160%) brightness(1.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--glass-shadow),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s, border-color 0.45s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: none;
  --glow-x: 50%;
  --glow-y: 50%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
  z-index: 2;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,229,255,0.35), rgba(139,92,246,0.35), rgba(245,158,11,0.3));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.45s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(0,229,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.service-card:hover::after { opacity: 0.35; }

.service-card .card-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--glow-x) var(--glow-y), rgba(255,255,255,0.07), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
  border-radius: var(--radius-lg);
}

.service-card:hover .card-spotlight { opacity: 1; }

/* ── SERVICE ICON ───────────────────────────────────────────── */
.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.service-card:hover .service-icon-wrap {
  transform: translateY(-5px) scale(1.08);
}

.si-blue   { background: rgba(0,229,255,0.12);  color: var(--primary); box-shadow: 0 0 24px rgba(0,229,255,0.2),  inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(0,229,255,0.2); }
.si-purple { background: rgba(139,92,246,0.12); color: #c4b5fd;        box-shadow: 0 0 24px rgba(139,92,246,0.2), inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(139,92,246,0.2); }
.si-amber  { background: rgba(245,158,11,0.12); color: var(--accent);  box-shadow: 0 0 24px rgba(245,158,11,0.2), inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(245,158,11,0.2); }
.si-green  { background: rgba(16,185,129,0.12); color: var(--success); box-shadow: 0 0 24px rgba(16,185,129,0.2), inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(16,185,129,0.2); }
.si-red    { background: rgba(239,68,68,0.12);  color: #f87171;        box-shadow: 0 0 24px rgba(239,68,68,0.2),  inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(239,68,68,0.2); }
.si-pink   { background: rgba(236,72,153,0.12); color: #f472b6;        box-shadow: 0 0 24px rgba(236,72,153,0.2), inset 0 1px 0 rgba(255,255,255,0.2); border: 1px solid rgba(236,72,153,0.2); }

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p  { font-size: 0.9rem; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.tag:hover {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.25);
  color: var(--primary);
}

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(180deg, transparent, rgba(0,229,255,0.03), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.stat-item:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-item:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,229,255,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 0 8px var(--primary);
}

.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after  { transform: scaleX(1); }
.stat-item:hover { background: rgba(255,255,255,0.07); }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ── WHY K5 ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.feature-item:hover {
  background: rgba(0,229,255,0.05);
  border-color: rgba(0,229,255,0.25);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), -4px 0 24px rgba(0,229,255,0.1);
}

.feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--primary);
  box-shadow: 0 0 16px rgba(0,229,255,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: rgba(0,229,255,0.2);
  box-shadow: 0 0 28px rgba(0,229,255,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: scale(1.1) rotate(-5deg);
}

.feature-content h4 { margin-bottom: 8px; }
.feature-content p  { font-size: 0.88rem; }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.35;
  box-shadow: 0 0 8px var(--primary-glow);
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0,229,255,0.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(0,229,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,229,255,0.3), rgba(139,92,246,0.3));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.5);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(0,229,255,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(0,229,255,0.8);
  animation: step-glow 3s ease-in-out infinite;
}

@keyframes step-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(0,229,255,0.25), inset 0 1px 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 60px rgba(0,229,255,0.5),  inset 0 1px 0 rgba(255,255,255,0.4); }
}

.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step-card p  { font-size: 0.88rem; }

/* ── QUOTE SECTION ──────────────────────────────────────────── */
.quote-section { position: relative; overflow: hidden; }

.quote-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, rgba(139,92,246,0.05) 100%);
}

.quote-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 72px;
  text-align: center;
}

.quote-mark {
  font-size: 7rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 24px;
  font-family: serif;
  text-shadow: 0 0 40px rgba(0,229,255,0.4);
}

.quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(139,92,246,0.25));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 0 24px rgba(0,229,255,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}

.quote-info strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.quote-info span   { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg,
    rgba(0,229,255,0.06) 0%,
    rgba(139,92,246,0.06) 50%,
    rgba(245,158,11,0.04) 100%);
  border-top:    1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,229,255,0.04), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.pricing-card.featured {
  background: linear-gradient(145deg,
    rgba(0,229,255,0.10) 0%,
    rgba(139,92,246,0.10) 100%);
  border-color: rgba(0,229,255,0.35);
  box-shadow:
    0 0 80px rgba(0,229,255,0.15),
    0 24px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: scale(1.04);
}

.pricing-card.featured::after {
  content: 'POPULĀRĀKAIS';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 40px;
  transform: rotate(30deg);
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,0.25);
  box-shadow:
    0 20px 64px rgba(0,0,0,0.5),
    0 0 40px rgba(0,229,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.pricing-tier     { font-size: 0.82rem; font-weight: 600; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; text-shadow: 0 0 10px rgba(0,229,255,0.5); }
.pricing-card h3  { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-desc     { font-size: 0.86rem; margin-bottom: 28px; }
.pricing-price    { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; margin-bottom: 28px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.pricing-features { margin-bottom: 32px; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-feature:last-child  { border-bottom: none; }
.pricing-feature i            { color: var(--primary); font-size: 0.8rem; }
.pricing-feature.disabled     { color: var(--text-muted); }
.pricing-feature.disabled i   { color: var(--text-muted); }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.value-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 24px rgba(0,229,255,0.08);
}

.value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: 0.84rem; }

.about-image    { position: relative; }
.about-card-stack {
  position: relative;
  height: 460px;
}

.about-main-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg,
    rgba(0,229,255,0.08) 0%,
    rgba(139,92,246,0.06) 100%);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(0,229,255,0.18);
  box-shadow: 0 0 60px rgba(0,229,255,0.08), var(--glass-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.5), transparent);
}

.about-main-icon {
  width: 100px; height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(139,92,246,0.25));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,229,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  box-shadow: 0 0 80px rgba(0,229,255,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  animation: float-card 4s ease-in-out infinite;
  text-shadow: 0 0 24px rgba(0,229,255,0.8);
}

.about-main-card h3   { font-size: 1.4rem; }
.about-main-card p    { text-align: center; padding: 0 32px; font-size: 0.88rem; }

.about-badge-float {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--glass-shadow);
}

.about-badge-float::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.about-badge-float.b1 { bottom: 30px; left: -20px; animation: float-card 5s ease-in-out infinite; }
.about-badge-float.b2 { top: 30px; right: -20px; animation: float-card 5s ease-in-out infinite -2.5s; }
.about-badge-float i  { color: var(--primary); text-shadow: 0 0 12px var(--primary); }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -10%,
    rgba(0,229,255,0.14) 0%, transparent 70%);
}

.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a   { color: var(--primary); transition: opacity 0.2s; text-shadow: 0 0 8px rgba(0,229,255,0.4); }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb i   { font-size: 0.6rem; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.contact-info-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateX(5px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), -4px 0 20px rgba(0,229,255,0.08);
}

.contact-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(0,229,255,0.10);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0,229,255,0.12), inset 0 1px 0 rgba(255,255,255,0.15);
}

.contact-info-card h4   { margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-card p,
.contact-info-card a    { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.contact-info-card a:hover { color: var(--primary); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hours-row  { display: flex; flex-direction: column; gap: 2px; }
.hours-row span:first-child { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.hours-row span:last-child  { font-size: 0.88rem; font-weight: 500; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-form-card { padding: 48px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,229,255,0.5);
  background: rgba(0,229,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--bg-dark); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 260px; }

.footer-logo    { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }

.footer-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(139,92,246,0.25));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 16px rgba(0,229,255,0.2), inset 0 1px 0 rgba(255,255,255,0.25);
}

.footer-logo-text       { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; }
.footer-logo-text span  { color: var(--primary); text-shadow: 0 0 10px rgba(0,229,255,0.4); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover { color: var(--primary); padding-left: 4px; text-shadow: 0 0 8px rgba(0,229,255,0.4); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-contact-item i      { color: var(--primary); font-size: 0.8rem; text-shadow: 0 0 8px rgba(0,229,255,0.4); }
.footer-contact-item a      { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.social-btn:hover {
  background: rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.35);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,229,255,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 0 10px rgba(0,229,255,0.6);
}

/* ── GLOW DIVIDER ───────────────────────────────────────────── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,229,255,0.5) 30%,
    rgba(139,92,246,0.5) 70%,
    transparent 100%);
  box-shadow: 0 0 12px rgba(0,229,255,0.3);
  opacity: 0.3;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

@keyframes shimmer-sweep {
  0%   { left: -120%; }
  100% { left: 220%; }
}

@keyframes holographic {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 12px rgba(0,229,255,0.6), 0 0 30px rgba(0,229,255,0.3); }
  50%       { text-shadow: 0 0 20px rgba(0,229,255,0.9), 0 0 50px rgba(0,229,255,0.5), 0 0 80px rgba(0,229,255,0.2); }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity  0.9s cubic-bezier(0.23,1,0.32,1),
    transform 0.9s cubic-bezier(0.23,1,0.32,1);
}

.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.22s; }
.reveal-delay-3       { transition-delay: 0.34s; }
.reveal-delay-4       { transition-delay: 0.46s; }
.reveal-delay-5       { transition-delay: 0.58s; }

/* ── BADGE / PILL ───────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.pill-blue   { background: rgba(0,229,255,0.10);   border: 1px solid rgba(0,229,255,0.28);   color: var(--primary); box-shadow: 0 0 12px rgba(0,229,255,0.1); }
.pill-purple { background: rgba(139,92,246,0.10);  border: 1px solid rgba(139,92,246,0.28);  color: #d4b8ff;        box-shadow: 0 0 12px rgba(139,92,246,0.1); }
.pill-amber  { background: rgba(245,158,11,0.10);  border: 1px solid rgba(245,158,11,0.28);  color: var(--accent);  box-shadow: 0 0 12px rgba(245,158,11,0.1); }
.pill-green  { background: rgba(16,185,129,0.10);  border: 1px solid rgba(16,185,129,0.28);  color: var(--success); box-shadow: 0 0 12px rgba(16,185,129,0.1); }

/* ── SERVICE DETAIL PAGE ────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.service-detail-card:hover {
  border-color: rgba(0,229,255,0.28);
  transform: translateY(-7px) scale(1.01);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 50px rgba(0,229,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.service-detail-card .service-icon-wrap { margin-bottom: 28px; }
.service-detail-card h3         { margin-bottom: 14px; font-size: 1.25rem; }
.service-detail-card p          { font-size: 0.9rem; margin-bottom: 20px; }
.service-detail-list            { display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li         { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--text-secondary); }
.service-detail-list li i       { color: var(--primary); font-size: 0.7rem; text-shadow: 0 0 8px rgba(0,229,255,0.5); }

/* ── FAQ / ACCORDION ────────────────────────────────────────── */
.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.active {
  border-color: rgba(0,229,255,0.25);
  box-shadow: 0 0 30px rgba(0,229,255,0.06);
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.faq-item.active .faq-question { color: var(--primary); text-shadow: 0 0 10px rgba(0,229,255,0.4); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(0,229,255,0.15); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }

/* ── HELPERS ────────────────────────────────────────────────── */
.text-center      { text-align: center; }
.text-primary-color { color: var(--primary); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:first-child { border-radius: var(--radius-md) 0 0 0; }
  .stats-grid .stat-item:last-child  { border-radius: 0 0 var(--radius-md) 0; }
  .stats-grid .stat-item:nth-child(2){ border-radius: 0 var(--radius-md) 0 0; }
  .stats-grid .stat-item:nth-child(3){ border-radius: 0 0 0 var(--radius-md); }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .about-intro     { grid-template-columns: 1fr; }
  .about-card-stack{ height: 300px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .section    { padding: 64px 0; }
  .services-grid  { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .quote-card     { padding: 40px 28px; }
  .form-grid      { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 16px; text-align: center; }
  .cta-inner      { flex-direction: column; text-align: center; }
  .hero-stats     { gap: 20px; }
  .about-values   { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn          { justify-content: center; }
}
