/* ===========================
   NETCRAFT DIGITAL — STYLE
   Dark Electric Theme
=========================== */

:root {
  --bg: #050810;
  --bg-2: #080d1a;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --cyan: #00e5ff;
  --cyan-dim: rgba(0,229,255,0.15);
  --violet: #8b5cf6;
  --violet-dim: rgba(139,92,246,0.15);
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(0,229,255,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white-80);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-net { color: var(--white); }
.logo-craft { color: var(--cyan); }
.logo-dot { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-50);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--cyan);
  color: var(--bg) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5,8,16,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }

.mob-link {
  padding: 12px 0;
  font-size: 16px;
  color: var(--white-70);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--cyan); }
.mob-cta {
  margin-top: 12px;
  background: var(--cyan);
  color: var(--bg) !important;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  border: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--cyan);
  top: -200px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--violet);
  bottom: -150px; right: -150px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #00aaff;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.grid-overlay {
  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: 60px 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-5);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--white);
}

.title-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-outline {
  -webkit-text-stroke: 2px var(--white-20);
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--white-50);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,229,255,0.3);
}
.btn-arrow { transition: transform var(--transition); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid var(--white-20);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 17px; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-20);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--white-30);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.marquee-dot { color: var(--cyan) !important; }

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

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--cyan-dim);
  border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan { color: var(--cyan); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-title { margin-bottom: 0; }

/* ===== INTRO ===== */
.intro-section { background: var(--bg-2); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-right p { color: var(--white-60); margin-bottom: 20px; }
.link-arrow {
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 12px; }
.link-arrow span { transition: transform var(--transition); }
.link-arrow:hover span { transform: translateX(4px); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 10px; }

.services-cta { text-align: center; }

/* ===== PROCESS ===== */
.process-section { background: var(--bg-2); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  margin-top: 28px;
  opacity: 0.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-preview { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
}
.testi-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-quote {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}
.testi-author span {
  font-size: 12px;
  color: var(--white-40);
}
.testi-cta { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  text-align: center;
  padding: 120px 24px;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb-1 { width: 400px; height: 400px; background: var(--cyan); opacity: 0.1; top: -100px; left: -100px; }
.cta-orb-2 { width: 300px; height: 300px; background: var(--violet); opacity: 0.15; bottom: -100px; right: -100px; }
.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.cta-inner p { font-size: 17px; color: var(--white-50); margin-bottom: 40px; }

/* ===== FOOTER ===== */
.footer {
  background: #030508;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--white-40); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 14px; color: var(--white-50); transition: color var(--transition); }
.footer-contact a:hover { color: var(--cyan); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--white-40); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 13px;
  color: var(--white-30);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }
.reveal-delay-4 { animation-delay: 0.6s; }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.page-hero .orb { opacity: 0.12; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: var(--white-50);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { width: 1px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-60);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white-5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-30);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.05);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #080d1a; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--cyan);
  font-weight: 500;
  display: none;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.3); }
.portfolio-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, #0a1628, #141f3d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}
.portfolio-info { padding: 24px; }
.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.portfolio-info p { font-size: 14px; color: var(--white-40); margin-bottom: 16px; }
.portfolio-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.2);
  margin-right: 6px;
  margin-bottom: 4px;
}

@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
}
.about-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim), var(--violet-dim));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
}
.about-card {
  position: absolute;
  inset: 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
}
.about-card-num {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-card-label { font-size: 16px; color: var(--white-50); font-weight: 600; }
.about-text p { color: var(--white-60); margin-bottom: 20px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 80px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-3px); }
.value-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--white-40); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.03);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price-note { font-size: 13px; color: var(--white-40); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  font-size: 14px;
  color: var(--white-60);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ===== ENHANCED TRANSITIONS & EFFECTS ===== */

/* Page load fade-in */
body {
  animation: pageFadeIn 0.6s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Staggered scroll reveals by direction */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal-left.visible,
.scroll-reveal-right.visible,
.scroll-reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Cursor glow trail */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
}

/* Shimmering border on cards */
@keyframes borderShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent, rgba(0,229,255,0.15), transparent, rgba(139,92,246,0.15), transparent);
  background-size: 300% 300%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: borderShimmer 4s ease infinite;
}
.service-card:hover::after { opacity: 1; }

/* Number counter pop */
@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.stat-num.animate { animation: countPop 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* Typewriter cursor on hero title */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Testi card hover glow */
.testi-card {
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testi-card:hover::before { opacity: 1; }
.testi-card::after {
  content: '"';
  position: absolute;
  bottom: -20px; right: 20px;
  font-size: 120px;
  font-family: var(--font-display);
  color: rgba(0,229,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: bottom 0.4s ease, color 0.4s ease;
}
.testi-card:hover::after {
  bottom: -10px;
  color: rgba(0,229,255,0.07);
}

/* Nav link hover underline animated */
.nav-link::after {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

/* Button ripple */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }

/* Section label pop-in */
.section-label {
  position: relative;
  overflow: hidden;
}
.section-label::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
  transform: translateX(-100%);
  animation: labelShine 3s ease infinite;
}
@keyframes labelShine {
  0% { transform: translateX(-100%); }
  30%, 100% { transform: translateX(200%); }
}

/* Portfolio card overlay */
.portfolio-card::after {
  content: 'View Project →';
  position: absolute;
  inset: 0;
  background: rgba(0,229,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-lg);
}
.portfolio-card:hover::after { opacity: 1; }

/* Footer links hover slide */
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { padding-left: 8px; }

/* Process step number float */
.step-num {
  display: inline-block;
  animation: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.process-step:hover .step-num { transform: scale(1.15) translateY(-4px); }

/* Smooth page transitions between sections */
.intro-section, .services-preview, .process-section, .testimonials-preview, .cta-banner {
  position: relative;
}
.intro-section::before, .services-preview::before, .process-section::before, .testimonials-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  opacity: 0.5;
}

/* Glowing avatar on testi cards */
.author-avatar {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.testi-card:hover .author-avatar {
  box-shadow: 0 0 20px rgba(0,229,255,0.4);
  transform: scale(1.08);
}

/* Hero badge shimmer */
.hero-badge {
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: badgeShine 3s ease infinite;
}
@keyframes badgeShine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

/* Value cards */
.value-card .value-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.value-card:hover .value-icon { transform: scale(1.25) rotate(-5deg); }

/* Stat numbers animate on scroll */
.hero-stats .stat-num {
  position: relative;
}
.hero-stats .stat-num::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
}
.hero-stats:hover .stat-num::after { transform: scaleX(1); }

/* Smooth card icon bounce */
.service-card .card-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .card-icon { transform: scale(1.2) rotate(-8deg); }

/* Marquee pause on hover */
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* Mobile menu slide down */
.mobile-menu {
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Scroll reveal stagger delay for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.testi-grid .testi-card:nth-child(1) { transition-delay: 0.05s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.15s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.25s; }

.portfolio-grid .portfolio-card:nth-child(1) { transition-delay: 0.05s; }
.portfolio-grid .portfolio-card:nth-child(2) { transition-delay: 0.12s; }
.portfolio-grid .portfolio-card:nth-child(3) { transition-delay: 0.19s; }
.portfolio-grid .portfolio-card:nth-child(4) { transition-delay: 0.26s; }
.portfolio-grid .portfolio-card:nth-child(5) { transition-delay: 0.33s; }
.portfolio-grid .portfolio-card:nth-child(6) { transition-delay: 0.40s; }

/* CTA button glow pulse */
.cta-inner .btn-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
  50% { box-shadow: 0 0 30px 8px rgba(0,229,255,0.2); }
}
.cta-inner .btn-primary:hover { animation: none; }

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