/* ===========================
   SCOPE OF SERVICE
=========================== */

.transparency-scope-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,200,0,.08), transparent 34%),
    linear-gradient(to bottom, #080808, #050505);
  overflow: hidden;
}

.scope-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.scope-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  margin: 24px 0;
}

.scope-header h2::first-line {
  color: var(--primary);
}

.scope-header p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

/* GRID */

.scope-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 26px;
  align-items: stretch;
}

.scope-card {
  position: relative;
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scope-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 7px;
}

.scope-card.included::before {
  background: var(--primary);
}

.scope-card.not-guaranteed::before {
  background: #7b1d1d;
}

.scope-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.scope-card-top i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.not-guaranteed .scope-card-top i {
  background: rgba(123,29,29,.95);
  color: #fff;
}

.scope-card-top span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.not-guaranteed .scope-card-top span {
  color: #ffb1b1;
}

.scope-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 34px;
}

.scope-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.scope-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  font-weight: 700;
}

.scope-card.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.scope-card.not-guaranteed li::before {
  content: "•";
  position: absolute;
  left: 3px;
  color: #ffb1b1;
  font-weight: 900;
}

/* DIVIDER */

.scope-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scope-divider span {
  width: 2px;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,200,0,.5),
    transparent
  );
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .scope-header p {
    font-size: 16px;
  }

  .scope-card {
    padding: 34px;
  }
}