:root {
  --bg: #030303;
  --bg-glass: rgba(15, 15, 18, 0.6);
  --bg-glass-hover: rgba(25, 25, 30, 0.8);
  --border: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(6, 182, 212, 0.3);
  --text: #f8f9fa;
  --text-muted: #888899;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --blue-glow: rgba(37, 99, 235, 0.2);
}

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

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

/* TYPOGRAPHY */
h1, h2, h3, .syne { font-family: 'Syne', sans-serif; }
.text-gradient {
  background: linear-gradient(90deg, #fff, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CURSOR & PROGRESS */
#cursorGlow {
  position: fixed; top: 0; left: 0; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  z-index: 10; transition: width 0.3s, height 0.3s;
}
.default-cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 9999; box-shadow: 0 0 10px var(--cyan);
  transition: transform 0.1s;
}
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue));
  width: 0%; z-index: 10000;
}

/* LOADER */
#loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-txt { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: 0.1em; }
.loader-bar { width: 200px; height: 1px; background: rgba(255,255,255,0.1); margin-top: 2rem; position: relative; overflow: hidden; }
.loader-fill { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: var(--cyan); transform: translateX(-100%); animation: loadfill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes loadfill { to { transform: translateX(0); } }

/* NAVBAR */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(3, 3, 3, 0.7); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: transform 0.4s;
}
#navbar.nav-hidden { transform: translateY(-100%); }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; text-decoration: none; }
.nav-logo span { color: var(--cyan); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }

.btn-glow {
  position: relative; padding: 0.6rem 1.5rem; background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.4); border-radius: 50px; color: #fff; text-decoration: none;
  font-size: 0.85rem; font-weight: 600; overflow: hidden; transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-glow:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 20px rgba(37,99,235,0.4); }

/* HERO */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 2rem; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1.2rem; background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2); border-radius: 50px; color: var(--cyan);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(6,182,212,0.3); } 70% { box-shadow: 0 0 0 10px rgba(6,182,212,0); } 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); } }
.hero-title { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 600px; line-height: 1.6; margin-bottom: 3rem; }

.magnetic-btn {
  padding: 1rem 2.5rem; background: #fff; color: #000; text-decoration: none;
  font-weight: 700; border-radius: 50px; font-size: 0.95rem; display: inline-flex;
  transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s;
}
.magnetic-btn:hover { box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-outline { padding: 1rem 2.5rem; border: 1px solid rgba(255,255,255,0.2); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

/* SECTIONS ANIMATION */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

section { padding: 8rem 2rem; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-tag { font-size: 0.7rem; color: var(--cyan); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.sec-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.sec-desc { color: var(--text-muted); max-width: 600px; line-height: 1.6; font-size: 1rem; margin-bottom: 3rem; }

/* GLASS CARDS */
.glass-card {
  background: var(--bg-glass); border: 1px solid var(--border); border-radius: 12px;
  padding: 2.5rem 2rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.glass-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
.glass-card:hover::before { opacity: 1; }

/* SERVICES */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.svc-icon { width: 50px; height: 50px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; transition: transform 0.3s; }
.glass-card:hover .svc-icon { transform: scale(1.1) rotate(5deg); background: var(--cyan); color: #000; }
.svc-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; font-family: 'Syne', sans-serif; }
.svc-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* PORTFOLIO (NO IMAGES, JUST TEXT & NEON) */
.port-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; }
.port-card {
  background: rgba(10, 10, 10, 0.5); border: 1px solid rgba(255,255,255,0.05); padding: 3rem 2rem;
  border-radius: 0; position: relative; display: flex; flex-direction: column; justify-content: center;
  transition: all 0.4s; overflow: hidden;
}
.port-card::after {
  content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: translateX(-100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.port-card:hover { border-color: rgba(6,182,212,0.2); background: rgba(20,20,25,0.8); }
.port-card:hover::after { transform: translateX(0); }
.port-cat { font-size: 0.65rem; color: var(--cyan); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.port-name { font-size: 2rem; font-family: 'Syne', sans-serif; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }
.port-link {
  display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.85rem; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 0.6rem 1.5rem; border-radius: 50px; width: fit-content; transition: all 0.3s;
}
.port-card:hover .port-link { background: #fff; color: #000; border-color: #fff; }

/* COMPARISON */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }
.col-bad { background: rgba(239, 68, 68, 0.03); border: 1px solid rgba(239, 68, 68, 0.1); padding: 2.5rem; border-radius: 12px; }
.col-good { background: rgba(6, 182, 212, 0.05); border: 1px solid rgba(6, 182, 212, 0.2); padding: 2.5rem; border-radius: 12px; position: relative; }
.col-good::after { content: 'MY SITES'; position: absolute; top: -12px; right: 2rem; background: var(--cyan); color: #000; font-size: 0.7rem; font-weight: 800; padding: 0.3rem 1rem; border-radius: 50px; }
.comp-title { font-size: 1.2rem; font-family: 'Syne'; margin-bottom: 1.5rem; font-weight: 700; }
.col-bad .comp-title { color: #ef4444; }
.col-good .comp-title { color: var(--cyan); }
.comp-list { list-style: none; }
.comp-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; color: #ccc; }
.col-bad .comp-list li::before { content: '❌'; font-size: 0.8rem; margin-top: 2px; }
.col-good .comp-list li::before { content: '✅'; font-size: 0.8rem; margin-top: 2px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.price-card { background: var(--bg-glass); border: 1px solid var(--border); padding: 3rem 2rem; border-radius: 12px; text-align: left; position: relative; transition: all 0.4s; }
.price-card.pop { border-color: rgba(6,182,212,0.4); background: linear-gradient(180deg, rgba(6,182,212,0.05), transparent); }
.price-card:hover { transform: translateY(-5px); border-color: var(--cyan); }
.lim-offer { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ef4444; color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; padding: 0.3rem 1rem; border-radius: 50px; text-transform: uppercase; white-space: nowrap; animation: glowRed 2s infinite; }
@keyframes glowRed { 0%,100%{box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);} 50%{box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);} }
.p-name { font-size: 1.2rem; font-family: 'Syne'; font-weight: 700; margin-bottom: 1rem; }
.p-old { color: var(--text-muted); text-decoration: line-through; font-size: 1.1rem; margin-bottom: 0.2rem; display: block; }
.p-new { font-size: 3rem; font-family: 'Syne'; font-weight: 800; color: #fff; margin-bottom: 2rem; line-height: 1; }
.p-new span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.p-list { list-style: none; margin-bottom: 2.5rem; }
.p-list li { margin-bottom: 0.8rem; font-size: 0.9rem; color: #ddd; display: flex; align-items: start; gap: 0.5rem; }
.p-list li.highlight { color: var(--cyan); font-weight: 600; }
.p-list li::before { content: '✦'; color: var(--cyan); font-size: 0.7rem; margin-top: 4px; }
.p-btn { display: block; width: 100%; padding: 1rem; text-align: center; background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; border-radius: 8px; font-weight: 700; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.price-card.pop .p-btn { background: #fff; color: #000; border-color: #fff; }
.price-card:hover .p-btn { background: var(--cyan); color: #000; border-color: var(--cyan); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 5rem 2rem 2rem; background: #000; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .f-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.f-title { font-family: 'Syne'; font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.f-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 400px; margin-bottom: 2rem; }
.f-contacts a { display: flex; align-items: center; gap: 0.8rem; color: #aaa; text-decoration: none; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.3s; }
.f-contacts a:hover { color: var(--cyan); }
.f-heading { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.f-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.3s; }
.f-links a:hover { color: #fff; padding-left: 5px; }
.f-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); margin-top: 4rem; padding-top: 2rem; color: var(--text-muted); font-size: 0.8rem; }
    
/* MOBILE MENU */
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; }
.menu-btn span { width: 25px; height: 2px; background: #fff; transition: 0.3s; }
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(3, 3, 3, 0.98); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(10px);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-link { color: #fff; font-size: 1.5rem; font-family: 'Syne'; font-weight: 700; text-decoration: none; transition: color 0.3s; }
.mobile-link:hover { color: var(--cyan); }
.mt-4 { margin-top: 1rem; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  section { padding: 4rem 1.5rem; }
  .hero-title { font-size: 2.5rem; }
  .p-new { font-size: 2.5rem; }
  .f-grid { gap: 2.5rem; }
  .price-card { padding: 2rem 1.5rem; }
  .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-btns a { width: 100%; text-align: center; }
  .f-title { font-size: 1.5rem; text-align: center; }
  .f-desc, .f-contacts { text-align: center; margin-inline: auto; }
  .f-contacts a { justify-content: center; }
  .f-heading { text-align: center; }
  .f-links a { text-align: center; }
  .f-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; text-decoration: none; box-shadow: 0 5px 20px rgba(37,211,102,0.4); z-index: 900; transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }



