/* =====================
   SERVICES PAGE
   ===================== */

/* Page Hero */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 80px;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  font-weight: 800;
  line-height: 1.15;
}

.page-hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

.page-hero-img-wrap {
  position: relative;
}

.page-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* CTA Button */
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.btn-cta-hero:hover {
  background: #153D31;
  transform: translateY(-1px);
}

/* All Services */
.all-services {
  background: var(--surface);
  padding: 80px 24px;
}

.all-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Service Card */
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.svc-icon {
  flex-shrink: 0;
}

.svc-tier-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
}

.svc-card h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
}

.svc-description {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.svc-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.svc-price-from {
  font-size: 13px;
  color: var(--fg-muted);
}

.svc-price-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.svc-price-unit {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.svc-price-note {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: auto;
}

.svc-cta:hover {
  background: #153D31;
}

/* Why Compare */
.why-compare {
  padding: 80px 24px;
}

.why-compare-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 0 16px 12px;
  border-bottom: 2px solid var(--border);
  color: var(--fg-muted);
}

.compare-table th.us-col {
  color: var(--accent);
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--fg);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-label {
  font-weight: 600;
  color: var(--fg);
  min-width: 200px;
}

.us-cell {
  background: var(--accent-light);
  border-radius: 8px;
}

.us-cell span:last-child {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.check-big {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.yes-cell {
  color: #1B4D3E;
  font-weight: 500;
}

.yes-cell .check-big {
  display: inline;
}

.yes-cell > span:last-child {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.no-cell {
  color: var(--fg-muted);
}

.mixed-cell {
  color: var(--fg-muted);
}

/* CTA Band */
.services-cta-band {
  background: var(--accent);
  padding: 80px 24px;
}

.services-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.services-cta-inner h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.services-cta-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.services-cta-band .btn-cta-hero {
  background: #fff;
  color: var(--accent);
  padding: 14px 28px;
  font-size: 16px;
}

.services-cta-band .btn-cta-hero:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.cta-subtext {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.cta-subtext a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-img {
    height: 260px;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
  }

  .feature-label {
    min-width: 140px;
  }
}