/* ============================================
   NOVATHEX STUDIO - STYLES (UPGRADED)
   Stripe-inspired premium feel
   ============================================ */

:root {
  --bg-primary: #0A0E27;
  --bg-secondary: #0F1338;
  --bg-tertiary: #161A3E;
  --bg-light: #F5F5F7;
  --bg-light-alt: #FAFAFC;
  
  --text-primary: #F5F5F7;
  --text-secondary: rgba(245, 245, 247, 0.7);
  --text-tertiary: rgba(245, 245, 247, 0.5);
  --text-dark: #0A0E27;
  
  --accent: #00D9FF;
  --accent-2: #7C5CFF;
  --accent-3: #FF6BCB;
  --accent-dim: rgba(0, 217, 255, 0.15);
  
  --border-light: rgba(245, 245, 247, 0.08);
  --border-bright: rgba(0, 217, 255, 0.3);
  
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  
  --max-width: 1280px;
  --max-width-narrow: 880px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   ✨ SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ============================================
   ✨ MOUSE GLOW EFFECT
   ============================================ */
.mouse-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mouse-glow.active {
  opacity: 1;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.accent {
  color: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.nav-logo-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  opacity: 0.6;
  margin-left: 6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ============================================
   ✨ HERO - WITH ANIMATED BACKGROUND
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Stripe-style flowing gradient blobs */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  will-change: transform;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation: blobFloat1 20s ease-in-out infinite;
}

.hero-blob-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35) 0%, transparent 70%);
  top: 30%;
  right: -10%;
  animation: blobFloat2 25s ease-in-out infinite;
}

.hero-blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 203, 0.25) 0%, transparent 70%);
  bottom: -10%;
  left: 30%;
  animation: blobFloat3 30s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 40px) scale(0.95); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-100px, 80px) scale(0.9); }
  66% { transform: translate(60px, -40px) scale(1.15); }
}

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

/* Subtle grid overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(245, 245, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 880px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

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

@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.7);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 12px rgba(0, 217, 255, 0);
    transform: scale(1.1);
  }
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Glowing "Convert" effect */
.hero-title .glow-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.7)) drop-shadow(0 0 20px rgba(124, 92, 255, 0.4));
  }
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.3s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.25);
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
  background: rgba(245, 245, 247, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(245, 245, 247, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(245, 245, 247, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
}

.btn-block {
  display: block;
  width: 100%;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

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

.section-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   ✨ WORK GRID - 3D HOVER
   ============================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: 1000px;
}

.work-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  transform-style: preserve-3d;
  position: relative;
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent-2));
  -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 var(--transition);
  pointer-events: none;
}

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

.work-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-bright);
}

.work-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.work-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.work-info {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.work-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.work-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.work-result {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

/* ============================================
   ✨ SERVICES GRID - 3D HOVER
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.service-card {
  padding: 40px 32px;
  background: var(--bg-tertiary);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-dim), rgba(124, 92, 255, 0.15));
  border-radius: 12px;
  position: relative;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
}

.service-meta {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  position: relative;
}

.service-meta li {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

/* ============================================
   ✨ PRICING - PREMIUM FEEL
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  perspective: 1000px;
}

.pricing-card {
  padding: 48px 32px;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.pricing-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(124, 92, 255, 0.1));
  border: 1px solid var(--accent);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15), 0 0 60px rgba(124, 92, 255, 0.1);
}

.pricing-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientFlow 3s ease infinite;
  pointer-events: none;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 217, 255, 0.2), 0 0 80px rgba(124, 92, 255, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

.pricing-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}

.currency {
  font-size: 32px;
  vertical-align: top;
  margin-right: 4px;
  opacity: 0.7;
}

.pricing-tag {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-best {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.pricing-footer {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-footer a {
  color: var(--accent);
  font-weight: 500;
}

.pricing-footer a:hover {
  text-decoration: underline;
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--border-bright) 20%, 
    var(--border-bright) 80%, 
    transparent
  );
  z-index: 0;
}

.process-step {
  padding: 32px 24px;
  background: var(--bg-tertiary);
  border-radius: 16px;
  position: relative;
  transition: all var(--transition);
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(0, 217, 255, 0.1);
}

.process-number {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-dim);
  border-radius: 8px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.process-time {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-wrapper {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  margin: 40px 0 64px;
}

.about-text p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  transition: all var(--transition);
}

.faq-item[open] {
  border-bottom-color: var(--accent-dim);
}

.faq-item summary {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--transition);
}

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

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  background: linear-gradient(135deg, var(--bg-secondary), rgba(124, 92, 255, 0.05));
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.form-field {
  margin-bottom: 20px;
  position: relative;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300D9FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}

.form-status.error {
  display: block;
  background: rgba(255, 100, 100, 0.1);
  color: #ff6464;
  border: 1px solid rgba(255, 100, 100, 0.3);
}

.contact-alt {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-alt a {
  color: var(--accent);
  font-weight: 500;
}

.contact-alt a:hover {
  text-decoration: underline;
}

.contact-hours {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 320px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--accent);
}

/* ============================================
   ✨ SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .work-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .pricing-featured {
    transform: none;
  }
  
  .pricing-featured:hover {
    transform: translateY(-4px);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  
  .nav-container {
    padding: 16px 24px;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-blob {
    filter: blur(60px);
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 56px;
  }
  
  .work-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .mouse-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }
  
  .pricing-price {
    font-size: 44px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .hero-blob {
    animation: none;
  }
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--text-dark);
}