:root {
  --bg: #f5f6f8;
  --bg-accent: #eef3fb;
  --card: #ffffff;
  --card-soft: #f8faff;
  --text: #1f2937;
  --muted: #5f6b7d;
  --primary: #4f86f7;
  --primary-hover: #3f74df;
  --border: #e6eaf1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 16px 72px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-phone {
  font-weight: 500;
  text-decoration: none;
  color: #406ab7;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.hero {
  text-align: center;
  background: var(--bg-accent);
  padding-top: 32px;
  padding-bottom: 34px;
}

.hero-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 28%;
  border: 2px solid #d7dde8;
  margin: 0 auto 14px;
  display: block;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  color: #5f7397;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  font-size: 38px;
  margin: 0 0 10px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.trust-line {
  color: #4d5d79;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 14px;
}

h2 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 650;
}

p {
  margin: 0;
  line-height: 1.5;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.btn {
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.micro-copy {
  color: #5f6f8e;
  font-size: 14px;
  margin-top: 4px;
}

.hero-phone {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.btn-cta {
  padding: 17px 34px;
  border-radius: 15px;
  font-size: 17px;
}

.service-list {
  margin: 0;
  padding-left: 17px;
}

.service-list li {
  margin: 4px 0;
  color: #39475e;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recent-jobs-subtitle {
  margin: -6px 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.recent-jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* REVIEWS DESKTOP */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review {
  padding: 13px;
  border: 1px solid #e7ebf2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.review span {
  display: block;
  color: #5b6f95;
  font-size: 14px;
  margin-top: 10px;
}

.cta {
  text-align: center;
  background: #eaf1fd;
  border-color: #d7e2f7;
  padding-top: 30px;
  padding-bottom: 30px;
}

.phone {
  margin: 0 0 14px;
}

.full {
  width: 100%;
  max-width: 360px;
}

/* 🔥 MOBILE FIX */
@media (max-width: 560px) {

  h1 {
    font-size: 30px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .recent-jobs-grid {
    grid-template-columns: 1fr;
  }

  /* ✅ FIXED REVIEWS */
  .reviews-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review {
    width: 100%;
  }

}
