@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --pink: #f72585;
  --purple: #7209b7;
  --purple-light: #a855f7;
  --blue: #4361ee;
  --blue-light: #4cc9f0;
  --dark: #03020a;
  --dark2: #0a0818;
  --dark3: #110d2e;
  --card-bg: rgba(10, 8, 30, 0.85);
  --border: rgba(168, 85, 247, 0.25);
  --text: #e2d9f3;
  --text-muted: #8b7aad;
  --glow-pink: 0 0 20px rgba(247, 37, 133, 0.5);
  --glow-purple: 0 0 20px rgba(114, 9, 183, 0.5);
  --glow-blue: 0 0 20px rgba(67, 97, 238, 0.5);
  --gradient: linear-gradient(135deg, #f72585, #7209b7, #4361ee);
  --gradient2: linear-gradient(135deg, #4cc9f0, #4361ee, #7209b7);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor { position: fixed; width: 12px; height: 12px; background: var(--pink); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; mix-blend-mode: difference; }
.cursor-follower { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(168,85,247,.6); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .15s ease, width .3s, height .3s, opacity .3s; }
.cursor.active { width: 20px; height: 20px; }
.cursor-follower.active { width: 60px; height: 60px; opacity: .5; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 2px; }

/* Selection */
::selection { background: rgba(247,37,133,.3); color: #fff; }

/* Canvas BG */
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(3, 2, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
}
.navbar.scrolled { padding: .7rem 2rem; background: rgba(3, 2, 10, 0.95); }
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.navbar .nav-links { display: flex; }    
.mobile-menu .nav-links { display: flex; 
} 

.nav-logo span { color: var(--blue-light); -webkit-text-fill-color: var(--blue-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--text-muted); text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient); transition: width .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--gradient); color: #fff !important; -webkit-text-fill-color: #fff !important;
  border-radius: 6px; font-weight: 700 !important;
  box-shadow: var(--glow-pink); transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(247,37,133,.7) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--purple-light); transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-content { text-align: center; max-width: 900px; padding: 6rem 2rem 2rem; position: relative; z-index: 2; }.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1.2rem; border: 1px solid var(--border);
  border-radius: 50px; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 1.5rem;
  background: rgba(76,201,240,.05);
  animation: fadeInDown .8s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 1.5rem;
  animation: fadeInUp .9s ease .1s both;
}
.hero-title .line1 { display: block; color: #fff; }
.hero-title .line2 {
  display: block;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 400;
  animation: fadeInUp 1s ease .2s both;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease .3s both; }
.btn-primary {
  padding: .85rem 2.2rem; border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--gradient); color: #fff; border: none; cursor: pointer;
  box-shadow: var(--glow-pink); transition: transform .2s, box-shadow .3s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 40px rgba(247,37,133,.6); }
.btn-secondary {
  padding: .85rem 2.2rem; border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: transparent; color: var(--purple-light); border: 1px solid var(--purple-light);
  cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: rgba(168,85,247,.15); box-shadow: var(--glow-purple); transform: translateY(-3px); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeInUp 1s ease .5s both;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .85rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: .2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--purple-light), transparent); }

/* Section base */
section { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink); font-family: 'Orbitron', sans-serif; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.section-line {
  width: 60px; height: 3px; background: var(--gradient); margin: 1.5rem auto 0;
  border-radius: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.py-section { padding: 6rem 0; }

/* PROJECTS */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.project-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer; position: relative;
}
.project-card:hover { transform: translateY(-8px); border-color: var(--purple-light); box-shadow: 0 20px 60px rgba(114,9,183,.3); }
.project-card-img {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.project-card-img .card-gradient { position: absolute; inset: 0; }
.project-card-img .card-icon { position: relative; z-index: 1; font-size: 3.5rem; }
.project-card-body { padding: 1.5rem; }
.project-card-tag {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 20px; border: 1px solid;
  display: inline-block; margin-bottom: .8rem; font-family: 'Orbitron', sans-serif;
}
.project-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.project-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 1.2rem; }
.project-card-tech { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.tech-tag {
  font-size: .7rem; padding: .25rem .6rem; border-radius: 4px;
  background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2); color: var(--purple-light);
}
.project-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--blue-light); font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: gap .2s, color .2s;
}
.project-card-link:hover { gap: .8rem; color: var(--pink); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,37,133,.08);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.project-card{
  cursor: pointer;
}
.project-card:hover .card-overlay { opacity: 1; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  position: relative; height: 450px; display: flex; align-items: center; justify-content: center;
}
.about-orb {
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(247,37,133,.4), rgba(114,9,183,.4), rgba(67,97,238,.2));
  filter: blur(40px); animation: orbFloat 6s ease-in-out infinite;
}
.about-card-float {
  position: absolute; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.5rem; backdrop-filter: blur(10px);
}
.about-card-float.card1 { top: 10%; left: 0; animation: floatCard1 4s ease-in-out infinite; }
.about-card-float.card2 { bottom: 15%; right: 0; animation: floatCard2 5s ease-in-out infinite; }
.about-card-float.card3 { top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.float-number { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.float-label { font-size: .8rem; color: var(--text-muted); }
.about-content h2 { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.feature-text h4 { color: #fff; font-weight: 600; margin-bottom: .2rem; }
.feature-text p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.why-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; text-align: center; transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(247,37,133,.4); box-shadow: 0 15px 50px rgba(247,37,133,.15); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .7rem; }
.why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.5rem; position: relative; transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--purple-light);
  box-shadow: 0 0 40px rgba(168,85,247,.25);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(114,9,183,.3); }
.popular-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
  padding: .3rem .8rem; background: var(--gradient); border-radius: 20px; color: #fff;
  font-family: 'Orbitron', sans-serif;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.pricing-name { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--purple-light); margin-bottom: .5rem; }
.pricing-price { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: .3rem; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-period { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; color: var(--text-muted); }
.pricing-features li .check { color: var(--pink); font-size: 1rem; }
.pricing-features li .cross { color: #555; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: #fff; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text span { display: block; font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text strong { color: #fff; font-size: 1rem; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 10px; color: #fff; font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple-light); box-shadow: 0 0 15px rgba(168,85,247,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option {
  background: #0a0818;
  color: #e2d9f3;
}

.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(168, 85, 247, .2);
  border-radius: 8px;
  background: rgba(168, 85, 247, .05);
  cursor: pointer;
  transition: border-color .2s;
  margin-bottom: 1rem;
}
.agreement-check:hover { border-color: rgba(168, 85, 247, .45); }

.agreement-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--purple-light);
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  margin-top: 1px;
  position: relative;
}
.agreement-check input[type=checkbox]:checked {
  background: linear-gradient(135deg, #f72585, #7209b7);
  border-color: transparent;
}
.agreement-check input[type=checkbox]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; font-size: .7rem; font-weight: 700;
}
.agreement-check label {
  font-size: .95rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.agreement-check label a {
  color: var(--purple-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 247, .3);
}
.agreement-check label a:hover { color: #fff; border-color: #fff; }

/* SOCIAL */
.social-section { padding: 4rem 0; }
.social-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  width: 90px; height: 90px; border-radius: 20px; border: 1px solid var(--border);
  background: var(--card-bg); color: var(--text-muted); text-decoration: none;
  font-size: 1.8rem; justify-content: center; transition: all .3s;
}
.social-card span { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; }
.social-card:hover { transform: translateY(-5px) scale(1.05); border-color: var(--pink); color: #fff; box-shadow: var(--glow-pink); }

/* FOOTER */
footer {
  background: rgba(5, 3, 15, 0.95); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .8rem; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Orbitron', sans-serif; font-size: .85rem; color: var(--purple-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: .85rem; }
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

/* ANIMATIONS */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes orbFloat { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(180deg); } }
@keyframes floatCard1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatCard2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 100% 0); }
  20% { clip-path: inset(33% 0 66% 0); transform: translate(-2px); }
  40% { clip-path: inset(66% 0 33% 0); transform: translate(2px); }
  60% { clip-path: inset(10% 0 85% 0); transform: translate(-1px); }
  80% { clip-path: inset(85% 0 5% 0); transform: translate(1px); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Loading screen */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.loader-logo { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--gradient); animation: loadFill 2s ease forwards; }
.loader-text { font-size: .8rem; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100%;
  background: rgba(3, 2, 10, 0.98); border-left: 1px solid var(--border); z-index: 999;
  display: flex; flex-direction: column; padding: 5rem 2rem 2rem;
  transition: right .4s cubic-bezier(.77,0,.175,1); backdrop-filter: blur(20px);
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-links { flex-direction: column; gap: 1.5rem; }
.mobile-menu .nav-links a { font-size: 1.3rem; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 998; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Glitch text effect */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.glitch::before { animation: glitch 3s infinite; color: var(--pink); left: 2px; }
.glitch::after { animation: glitch 3s infinite reverse; color: var(--blue-light); left: -2px; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --pink: #f72585;
  --purple: #7209b7;
  --purple-light: #a855f7;
  --blue: #4361ee;
  --blue-light: #4cc9f0;
  --dark: #03020a;
  --dark2: #0a0818;
  --dark3: #110d2e;
  --card-bg: rgba(10, 8, 30, 0.85);
  --border: rgba(168, 85, 247, 0.25);
  --text: #e2d9f3;
  --text-muted: #8b7aad;
  --glow-pink: 0 0 20px rgba(247, 37, 133, 0.5);
  --glow-purple: 0 0 20px rgba(114, 9, 183, 0.5);
  --glow-blue: 0 0 20px rgba(67, 97, 238, 0.5);
  --gradient: linear-gradient(135deg, #f72585, #7209b7, #4361ee);
  --gradient2: linear-gradient(135deg, #4cc9f0, #4361ee, #7209b7);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor { position: fixed; width: 12px; height: 12px; background: var(--pink); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; mix-blend-mode: difference; }
.cursor-follower { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(168,85,247,.6); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .15s ease, width .3s, height .3s, opacity .3s; }
.cursor.active { width: 20px; height: 20px; }
.cursor-follower.active { width: 60px; height: 60px; opacity: .5; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 2px; }

/* Selection */
::selection { background: rgba(247,37,133,.3); color: #fff; }

/* Canvas BG */
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(3, 2, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
}
.navbar.scrolled { padding: .7rem 2rem; background: rgba(3, 2, 10, 0.95); }
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.nav-logo span { color: var(--blue-light); -webkit-text-fill-color: var(--blue-light); }

/* Desktop nav — visible by default, hidden on mobile via media query below */
#desktop-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--text-muted); text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient); transition: width .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--gradient); color: #fff !important; -webkit-text-fill-color: #fff !important;
  border-radius: 6px; font-weight: 700 !important;
  box-shadow: var(--glow-pink); transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(247,37,133,.7) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger — hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   MOBILE MENU PANEL
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background: rgba(3, 2, 10, 0.98);
  border-left: 1px solid var(--border);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transition: right .4s cubic-bezier(.77, 0, .175, 1);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { right: 0; }

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .nav-links li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
}
.mobile-menu .nav-links li a:hover { color: #fff; padding-left: 8px; }
.mobile-menu .nav-links li a::after { display: none; }

/* Overlay backdrop */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-content { text-align: center; max-width: 900px; padding: 6rem 2rem 2rem; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1.2rem; border: 1px solid var(--border);
  border-radius: 50px; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 1.5rem;
  background: rgba(76,201,240,.05);
  animation: fadeInDown .8s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 1.5rem;
  animation: fadeInUp .9s ease .1s both;
}
.hero-title .line1 { display: block; color: #fff; }
.hero-title .line2 {
  display: block;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7; font-weight: 400;
  animation: fadeInUp 1s ease .2s both;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease .3s both; }
.btn-primary {
  padding: .85rem 2.2rem; border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--gradient); color: #fff; border: none; cursor: pointer;
  box-shadow: var(--glow-pink); transition: transform .2s, box-shadow .3s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 40px rgba(247,37,133,.6); }
.btn-secondary {
  padding: .85rem 2.2rem; border-radius: 8px; font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: transparent; color: var(--purple-light); border: 1px solid var(--purple-light);
  cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: rgba(168,85,247,.15); box-shadow: var(--glow-purple); transform: translateY(-3px); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeInUp 1s ease .5s both;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .85rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: .2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--purple-light), transparent); }

/* Section base */
section { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink); font-family: 'Orbitron', sans-serif; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.section-line {
  width: 60px; height: 3px; background: var(--gradient); margin: 1.5rem auto 0;
  border-radius: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.py-section { padding: 6rem 0; }

/* PROJECTS */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.project-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer; position: relative;
}
.project-card:hover { transform: translateY(-8px); border-color: var(--purple-light); box-shadow: 0 20px 60px rgba(114,9,183,.3); }
.project-card-img {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.project-card-img .card-gradient { position: absolute; inset: 0; }
.project-card-img .card-icon { position: relative; z-index: 1; font-size: 3.5rem; }
.project-card-body { padding: 1.5rem; }
.project-card-tag {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 20px; border: 1px solid;
  display: inline-block; margin-bottom: .8rem; font-family: 'Orbitron', sans-serif;
}
.project-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.project-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 1.2rem; }
.project-card-tech { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.tech-tag {
  font-size: .7rem; padding: .25rem .6rem; border-radius: 4px;
  background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2); color: var(--purple-light);
}
.project-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--blue-light); font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: gap .2s, color .2s;
}
.project-card-link:hover { gap: .8rem; color: var(--pink); }
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(247,37,133,.08);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.project-card:hover .card-overlay { opacity: 1; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  position: relative; height: 450px; display: flex; align-items: center; justify-content: center;
}
.about-orb {
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(247,37,133,.4), rgba(114,9,183,.4), rgba(67,97,238,.2));
  filter: blur(40px); animation: orbFloat 6s ease-in-out infinite;
}
.about-card-float {
  position: absolute; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.5rem; backdrop-filter: blur(10px);
}
.about-card-float.card1 { top: 10%; left: 0; animation: floatCard1 4s ease-in-out infinite; }
.about-card-float.card2 { bottom: 15%; right: 0; animation: floatCard2 5s ease-in-out infinite; }
.about-card-float.card3 { top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.float-number { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.float-label { font-size: .8rem; color: var(--text-muted); }
.about-content h2 { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.feature-text h4 { color: #fff; font-weight: 600; margin-bottom: .2rem; }
.feature-text p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.why-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; text-align: center; transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(247,37,133,.4); box-shadow: 0 15px 50px rgba(247,37,133,.15); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .7rem; }
.why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.5rem; position: relative; transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--purple-light);
  box-shadow: 0 0 40px rgba(168,85,247,.25);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(114,9,183,.3); }
.popular-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
  padding: .3rem .8rem; background: var(--gradient); border-radius: 20px; color: #fff;
  font-family: 'Orbitron', sans-serif;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.pricing-name { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--purple-light); margin-bottom: .5rem; }
.pricing-price { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: .3rem; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-period { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; color: var(--text-muted); }
.pricing-features li .check { color: var(--pink); font-size: 1rem; }
.pricing-features li .cross { color: #555; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: #fff; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text span { display: block; font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text strong { color: #fff; font-size: 1rem; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 10px; color: #fff; font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple-light); box-shadow: 0 0 15px rgba(168,85,247,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.agreement-check {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .9rem 1rem; border: 1px solid rgba(168, 85, 247, .2);
  border-radius: 8px; background: rgba(168, 85, 247, .05);
  cursor: pointer; transition: border-color .2s; margin-bottom: 1rem;
}
.agreement-check:hover { border-color: rgba(168, 85, 247, .45); }
.agreement-check input[type=checkbox] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--purple-light); border-radius: 4px;
  cursor: pointer; background: transparent; transition: all .2s;
  margin-top: 1px; position: relative;
}
.agreement-check input[type=checkbox]:checked {
  background: linear-gradient(135deg, #f72585, #7209b7); border-color: transparent;
}
.agreement-check input[type=checkbox]:checked::after {
  content: '✓'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: #fff; font-size: .7rem; font-weight: 700;
}
.agreement-check label { font-size: .95rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.agreement-check label a { color: var(--purple-light); text-decoration: none; border-bottom: 1px solid rgba(168, 85, 247, .3); }
.agreement-check label a:hover { color: #fff; border-color: #fff; }

/* SOCIAL */
.social-section { padding: 4rem 0; }
.social-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  width: 90px; height: 90px; border-radius: 20px; border: 1px solid var(--border);
  background: var(--card-bg); color: var(--text-muted); text-decoration: none;
  font-size: 1.8rem; justify-content: center; transition: all .3s;
}
.social-card span { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; }
.social-card:hover { transform: translateY(-5px) scale(1.05); border-color: var(--pink); color: #fff; box-shadow: var(--glow-pink); }

/* FOOTER */
footer {
  background: rgba(5, 3, 15, 0.95); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .8rem; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Orbitron', sans-serif; font-size: .85rem; color: var(--purple-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: .85rem; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color .2s; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes orbFloat { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(180deg); } }
@keyframes floatCard1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatCard2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 100% 0); }
  20% { clip-path: inset(33% 0 66% 0); transform: translate(-2px); }
  40% { clip-path: inset(66% 0 33% 0); transform: translate(2px); }
  60% { clip-path: inset(10% 0 85% 0); transform: translate(-1px); }
  80% { clip-path: inset(85% 0 5% 0); transform: translate(1px); }
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Loading screen */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.loader-logo { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--gradient); animation: loadFill 2s ease forwards; }
.loader-text { font-size: .8rem; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; }

/* Glitch text effect */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.glitch::before { animation: glitch 3s infinite; color: var(--pink); left: 2px; }
.glitch::after { animation: glitch 3s infinite reverse; color: var(--blue-light); left: -2px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  #desktop-nav { display: none !important; }
  .hamburger { display: flex !important; }

  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar { padding: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

  .navbar { padding: 1rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

