/**
 * HearFluent Components
 */

/* Buttons */
.hf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.hf-btn--primary {
	background: #f97316;
	color: #ffffff;
	box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.hf-btn--primary:hover {
	background: #fb923c;
	box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
	transform: translateY(-2px);
}

/* Cards */
.hf-card {
	background: var(--hf-bg-card);
	border: 1px solid var(--hf-border-default);
	border-radius: var(--hf-radius-xl);
	padding: var(--hf-space-6);
}

/* Pricing Cards */
.hf-pricing-shortcode {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.hf-pricing-card {
	background: #0f2847;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.hf-pricing-card:hover {
	border-color: #22d3ee;
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.hf-pricing-card--featured {
	border-color: #22d3ee;
	box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
	transform: scale(1.02);
}

.hf-pricing-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: #22d3ee;
	color: #0f172a;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	text-transform: uppercase;
}

.hf-pricing-card__tier {
	color: #22d3ee;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.hf-pricing-card__price {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.hf-pricing-card__currency {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f1f5f9;
}

.hf-pricing-card__amount {
	font-size: 3rem;
	font-weight: 800;
	color: #f1f5f9;
	line-height: 1;
}

.hf-pricing-card__period {
	color: #64748b;
	font-size: 1rem;
}

.hf-pricing-card__limit {
	color: #94a3b8;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hf-pricing-card__features {
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.hf-pricing-card__feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #94a3b8;
	font-size: 0.9375rem;
	margin-bottom: 0.75rem;
}

.hf-pricing-card__feature svg {
	color: #10b981;
	flex-shrink: 0;
}

.hf-pricing-card__cta {
	width: 100%;
	text-align: center;
	padding: 0.875rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

/* Accordion */
.hf-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hf-accordion__item {
	background: #0a1628;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	overflow: hidden;
}

.hf-accordion__item:hover {
	border-color: rgba(34, 211, 238, 0.3);
}

.hf-accordion__item--active {
	border-color: #22d3ee;
}

.hf-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1rem 1.25rem;
	background: transparent;
	border: none;
	color: #f1f5f9;
	font-size: 1rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}

.hf-accordion__trigger svg {
	color: #64748b;
	transition: transform 0.3s ease;
}

.hf-accordion__trigger[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.hf-accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.hf-accordion__item--active .hf-accordion__content {
	max-height: 1000px;
	padding: 0 1.25rem 1.25rem;
}

.hf-accordion__content p,
.hf-accordion__content ul,
.hf-accordion__content ol {
	color: #94a3b8;
	line-height: 1.7;
}

.hf-accordion__content ul,
.hf-accordion__content ol {
	margin: 0.75rem 0;
	padding-left: 1.5rem;
}

.hf-accordion__content li {
	margin-bottom: 0.5rem;
}

.hf-accordion__content a {
	color: #22d3ee;
}

/* FAQ */
.hf-faq-category {
	margin-bottom: 2.5rem;
}

.hf-faq-category__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #f1f5f9;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hf-faq-category__title svg {
	color: #22d3ee;
}

.hf-faq-search {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.hf-faq-search__input {
	width: 100%;
	padding: 1rem 1.25rem 1rem 3rem;
	background: #0f2847;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9999px;
	color: #f1f5f9;
	font-size: 1rem;
}

.hf-faq-search__input:focus {
	outline: none;
	border-color: #22d3ee;
	box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.hf-faq-search__icon {
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
}

/* Contact Cards */
.hf-contact-card {
	background: #0a1628;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.hf-contact-card:hover {
	border-color: #22d3ee;
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.hf-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(37, 99, 235, 0.2));
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.hf-contact-card__icon svg {
	color: #22d3ee;
}

.hf-contact-card__title {
	color: #f1f5f9;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.hf-contact-card__text {
	color: #94a3b8;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.hf-contact-card__link {
	color: #22d3ee;
	font-weight: 500;
	display: block;
	margin-bottom: 0.5rem;
}

.hf-contact-card__note {
	color: #64748b;
	font-size: 0.75rem;
}

/* Legal Content */
.hf-legal-content {
	line-height: 1.7;
}

.hf-legal-content p {
	margin-bottom: 1rem;
	color: #94a3b8;
}

.hf-legal-content ul,
.hf-legal-content ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.hf-legal-content li {
	margin-bottom: 0.5rem;
	color: #94a3b8;
}

.hf-legal-content a {
	color: #22d3ee;
}
