   :root {
      --bg-primary: #0d1117;
      --bg-secondary: #161b22;
      --text-primary: #f0f6fc;
      --text-secondary: #8b949e;
      --accent-blue: #58a6ff;
      --accent-purple: #bc8cff;
      --accent-pink: #ff79c6;
      --accent-green: #26cb7c;
      --border-color: rgba(128, 128, 128, 0.1);
      --hover-color: rgba(255, 255, 255, 0.03);
      --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    
#pricing .ctn {
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
}
    
#pricing .items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	align-items: stretch;
}
    
#pricing .item {
	background-color: var(--bg-secondary);
	border-radius: 12px;
	padding: 25px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
	border: 1px solid #303038;
	box-shadow: var(--card-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
    
#pricing .item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
    
.standard {
	position: relative;
}

.standard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
	z-index: 1;
}
    
.popular-tag {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
	color: white;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 12px;
	text-transform: uppercase;
}
    
.pricing_title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 8px;
	font-family: 'Space Grotesk', sans-serif;
}

.basic .pricing_title {
	color: var(--accent-blue);
}

.standard .pricing_title {
	color: var(--accent-purple);
}

.premium .pricing_title {
	color: var(--accent-pink);
}
    
.pricing_description {
	color: var(--text-secondary);
	font-size: 0.85rem;
	margin-bottom: 20px;
	line-height: 1.4;
}

.pricing_price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
	font-family: 'Space Grotesk', sans-serif;
}
    
.price-cycle {
	color: var(--text-secondary);
	font-size: 0.85rem;
	margin-bottom: 20px;
}

.pricing_features {
	list-style-type: none;
	margin-bottom: 25px;
	flex-grow: 1;
}

.pricing_features li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	color: var(--text-secondary);
}
    
.pricing_features li::before {
	content: "✓";
	margin-right: 10px;
	font-size: 0.8rem;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
    
.basic .pricing_features li::before {
	color: var(--accent-blue);
}

.standard .pricing_features li::before {
	color: var(--accent-purple);
}

.premium .pricing_features li::before {
	color: var(--accent-pink);
}

.pricing_button {
	background-color: transparent;
	color: var(--text-primary);
	border: 1px solid;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-family: 'Inter', sans-serif;
}
    
.pricing_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: -1;
	transition: width 0.3s ease;
}

.basic .pricing_button {
	border-color: var(--accent-blue);
}

.basic .pricing_button::before {
	background-color: var(--accent-blue);
}
    
.standard .pricing_button {
	border-color: var(--accent-purple);
}

.standard .pricing_button::before {
	background-color: var(--accent-purple);
}

.premium .pricing_button {
	border-color: var(--accent-pink);
}

.premium .pricing_button::before {
	background-color: var(--accent-pink);
}

.pricing_button:hover::before {
	width: 100%;
}
    
.pricing_button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
    
    
    .faq-link {
      color: var(--text-secondary);
      font-size: 0.85rem;
      text-align: center;
      margin-top: 30px;
      display: block;
      text-decoration: none;
    }
    
    .faq-link:hover {
      color: var(--accent-purple);
    }
    
    .highlight-feature {
      color: var(--text-primary) !important;
      position: relative;
    }
    
    .tooltip {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--bg-secondary);
      border: 1px solid var(--border-color);
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.7rem;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 10;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .tooltip::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--border-color);
    }
    
    .highlight-feature:hover .tooltip {
      opacity: 1;
    }
    
    .pricing_glow {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(188, 140, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .item:hover .glow-effect {
      opacity: 1;
    }
    
    .pricing-guarantee {
      margin-top: 30px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .guarantee-icon {
      margin-right: 5px;
      width: 16px;
      height: 16px;
      fill: var(--accent-green);
    }
    
    @media (max-width: 700px) {
      .item {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
      }
      
      .pricing-header h1 {
        font-size: 2rem;
      }
      
      .pricing-header p {
        font-size: 0.9rem;
        padding: 0 10px;
      }
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(188, 140, 255, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(188, 140, 255, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(188, 140, 255, 0);
      }
    }
    
    .standard .pricing_button {
      animation: pulse 2s infinite;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-5px);
      }
      100% {
        transform: translateY(0px);
      }
    }