.logo {
  display: block;
  margin: 0 auto 14px;
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,224,255,.18));
}

:root {
  --bg: #06141a;
  --card: #0b222a;
  --ink: #e6fbff;
  --muted: #a9ddea;
  --accent: #00e0ff;
  --border: #00e0ff22;
}
* { box-sizing: border-box; }

body, html {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(1200px 800px at 20% -10%, #092733 0%, #06141a 60%), var(--bg);
  font-family: system-ui, Segoe UI, Roboto, Arial;
  position: relative;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 94%;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,224,255,.06), transparent 180px), rgba(11, 34, 42, 0.6);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  pointer-events: none;
}

.content * {
  pointer-events: auto;
}

h1 {
  font-size: 1.3rem;
  margin: .2rem 0 1rem;
  color: var(--accent);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(6,20,26,0.35);
  border: 1px solid rgba(0,224,255,0.08);
  border-radius: 14px;
  padding: .9rem .8rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform .12s ease-out, box-shadow .12s ease-out, border .12s;
  backdrop-filter: blur(3px);
}

.service-card:hover {
  transform: translateY(-3px);
  border: 1px solid rgba(0,224,255,0.35);
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto .6rem;
  border-radius: 14px;
  background: rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-name {
  font-weight: 700;
  margin-bottom: .2rem;
}

.service-desc {
  font-size: .8rem;
  color: var(--muted);
}

.note {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 480px) {
  .content {
    padding: 1.1rem .8rem 1.2rem;
  }
}