
:root {
  --bg-main: #05040a;
  --bg-card: #0b0716;
  --bg-alt: #0f1024;
  --neon-pink: #ff3bff;
  --neon-blue: #00e0ff;
  --neon-yellow: #ffe83b;
  --text-main: #fdfdfd;
  --text-muted: #a9a4c6;
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --shadow-neon: 0 0 25px rgba(255, 59, 255, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #26113f, #020106 55%, #000000 100%);
  color: var(--text-main);
  min-height: 100vh;
}

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

.page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 18px 60px;
}

/* HEADER */

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: linear-gradient(90deg, rgba(3, 0, 20, 0.96), rgba(13, 0, 40, 0.96));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
}

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

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--neon-yellow), var(--neon-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 232, 59, 0.4);
}

.logo-circle.small {
  width: 40px;
  height: 40px;
}

.logo-initials {
  font-weight: 800;
  color: #050308;
  letter-spacing: 1px;
}

.logo-text h1 {
  font-size: 20px;
  margin: 0;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: all 0.2s ease-out;
}

.main-nav a:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  background: radial-gradient(circle at top, rgba(255, 59, 255, 0.15), transparent 65%);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 18px;
}

.hero-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon-yellow);
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero h2 span {
  background-image: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(0, 224, 255, 0.35);
}

.hero-text {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(12, 7, 28, 0.9);
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-out;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--neon-pink), var(--neon-blue));
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-outline {
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-neon {
  background: linear-gradient(120deg, var(--neon-pink), var(--neon-yellow));
  color: #020104;
  border-color: transparent;
  box-shadow: 0 0 26px rgba(255, 232, 59, 0.45);
}

.btn-neon:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hero-badges span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  height: 270px;
}

.neon-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 220deg, #ff8a00, #ffe83b, #ff3bff, #00e0ff, #ff8a00);
  filter: blur(1px);
  box-shadow: 0 0 70px rgba(255, 232, 59, 0.45);
}

.neon-card {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 260px;
  padding: 18px;
  background: rgba(4, 2, 16, 0.94);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 28px rgba(0, 224, 255, 0.45);
}

.neon-card.secondary {
  top: auto;
  bottom: 6%;
  left: 6%;
  right: auto;
  box-shadow: 0 0 24px rgba(255, 59, 255, 0.35);
}

.neon-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.neon-card h3 {
  margin: 6px 0 4px;
  font-size: 17px;
}

.neon-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* GENERIC SECTIONS */

.section {
  margin-top: 56px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
}

/* SERVICE GRID */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-grid.full {
  margin-top: 28px;
}

.service-card {
  padding: 16px 16px 18px;
  background: linear-gradient(145deg, rgba(10, 6, 30, 0.98), rgba(8, 10, 26, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.service-card:hover {
  border-color: rgba(255, 232, 59, 0.7);
  box-shadow: 0 0 26px rgba(255, 232, 59, 0.4);
  transform: translateY(-2px);
}

/* TWO COLUMN */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
}

/* CHECKLIST */

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.checklist.big li {
  margin-bottom: 8px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  color: var(--neon-yellow);
}

/* STACK CARDS */

.home-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 59, 255, 0.12), rgba(1, 2, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.stack-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA STRIP */

.cta-strip {
  margin-top: 48px;
  padding: 18px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at left, rgba(0, 224, 255, 0.25), transparent 60%),
              radial-gradient(circle at right, rgba(255, 59, 255, 0.25), transparent 60%),
              #05020d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-strip.inner {
  margin-top: 32px;
}

.cta-content h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.cta-content p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* SLIDER */

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #05020f;
}

.slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 260px;
}

.slide {
  min-width: 100%;
  height: 260px;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 10px;
  background: rgba(0, 0, 0, 0.3);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.slider-dots .dot.active {
  width: 18px;
  background: var(--neon-yellow);
}

/* PORTFOLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.portfolio-card {
  padding: 14px 14px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(8, 5, 26, 0.98), rgba(8, 12, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card h3 {
  margin-top: 8px;
  font-size: 15px;
}

.portfolio-card video {
  width: 100%;
  border-radius: 14px;
  margin-top: 6px;
  max-height: 240px;
  background: #000;
}

.social-strip {
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(8, 7, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.social-strip p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons.large i {
  font-size: 20px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.social-icons a:hover {
  background: radial-gradient(circle, var(--neon-pink), var(--neon-blue));
  color: #06010a;
}

/* CONTACT */

.contact-layout {
  align-items: flex-start;
}

.contact-info h3 {
  margin-top: 0;
}

.map-wrapper {
  position: relative;
  margin-top: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
}

.map-overlay-link {
  position: absolute;
  inset: auto 10px 10px auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-form-wrapper {
  background: rgba(7, 5, 25, 0.96);
  border-radius: var(--radius-lg);
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 1, 14, 0.9);
  color: var(--text-main);
  font-size: 13px;
}

.small-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* FOOTER */

.main-footer {
  padding: 26px 26px 20px;
  background: #020008;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 18px;
}

.footer-logo p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-contact p {
  margin: 4px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom {
  max-width: 1180px;
  margin: 8px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-admin-link a {
  color: var(--neon-yellow);
}

/* ADMIN */

.admin-body {
  background: radial-gradient(circle at top, #1a1030, #020008 60%);
}

.admin-wrapper {
  max-width: 960px;
  margin: 40px auto;
  padding: 24px;
  background: #05020d;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-nav a {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 12px;
}

.admin-table th,
.admin-table td {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 8px;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.04);
}

/* LOGO IMAGE WRAP */

.logo-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 232, 59, 0.8);
  box-shadow: 0 0 22px rgba(255, 232, 59, 0.5);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-img-wrap.small {
  width: 52px;
  height: 52px;
}

/* RESPONSIVE */

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

  .hero,
  .two-column,
  .footer-top,
  .social-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    height: 230px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 10px 14px;
  }
  .page-wrapper {
    padding: 80px 14px 50px;
  }
  .main-nav {
    flex-wrap: wrap;
  }
}
