/* Pricing styles scoped to the Pricing tab */

.wi_pricing_page {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;

  /* CreditSoft Brand Colors */
  --brand-blue: #1e4d99;
  --brand-red: #c41e3a;
  --light-blue: #e8f1f8;
  --light-gray: #f5f5f5;
}

.wi_pricing_page *,
.wi_pricing_page *::before,
.wi_pricing_page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wi_pricing_page .price-label {
    display: inline-block;
    background: #e6f4ea;
    color: #1f7a45;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Hero */
.wi_pricing_page .hero {
	background: linear-gradient(135deg, var(--brand-blue) 0%, #2B5FA8 100%);
	color: white;
	padding: 60px 20px;
	text-align: center;
}

.wi_pricing_page .hero h1 {
	font-size: 42px;
	margin-bottom: 15px;
	font-weight: 700;
}

.wi_pricing_page .hero p {
	font-size: 20px;
	opacity: 0.95;
	max-width: 800px;
	margin: 0 auto;
}

/* Toggle Section */
.wi_pricing_page .toggle-section {
  background: white;
  padding: 40px 20px;
  border-bottom: 3px solid var(--brand-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 40px;
}

.wi_pricing_page .toggle-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wi_pricing_page .toggle-title {
  font-size: 24px;
  color: var(--brand-blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.wi_pricing_page .toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--light-gray);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.wi_pricing_page .toggle-option {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.wi_pricing_page .toggle-option.active {
  color: var(--brand-blue);
}

.wi_pricing_page .toggle-slider {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.wi_pricing_page .toggle-slider.active {
  background: var(--brand-blue);
}

.wi_pricing_page .toggle-slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.wi_pricing_page .toggle-slider.active::after {
  transform: translateX(30px);
}

.wi_pricing_page .toggle-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 15px;
}

.wi_pricing_page .managed-note {
  font-size: 16px;
  color: var(--brand-blue);
  margin-top: 10px;
  font-weight: 600;
}

/* Pricing Cards */
#v-pills-t2 .toggle-section {
    padding-bottom: 40px;
}

#v-pills-t2 .pricing-section {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.wi_pricing_page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.wi_pricing_page .pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
}

.wi_pricing_page .pricing-card:hover {
  transform: translateY(-5px);
}

.wi_pricing_page .pricing-card.featured {
  border: 3px solid var(--brand-red);
  transform: scale(1.05);
}

.wi_pricing_page .pricing-card.featured .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--brand-red);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.wi_pricing_page .tier-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.wi_pricing_page .tier-desc {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  min-height: 60px;
}

.wi_pricing_page .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 5px;
}

.wi_pricing_page .featured .price {
  color: var(--brand-red);
}

.wi_pricing_page .price-period {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.wi_pricing_page .price-annual {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}

.wi_pricing_page .hosting-note {
  font-size: 14px;
  color: #666;
  background: var(--light-blue);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.wi_pricing_page .features-list {
  list-style: none;
  margin-bottom: 30px;
}

.wi_pricing_page .features-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.wi_pricing_page .features-list li:last-child {
  border-bottom: none;
}

.wi_pricing_page .features-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: bold;
  font-size: 18px;
}

.wi_pricing_page .tier-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--brand-blue);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.wi_pricing_page .tier-cta:hover {
  background: #153a73;
}

.wi_pricing_page .featured .tier-cta {
  background: var(--brand-red);
}

.wi_pricing_page .featured .tier-cta:hover {
  background: #9d1829;
}

/* Implementation Fee Section */
.wi_pricing_page .implementation-section {
	max-width: 1200px;
	margin: 40px auto 60px;
	padding: 40px 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	text-align: center;
}

.wi_pricing_page .implementation-section h2 {
	font-size: 32px;
	color: var(--brand-blue);
	margin-bottom: 20px;
	font-weight: 700;
}

.wi_pricing_page .implementation-section .price-highlight {
	font-size: 56px;
	font-weight: 700;
	color: var(--brand-red);
	margin: 20px 0;
}

.wi_pricing_page .implementation-section p {
	font-size: 18px;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 15px auto;
}

.wi_pricing_page .implementation-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.wi_pricing_page .implementation-feature {
	flex: 1;
	min-width: 200px;
	max-width: 250px;
}

.wi_pricing_page .implementation-feature h3 {
	color: var(--brand-blue);
	font-size: 18px;
	margin-bottom: 10px;
}

.wi_pricing_page .implementation-feature p {
	font-size: 14px;
	color: #666;
}

/* Additional Info Section */
.wi_pricing_page .managed-hosting-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 40px;
	background: var(--light-blue);
	border-radius: 12px;
	border: 2px solid var(--brand-blue);
}

.wi_pricing_page .managed-hosting-section h2 {
  color: var(--brand-blue);
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.wi_pricing_page .managed-hosting-section p {
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}

.wi_pricing_page .managed-pricing {
	background: white;
	padding: 30px;
	border-radius: 8px;
	margin: 30px 0;
}

.wi_pricing_page .managed-pricing ul {
  list-style: none;
  padding: 0;
}

.wi_pricing_page .managed-pricing li {
	padding: 10px 0;
	font-size: 16px;
}

.wi_pricing_page .managed-pricing li:before {
	content: '✓ ';
	color: var(--brand-blue);
	font-weight: bold;
	margin-right: 8px;
}
