:root {
  --neon: #8aff2a;
  --neon-dark: #4dd10f;
  --neon-soft: #c9ff7b;
  --bg: #070b08;
  --bg-2: #0b120c;
  --panel: #0f1510;
  --line: rgba(138, 255, 42, 0.25);
  --text: #e9f5e1;
  --muted: rgba(233, 245, 225, 0.7);
  --shadow: rgba(0, 0, 0, 0.55);
  --font-display: "Oxanium", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #0f1a12 0%, #070b08 45%, #050704 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, rgba(10, 16, 11, 0.98) 0%, rgba(7, 11, 8, 0.9) 50%, rgba(10, 16, 11, 0.98) 100%);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 8px 14px rgba(138, 255, 42, 0.45));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--neon);
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: 0.3s ease;
  color: var(--text);
}

.nav-links a:hover {
  background: rgba(138, 255, 42, 0.14);
  color: #ffffff;
}

.nav-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(138, 255, 42, 0.6);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(138, 255, 42, 0.2);
}

.cta.solid {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-dark) 100%);
  color: #081006;
  border-color: transparent;
}

.cta.ghost {
  border-color: rgba(138, 255, 42, 0.35);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 70px 0 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background: radial-gradient(circle at 30% 30%, rgba(138, 255, 42, 0.25) 0%, rgba(138, 255, 42, 0) 65%);
  pointer-events: none;
}

.hero::after { content: none; }\n@keyframes drift {
  to {
    transform: translateX(-50px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-family: "Oxanium", sans-serif;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--neon-soft);
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--muted);
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 40px;
}

.hero-meta h3 {
  font-size: 1.8rem;
  color: var(--neon);
}

.hero-art {
  position: relative;
  min-height: 380px;
  perspective: 1100px;
}

.card {
  background: linear-gradient(160deg, rgba(16, 22, 16, 0.95), rgba(9, 13, 9, 0.95));
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px var(--shadow);
  border: 1px solid rgba(138, 255, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card.main {
  position: relative;
  z-index: 2;
  transform: rotateX(3deg) rotateY(-4deg);
}

.card.secondary {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: min(260px, 70%);
  background: linear-gradient(160deg, rgba(18, 26, 18, 0.95), rgba(10, 14, 10, 0.95));
}

.card:hover,
.service-card:hover,
.price-card:hover,
.step:hover,
.blog-grid article:hover,
.about-panel:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 26px 80px rgba(138, 255, 42, 0.2);
}

.card-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(138, 255, 42, 0.14);
  color: var(--neon-soft);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.progress {
  margin-top: 12px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.progress::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 70%;
  background: linear-gradient(90deg, var(--neon-dark), var(--neon));
}

.glow {
  position: absolute;
  inset: auto auto 60px -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(138, 255, 42, 0.35) 0%, rgba(138, 255, 42, 0) 70%);
  z-index: 1;
}

.marquee {
  overflow: hidden;
  margin-top: 50px;
  border-top: 1px solid rgba(138, 255, 42, 0.15);
  border-bottom: 1px solid rgba(138, 255, 42, 0.15);
  background: rgba(7, 11, 8, 0.7);
}

.marquee-track {
  flex-wrap: nowrap;
  display: flex;
  gap: 40px;
  padding: 18px 0;
  animation: scroll 18s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--neon-soft);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  max-width: 680px;
}

.section-head h2 {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cards,
.process-grid,
.pricing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-card,
.step,
.price-card,
.blog-grid article,
.about-panel {
  padding: 26px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid rgba(138, 255, 42, 0.15);
  box-shadow: 0 20px 50px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about {
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%238aff2a'/%3E%3Cpath d='M6 10l2.5 2.5L14 7' stroke='%23060b05' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}

.metrics {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-soft);
}

.pricing {
  background: #0b110b;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border: 1px solid var(--neon);
  box-shadow: 0 30px 90px rgba(138, 255, 42, 0.25);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0;
  color: var(--neon);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.price-card li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%238aff2a'/%3E%3Cpath d='M6 10l2.5 2.5L14 7' stroke='%23060b05' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}

.pill {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--neon);
  color: #081006;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.blog-grid article .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--neon-soft);
}

.contact {
  background: var(--bg-2);
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(138, 255, 42, 0.25);
  background: rgba(7, 11, 8, 0.8);
  color: var(--text);
  font-family: inherit;
}

.site-footer {
  padding: 40px 0 60px;
  background: #050805;
  color: var(--muted);
  border-top: 1px solid rgba(138, 255, 42, 0.2);
}

.site-footer .container {
  width: min(1400px, 92%);
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-links {
  display: grid;
  gap: 8px;
  color: #fff;
}

@media (max-width: 860px) {
  .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

  .hero-meta {
    gap: 20px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #9aff3a 0%, #4dd10f 55%, #2a7a0a 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(138, 255, 42, 0.35);
  border: 1px solid rgba(138, 255, 42, 0.6);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #0a1208;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 32px rgba(138, 255, 42, 0.5);
}

.contact-profile {
  background: #0a100a;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.profile-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid rgba(138, 255, 42, 0.2);
  box-shadow: 0 20px 50px var(--shadow);
}

.profile-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
}

.profile-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.profile-links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(138, 255, 42, 0.25);
  background: rgba(7, 11, 8, 0.7);
  transition: 0.2s ease;
}

.profile-links a:hover {
  background: rgba(138, 255, 42, 0.12);
  border-color: rgba(138, 255, 42, 0.6);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  line-height: 1;
}

.social-link::before {
  content: '';
  width: 18px;
  height: 18px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 8px rgba(138, 255, 42, 0.35));
  flex: 0 0 18px;
}

.social-link.instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.2' fill='%238aff2a'/%3E%3C/svg%3E");
}

.social-link.youtube::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='7' width='18' height='10' rx='3' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M11 10l4 2-4 2z' fill='%238aff2a'/%3E%3C/svg%3E");
}

.social-link.tiktok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 5c1 2 2.4 3 4 3v3c-1.6 0-3-.5-4-1.4V15a4 4 0 1 1-4-4h1v3a1.5 1.5 0 1 0 1.5 1.5V5h1.5z' fill='%238aff2a'/%3E%3C/svg%3E");
}

.social-link.facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h2V5h-2c-2.2 0-4 1.8-4 4v2H8v3h2v5h3v-5h2.2l.8-3H13V9c0-.6.4-1 1-1z' fill='%238aff2a'/%3E%3C/svg%3E");
}

.social-link.x::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 5h3.2l3.4 4.6L16.8 5H20l-6 8 6 6h-3.3l-3.7-4.7L9.1 19H6l6.3-6.7z' fill='%238aff2a'/%3E%3C/svg%3E");
}

.social-link.linkedin::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='9' width='3' height='11' fill='%238aff2a'/%3E%3Ccircle cx='5.5' cy='6' r='1.5' fill='%238aff2a'/%3E%3Cpath d='M10 9h3v1.5c.7-1 1.8-2 3.6-2 2.6 0 4.4 1.8 4.4 5v6.5h-3V14c0-1.6-.8-2.6-2.2-2.6-1.4 0-2.4 1-2.4 2.6v6.5h-3z' fill='%238aff2a'/%3E%3C/svg%3E");
}





.service-item {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(10, 16, 10, 0.9), rgba(5, 8, 6, 0.9));
  border: 1px solid rgba(138, 255, 42, 0.22);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.footer-hero {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.1fr);
  align-items: start;
  column-gap: 48px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
  text-align: left;
}

.footer-brand .brand {
  align-items: center;
}

.footer-brand h3 {
  margin: 8px 0 6px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-family: "Oxanium", sans-serif;
}

.footer-brand p {
  color: var(--muted);
  max-width: 480px;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 28px;
  align-items: start;
  justify-items: start;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .footer-hero {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.footer-columns h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-soft);
}

.footer-columns a,
.footer-columns p {
  display: block;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.footer-columns > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-columns a:hover {
  color: var(--neon);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social .social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 0;
  background: rgba(7, 11, 8, 0.7);
  border: 1px solid rgba(138, 255, 42, 0.3);
}

.footer-social .social-link::before {
  content: none !important;
  background: none !important;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 600;
    font-size: 0.9rem;
  }
}


.marquee-track {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.marquee-track span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-track span::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  margin-left: 16px;
  box-shadow: 0 0 8px rgba(138, 255, 42, 0.6);
}

.marquee-track span:last-child::after {
  content: '';
  margin: 0;
}

.service-item {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(10, 16, 10, 0.9), rgba(5, 8, 6, 0.9));
  border: 1px solid rgba(138, 255, 42, 0.22);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: radial-gradient(circle at 30% 30%, #9aff3a 0%, #4dd10f 60%, #2a7a0a 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(138, 255, 42, 0.5);
}

.service-item:nth-child(1)::before { background-image: radial-gradient(circle at 30% 30%, #b3ff72 0%, #5be31e 60%, #2a7a0a 100%); }
.service-item:nth-child(2)::before { background-image: radial-gradient(circle at 30% 30%, #a0ff55 0%, #45c90e 60%, #23660a 100%); }
.service-item:nth-child(3)::before { background-image: radial-gradient(circle at 30% 30%, #caff8a 0%, #66f022 60%, #2f7d0b 100%); }
.service-item:nth-child(4)::before { background-image: radial-gradient(circle at 30% 30%, #b6ff6a 0%, #55d917 60%, #2a6f0b 100%); }
.service-item:nth-child(5)::before { background-image: radial-gradient(circle at 30% 30%, #9eff4f 0%, #3fbe0d 60%, #225f09 100%); }
.service-item:nth-child(6)::before { background-image: radial-gradient(circle at 30% 30%, #c0ff7a 0%, #5ee61f 60%, #2a7a0a 100%); }
.service-item:nth-child(7)::before { background-image: radial-gradient(circle at 30% 30%, #b0ff65 0%, #4ed914 60%, #276b0a 100%); }
.service-item:nth-child(8)::before { background-image: radial-gradient(circle at 30% 30%, #a8ff5d 0%, #4bd412 60%, #25660a 100%); }
.service-item:nth-child(9)::before { background-image: radial-gradient(circle at 30% 30%, #baff70 0%, #57e018 60%, #2b730a 100%); }
.service-item:nth-child(10)::before { background-image: radial-gradient(circle at 30% 30%, #a5ff5a 0%, #46cf12 60%, #24640a 100%); }
.service-item:nth-child(11)::before { background-image: radial-gradient(circle at 30% 30%, #c4ff82 0%, #64ee21 60%, #2f7a0b 100%); }
.service-item:nth-child(12)::before { background-image: radial-gradient(circle at 30% 30%, #b2ff68 0%, #50db15 60%, #276a0a 100%); }
.service-item:nth-child(13)::before { background-image: radial-gradient(circle at 30% 30%, #9cff4c 0%, #41c50f 60%, #235f09 100%); }

.service-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-color: rgba(138, 255, 42, 0.12);
  border: 1px solid rgba(138, 255, 42, 0.45);
  box-shadow: 0 0 12px rgba(138, 255, 42, 0.35);
}

.service-icon.branding { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12l6-7 6 7-6 7z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3C/svg%3E"); }
.service-icon.logo { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='7' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%238aff2a'/%3E%3C/svg%3E"); }
.service-icon.graphic { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='5' width='14' height='14' rx='2' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M8 15l3-3 3 3 3-4' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.social { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='12' r='3' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='18' cy='6' r='3' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='18' cy='18' r='3' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M8.5 11L15.5 7.5M8.5 13L15.5 16.5' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.three-d { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 7l6-3 6 3v10l-6 3-6-3z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M6 7l6 3 6-3' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.event { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4h12v6H6z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M4 20l4-10h8l4 10' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.booth { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='6' width='16' height='12' rx='2' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M8 18v-6h8v6' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.campaign { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h6l6-4v8l-6-4H4z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M18 9c1 1 2 2 2 3s-1 2-2 3' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.web { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='14' rx='2' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M4 9h16' stroke='%238aff2a' stroke-width='2'/%3E%3C/svg%3E"); }
.service-icon.motion { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='5' width='14' height='14' rx='2' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M10 9l5 3-5 3z' fill='%238aff2a'/%3E%3C/svg%3E"); }
.service-icon.product { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4h10l2 4-7 4-7-4z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M5 8v9l7 3 7-3V8' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.pitch { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4h8l4 4v12H6z' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Cpath d='M14 4v4h4' stroke='%238aff2a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-icon.strategy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 16l6-8 4 4 4-6' fill='none' stroke='%238aff2a' stroke-width='2'/%3E%3Ccircle cx='5' cy='16' r='1.5' fill='%238aff2a'/%3E%3Ccircle cx='11' cy='8' r='1.5' fill='%238aff2a'/%3E%3Ccircle cx='15' cy='12' r='1.5' fill='%238aff2a'/%3E%3Ccircle cx='19' cy='6' r='1.5' fill='%238aff2a'/%3E%3C/svg%3E"); }


.service-item:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 26px 70px rgba(138, 255, 42, 0.2);
}
@media (max-width: 980px) {
  

}

@media (max-width: 640px) {
  

}
.service-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .service-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
}

@media (max-width: 640px) {
  .service-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
}


.service-item {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(10, 16, 10, 0.9), rgba(5, 8, 6, 0.9));
  border: 1px solid rgba(138, 255, 42, 0.22);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.service-more {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-item[open] .service-more {
  color: var(--neon);
  transform: translateY(1px);
}

.service-detail {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}





.service-media::after {
  content: 'SAMPLE';
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--neon-soft);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--neon);
}




/* Mobile service layout */
@media (max-width: 640px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 14px 16px;
  }

  .service-item summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-more {
    margin-left: 0;
    align-self: flex-start;
  }
}

/* Network background animation */
.network-bg {
  position: relative;
  overflow-x: hidden;
}

.network-bg::before,
.network-bg::after {
  background-image:
    linear-gradient(115deg, rgba(138, 255, 42, 0.65) 0 2px, transparent 2px),
    linear-gradient(35deg, rgba(138, 255, 42, 0.55) 0 2px, transparent 2px),
    linear-gradient(165deg, rgba(138, 255, 42, 0.45) 0 2px, transparent 2px),
    linear-gradient(90deg, rgba(138, 255, 42, 0.35) 0 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 260px 260px, 140px 140px;
  opacity: 0.75;
  filter: blur(0.2px);
  animation: networkLines 18s linear infinite;
  mix-blend-mode: screen;
}

/* Dots layer */
.network-bg::before {
  background-image:
    radial-gradient(circle at 12% 22%, rgba(138, 255, 42, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 68%, rgba(138, 255, 42, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 35%, rgba(138, 255, 42, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 58%, rgba(138, 255, 42, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 26%, rgba(138, 255, 42, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 74%, rgba(138, 255, 42, 0.85) 0 2px, transparent 3px);
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(138, 255, 42, 0.6));
  animation: networkDots 18s ease-in-out infinite;
}

/* Connecting lines layer */
.network-bg::after {
  background-image:
    linear-gradient(115deg, rgba(138, 255, 42, 0.65) 0 2px, transparent 2px),
    linear-gradient(35deg, rgba(138, 255, 42, 0.55) 0 2px, transparent 2px),
    linear-gradient(165deg, rgba(138, 255, 42, 0.45) 0 2px, transparent 2px),
    linear-gradient(90deg, rgba(138, 255, 42, 0.35) 0 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 260px 260px, 140px 140px;
  opacity: 0.75;
  filter: blur(0.2px);
  animation: networkLines 18s linear infinite;
  mix-blend-mode: screen;
}

@keyframes networkDots {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-12px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes networkLines {
  0% { background-position: 0 0, 0 0, 0 0; }
  50% { background-position: 60px 120px, -80px 40px, 100px -60px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}



/* Fallback animated network pulse on body */
.network-bg {
  background-image:
    radial-gradient(circle at 15% 25%, rgba(138, 255, 42, 0.18), transparent 40%),
    radial-gradient(circle at 75% 30%, rgba(138, 255, 42, 0.14), transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(138, 255, 42, 0.16), transparent 45%);
  background-size: 120% 120%;
  animation: networkPulse 14s ease-in-out infinite;
}

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

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.75;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(138, 255, 42, 0.25));
  display: block;
}

.site-header, main, footer { position: relative; z-index: 1; }


.network-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(6, 10, 6, 0.3), rgba(6, 10, 6, 0.2));
}



.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(138, 255, 42, 0.4);
  background: rgba(7, 11, 8, 0.7);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon);
  border-radius: 999px;
}

.mobile-menu {
  width: 100%;
  padding: 12px 0 0;
}

.mobile-menu .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 600;
    font-size: 0.9rem;
  }
}



/* ======================================
   CYBER NEON REDESIGN OVERRIDES
   ====================================== */
:root {
  --neon: #39ff14;
  --neon-dark: #1fa90a;
  --neon-soft: #a7ff8a;
  --accent: #39ff14;
  --accent-2: #16a100;
  --bg: #000000;
  --bg-2: #050705;
  --panel: rgba(6, 10, 6, 0.9);
  --line: rgba(57, 255, 20, 0.25);
  --text: #e7f7e4;
  --muted: rgba(231, 247, 228, 0.72);
  --shadow: rgba(0, 0, 0, 0.65);
}

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 20% 20%, rgba(57, 255, 20, 0.06) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(circle at 80% 10%, rgba(57, 255, 20, 0.05) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(120deg, #000000 0%, #050705 50%, #000000 100%);
  color: var(--text);
}

.network-bg::before,
.network-bg::after {
  mix-blend-mode: screen;
  opacity: 0.65;
  filter: blur(0.1px);
}

.network-overlay {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(3, 6, 3, 0.7)),
    repeating-linear-gradient(0deg, rgba(57, 255, 20, 0.05) 0 1px, transparent 1px 4px);
}

.site-header {
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(6, 10, 6, 0.88) 50%, rgba(0, 0, 0, 0.98) 100%);
}

.brand-logo {
  filter: drop-shadow(0 10px 20px rgba(57, 255, 20, 0.45));
}

.brand-name {
  color: var(--neon);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.6);
}

.brand-tagline {
  color: rgba(233, 243, 255, 0.75);
}

.nav-links a {
  background: rgba(4, 6, 4, 0.7);
  border: 1px solid rgba(57, 255, 20, 0.18);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.08);
}

.nav-links a:hover {
  background: rgba(57, 255, 20, 0.14);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.4);
}

.cta {
  border: 1px solid rgba(57, 255, 20, 0.6);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.2);
}

.cta.solid {
  background: linear-gradient(135deg, var(--neon) 0%, #7bff4f 55%, var(--accent-2) 100%);
  color: #020301;
  box-shadow: 0 12px 30px rgba(57, 255, 20, 0.25), 0 0 25px rgba(57, 255, 20, 0.2);
}

.cta.ghost {
  border-color: rgba(57, 255, 20, 0.35);
  color: var(--text);
  background: rgba(0, 0, 0, 0.6);
}

.hero {
  padding: 90px 0 30px;
}

.hero::before {
  background: radial-gradient(circle at 25% 30%, rgba(57, 255, 20, 0.35) 0%, rgba(57, 255, 20, 0) 60%);
}

.hero-text h1 {
  text-shadow: 0 0 25px rgba(57, 255, 20, 0.35);
}

.hero-text {
  max-width: 640px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(6, 10, 6, 0.5));
  border: 1px solid rgba(57, 255, 20, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(57, 255, 20, 0.12);
  backdrop-filter: blur(8px);
}

.eyebrow {
  color: var(--neon-soft);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.lead {
  color: var(--muted);
}

.hero .lead {
  color: rgba(233, 243, 255, 0.9);
}

.marquee {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(57, 255, 20, 0.2);
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.marquee-track span {
  color: var(--neon-soft);
}

.section {
  padding: 90px 0;
}

.section-head h2 {
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.25);
}

.service-card,
.step,
.price-card,
.blog-grid article,
.about-panel,
.service-item {
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.95), rgba(6, 10, 6, 0.85));
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(57, 255, 20, 0.08);
}

.service-item:hover,
.service-card:hover,
.price-card:hover,
.step:hover,
.blog-grid article:hover,
.about-panel:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 30px 80px rgba(57, 255, 20, 0.18), 0 0 30px rgba(57, 255, 20, 0.2);
}

.price {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.4);
}

.price-card.featured {
  border: 1px solid rgba(57, 255, 20, 0.6);
  box-shadow: 0 30px 90px rgba(57, 255, 20, 0.2), 0 0 30px rgba(57, 255, 20, 0.2);
}

.pill {
  background: linear-gradient(135deg, #7bff4f 0%, var(--neon) 100%);
  color: #020301;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.4);
}

.contact {
  background: radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.08), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(57, 255, 20, 0.06), transparent 40%),
    rgba(0, 0, 0, 0.92);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.1);
}

.site-footer {
  background: #000000;
  border-top: 1px solid rgba(57, 255, 20, 0.2);
}

.footer-columns h4 {
  color: var(--neon-soft);
}

.footer-columns a:hover {
  color: var(--neon);
}

.footer-social .social-link {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.2);
}

.whatsapp-float {
  background: radial-gradient(circle at 30% 30%, #39ff14 0%, #1fa90a 55%, #0b3d06 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(57, 255, 20, 0.4);
}

#network-canvas {
  z-index: 1;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.network-overlay {
  z-index: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(4, 8, 4, 0.12));
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}
