/* Service page styles for MAVIX */
:root {
  color-scheme: dark;
  color: #F5F5F3;
  background: #09090B;
  font-family: 'Poppins', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(91,140,255,0.12), transparent 24%), #09090B;
}
img {
  max-width: 100%;
  display: block;
}
.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(18px);
}
.topbar a {
  color: #5B8CFF;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  margin: 40px 0 24px;
  padding: 42px 42px 40px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 600;
  color: #C9CDD2;
}
.hero p {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #D1D5DB;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.button {
  background: linear-gradient(135deg, #5B8CFF, #3A6BFF);
  color: #ffffff;
  border: 1px solid rgba(91,140,255,0.35);
}
.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}
.button-secondary {
  background: rgba(255,255,255,0.05);
  color: #F5F5F3;
  border: 1px solid rgba(255,255,255,0.12);
}
.section {
  margin: 44px 0;
}
.section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}
.section p {
  margin: 0 0 18px;
  color: #C9CDD2;
  line-height: 1.78;
}
.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}
.card p {
  margin: 0;
  color: #D1D5DB;
}
ul.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
ul.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #D1D5DB;
}
ul.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(91,140,255,0.15);
  color: #5B8CFF;
  font-weight: 700;
}
.footer {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: #8A8E97;
  font-size: 0.93rem;
}
.footer a {
  color: #5B8CFF;
  text-decoration: none;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page-shell {
    padding: 22px 18px 32px;
  }
  .hero {
    padding: 28px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}
