/* ===== Base layout (merged from app.css) ===== */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #0f1419;
	color: #496174;
	margin: 0;
	min-height: 100vh;
}

.site-header {
	background: rgba(15, 20, 25, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
}

.brand {
	color: #f4f5f7;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.1rem;
}

.site-nav {
	display: flex;
	gap: 1rem;
}

.site-nav-link {
	color: #9cb3c9;
	text-decoration: none;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	transition: background 0.2s ease;
}

.site-nav-link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #f4f5f7;
}

.site-nav-link.is-active {
	background: rgba(29, 161, 242, 0.15);
	color: #1da1f2;
}

.main-content {
	width: 100%;
	max-width: 560px;
	margin: 4rem auto;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(16px);
}

.auth-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.auth-title {
	text-align: center;
	font-size: 2rem;
	margin: 0;
}

.auth-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.auth-form label {
	font-weight: 600;
	color: #9cb3c9;
}

.auth-form input[type='text'],
.auth-form input[type='password'] {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(15, 20, 25, 0.8);
	color: #f4f5f7;
}

.auth-form input[type='text']:focus,
.auth-form input[type='password']:focus {
	border-color: #1da1f2;
	outline: none;
	box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.2);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #1da1f2, #0d8bf2);
	color: #fff;
	width: 100%;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(29, 161, 242, 0.35);
}

.form-error {
	color: #ff6b6b;
	font-size: 0.875rem;
}

.form-help {
	color: #9cb3c9;
	font-size: 0.85rem;
	margin: 0;
}

.message-container {
	max-width: 420px;
	margin: 1rem auto 0;
	padding: 0 2rem;
}

.message {
	padding: 0.75rem 1rem;
	border-radius: 12px;
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.message-success {
	background: rgba(46, 204, 113, 0.15);
	color: #2ecc71;
}

.message-error {
	background: rgba(231, 76, 60, 0.15);
	color: #e74c3c;
}

.dashboard {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.dashboard h1 {
	margin: 0;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.stat {
	padding: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	text-align: center;
}

.stat-label {
	display: block;
	font-size: 0.85rem;
	color: #9cb3c9;
}

.stat-value {
	font-size: 1.4rem;
	font-weight: 700;
}

.tool-grid {
	display: grid;
	gap: 1rem;
}

.tool-card {
	display: block;
	padding: 1.25rem;
	border-radius: 16px;
	background: rgba(29, 161, 242, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.tool-title {
	display: block;
	font-weight: 700;
}

.tool-description {
	display: block;
	margin-top: 0.35rem;
	color: #9cb3c9;
	font-size: 0.95rem;
}

.profile-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.profile-header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.profile-header.compact {
	align-items: center;
}

.avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-meta h1 {
	margin: 0;
	font-size: 1.8rem;
}

.profile-meta .subtitle {
	margin: 0.5rem 0;
	color: #9cb3c9;
}

.profile-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1rem 0;
}

.profile-stats span {
	color: #9cb3c9;
	font-size: 0.95rem;
}

.relationship {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.badge {
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(29, 161, 242, 0.15);
	color: #1da1f2;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.badge-warn {
	background: rgba(231, 76, 60, 0.2);
	color: #e74c3c;
}

.bio {
	white-space: pre-line;
	margin-bottom: 1rem;
}

.profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn-link {
	color: #1da1f2;
	text-decoration: none;
	font-weight: 600;
}

.btn-link:hover {
	text-decoration: underline;
}

.media-section h2,
.connection-section h2 {
	margin: 0 0 1rem 0;
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
}

.media-card {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	min-height: 140px;
}

.media-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #9cb3c9;
}

.media-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
	font-size: 0.85rem;
}

.media-link {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	text-indent: -9999px;
}

.empty-state {
	text-align: center;
	color: #9cb3c9;
	margin: 2rem 0;
}

.connection-section {
	margin-top: 2rem;
}

.connection-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.connection-item a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	text-decoration: none;
	color: inherit;
}

.connection-item img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.18);
}

.connection-item strong {
	display: block;
	font-size: 1rem;
}

.connection-item span {
	color: #9cb3c9;
	font-size: 0.85rem;
}

.tool-page {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tool-intro {
	color: #9cb3c9;
	margin: 0;
}

.tool-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.tool-form .form-group:last-of-type {
	margin-bottom: 2rem;
}

.tool-form input[type='text'] {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(15, 20, 25, 0.8);
	color: #f4f5f7;
}

.tool-form textarea {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(15, 20, 25, 0.8);
	color: #f4f5f7;
	resize: vertical;
}

.tool-form input[type='text']:focus {
	border-color: #1da1f2;
	outline: none;
	box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.2);
}

.tool-form textarea:focus {
	border-color: #1da1f2;
	outline: none;
	box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.2);
}

.form-label {
	font-weight: 600;
	color: #9cb3c9;
}

.radio-group {
	display: flex;
	gap: 1rem;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 500;
}

.tool-result {
	padding: 1.5rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.tool-links {
	margin-top: 1rem;
}

.tool-result h2 {
	margin-top: 0;
}

.result-user {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.result-user img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.18);
}

.result-meta {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.result-username {
	font-weight: 700;
	font-size: 1.1rem;
}

.result-name {
	color: #9cb3c9;
	font-size: 0.95rem;
}

.result-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	margin: 0;
}

.result-details div {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 0.75rem 1rem;
}

.result-details dt {
	margin: 0;
	color: #9cb3c9;
	font-size: 0.85rem;
}

.result-details dd {
	margin: 0.25rem 0 0;
	font-weight: 600;
}

.story-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.story-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
	display: flex;
	flex-direction: column;
}

.story-card img,
.story-card video {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.story-card video {
	background: #000;
}

.story-meta {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.75rem 1rem 1rem;
}

.story-time,
.story-expiry {
	color: #9cb3c9;
	font-size: 0.85rem;
}

.location-summary {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.location-avatar {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.18);
}

.location-meta {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.location-name {
	font-weight: 700;
	font-size: 1.15rem;
}

.location-address,
.location-city,
.location-category {
	color: #9cb3c9;
	font-size: 0.9rem;
}

.location-switcher {
	margin-top: 2rem;
}

.location-list {
	display: grid;
	gap: 0.75rem;
}

.location-option {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	padding: 0.85rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.location-option input {
	display: none;
}

.location-button {
	background: none;
	border: none;
	color: #1da1f2;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	padding: 0;
}

.location-button:hover {
	text-decoration: underline;
}

.location-button.is-active {
	color: #f4f5f7;
}

.location-sub {
	color: #9cb3c9;
	font-size: 0.85rem;
}

/* ===== Modern Navbar Styling ===== */
.main-navbar {
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	min-height: 75px;
	transition: all 0.3s ease;
}

.main-navbar .navbar-header {
	float: left;
	display: flex;
	align-items: center;
}

.main-navbar .navbar-brand {
	padding: 14px 24px 14px 15px;
	height: 75px;
	display: flex;
	align-items: center;
	transition: transform 0.2s ease;
	float: none;
}

.main-navbar .navbar-brand:hover {
	transform: scale(1.05);
}

.main-navbar .navbar-brand img {
	max-height: 48px;
	filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.main-navbar .navbar-collapse {
	border: none;
}

.main-navbar .navbar-nav {
	margin: 0;
	float: left;
}

.main-navbar .navbar-nav > li {
	float: left;
}

.main-navbar .navbar-nav > li > a {
	font-weight: 600;
	letter-spacing: 0.3px;
	color: rgba(255, 255, 255, 0.85);
	padding: 27px 18px;
	border-radius: 0;
	transition: all 0.2s ease;
	font-size: 15px;
	line-height: 21px;
	position: relative;
}

.main-navbar .navbar-nav > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 80%;
	height: 3px;
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	border-radius: 3px 3px 0 0;
	transition: transform 0.2s ease;
}

.main-navbar .navbar-nav > li.active > a::after,
.main-navbar .navbar-nav > li > a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.main-navbar .navbar-nav > li.active > a,
.main-navbar .navbar-nav > li > a:focus,
.main-navbar .navbar-nav > li > a:hover {
	color: #ffffff !important;
	background: transparent !important;
}

.main-navbar .navbar-right {
	float: right !important;
	margin-right: 0;
}

.main-navbar .navbar-cta {
	float: right;
	margin: 0;
	display: flex;
	align-items: center;
	height: 75px;
}

.main-navbar .navbar-cta > li {
	float: left;
	margin-left: 10px;
	display: flex;
	align-items: center;
}

button > i {
	margin-right: 6px;
}

.main-navbar .navbar-cta > li > a > i,
.main-navbar .navbar-cta > li > button > i {
	margin-right: 7px;
}

p > a > i {
	margin-right: 6px;
}

.main-navbar .navbar-cta .btn {
	margin: 0;
	padding: 12px 24px;
	height: auto;
	line-height: 1.5;
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: all 0.2s ease;
	border: none;
	white-space: nowrap;
}

.main-navbar .navbar-cta .btn-primary {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.main-navbar .navbar-cta .btn-primary:hover {
	background: linear-gradient(135deg, #1d4ed8, #2563eb);
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
	transform: translateY(-2px);
	color: #ffffff;
}

.main-navbar .navbar-cta .btn-warning {
	background: linear-gradient(135deg, #f59e0b, #fbbf24);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.main-navbar .navbar-cta .btn-warning:hover {
	background: linear-gradient(135deg, #d97706, #f59e0b);
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
	transform: translateY(-2px);
	color: #ffffff;
}

.main-navbar .navbar-cta .btn-default {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-navbar .navbar-cta .btn-default:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main-navbar .navbar-cta .navbar-lang-btn i {
	margin-right: 8px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	transition: color 0.2s ease;
}

.main-navbar .navbar-cta .navbar-lang-btn:hover i {
	color: #ffffff;
}

.main-navbar .navbar-cta .dropdown-menu {
	background: rgba(15, 23, 42, 0.98);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
	padding: 8px;
	margin-top: 8px;
	min-width: 160px;
	right: 0;
	left: auto;
}

.main-navbar .navbar-cta .dropdown-menu li {
	margin: 0;
}

.main-navbar .navbar-cta .dropdown-menu .btn-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.2s ease;
}

.main-navbar .navbar-cta .dropdown-menu .btn-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.main-navbar .navbar-toggle {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 9px 11px;
	margin: 22px 0;
	background: rgba(255, 255, 255, 0.05);
	float: right;
}

.main-navbar .navbar-toggle:hover,
.main-navbar .navbar-toggle:focus {
	background: rgba(255, 255, 255, 0.12);
}

.main-navbar .navbar-toggle .icon-bar {
	background-color: #ffffff;
	border-radius: 2px;
	height: 3px;
}

@media (min-width: 768px) {
	.main-navbar .container {
		display: flex;
		align-items: center;
	}

	.main-navbar .navbar-header,
	.main-navbar .navbar-collapse {
		float: none;
	}

	.main-navbar .navbar-collapse {
		display: flex !important;
		align-items: center;
		justify-content: flex-start;
		flex: 1 1 auto;
		width: 100%;
	}

	.main-navbar .navbar-nav {
		float: none;
		display: flex;
		align-items: center;
		margin: 0;
	}

	.main-navbar .navbar-nav > li,
	.main-navbar .navbar-cta > li {
		float: none;
	}

	.main-navbar .navbar-cta {
		float: none;
		margin-left: auto;
		display: flex;
		align-items: center;
		height: 75px;
	}
}

/* Mobile Styles - Optimized for mobile users */
@media (max-width: 767px) {
	.main-navbar {
		min-height: 65px;
	}

	.main-navbar .navbar-brand {
		height: 65px;
		padding: 12px 15px 12px 15px;
	}

	.main-navbar .navbar-brand img {
		max-height: 42px;
	}

	.main-navbar .navbar-toggle {
		margin: 17px 0;
		padding: 10px 12px;
	}

	.main-navbar .navbar-collapse {
		border: none;
		box-shadow: none;
		margin-top: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 10px 15px 18px;
		background: rgba(15, 23, 42, 0.98);
		border-radius: 0 0 18px 18px;
		gap: 12px;
	}

	.main-navbar .navbar-collapse.collapse.in,
	.main-navbar .navbar-collapse.collapsing {
		display: flex !important;
	}

	.main-navbar .navbar-nav {
		margin: 0;
		float: none;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	.main-navbar .navbar-nav > li {
		float: none;
	}

	.main-navbar .navbar-nav > li > a {
		padding: 14px 18px;
		margin: 0;
		border-radius: 10px;
		font-size: 16px;
		line-height: 1.5;
		display: flex;
		align-items: center;
	}

	.main-navbar .navbar-nav > li > a::after {
		display: none;
	}

	.main-navbar .navbar-nav > li.active > a,
	.main-navbar .navbar-nav > li > a:hover {
		background: rgba(255, 255, 255, 0.1) !important;
	}

	.main-navbar .navbar-cta {
		float: none;
		margin: 0;
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding-top: 10px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.main-navbar .navbar-cta > li {
		float: none;
		margin: 0;
		display: block;
	}

	.main-navbar .navbar-cta .btn {
		width: 100%;
		justify-content: center;
		padding: 15px 18px;
		margin: 0;
		font-size: 16px;
		gap: 8px;
	}

	.main-navbar .navbar-cta .dropdown {
		width: 100%;
	}

	.main-navbar .navbar-cta .dropdown .btn {
		width: 100%;
		padding: 16px 20px;
	}

	.main-navbar .navbar-cta .dropdown-menu {
		width: 100%;
		position: static;
		float: none;
		margin-top: 8px;
		border-radius: 10px;
	}

	.main-navbar .navbar-cta .dropdown-menu .btn-link {
		padding: 14px 20px;
		font-size: 15px;
		width: 100%;
	}
}

.footer-one {
	padding-top: 70px;
	background: #0f1419;
}

.footer-one .footer-logo img {
	max-width: 180px;
}

.footer-one .footer-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 18px;
}

.footer-one .footer-links li {
	margin-bottom: 8px;
}

.footer-one .footer-links a {
	color: #eeeeee;
	transition: color 0.2s ease;
}

.footer-one .footer-links a:hover {
	color: #40ff62;
	text-decoration: none;
}

.footer-one .footer-contact {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 8px;
}

.footer-one .footer-contact a {
	color: #40ff62;
}

.footer-bottom {
	margin-top: 40px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #0f1419;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.footer-bottom .footer-links li {
	display: inline-block;
	margin-left: 15px;
}

.footer-bottom .footer-links li:first-child {
	margin-left: 0;
}

@media (max-width: 767px) {
	.footer-bottom {
		text-align: center;
	}

	.footer-bottom .text-right {
		text-align: center;
		margin-top: 15px;
	}
}

/* Tools dashboard */
.tools-dashboard {
	background: #f5f7fb;
	padding: 40px 0 70px;
}

.tools-dashboard .container {
	max-width: 1180px;
}

@media (max-width: 991px) {
	.tools-dashboard {
		padding: 30px 0 50px;
	}
}

.dashboard-hero {
	position: relative;
	padding: 32px;
	border-radius: 20px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 0 24px 45px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}

.dashboard-hero::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	right: -90px;
	top: -120px;
	background: rgba(255, 255, 255, 0.12);
	filter: blur(0.5px);
	border-radius: 50%;
}

.dashboard-hero > * {
	position: relative;
	z-index: 1;
}

.dashboard-hero-header {
	display: flex;
	align-items: center;
	gap: 24px;
}

.dashboard-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.25);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-fallback {
	font-weight: 700;
	font-size: 24px;
}

.dashboard-subtitle {
	margin: 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	opacity: 0.75;
}

.dashboard-title {
	margin: 4px 0 0;
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	opacity: 0.9;
}

.dashboard-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	margin-top: 14px;
	font-size: 13px;
	opacity: 0.85;
}

.dashboard-meta i {
	margin-right: 6px;
}

.dashboard-credit-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.dashboard-credit {
	background: rgba(255, 255, 255, 0.16);
	padding: 16px 18px;
	border-radius: 16px;
	min-width: 160px;
}

.dashboard-credit__label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.7;
}

.dashboard-credit__value {
	display: block;
	margin-top: 6px;
	font-size: 24px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.dashboard-hero {
		padding: 24px;
	}

	.dashboard-hero-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.dashboard-credit-grid {
		flex-direction: column;
	}

	.dashboard-credit {
		width: 100%;
	}
}

.support-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
	margin-top: 24px;
}

@media (min-width: 992px) {
	.support-card {
		margin-top: 0;
	}
}

.support-card__title,
.support-card__subtitle {
	font-weight: 600;
	margin-bottom: 16px;
	color: #1f2937;
}

.support-card__subtitle {
	margin-top: 6px;
}

.support-card__title i,
.support-card__subtitle i {
	margin-right: 8px;
	color: #2563eb;
}

.support-list {
	margin: 0 0 18px;
	padding-left: 18px;
	color: #4b5563;
	list-style: disc;
}

.support-list li {
	margin-bottom: 10px;
}

.support-divider {
	height: 1px;
	background: #e5e7eb;
	margin: 18px 0;
}

.support-text {
	color: #4b5563;
	margin-bottom: 14px;
}

.support-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.support-contact li {
	margin-bottom: 10px;
	color: #1f2937;
}

.support-contact i {
	margin-right: 8px;
	color: #2563eb;
}

.support-contact a {
	color: #2563eb;
}

.tool-card-grid {
	margin-top: 42px;
}

.tool-card-grid .col-sm-6,
.tool-card-grid .col-lg-4 {
	margin-bottom: 26px;
	display: flex;
}

.tool-card-grid .col-sm-6 > a.tool-card,
.tool-card-grid .col-lg-4 > a.tool-card {
	flex: 1 1 auto;
}

.tool-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 18px;
	padding: 26px 24px;
	color: #1f2937;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(15, 23, 42, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
	height: 100%;
}

.tool-card:hover,
.tool-card:focus {
	text-decoration: none;
	transform: translateY(-6px);
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
	border-color: rgba(37, 99, 235, 0.25);
}

.tool-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	font-size: 20px;
	margin-bottom: 20px;
}

.tool-card__icon--follow {
	background: #ecfdf5;
	color: #047857;
}

.tool-card__icon--like {
	background: #fff7ed;
	color: #d97706;
}

.tool-card__icon--comment {
	background: #fef2f2;
	color: #dc2626;
}

.tool-card__icon--story {
	background: #fdf4ff;
	color: #a855f7;
}

.tool-card__icon--hashtag {
	background: #e0f2fe;
	color: #0284c7;
}

.tool-card__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
}

.tool-card__text {
	margin: 0;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
}

.tool-card__body {
	flex: 1 1 auto;
}

.tool-card__footer {
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #6b7280;
}

.tool-card__credit i {
	margin-right: 6px;
}

.tool-card__arrow {
	color: #2563eb;
}

.tool-card__tag {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(239, 68, 68, 0.15);
	color: #b91c1c;
	align-self: flex-start;
}

.tool-card--disabled {
	opacity: 0.45;
	pointer-events: none;
}

.tool-card--disabled .tool-card__icon {
	filter: grayscale(0.3);
}

.tool-card--disabled .tool-card__arrow {
	color: #9ca3af;
}

@media (max-width: 767px) {
	.tool-card {
		padding: 22px;
	}
}

/* Auth pages */
.auth-viewport {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
	padding: 80px 0 110px;
}

.auth-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 16px;
}

.auth-panel {
	width: 100%;
	max-width: 480px;
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 32px;
	box-shadow: 0 28px 60px rgba(15, 23, 42, 0.26);
	color: #0f172a;
}

.auth-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: #1d4ed8;
	font-weight: 600;
	margin-bottom: 18px;
}

.auth-panel__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.auth-panel__subtitle {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.auth-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.auth-form label {
	font-weight: 600;
	color: #1f2937;
}

.auth-form input[type='text'],
.auth-form input[type='password'] {
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	padding: 14px 16px;
	background: #f8fafc;
	font-size: 15px;
	color: #0f172a;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input[type='text']:focus,
.auth-form input[type='password']:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.form-hint {
	font-size: 12px;
	color: #64748b;
}

.form-error {
	color: #dc2626;
	font-size: 13px;
	font-weight: 600;
}

.form-help {
	color: #6b7280;
	font-size: 13px;
	margin: 0;
}

.form-error--global {
	background: rgba(239, 68, 68, 0.12);
	border-radius: 12px;
	padding: 12px 16px;
	color: #b91c1c;
	font-weight: 600;
}

.btn-primary--wide {
	width: 100%;
	margin-top: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 14px 18px;
}

.auth-meta {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.auth-security {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 18px;
	border-radius: 16px;
	background: rgba(59, 130, 246, 0.08);
	color: #1e3a8a;
	font-weight: 600;
}

.auth-security i {
	font-size: 20px;
}

.auth-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #1f2937;
}

.auth-benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.auth-support {
	width: 100%;
	max-width: 720px;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr);
	margin: 0 auto;
}

@media (min-width: 640px) {
	.auth-support {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

.auth-support__card {
	background: rgba(15, 23, 42, 0.42);
	border-radius: 20px;
	padding: 28px;
	color: #e2e8f0;
	backdrop-filter: blur(4px);
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
	height: 100%;
}

.auth-support__card h2,
.auth-support__card h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 700;
}

.auth-support__card ul {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auth-support__card li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.auth-support__card a {
	color: #60a5fa;
}

@media (max-width: 767px) {
	.auth-viewport {
		padding: 60px 0 80px;
	}

	.auth-panel {
		padding: 32px 24px;
	}

	.auth-support__card {
		padding: 24px;
	}
}

/* Tool detail pages */
.tool-shell {
	background: #f5f7fb;
	padding: 64px 0 96px;
}

.tool-shell .container {
	max-width: 1160px;
}

.tool-hero {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 36px;
	padding: 32px 36px;
	background: linear-gradient(140deg, #1e293b 0%, #1e3a8a 45%, #312e81 100%);
	color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 24px 52px rgba(15, 23, 42, 0.3);
}

.tool-hero__icon {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.tool-hero__body h1 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.tool-hero__text {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
}

.tool-hero__meta {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	font-size: 13px;
	opacity: 0.9;
}

.tool-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.25);
}

.tool-body {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
	gap: 28px;
}

@media (max-width: 991px) {
	.tool-body {
		grid-template-columns: 1fr;
	}
}

.tool-main {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.tool-pane {
	background: #ffffff;
	border-radius: 24px;
	padding: 30px 32px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.tool-pane__title {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
}

.tool-pane__subtitle {
	margin: -10px 0 26px;
	color: #475569;
	font-size: 15px;
	line-height: 1.6;
}

.tool-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.tool-form label {
	font-weight: 600;
	color: #1f2937;
}

.tool-form input[type='text'],
.tool-form textarea {
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: #f8fafc;
	padding: 14px 16px;
	font-size: 15px;
	color: #0f172a;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.tool-form textarea {
	min-height: 120px;
	resize: vertical;
}

.tool-form input[type='text']:focus,
.tool-form textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.tool-form .radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tool-form .radio-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: #1f2937;
}

.tool-form .btn {
	align-self: flex-start;
	padding: 12px 24px;
	font-weight: 600;
}

.tool-pane--muted {
	background: rgba(15, 23, 42, 0.85);
	color: #e2e8f0;
	box-shadow: none;
	border: 1px solid rgba(148, 163, 184, 0.28);
}

.tool-pane--muted h3,
.tool-pane--muted h4 {
	color: #f8fafc;
}

.tool-pane--result {
	border: 1px solid rgba(37, 99, 235, 0.22);
	box-shadow: 0 24px 64px rgba(37, 99, 235, 0.12);
}

.tool-summary {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.tool-user {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tool-user__avatar {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	overflow: hidden;
	border: 2px solid rgba(37, 99, 235, 0.2);
}

.tool-user__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tool-user__meta {
	display: flex;
	flex-direction: column;
}

.tool-user__username {
	font-weight: 700;
	color: #0f172a;
}

.tool-summary__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.tool-summary__item {
	background: #f8fafc;
	border-radius: 16px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tool-summary__label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
}

.tool-summary__value {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
}

.tool-comment-preview {
	margin-top: 12px;
	padding: 16px 18px;
	border-radius: 16px;
	background: #eef2ff;
	color: #312e81;
	font-weight: 500;
	line-height: 1.6;
}

.tool-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tool-sidebar__card {
	background: rgba(15, 23, 42, 0.9);
	color: rgba(0, 0, 0, 0.8);
	border-radius: 22px;
	padding: 24px;
	box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
	border: 1px solid rgba(148, 163, 184, 0.25);
}

.tool-sidebar__card h3,
.tool-sidebar__card h4 {
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 18px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.9);
}

.tool-sidebar__card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tool-sidebar__card li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.tool-sidebar__card i {
	color: #60a5fa;
}

.tool-sidebar__card a {
	color: #93c5fd;
	font-weight: 600;
}

.tool-links {
	margin-top: 18px;
}

.tool-links .btn-link {
	font-weight: 600;
	color: #2563eb;
}

.media-section {
	margin-top: 36px;
}

.media-section h2 {
	font-size: 20px;
	margin-bottom: 18px;
	font-weight: 700;
	color: #0f172a;
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 18px;
}

.media-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #101b3a;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.media-card img,
.media-card .media-placeholder {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.media-card .media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	background: rgba(15, 23, 42, 0.85);
}

.media-overlay {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: flex;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.65);
	color: #e2e8f0;
	font-weight: 600;
}

.story-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 18px;
}

.story-card {
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
	display: flex;
	flex-direction: column;
}

.story-card img,
.story-card video {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.story-meta {
	padding: 14px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #1f2937;
}

.story-time,
.story-expiry {
	font-size: 13px;
	color: #475569;
}

.location-summary {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}

.location-avatar {
	width: 76px;
	height: 76px;
	border-radius: 22px;
	object-fit: cover;
	border: 2px solid rgba(37, 99, 235, 0.25);
}

.location-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.location-name {
	font-weight: 700;
	font-size: 18px;
	color: #0f172a;
}

.location-address,
.location-city,
.location-category {
	color: #475569;
	font-size: 14px;
}

.location-switcher {
	margin-top: 36px;
	background: #ffffff;
	border-radius: 22px;
	padding: 26px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.location-switcher h2 {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: 700;
}

.location-list {
	display: grid;
	gap: 16px;
}

.location-option {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.location-button {
	border: 1px solid rgba(148, 163, 184, 0.5);
	border-radius: 14px;
	padding: 12px 16px;
	background: #f8fafc;
	font-weight: 600;
	color: #0f172a;
	text-align: left;
	transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.location-button:hover {
	border-color: #2563eb;
	box-shadow: 0 16px 30px rgba(37, 99, 235, 0.18);
	transform: translateY(-2px);
}

.location-button.is-active {
	background: #2563eb;
	color: #ffffff;
	border-color: transparent;
}

.location-sub {
	font-size: 13px;
	color: #475569;
}

@media (max-width: 767px) {
	.tool-shell {
		padding: 48px 0 70px;
	}

	.tool-hero {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
	}

	.tool-pane {
		padding: 26px 24px;
	}

	.tool-sidebar__card {
		padding: 22px;
	}

	.media-card img,
	.media-card .media-placeholder,
	.story-card img,
	.story-card video {
		height: 200px;
	}
}

/* ===== Home Page Styles ===== */
.home-page {
	background: #f5f7fb;
	padding-top: 75px;
}

.home-hero {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #7c3aed 100%);
	padding: 80px 0 100px;
	position: relative;
	overflow: hidden;
	margin-top: -75px;
	padding-top: 155px;
}

.home-hero::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	top: -200px;
	right: -150px;
	filter: blur(100px);
}

.home-hero::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	bottom: -150px;
	left: -100px;
	filter: blur(80px);
}

.home-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.home-hero__title {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.home-hero__subtitle {
	font-size: 24px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

.home-hero__description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 40px;
	line-height: 1.6;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
}

.btn-hero {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: none;
}

.btn-hero:hover {
	transform: translateY(-3px);
	text-decoration: none;
}

.btn-hero.btn-primary {
	background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
	color: #ffffff;
	box-shadow: 0 12px 32px rgba(245, 133, 41, 0.4);
}

.btn-hero.btn-primary:hover {
	box-shadow: 0 16px 40px rgba(245, 133, 41, 0.5);
	color: #ffffff;
}

.btn-hero.btn-secondary {
	background: linear-gradient(135deg, #ff0000, #cc0000);
	color: #ffffff;
	box-shadow: 0 12px 32px rgba(255, 0, 0, 0.3);
}

.btn-hero.btn-secondary:hover {
	box-shadow: 0 16px 40px rgba(255, 0, 0, 0.4);
	color: #ffffff;
}

.btn-hero.btn-accent {
	background: linear-gradient(135deg, #0088cc, #229ed9);
	color: #ffffff;
	box-shadow: 0 12px 32px rgba(0, 136, 204, 0.3);
}

.btn-hero.btn-accent:hover {
	box-shadow: 0 16px 40px rgba(0, 136, 204, 0.4);
	color: #ffffff;
}

.home-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 700px;
	margin: 0 auto 48px;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 20px 28px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-badge i {
	font-size: 28px;
	flex-shrink: 0;
}

.feature-badge--danger i {
	color: #fbbf24;
}

.feature-badge--info i {
	color: #f87171;
}

.feature-badge--warning i {
	color: #a78bfa;
}

.home-share {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-share__message {
	color: rgba(255, 255, 255, 0.9);
	margin: 24px 0 0;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.home-services {
	padding: 80px 0;
	background: #f5f7fb;
}

.service-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 32px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
	border: 1px solid rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 64px rgba(15, 23, 42, 0.15);
}

.service-card__icon {
	text-align: center;
	margin-bottom: 28px;
}

.service-card__icon img {
	width: 150px;
	height: 150px;
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.service-card__title {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 16px;
	text-align: center;
}

.service-card__description {
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

.service-card--featured {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #ffffff;
	border: none;
}

.service-card--featured .service-card__title {
	color: #ffffff;
}

.service-card--featured .service-card__description {
	color: rgba(255, 255, 255, 0.9);
}

.service-card__list {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: #ffffff;
}

.service-card__list li i {
	font-size: 22px;
	color: #60a5fa;
	flex-shrink: 0;
	margin-top: 2px;
}

.service-card__list li div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-card__list li strong {
	font-weight: 700;
	font-size: 17px;
	color: #ffffff;
}

.service-card__list li span {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

@media (max-width: 991px) {
	.home-hero {
		padding: 60px 0 80px;
	}

	.home-hero__title {
		font-size: 36px;
	}

	.home-hero__subtitle {
		font-size: 20px;
	}

	.home-services {
		padding: 60px 0;
	}
}

@media (max-width: 767px) {
	.home-page {
		padding-top: 65px;
	}

	.home-hero {
		padding: 48px 0 60px;
		margin-top: -65px;
		padding-top: 113px;
	}

	.home-hero__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.home-hero__subtitle {
		font-size: 18px;
	}

	.home-hero__description {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.home-hero__actions {
		flex-direction: column;
		width: 100%;
		margin-bottom: 32px;
	}

	.btn-hero {
		width: 100%;
		justify-content: center;
	}

	.feature-badge {
		padding: 16px 20px;
		font-size: 14px;
	}

	.feature-badge i {
		font-size: 24px;
	}

	.home-services {
		padding: 48px 0;
	}

	.service-card {
		padding: 32px 24px;
		margin-bottom: 24px;
	}

	.service-card__title {
		font-size: 24px;
	}

	.service-card__description {
		font-size: 15px;
	}

	.service-card__list li strong {
		font-size: 16px;
	}

	.service-card__list li span {
		font-size: 14px;
	}
}
