﻿:root {
  --bg: #f5f7ff;
  --bg-accent: #eef0ff;
  --text: #0f0e2e;
  --text-soft: #5b6080;
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --brand-light: #818cf8;
  --accent: #06b6d4;
  --violet: #7c3aed;
  --card: #ffffff;
  --border: #e0e3f7;
  --shadow: 0 12px 40px rgba(79,70,229,0.10);
  --shadow-lg: 0 24px 60px rgba(79,70,229,0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding-left: 1.2rem; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ── HERO / HEADER (dark) ─────────────────────── */
.hero {
  padding: 0 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #07061a;
  color: #fff;
}

.hero__bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__bg-shape--one {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #4f46e5 0%, #7c3aed 70%);
  top: -200px;
  right: -120px;
}

.hero__bg-shape--two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #06b6d4 0%, #4f46e5 70%);
  bottom: -80px;
  left: -100px;
}

/* ── NAV ──────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0 0.6rem;
  position: relative;
  z-index: 10;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  font-size: 1.1rem;
}

.nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav__cta {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.01em;
  margin-right: 0.6rem;
}

.nav__logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── HERO CONTENT ─────────────────────────────── */
.hero__content {
  padding-top: 2.5rem;
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
}

h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin-top: 1.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ── OFFER CHECKLIST ──────────────────────────── */
.offer-checklist {
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.offer-checklist__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(129, 140, 248, 0.5);
}

.offer-checklist__icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

/* ── HERO BUTTONS ─────────────────────────────── */
.hero__buttons {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn--solid:hover {
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.55);
  opacity: 0.92;
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.btn--small {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  margin-top: 1rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

/* ── SECTIONS ─────────────────────────────────── */
.section {
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

main,
.hero__content,
.footer {
  text-align: center;
}

main ul,
main li,
.offer-checklist__item,
.preview-card p,
.pack-card ul {
  text-align: left;
}

.section--alt {
  background: linear-gradient(160deg, #f0f0ff 0%, #f8f9ff 50%, #e8f9ff 100%);
}

.section__title-wrap {
  margin-bottom: 2rem;
  text-align: center;
}

.section__title-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__title-wrap p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ── CARDS ────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ── PACK CARDS ───────────────────────────────── */
.pack-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pack-card h3,
.preview-card h3 {
  margin-bottom: 0.4rem;
}

.pack-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pack-card .btn {
  margin-top: auto;
  display: block;
  text-align: center;
}

.pack-card ul {
  margin: 0 0 0.6rem 0;
  color: var(--text-soft);
  text-align: left;
  font-size: 0.86rem;
}

.pack-card ul li {
  padding: 0.2rem 0;
}

.pack-card__group-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: var(--bg-accent);
  border-radius: 6px;
  padding: 0.22rem 0.6rem;
  margin: 0.8rem 0 0.35rem;
  display: inline-block;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.35rem 0 0.6rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.pack-card--featured {
  transform: translateY(-10px);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4) border-box;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.22);
}

.pack-card--featured:hover {
  transform: translateY(-14px);
}

.text-link {
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
}

.preview-card {
  animation: fadeUp 0.7s ease both;
}

.preview-card:nth-child(2) { animation-delay: 0.1s; }
.preview-card:nth-child(3) { animation-delay: 0.2s; }

/* ── PORTFOLIO ACCORDION ──────────────────────── */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.category {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.category:hover {
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.09);
}

.category[open] {
  border-color: #c7c4f7;
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.1);
}

.category__summary {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.4rem;
  cursor: pointer;
  user-select: none;
  border-radius: 14px;
  transition: background 0.18s ease;
  width: 100%;
}

.category__summary::-webkit-details-marker {
  display: none;
}

.category__summary::after {
  content: '▾';
  font-size: 0.95rem;
  color: var(--brand);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  order: 2;
}

.category__summary:hover {
  background: #f3f2ff;
}

.category[open] > .category__summary {
  border-bottom: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  background: #f3f2ff;
}

.category[open] > .category__summary::after {
  transform: rotate(-180deg);
}

.category__summary h3 {
  margin: 0;
  flex: 1;
  order: 1;
}

.category__summary .category__label {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: block;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.category__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  padding: 0.28rem 0.8rem;
  background: var(--bg-accent);
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
}

.category > .preview-grid {
  padding: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* ── CONTACT ──────────────────────────────────── */
.contact-card {
  text-align: center;
  padding: 3rem 2rem;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12);
}

.contact-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 0.3rem;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: #07061a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.6rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1rem;
}

.testimonial-slide .testimonial-card {
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.testimonial-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
}

.testimonial-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.testimonial-dot.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: scale(1.35);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem 1.5rem;
  text-align: left;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.08);
}

.testimonial-card__quote {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  position: relative;
  padding-top: 1.2rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.15rem;
  left: 0;
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.testimonial-card__avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ── GALLERY ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.18);
}

.gallery-item__thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* gallery thumb--1: cleaning business screenshot */
.gallery-thumb--1 { background: #f1f5f9; overflow: hidden; padding: 0; }
.gallery-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.gallery-thumb--2 { background: linear-gradient(135deg, #6ee7b7 0%, #059669 100%); }
.gallery-thumb--3 { background: linear-gradient(135deg, #f9a8d4 0%, #db2777 100%); }
.gallery-thumb--4 { background: linear-gradient(135deg, #67e8f9 0%, #0891b2 100%); }
.gallery-thumb--5 { background: linear-gradient(135deg, #c4b5fd 0%, #7c3aed 100%); }
.gallery-thumb--6 { background: linear-gradient(135deg, #fcd34d 0%, #d97706 100%); }

.gallery-item__label {
  padding: 1rem 1.1rem;
}

.gallery-item__label h3 {
  font-size: 0.97rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.gallery-item__label p {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

/* ── MODAL ────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 26, 0.75);
  backdrop-filter: blur(6px);
}

.modal__box {
  position: relative;
  background: var(--card);
  border-radius: 24px;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(79, 70, 229, 0.3);
  animation: riseIn 0.25s ease-out both;
  border: 1px solid var(--border);
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-soft);
  line-height: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: #e0e0f7;
  color: var(--text);
}

.modal__thumb {
  width: 100%;
  height: 220px;
  border-radius: 24px 24px 0 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.modal__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  border-radius: 24px 24px 0 0;
}

.modal__body {
  padding: 1.6rem 1.85rem 2.2rem;
  text-align: left;
}

.modal__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.modal__info {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.modal__form-heading {
  margin-bottom: 0.75rem;
}

.modal__form-submit {
  width: 100%;
}

.modal__form-success {
  color: var(--brand);
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0;
}

.modal__form-error {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.4rem 0.6rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
}

/* Honeypot field — visually hidden and not interactive for real users */
.form-row--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* ── SERVER LOAD ─────────────────────────────── */
.server-load-section {
  padding-top: 0;
}

.server-load-card {
  background: #fff;
  border: 1px solid #c8cde6;
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 6px 32px rgba(79,70,229,0.09), 0 1px 4px rgba(0,0,0,0.06);
}

.server-load-card__header {
  padding: 1.6rem 2rem 1rem;
  border-bottom: 1px solid #e8ecf4;
  background: linear-gradient(135deg, #fafbff 0%, #f4f5ff 100%);
}

.server-load-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.server-load-card__sub {
  font-size: 0.875rem;
  color: #5b6080;
  line-height: 1.5;
}

.server-load-card__body {
  padding: 1.5rem 2rem 2rem;
  background: #fff;
}

.server-load-card__controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  padding: 0.75rem 1.1rem;
  background: #f4f5fb;
  border: 1px solid #dde0f0;
  border-radius: 8px;
}

.server-load-card__controls-label {
  font-size: 0.82rem;
  color: #4a4e6a;
  font-weight: 500;
  margin-right: 0.2rem;
}

.server-load-card__toggle {
  display: flex;
  border: 1px solid #c0c4d8;
  border-radius: 6px;
  overflow: hidden;
}

.server-load-card__toggle-btn {
  padding: 0.28rem 0.85rem;
  font-size: 0.79rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #eceef6;
  color: #666;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.server-load-card__toggle-btn--on {
  background: #3730a3;
  color: #fff;
}

.server-load-card__toggle-btn--off {
  background: #eceef6;
  color: #666;
}

.server-load-card__refresh {
  padding: 0.28rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #c0c4d8;
  border-radius: 6px;
  background: #fff;
  color: #3730a3;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.server-load-card__refresh:hover {
  background: #eef0ff;
  border-color: #4f46e5;
}

.server-load-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e4e7f2;
  border-radius: 10px;
  overflow: hidden;
}

.server-load-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-right: 1px solid #e4e7f2;
  transition: background 0.15s;
}

.server-load-stat:last-child {
  border-right: none;
}

.server-load-stat:hover {
  background: #f7f9ff;
}

/* icon badge — fixed 48×48, circular tinted bg */
.server-load-stat__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; /* optical alignment with value text */
}

.server-load-stat__icon--cpu   { background: #e8f1fb; }
.server-load-stat__icon--ram   { background: #e8f7e8; }
.server-load-stat__icon--disk-read  { background: #e5f5fe; }
.server-load-stat__icon--disk-write { background: #e8f8e8; }

.server-load-stat__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

/* text stack */
.server-load-stat__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.server-load-stat__value {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.server-load-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.35rem;
}

.server-load-stat__detail {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.6;
  white-space: nowrap;
}

.server-load-stat__detail--green {
  color: #15803d;
  font-weight: 600;
}

@media (max-width: 760px) {
  .server-load-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .server-load-stat {
    border-right: 1px solid #e4e7f2;
    border-bottom: 1px solid #e4e7f2;
  }
  .server-load-stat:nth-child(2n) {
    border-right: none;
  }
  .server-load-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .server-load-stats {
    grid-template-columns: 1fr;
  }
  .server-load-stat {
    border-right: none;
    border-bottom: 1px solid #e4e7f2;
  }
  .server-load-stat:last-child {
    border-bottom: none;
  }
  .server-load-card__body {
    padding: 1rem 1.1rem 1.3rem;
  }
  .server-load-card__header {
    padding: 1.2rem 1.1rem 0.9rem;
  }
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 920px) {
  .pack-grid,
  .preview-grid,
  .offer-checklist,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 4rem;
  }

  .hero__content {
    padding-top: 1.5rem;
  }

  .nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }

  .nav__link {
    font-size: 0.82rem;
    padding: 0.3rem 0.6rem;
  }

  .offer-checklist,
  .pack-grid,
  .preview-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pack-card--featured {
    transform: none;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

/* ── HOW IT WORKS ─────────────────────────────── */
.how-section {
  background: linear-gradient(160deg, #f0f0ff 0%, #f8f9ff 50%, #e8f9ff 100%);
  padding: 4rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
}

.step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 1.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.07);
  position: relative;
}

.step__number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  opacity: 0.45;
  margin-bottom: 0.75rem;
}

.step__icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
}

.step__icon-wrap svg {
  width: 100%;
  height: 100%;
}

.step__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 0.2rem;
}

.step__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step__desc {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.step__bullets {
  display: none;
}

.step__arrow {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
  opacity: 0.55;
}

.step__arrow svg {
  width: 50px;
  height: 20px;
}

@media (max-width: 760px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step__arrow {
    transform: rotate(90deg);
    margin: 0;
  }
}
