:root {
  --bg: #090b12;
  --panel: #121827;
  --text: #f8fafc;
  --muted: #aab3c2;

  /* 🔥 CHANGED TO NEON GREEN */
  --accent: #00ff88;
  --accent2: #00cc66;

  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 7%;
  background: rgba(9,11,18,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111827;
  font-weight: 900; font-size: 20px;
}

.brand strong { display: block; font-size: 28px; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 15px; margin-top: 5px; }

nav { display: flex; gap: 28px; font-weight: 700; }
nav a:hover { color: var(--accent); }

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 90px 7%;

  /* 🔥 GREEN GLOW */
  background:
    radial-gradient(circle at top left, rgba(0,255,136,.2), transparent 35%),
    linear-gradient(135deg, #111827, #090b12 55%);
}

.tag {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

h1 {
  font-size: clamp(46px, 8vw, 110px);
  line-height: .94;
  margin: 22px 0;
  letter-spacing: -4px;
}

h1 span { color: var(--accent2); }

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  border: 1px solid var(--line);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111827;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
}

.hero-card {
  min-height: 430px;
  border-radius: 34px;
  padding: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card span {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 800;
}

.hero-card h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  margin: 32px 0 18px;
}

.hero-card p {
  color: var(--muted);
  font-weight: 700;
}

.section { padding: 80px 7%; }
.section.alt { background: #0d1220; }

.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 0;
  letter-spacing: -2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.about-grid p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats div, .card, .price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}

.stats strong {
  display: block;
  font-size: 36px;
  color: var(--accent);
}

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

.cards, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card h3 { font-size: 24px; margin-top: 0; }

.card p, .price-card li, .note {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); }

/* 🔥 GREEN BORDER */
.price-card.featured {
  border-color: rgba(0,255,136,.55);
  transform: translateY(-10px);
}

.plan {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 { font-size: 44px; margin: 10px 0; }
.price-card ul { padding-left: 20px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}

/* 🔥 GREEN BACKGROUND */
.gallery-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0,255,136,.22), rgba(0,204,102,.12)), #151b2c;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-size: 24px;
  font-weight: 900;
  overflow: hidden;
}

.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials .cards { grid-template-columns: repeat(3, 1fr); }

/* 🔥 GREEN CTA */
.cta {
  margin: 70px 7%;
  padding: 70px 30px;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(0,255,136,.95), rgba(0,204,102,.95));
  color: #111827;
}

.cta h2 {
  font-size: clamp(38px, 5vw, 66px);
  margin: 0 0 12px;
}

.cta p {
  font-size: 20px;
  font-weight: 700;
}

footer {
  padding: 28px 7%;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero, .about-grid { grid-template-columns: 1fr; }
  .cards, .pricing-grid, .testimonials .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  h1 { letter-spacing: -2px; }
}

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

.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}