/*!
 * HostWebo Theme - Additional Styles & Fixes
 * @package HostWebo
 * @version 1.0.1
 */

/* ===================================
   PLAN FINDER WIDGET STYLES
   =================================== */

.hostwebo-plan-finder {
	position: relative;
	width: 100%;
	max-width: 28rem;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}

.hostwebo-plan-finder h3 {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.25rem;
	color: #ffffff;
}

.hostwebo-plan-finder > p {
	text-align: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
}

.finder-step {
	margin-top: 1.5rem;
}

.finder-step label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.5rem;
}

.finder-step select {
	display: block;
	width: 100%;
	padding: 0.625rem 0.75rem;
	margin-top: 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.5rem;
	background-color: #0f1027;
	color: #ffffff;
	font-size: 0.875rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
}

.finder-step select:focus {
	outline: none;
	border-color: #818CF8;
	ring: 2px;
	ring-color: #818CF8;
	box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.finder-step select option {
	background-color: #0f1027;
	color: #ffffff;
	padding: 0.5rem;
}

.finder-step button {
	width: 100%;
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
}

.finder-step .finder-next,
.finder-step .finder-calculate {
	background: linear-gradient(90deg, #5143D9 0%, #818CF8 100%);
	color: #ffffff;
}

.finder-step .finder-next:hover,
.finder-step .finder-calculate:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.finder-step .finder-back,
.finder-step .finder-reset {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.9);
}

.finder-step .finder-back:hover,
.finder-step .finder-reset:hover {
	background: rgba(255, 255, 255, 0.1);
}

.finder-result {
	text-align: center;
}

.finder-result p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
}

.finder-result .result-plan-name {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0.5rem 0;
	background: linear-gradient(90deg, #ffffff 0%, #c7d2fe 50%, #f0abfc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.finder-result .result-plan-description {
	min-height: 3rem;
	margin: 1rem 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
}

/* ===================================
   PRICING FEATURES INCLUDE/EXCLUDE
   =================================== */

.hostwebo-price-feature.feature-excluded {
	opacity: 0.5;
}

.hostwebo-price-feature.feature-excluded svg {
	color: rgba(251, 113, 133, 0.8);
}

.hostwebo-price-feature.feature-excluded span {
	text-decoration: line-through;
	opacity: 0.7;
}

/* ===================================
   PRICE CARD BORDER ANIMATION FIX
   =================================== */

.hostwebo-price-card-featured {
	position: relative;
	padding: 2px;
	background: linear-gradient(
		90deg,
		#818CF8 0%,
		#c084fc 25%,
		#f472b6 50%,
		#c084fc 75%,
		#818CF8 100%
	);
	background-size: 400% 400%;
	animation: gradient-flow 4s ease infinite;
	border-radius: 1.5rem;
}

.hostwebo-price-card-featured .hostwebo-price-card-inner {
	position: relative;
	padding: 1.5rem;
	border-radius: 1.375rem;
	background: linear-gradient(180deg, #161730 0%, #0f1027 100%);
	width: 100%;
	height: 100%;
}

@keyframes gradient-flow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* ===================================
   DOMAIN SEARCH SECTION STYLES - REDESIGNED
   =================================== */

/* Domain Hero Section */
.hostwebo-domain-hero {
	padding: 4rem 0 5rem;
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.hostwebo-domain-hero {
		padding: 6rem 0 7rem;
	}
}

@media (min-width: 1024px) {
	.hostwebo-domain-hero {
		padding: 8rem 0 9rem;
	}
}

/* Domain Search Container */
.hostwebo-domain-search {
	position: relative;
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

/* Domain Search Header */
.hostwebo-domain-search-header {
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.hostwebo-domain-search-header {
		margin-bottom: 4rem;
	}
}

.hostwebo-domain-search h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.025em;
}

@media (min-width: 640px) {
	.hostwebo-domain-search h1 {
		font-size: 2.75rem;
	}
}

@media (min-width: 768px) {
	.hostwebo-domain-search h1 {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.hostwebo-domain-search h1 {
		font-size: 4rem;
	}
}

.hostwebo-domain-search h1 .gradient-text {
	background: linear-gradient(135deg, #818CF8 0%, #c084fc 50%, #f0abfc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.hostwebo-domain-subtitle {
	max-width: 38rem;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.85;
	color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
	.hostwebo-domain-subtitle {
		font-size: 1.125rem;
	}
}

/* Domain Search Box */
.hostwebo-domain-search-box {
	margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
	.hostwebo-domain-search-box {
		margin-bottom: 4rem;
	}
}

.hostwebo-domain-search-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 48rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.hostwebo-domain-search-form {
		flex-direction: row;
		gap: 1rem;
	}
}

.hostwebo-search-input-wrapper {
	position: relative;
	flex: 1;
}

.hostwebo-search-icon {
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.4);
	pointer-events: none;
	z-index: 1;
}

.hostwebo-domain-search-form input[type="text"] {
	width: 100%;
	padding: 1rem 1.25rem 1rem 3.25rem;
	border-radius: 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 16, 39, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 400;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
	.hostwebo-domain-search-form input[type="text"] {
		padding: 1.125rem 1.5rem 1.125rem 3.5rem;
		font-size: 1.0625rem;
	}
}

.hostwebo-domain-search-form input[type="text"]:focus {
	outline: none;
	border-color: #818CF8;
	background: rgba(15, 16, 39, 0.95);
	box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.15), 0 8px 30px rgba(129, 140, 248, 0.2);
	transform: translateY(-2px);
}

.hostwebo-domain-search-form input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.hostwebo-search-button {
	padding: 1rem 2rem;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, #5143D9 0%, #818CF8 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	box-shadow: 0 8px 30px rgba(81, 67, 217, 0.4);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.hostwebo-search-button {
		padding: 1.125rem 2.5rem;
	}
}

.hostwebo-search-button svg {
	transition: transform 0.3s ease;
}

.hostwebo-search-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(81, 67, 217, 0.5);
	background: linear-gradient(135deg, #6355e6 0%, #9198fb 100%);
}

.hostwebo-search-button:hover svg {
	transform: translateX(3px);
}

.hostwebo-search-button:active {
	transform: translateY(0);
}

.hostwebo-search-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Domain Prices Grid */
.hostwebo-domain-prices-grid {
	margin-bottom: 3rem;
}

.hostwebo-prices-label {
	font-size: 0.875rem;
	font-weight: 500;
	opacity: 0.7;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hostwebo-domain-prices-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.875rem;
	max-width: 48rem;
	margin: 0 auto;
}

@media (min-width: 480px) {
	.hostwebo-domain-prices-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

@media (min-width: 768px) {
	.hostwebo-domain-prices-cards {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

@media (min-width: 1024px) {
	.hostwebo-domain-prices-cards {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

.hostwebo-domain-price-card {
	position: relative;
	padding: 1.25rem 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
}

@media (min-width: 768px) {
	.hostwebo-domain-price-card {
		padding: 1.5rem 1.25rem;
	}
}

.hostwebo-domain-price-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(129, 140, 248, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.hostwebo-domain-price-card:hover {
	transform: translateY(-4px);
	border-color: rgba(129, 140, 248, 0.4);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 40px rgba(129, 140, 248, 0.2);
}

.hostwebo-domain-price-card:hover::before {
	opacity: 1;
}

.hostwebo-domain-price-card.popular {
	border: 2px solid rgba(129, 140, 248, 0.5);
	background: rgba(129, 140, 248, 0.08);
	box-shadow: 0 8px 30px rgba(129, 140, 248, 0.15);
}

.hostwebo-domain-price-card.popular:hover {
	border-color: rgba(129, 140, 248, 0.7);
	box-shadow: 0 16px 50px rgba(129, 140, 248, 0.3);
}

.popular-badge {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, #818CF8 0%, #6366f1 100%);
	color: #ffffff;
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 1;
}

.domain-ext {
	position: relative;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
	z-index: 1;
}

@media (min-width: 768px) {
	.domain-ext {
		font-size: 1.75rem;
	}
}

.domain-price-info {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	z-index: 1;
}

.domain-price {
	font-size: 1.125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
	.domain-price {
		font-size: 1.25rem;
	}
}

.domain-period {
	font-size: 0.75rem;
	opacity: 0.7;
	font-weight: 400;
}

/* Domain Features */
.hostwebo-domain-features {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	align-items: center;
	justify-content: center;
	max-width: 48rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hostwebo-domain-features {
		flex-direction: row;
		gap: 2rem;
	}
}

@media (min-width: 768px) {
	.hostwebo-domain-features {
		gap: 2.5rem;
	}
}

.domain-feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	opacity: 0.8;
	color: rgba(255, 255, 255, 0.9);
}

.domain-feature-item svg {
	color: #34d399;
	flex-shrink: 0;
}

/* Domain Search Results */
.hostwebo-domain-result {
	margin-top: 2rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	animation: slideIn 0.4s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 640px) {
	.hostwebo-domain-result {
		flex-direction: row;
		justify-content: space-between;
		padding: 2rem;
	}
}

.hostwebo-domain-result-available {
	border: 2px solid rgba(52, 211, 153, 0.4);
	background: rgba(52, 211, 153, 0.08);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}

.hostwebo-domain-result-unavailable {
	border: 2px solid rgba(251, 113, 133, 0.4);
	background: rgba(251, 113, 133, 0.08);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}

.hostwebo-domain-result .result-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.hostwebo-domain-result .result-icon {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.hostwebo-domain-result-available .result-icon {
	color: #34d399;
}

.hostwebo-domain-result-unavailable .result-icon {
	color: #fb7185;
}

.hostwebo-domain-result p {
	margin: 0;
	font-size: 1rem;
	text-align: left;
}

@media (min-width: 768px) {
	.hostwebo-domain-result p {
		font-size: 1.0625rem;
	}
}

.hostwebo-domain-result strong {
	font-weight: 700;
	color: #ffffff;
}

.hostwebo-domain-result a {
	flex-shrink: 0;
	padding: 0.75rem 1.75rem;
	border-radius: 1rem;
	font-weight: 600;
	font-size: 0.9375rem;
	text-align: center;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.hostwebo-domain-result-available a {
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
	color: #0f1027;
	box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.hostwebo-domain-result-available a:hover {
	background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
}

/* Domain Result Transition */
.hostwebo-domain-result {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Spin Animation for Loading */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* ===================================
   UPMIND WIDGET INTEGRATION
   =================================== */

.hostwebo-upmind-widget-wrapper {
	width: 100%;
	max-width: 48rem;
	margin: 0 auto;
}

/* Override UPMIND Widget Styles */
upm-dac {
	display: block;
	width: 100%;
}

/* UPMIND Form Styles */
upm-dac .upm-dac-search-form,
upm-dac form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	upm-dac .upm-dac-search-form,
	upm-dac form {
		flex-direction: row;
	}
}

/* UPMIND Input */
upm-dac input[type="text"],
upm-dac input[type="search"] {
	flex: 1;
	padding: 1rem 1.25rem 1rem 3.25rem !important;
	border-radius: 1.25rem !important;
	border: 2px solid rgba(255, 255, 255, 0.1) !important;
	background: rgba(15, 16, 39, 0.8) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #ffffff !important;
	font-size: 1rem !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

@media (min-width: 768px) {
	upm-dac input[type="text"],
	upm-dac input[type="search"] {
		padding: 1.125rem 1.5rem 1.125rem 3.5rem !important;
		font-size: 1.0625rem !important;
	}
}

upm-dac input[type="text"]:focus,
upm-dac input[type="search"]:focus {
	outline: none !important;
	border-color: #818CF8 !important;
	background: rgba(15, 16, 39, 0.95) !important;
	box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.15), 0 8px 30px rgba(129, 140, 248, 0.2) !important;
	transform: translateY(-2px);
}

/* UPMIND Button */
upm-dac button[type="submit"],
upm-dac .upm-dac-search-button {
	padding: 1rem 2rem !important;
	border-radius: 1.25rem !important;
	background: linear-gradient(135deg, #5143D9 0%, #818CF8 100%) !important;
	color: #ffffff !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	border: none !important;
	cursor: pointer !important;
	box-shadow: 0 8px 30px rgba(81, 67, 217, 0.4) !important;
	transition: all 0.3s ease !important;
	white-space: nowrap !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

@media (min-width: 768px) {
	upm-dac button[type="submit"],
	upm-dac .upm-dac-search-button {
		padding: 1.125rem 2.5rem !important;
	}
}

upm-dac button[type="submit"]:hover,
upm-dac .upm-dac-search-button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 12px 40px rgba(81, 67, 217, 0.5) !important;
	background: linear-gradient(135deg, #6355e6 0%, #9198fb 100%) !important;
}

/* UPMIND Results */
upm-dac .upm-dac-results,
upm-dac .results-container {
	margin-top: 2rem;
	border-radius: 1.25rem;
	overflow: hidden;
}

upm-dac .upm-dac-result-item,
upm-dac .result-item {
	padding: 1.25rem 1.5rem;
	border-radius: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

upm-dac .upm-dac-result-item:hover,
upm-dac .result-item:hover {
	border-color: rgba(129, 140, 248, 0.4);
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(129, 140, 248, 0.15);
}

/* Available Domain */
upm-dac .upm-dac-available,
upm-dac .available {
	border-color: rgba(52, 211, 153, 0.4) !important;
	background: rgba(52, 211, 153, 0.08) !important;
}

/* Unavailable Domain */
upm-dac .upm-dac-unavailable,
upm-dac .unavailable {
	border-color: rgba(251, 113, 133, 0.4) !important;
	background: rgba(251, 113, 133, 0.08) !important;
	opacity: 0.7;
}

/* UPMIND Domain Name */
upm-dac .domain-name,
upm-dac .upm-dac-domain {
	font-size: 1.125rem;
	font-weight: 700;
	color: #ffffff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* UPMIND Price */
upm-dac .domain-price,
upm-dac .upm-dac-price {
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* UPMIND Add to Cart Button */
upm-dac .add-to-cart,
upm-dac .upm-dac-add-cart,
upm-dac button:not([type="submit"]) {
	padding: 0.75rem 1.75rem !important;
	border-radius: 1rem !important;
	background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
	color: #0f1027 !important;
	font-weight: 600 !important;
	font-size: 0.9375rem !important;
	border: none !important;
	cursor: pointer !important;
	box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3) !important;
	transition: all 0.3s ease !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

upm-dac .add-to-cart:hover,
upm-dac .upm-dac-add-cart:hover,
upm-dac button:not([type="submit"]):hover {
	background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4) !important;
}

/* UPMIND Loading Spinner */
upm-dac .loading,
upm-dac .spinner {
	color: #818CF8 !important;
}

/* UPMIND Extensions Grid */
upm-dac .extensions-grid,
upm-dac .tlds-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.875rem;
	margin-top: 1.5rem;
}

@media (min-width: 480px) {
	upm-dac .extensions-grid,
	upm-dac .tlds-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	upm-dac .extensions-grid,
	upm-dac .tlds-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

/* UPMIND Text Colors */
upm-dac,
upm-dac * {
	color: rgba(255, 255, 255, 0.9) !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* UPMIND Links */
upm-dac a {
	color: #818CF8 !important;
	text-decoration: none !important;
	transition: opacity 0.2s ease !important;
}

upm-dac a:hover {
	opacity: 0.8 !important;
}

/* ===================================
   DOMAIN BENEFITS SECTION
   =================================== */

.hostwebo-domain-benefits {
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hostwebo-benefit-card {
	text-align: center;
	padding: 2rem 1.5rem;
}

.hostwebo-benefit-card .hostwebo-card-icon {
	margin: 0 auto 1.25rem;
}

.hostwebo-benefit-card .hostwebo-card-title {
	margin-bottom: 0.75rem;
}

.hostwebo-domain-cta {
	margin-top: 3rem;
	padding: 2.5rem 2rem;
	border-radius: 1.5rem;
	background: linear-gradient(135deg, rgba(81, 67, 217, 0.1) 0%, rgba(129, 140, 248, 0.1) 100%);
	border: 1px solid rgba(129, 140, 248, 0.2);
	text-align: center;
}

@media (min-width: 768px) {
	.hostwebo-domain-cta {
		padding: 3rem 2rem;
	}
}

.hostwebo-domain-cta-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.hostwebo-domain-cta-content h3 {
		font-size: 1.875rem;
	}
}

.hostwebo-domain-cta-content p {
	max-width: 42rem;
	margin: 0 auto 1.5rem;
	opacity: 0.85;
}

.hostwebo-domain-cta-content .hostwebo-button-secondary {
	display: inline-block;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.hostwebo-contact {
	padding: 2rem 0;
}

.contact-content {
	margin-top: 2rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-method {
	padding: 1.5rem;
}

.contact-method .hostwebo-card-icon {
	margin-bottom: 1rem;
}

.contact-method h3 {
	margin-bottom: 0.5rem;
}

.contact-method a {
	color: #818CF8;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.contact-method a:hover {
	opacity: 0.8;
}

.contact-form-wrapper {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}

.hostwebo-contact-form .form-group {
	margin-bottom: 1.5rem;
}

.hostwebo-contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.hostwebo-contact-form input[type="text"],
.hostwebo-contact-form input[type="email"],
.hostwebo-contact-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.5rem;
	background-color: #0f1027;
	color: #ffffff;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s ease;
}

.hostwebo-contact-form input[type="text"]:focus,
.hostwebo-contact-form input[type="email"]:focus,
.hostwebo-contact-form textarea:focus {
	outline: none;
	border-color: #818CF8;
	box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.hostwebo-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.hostwebo-contact-form button[type="submit"] {
	width: 100%;
	padding: 0.875rem 1.5rem;
	margin-top: 0.5rem;
}

/* ===================================
   RESPONSIVE IMPROVEMENTS
   =================================== */

/* Mobile Menu Improvements */
@media (max-width: 767px) {
	.hostwebo-mobile-menu.active {
		animation: slideDown 0.3s ease-out;
	}

	.hostwebo-mobile-menu ul {
		padding: 1rem;
	}

	.hostwebo-mobile-menu li {
		margin: 0.25rem 0;
	}

	.hostwebo-mobile-menu a:not(.hostwebo-header-link):not(.hostwebo-header-cta) {
		display: block;
		padding: 0.75rem 1rem;
	}

	.hostwebo-mobile-cta {
		margin-top: 1rem;
		padding: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.hostwebo-mobile-cta .hostwebo-header-link,
	.hostwebo-mobile-cta .hostwebo-header-cta {
		display: block;
		text-align: center;
	}
}

/* Header CTA Buttons */
.hostwebo-header-actions {
	display: none;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}

@media (min-width: 768px) {
	.hostwebo-header-actions {
		display: flex;
	}
}

.hostwebo-header-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hostwebo-header-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.hostwebo-header-cta {
	display: inline-block;
	padding: 0.625rem 1.5rem;
	background: linear-gradient(90deg, #5143D9 0%, #818CF8 100%);
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: 0.75rem;
	box-shadow: 0 4px 14px rgba(81, 67, 217, 0.4);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hostwebo-header-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(81, 67, 217, 0.5);
	opacity: 0.95;
}

/* Header Responsive */
.hostwebo-header {
	position: sticky;
	top: 0;
	z-index: 50;
}

.hostwebo-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

@media (min-width: 768px) {
	.hostwebo-nav-menu {
		display: flex !important;
	}

	.hostwebo-menu-toggle {
		display: none !important;
	}
}

/* Team Section Responsive */
.hostwebo-team-member {
	text-align: center;
}

.hostwebo-team-member .team-avatar {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.1);
	margin: 0 auto 1rem;
	object-fit: cover;
}

.hostwebo-team-member h4 {
	margin: 1rem 0 0.25rem;
	font-weight: 600;
}

.hostwebo-team-member .team-role {
	font-size: 0.875rem;
	opacity: 0.7;
	margin: 0;
}

/* Documentation Page */
.hostwebo-documentation {
	padding: 2rem 0;
}

.doc-categories {
	margin-bottom: 3rem;
}

.doc-category-card .doc-count {
	display: block;
	margin-top: 1rem;
	font-size: 0.875rem;
	opacity: 0.7;
}

.recent-docs {
	margin-top: 3rem;
}

.recent-docs h2 {
	font-size: 1.875rem;
	margin-bottom: 1.5rem;
}

.doc-card .read-more {
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
	color: #818CF8;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.doc-card .read-more:hover {
	opacity: 0.8;
}

/* Page Header Component */
.hostwebo-page-header {
	padding: 4rem 0 3rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(81, 67, 217, 0.1) 0%, transparent 100%);
}

.hostwebo-page-header .page-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.hostwebo-page-header .page-title {
		font-size: 3rem;
	}
}

.hostwebo-page-header .page-subtitle {
	max-width: 42rem;
	margin: 0 auto;
	font-size: 1.125rem;
	opacity: 0.8;
}
