/* =========================
   Base Reset & Typography
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

/* =========================
   Global Layout
   ========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}

/* =========================
   Hero Section
   ========================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a0f1c, #121c2b);
  color: #ffffff;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* Particle canvas */
#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* =========================
   Buttons
   ========================= */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #f6821f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #d96f14;
  transform: translateY(-1px);
}

/* =========================
   Sections (Shared)
   ========================= */
.services,
.about,
.legal {
  padding: 20px 0; 
}

.services h2,
.about h2,
.legal h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* =========================
   Services Section
   ========================= */
.services-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px; /* tightened */
}

.services-text {
  flex: 1;
}

.services-list {
  list-style: square;
  margin-left: 18px;
  margin-top: 12px;
}

.services-list li {
  margin-bottom: 6px; /* tighter bullets */
}

/* Lock graphic */
.services-graphic {
  flex-shrink: 0;
  margin-top: 6px; /* aligns with first bullet */
}

.services-graphic img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   About / Legal
   ========================= */
.about p,
.legal p {
  max-width: 65ch;
}

/* =========================
   Footer
   ========================= */
footer {
  background: #111;
  color: #ccc;
  padding: 26px 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

footer a {
  color: #f6821f;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   Cursor Graphic (cleaned)
   ========================= */
.cursor-graphic {
  position: fixed;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {

  .services-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-list {
    margin-left: 0;
    list-style-position: inside;
  }

  .services-graphic {
    margin-top: 20px;
  }

  .footer-content {
    flex-direction: column;
  }
}
