h2 {
	margin-top: 64px;
}

mark {
	background: none;
	color: var(--text-bright);
	font-weight: 600;
}

#intro {
	margin-bottom: 60px;
	text-align: center;
}

#intro p.introline {
	font-size: 50px;
	font-weight: 400;
	margin: 0;
}

/* smaller intro narrow screens */
@media only screen and (max-width: 1300px) {
	#intro {
		margin-bottom: 40px;
		text-align: left;
	}
	#intro h1 {
		font-size: 60px;
	}
	
	#intro p.introline {
		font-size: 40px;
	}
}


#plans > div {
	margin-bottom: 15px;
}

#plans .plan-option {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: rgba(255,255,255,1);
	padding: 24px 48px 24px 48px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

#plans .plan-option p {
	margin-bottom: 0;
}

#plans .plan-option p span {
	line-height: 110%;
}

#plans .plan-option p .option-value {
	font-size: 30px;
	font-weight: 500;
	color: var(--text-bright);
	display: block;
}

#plans .plan-option p.price {
	width: 200px;
}

#plans .plan-option p.name {
	width: 500px;
	flex-grow: 5;
}

#plans .plan-option p.cards, #plans .plan-option p.boardsize {
	text-align: center;
	width: 150px;
}

#plans .plan-highlighted {
	background: #FFE176;
	padding: 8px;
	border-radius: 16px;
	margin-left: -8px;
	margin-right: -8px;
}

#plans .plan-highlight {
	display: flex;
	align-items: center;
	padding: 24px 48px 24px 48px;
}

#plans .plan-highlight p {
	font-size: 20px;
	margin-bottom: 0;
}

#plans .plan-highlight .highlight-intro {
	color: var(--text-bright);
	font-weight: 600;
	width: 150px;
}

#plans .plan-highlight .highlight-feature {
	display: flex;
	width: 400px;
	margin-left: 50px;
}

#plans .plan-highlight .highlight-feature img.feature-icon {
	height: 46px;
	margin-right: 16px;
}

.module.cta {
  margin: 60px 0 120px 0;
  background: #4F307C;
  color: #FFF;
  padding: 24px 48px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.module.cta ul.cta-text li {
  font-size: 27px;
  line-height: 1.2;
  margin: 0;
  color: #A090BB;
}

.module.cta ul.cta-text li:first-child {
  font-weight: 500;
  color: #FFFFFF;
}

.module.cta .cta-buttons {
  font-size: 27px;
  font-weight: 500;
  display: flex;
  gap: 40px;
}

.module.cta .cta-buttons span {
  margin-right: 16px;
}

.module.cta .cta-buttons img {
  vertical-align: middle;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* reshuffle plans layout for narrow screens */
@media only screen and (max-width: 800px) {
  #intro h1 {
    font-size: 40px;
  }
  #intro p.introline {
    font-size: 30px;
  }
  #plans .plan-option {
  	flex-wrap: wrap;  
	padding: 16px 32px 16px 32px;
  }
  #plans .plan-option p {
  	margin: 10px 0 10px 0;
  }
  #plans .plan-option  p.price {
  	order: 1;
	width: 180px;
  }
  #plans .plan-option p.cards, #plans .plan-option p.boardsize {
  	text-align: left;
	order: 2;
	width: 130px;
  }
  #plans .plan-highlight {
	flex-wrap: wrap;
	padding: 16px 32px 16px 32px;
  }
  #plans .plan-highlight .highlight-intro, #plans .plan-highlight .highlight-feature {
	width: 100%;
	max-width: 400px;
	margin: 12px 0 12px 0;
  }
  .module.cta li {
	display: inline;
  }
  .module.cta {
	flex-direction: column;
	align-items: flex-start;
  }
  .module.cta .cta-buttons {
	margin-top: 40px;
	gap: 20px;
	flex-direction: column;
  }
}

#intangibles {
	margin-top: 64px;
}

.columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}

.columns p {
	width: calc(50% - 50px);
}

/* single column for narrow screens */
@media only screen and (max-width: 960px) {
	.columns {
		flex-wrap: wrap;
		gap: 0;
	}
	.columns p {
		width: 100%;
		padding-left: 0;
		max-width: none;
	}
}

#faq p {
	max-width: 820px;
}
