:root {
  --bg: #0b0b0c;
  --panel: #ffffff;
  --ink: #151518;
  --muted: #646b76;
  --accent: #f13b7f;
  --soft: #f5f7fb;
  --dark: #2e2f34;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: #fafbff;
}

/* Layout */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 270px;
  background: #fff;
  border-right: 1px solid #eee;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #eee;
}
.brand-name {
  font-weight: 800;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.nav-link {
  padding: 10px 12px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
}
.nav-link:hover {
  background: #f3f5f8;
}
.nav-link.active {
  background: #e9ecf3;
  font-weight: 700;
}

.contact {
  margin-top: auto;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact a {
  color: inherit;
  text-decoration: none;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.95;
}
.btn-outline {
  background: transparent;
  color: #333;
  border: 1px solid #d9dce3;
}

/* Main content */
.content {
  margin-left: 270px;
  padding: 32px 40px 80px;
}

.section {
  margin: 24px 0 60px;
}
.section-title {
  font-size: 36px;
  margin: 0 0 18px;
}
.lede {
  font-size: 18px;
  color: #34363c;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
}
.ticks {
  padding-left: 18px;
}
.ticks li {
  margin: 6px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.card .step {
  font-weight: 800;
  font-size: 26px;
  color: var(--muted);
}
.card .thumb {
  width: 100%;
  border-radius: 16px;
  margin: 10px 0;
}

.section-dark {
  background: #1f2024;
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .banner {
  width: 100%;
  border-radius: 16px;
  margin-top: 16px;
  opacity: 0.95;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2f3138;
  color: #fff;
  padding: 16px 20px;
}
.ph-title {
  font-weight: 700;
}
.ph-amount {
  font-weight: 800;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
}
.addon {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: center;
}
.addon input {
  transform: scale(1.2);
}
.price {
  font-weight: 700;
}
.divider {
  height: 1px;
  background: #eee;
}
.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #f7f8fb;
  font-weight: 800;
  font-size: 18px;
  border-top: 1px solid #eee;
}
.small {
  font-size: 12px;
}
.gst {
  padding: 12px 20px;
}

.steps {
  line-height: 1.8;
}
.bullets {
  line-height: 1.8;
}

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d9dce3;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .sidebar {
    transform: translateX(-100%);
    transition: 0.25s;
  }
  .sidebar.open {
    transform: none;
  }
  .content {
    margin-left: 0;
    padding: 24px;
  }
}

/* Print */
@media print {
  .sidebar,
  .fab,
  #menuToggle {
    display: none !important;
  }
  .content {
    margin-left: 0;
    padding: 0;
  }
  body {
    background: #fff;
  }
  .section {
    page-break-inside: avoid;
  }
}
