:root {
  --bg: #07090f;
  --bg-2: #0d1018;
  --panel: #101521;
  --panel-2: #0c1220;
  --soft: #161d2d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #98a2b7;
  --primary: #7c9cff;
  --primary-2: #5eead4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 156, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(94, 234, 212, 0.09), transparent 24%),
    linear-gradient(180deg, #06080d 0%, #0b0f18 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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: 34px 34px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  pointer-events: none;
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: -2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
}

.bg-glow,
.bg-line {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.bg-glow {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
  animation: floatGlow 8s ease-in-out infinite;
}

.bg-glow-1 {
  background: var(--primary);
  top: -100px;
  left: -80px;
}

.bg-glow-2 {
  background: var(--primary-2);
  right: -100px;
  top: 360px;
  animation-delay: 1.5s;
}

.bg-line {
  width: 1px;
  height: 60vh;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}

.bg-line-1 {
  left: 8%;
  top: 0;
}

.bg-line-2 {
  right: 10%;
  bottom: 0;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.active-link {
  color: var(--text) !important;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO */
.hero {
  padding: 86px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-tag {
  color: var(--primary-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 1.02;
  max-width: 760px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-meta div {
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-meta div:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 156, 255, 0.2);
  background: rgba(255,255,255,0.04);
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #5eead4, #7c9cff);
  color: #061019;
  box-shadow:
    0 10px 25px rgba(124,156,255,0.25),
    0 0 0 rgba(94,234,212,0);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(124,156,255,0.35),
    0 0 20px rgba(94,234,212,0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}

/* SHARED PANELS */
.hero-panel,
.service-card,
.about-card,
.contact-form,
.project-box {
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.96), rgba(11, 16, 27, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,156,255,0.08), transparent 30%, rgba(94,234,212,0.05));
  pointer-events: none;
}

.panel-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #44ffb1;
  box-shadow: 0 0 20px rgba(68,255,177,0.7);
  animation: pulseDot 2s ease-in-out infinite;
}

.code-window {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0f18;
  position: relative;
  z-index: 1;
}

.code-header {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.code-window pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
}

.code-window code {
  color: #d6def0;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.95rem;
  line-height: 1.8;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94,234,212,0.18);
}

.mini-card strong {
  display: block;
  margin-bottom: 5px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* TRUST */
.trust-strip {
  padding: 14px 0 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-grid div {
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.trust-grid div:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 54px 0 74px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-head h2,
.about-main h2,
.project-info h2,
.contact-text h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.section-head p,
.about-main p,
.project-info p,
.contact-text p {
  color: var(--muted);
}

/* SERVICE CARDS */
.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.service-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  border-radius: 26px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 46px rgba(0,0,0,0.45);
  border-color: rgba(124,156,255,0.18);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(124,156,255,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.service-card h3 {
  font-size: 1.34rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.about-card {
  border-radius: 28px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,156,255,0.14);
}

.about-main p {
  margin-bottom: 12px;
}

.stats-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.stat-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(94,234,212,0.14);
}

.stat-item strong {
  display: block;
  margin-bottom: 6px;
}

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

/* PROJECT */
.project-box {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-box:hover {
  transform: translateY(-4px);
  border-color: rgba(124,156,255,0.14);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary-2);
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.preview-window {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0f18;
}

.preview-top {
  height: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.preview-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 270px;
}

.preview-sidebar {
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.preview-content {
  padding: 22px;
}

.preview-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.preview-line.long {
  width: 78%;
}

.preview-line.medium {
  width: 46%;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.preview-cards span {
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(124,156,255,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.preview-cards span:hover {
  transform: translateY(-4px);
  border-color: rgba(94,234,212,0.18);
}

.preview-cards-soft span {
  opacity: 0.65;
  height: 110px;
}

/* CONTACT */
.contact-section {
  padding-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.contact-form {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(124,156,255,0.14);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(94,234,212,0.35);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8aa2;
}

.contact-box-static {
  display: grid;
  gap: 18px;
  align-content: start;
}

/* SUBPAGE / TJANSTER */
.subpage-hero {
  padding: 110px 0 40px;
}

.subpage-hero-inner {
  max-width: 860px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.subpage-kicker {
  color: var(--primary-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subpage-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.subpage-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.service-row:hover {
  transform: translateX(6px);
  border-color: rgba(124,156,255,0.14);
}

.service-row-number {
  color: var(--primary-2);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.service-row:hover .service-row-number {
  color: #9ef8ec;
  transform: translateY(-1px);
}

.service-row-content h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 10px;
}

.service-row-content p {
  max-width: 820px;
  color: var(--muted);
}

.info-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.info-panel,
.process-panel,
.soft-note-box,
.cta-box {
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.96), rgba(11, 16, 27, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-panel:hover,
.process-panel:hover,
.soft-note-box:hover,
.cta-box:hover {
  transform: translateY(-5px);
  border-color: rgba(124,156,255,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.48);
}

.info-panel,
.process-panel,
.soft-note-box {
  padding: 28px;
}

.info-panel h2,
.soft-note-box h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.info-panel p,
.cta-box p {
  color: var(--muted);
  margin-bottom: 12px;
}

.process-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.process-step {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(94,234,212,0.16);
  background: rgba(255,255,255,0.045);
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
}

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

.soft-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.soft-note-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 600;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.soft-note-item:hover {
  transform: translateY(-4px);
  border-color: rgba(94,234,212,0.16);
  color: #ffffff;
}

.cta-box {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-box-text {
  max-width: 760px;
}

.cta-box-action {
  display: flex;
  align-items: center;
}

/* FOOTER */
.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 20px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-wrap p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.discord-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #9ca3ff;
  transition: all 0.25s ease;
}

.discord-icon-img {
  width: 22px;
  height: 22px;
  display: block;
}

.discord-icon:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(124,156,255,0.15);
  border-color: rgba(124,156,255,0.4);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(124,156,255,0.35);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-animate {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.75s ease forwards;
}

.faq-head {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.96), rgba(11, 16, 27, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(124,156,255,0.16);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font: inherit;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 700;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary-2);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 22px 20px;
}

.hero-delay-1 { animation-delay: 0.05s; }
.hero-delay-2 { animation-delay: 0.15s; }
.hero-delay-3 { animation-delay: 0.28s; }
.hero-delay-4 { animation-delay: 0.42s; }
.hero-delay-5 { animation-delay: 0.56s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(68,255,177,0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 28px rgba(68,255,177,0.95);
  }
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  .hero-grid,
  .service-grid,
  .service-grid-2,
  .about-grid,
  .project-box,
  .contact-grid,
  .trust-grid,
  .hero-meta,
  .info-split,
  .cta-box,
  .soft-note-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 10px;
  }

  .service-row-number {
    font-size: 0.95rem;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 20px;
    background: rgba(11, 15, 24, 0.98);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
  }

  .subpage-hero {
    padding-top: 86px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-panel,
  .service-card,
  .about-card,
  .project-box,
  .contact-form,
  .info-panel,
  .process-panel,
  .soft-note-box,
  .cta-box {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .mini-cards,
  .preview-cards {
    grid-template-columns: 1fr;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-self: center;
  }
}