*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lime: #B8FF00;
  --lime-dim: #94CC00;
  --black: #060606;
  --dark: #0E0E0E;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --text: #FFFFFF;
  --muted: #888888;
  --light: #C8C8C8;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--lime);
  color: var(--black);
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 255, 0, 0.1);
  border: 1px solid rgba(184, 255, 0, 0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--lime);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--light);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  width: 100%;
  max-width: 700px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* BG decoration */
.hero-bg-circle {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ── MARQUEE STRIP ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-dot {
  color: var(--lime);
  font-size: 1.2rem;
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
  font-weight: 300;
}

.section-head {
  margin-bottom: 3.5rem;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--black);
}

.about-img-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.82rem;
  color: var(--light);
}

.about-content .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--light);
}

.about-list li::before {
  content: '→';
  color: var(--lime);
  font-weight: 700;
  margin-top: 0.05em;
}

/* ── SERVICES ── */
#services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 2.2rem;
  transition: background 0.3s;
  position: relative;
}

.service-card:hover {
  background: #1a1a1a;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.6rem;
  background: rgba(184, 255, 0, 0.1);
  border: 1px solid rgba(184, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--lime);
  text-transform: uppercase;
}

/* ── RESULTS ── */
#results {
  background: var(--dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.result-card:hover {
  border-color: rgba(184, 255, 0, 0.3);
  transform: translateY(-4px);
}

.result-metric {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--lime);
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.result-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.6;
}

.result-client {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.result-client::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--lime);
}

/* ── PROCESS ── */
#process {
  background: var(--black);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
}

.process-step {
  padding: 2.2rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(184, 255, 0, 0.15);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-quote::before {
  content: '"';
  color: var(--lime);
  font-size: 1.5rem;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 255, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--lime);
}

.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
}

.stars {
  color: var(--lime);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ── CTA SECTION ── */
#cta {
  background: var(--lime);
  text-align: center;
  padding: 6rem 4rem;
}

#cta .section-tag {
  color: var(--black);
  opacity: 0.6;
}

#cta .section-title {
  color: var(--black);
  max-width: 16ch;
  margin: 0 auto 1.5rem;
}

#cta .section-sub {
  color: rgba(0, 0, 0, 0.6);
  max-width: 44ch;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--black);
  color: var(--lime);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

.btn-outline-dark {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span {
  color: var(--lime);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: #fff;
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  border-color: var(--lime);
  color: #fff;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  width: 100%;
  text-align: center;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  section,
  #hero {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-wrap {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  #cta {
    padding: 4rem 1.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {

  nav {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  h1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem !important;
  }

  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions a {
    width: 100%;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  * {
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .cursor-dot {
    display: none;
  }
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #B8FF00;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px #B8FF00,
  0 0 30px #B8FF00;
}
.service-icon{
  display: flex;
  justify-items: center;
  padding:5px;
}
.service-icon>svg{
  width: 30px;
}