/* Theme Name: Mor v2 Sohbet Teması
Theme URI: www.QBilisim.com
Author: QBilisim
Author URI: Geliştirici Web Sayfası
Description: Qbilisim.com tema "Mor v2" serisi.
Version: v1 */

/* --- RESET & DEĞİŞKENLER --- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	/* Lavanta teması esinli renk paleti */
	--bg1: #08031a;
	--bg2: #120826;
	--accent1: #7c3aed;   /* ana mor */
	--accent2: #ec4899;   /* pembe vurgu */
	--accent3: #a855f7;   /* yumuşak mor */
	--accent-soft: #d8b4fe;
	--glass: rgba(124,58,237,0.14);
	--muted: rgba(226,232,240,0.78);
	--card-border: rgba(148,163,184,0.18);
	--radius: 14px;
	--maxw: 1200px;
	--font-main: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
html,
body {
	height: 100%;
}
body {
	font-family: var(--font-main);
	background:
	radial-gradient(1200px 600px at 5% 0%, rgba(124,58,237,0.16), transparent),
	radial-gradient(1000px 600px at 90% 10%, rgba(236,72,153,0.16), transparent),
	linear-gradient(180deg, #0b021f 0%, #050015 55%, #050713 100%);
	color: #fdf4ff;
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
body.menu-open {
	overflow: hidden; /* mobil menü açıkken scroll kilidi */
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
}
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}

/* --- TİPOGRAFİ SINIFLARI (h1-h4 yerine) --- */
.typo-h1 {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 12px;
	letter-spacing: -0.03em;
}
.typo-h2 {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}
.typo-h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.typo-h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.text-muted {
	color: var(--muted);
}
.text-sm {
	font-size: 13px;
	opacity: 0.9;
}
.text-desc {
	color: var(--muted);
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 1.6;
}
/* Makale içi için özel */
.article-content .typo-h2 {
	font-size: 28px;
	margin-top: 24px;
	margin-bottom: 12px;
}
.article-content .typo-h3 {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.article-content p {
	line-height: 1.8;
	color: var(--muted);
	margin-bottom: 16px;
}

/* --- ORTAK YARDIMCI SINIFLAR --- */
.flex-center {
	display: flex;
	align-items: center;
	gap: 12px;
}
.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-wrap {
	flex-wrap: wrap;
}
.grid-layout {
	display: grid;
	gap: 30px;
}
.w-full {
	width: 100%;
}
.d-block {
	display: block;
}
.bg-gradient-text {
	background: linear-gradient(90deg, var(--accent1), var(--accent2));
	-webkit-background-clip: text;
	color: transparent;
}

/* --- ARKA PLAN SVG ANİMASYONU (SOFT) --- */
.bg-anim {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.18;
}
.bg-anim svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* --- HEADER --- */
header {
	position: relative;
	z-index: 40;
	padding: 18px 0;
}
nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.logo-svg {
	width: 220px;
	height: 56px;
	display: block;
}
.nav-links {
	display: flex;
	gap: 20px;
	list-style: none;
	align-items: center;
}
.nav-links a {
	opacity: 0.95;
	padding: 6px 0;
	position: relative;
	font-weight: 500;
	color: #e5e7eb;
}
.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent2), var(--accent1));
	bottom: -6px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s;
}
.nav-links a:hover::after {
	transform: scaleX(1);
}
.btn-login {
	background: radial-gradient(circle at 0% 0%, var(--accent2), var(--accent1));
	padding: 10px 20px;
	border-radius: 999px;
	border: none;
	color: #fdf4ff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 28px rgba(124,58,237,0.32);
	transition: transform 0.2s, box-shadow 0.2s;
	font-size: 14px;
}
.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(124,58,237,0.45);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	z-index: 60;
}
.hamburger span {
	width: 26px;
	height: 3px;
	background: #e5e7eb;
	border-radius: 999px;
	transition: all .25s;
}
.hamburger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
	opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay (scale açılış) */
.mobile-menu {
	position: fixed;
	margin-top: 120px;
	inset: 0;
	background: #341246;
	backdrop-filter: blur(20px);
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-top: 1px solid #646262;
	opacity: 0;
	transition: opacity 0.28s ease-out;
}
.mobile-menu.open {
	display: flex;
	opacity: 1;
}
.mobile-menu-panel {
	background: #893be3;
	border-radius: 24px;
	border: 1px solid rgba(148,163,184,0.6);
	padding: 24px 22px 18px;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 22px 60px rgba(15,23,42,1);
	transform: scale(0.9);
	opacity: 0;
	transition: transform .25s ease-out, opacity .25s ease-out;
}
.mobile-menu.open .mobile-menu-panel {
	transform: scale(1);
	opacity: 1;
}
.mobile-menu ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin-bottom: 12px;
}
.mobile-menu a {
	display: block;
	font-size: 18px;
	padding: 10px 0;
	color: #fdf4ff;
	font-weight: 600;
	letter-spacing: 0.03em;
}
.mobile-menu-divider {
	height: 1px;
	background: rgba(148,163,184,0.4);
	margin: 8px 0 16px;
}
.mobile-menu-btn {
	margin-top: 6px;
	display: flex;
	justify-content: center;
}

/* --- HERO SECTION --- */
.hero {
	display: flex;
	gap: 36px;
	align-items: center;
	padding: 56px 0 40px;
	position: relative;
	z-index: 10;
}
.hero-left {
	flex: 1;
	background: radial-gradient(circle at top left, rgba(124,58,237,0.20), transparent),
	linear-gradient(180deg, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
	border: 1px solid var(--card-border);
	padding: 40px;
	border-radius: 22px;
	backdrop-filter: blur(18px);
	box-shadow: 0 20px 60px rgba(15,23,42,0.85);
	position: relative;
	overflow: hidden;
}
.hero-left::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(216,180,254,0.16), transparent);
	opacity: 0.8;
	pointer-events: none;
}
.hero-left > * {
	position: relative;
	z-index: 1;
}
.hero-left .typo-h1 {
	color: #f9f5ff;
}

/* Input & form */
.form-row {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.input-card {
	flex: 1;
	min-width: 200px;
	background: radial-gradient(circle at top left, rgba(124,58,237,0.16), rgba(15,23,42,0.9));
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(148,163,184,0.4);
	display: flex;
	gap: 10px;
	align-items: center;
	position: relative;
}
.input-card i {
	opacity: 0.9;
	color: var(--accent-soft);
}
.input-card input {
	background: transparent;
	border: none;
	outline: none;
	color: #f4f4ff;
	font-size: 15px;
	width: 100%;
}
.input-card::after {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: -6px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent2), var(--accent1));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s;
}
.input-card:focus-within::after {
	transform: scaleX(1);
}

.cta-group {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	width: 100%;
	text-align: center;
}
.cta-btn {
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	padding: 12px 22px;
	border-radius: 999px;
	border: none;
	font-weight: 800;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fdf4ff;
	transition: box-shadow 0.3s, transform 0.3s;
	box-shadow: 0 10px 30px rgba(124,58,237,0.45);
}
.cta-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0.32), transparent 60%);
	transform: translateX(-120%);
	opacity: 0;
	transition: transform 0.5s ease-out, opacity 0.4s;
}
.cta-btn:hover::before {
	transform: translateX(140%);
	opacity: 1;
}
.cta-btn:hover {
	box-shadow: 0 14px 40px rgba(124,58,237,0.75);
}
.cta-btn .icon {
	width: 18px;
	text-align: center;
}
.link-simple {
	color: var(--muted);
	text-decoration: underline;
	font-weight: 700;
	font-size: 14px;
}

/* App download */
.app-download-area {
	margin-top: 18px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.app-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.app-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 14px;
	background: radial-gradient(circle at top left, rgba(124,58,237,0.22), rgba(15,23,42,1));
	border: 1px solid rgba(148,163,184,0.5);
	cursor: pointer;
	font-weight: 700;
	color: #f9f5ff;
	transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.app-btn:hover {
	background: radial-gradient(circle at top left, rgba(236,72,153,0.25), rgba(15,23,42,1));
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(15,23,42,0.9);
}
.app-btn .badge {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--accent2), var(--accent1));
	box-shadow: 0 8px 20px rgba(124,58,237,0.5);
}
.app-text {
	text-align: left;
	line-height: 1.2;
}
.app-text span {
	font-size: 10px;
	opacity: 0.85;
	display: block;
}
.app-text strong {
	font-size: 13px;
	font-weight: 800;
	display: block;
}

/* Hero Visual Right */
.hero-right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-height: 320px;
}
.visual-frame {
	width: 420px;
	max-width: 100%;
	height: 420px;
	border-radius: 32px;
	padding: 16px;
	background: radial-gradient(circle at top, rgba(124,58,237,0.30), rgba(15,23,42,0.95));
	border: 1px solid rgba(148,163,184,0.45);
	overflow: hidden;
	position: relative;
	box-shadow: 0 30px 80px rgba(15,23,42,0.95);
}
.avatar-container {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.avatar-img-wrap {
	width: 92%;
	height: 92%;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(216,180,254,0.5);
}
.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(1.05) contrast(1.02);
}

/* Soft hero SVG wave overlay */
.hero-wave {
	position: absolute;
	left: -5%;
	right: -5%;
	bottom: -2px;
	height: 120px;
	opacity: 0.55;
}

/* Chat-like baloncuklar */
.bubble {
	position: absolute;
	padding: 10px 14px;
	border-radius: 999px;
	background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(17,24,39,0.9));
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(148,163,184,0.4);
	font-size: 13px;
	font-weight: 600;
	color: #f9f5ff;
	animation: floatSoft 9s ease-in-out infinite;
}
.bubble-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent2);
	display: inline-block;
}
.b1 {
	left: 22px;
	top: 28px;
	animation-delay: 0s;
}
.b2 {
	right: 24px;
	top: 96px;
	background: radial-gradient(circle at top left, var(--accent1), var(--accent2));
	animation-delay: 1.4s;
}
.b3 {
	left: 40px;
	bottom: 40px;
	background: radial-gradient(circle at top left, var(--accent3), var(--accent1));
	animation-delay: 2.2s;
}
@keyframes floatSoft {
	0% {
		transform: translateY(0px) translateX(0);
		opacity: 0.85;
	}
	50% {
		transform: translateY(-10px) translateX(4px);
		opacity: 1;
	}
	100% {
		transform: translateY(0px) translateX(0);
		opacity: 0.9;
	}
}

/* --- MOBILE APP SECTION --- */
.mobile-section {
	margin-top: 28px;
	padding: 28px;
	border-radius: 22px;
	background: radial-gradient(circle at top left, rgba(124,58,237,0.28), rgba(15,23,42,0.9));
	border: 1px solid rgba(148,163,184,0.45);
	display: flex;
	gap: 28px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	box-shadow: 0 24px 70px rgba(15,23,42,0.9);
}
.phone-mock-wrap {
	flex: 0 0 auto;
}
.phone-mock {
	width: 320px;
	height: 410px;
	border-radius: 36px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(148,163,184,0.8);
	box-shadow: 0 30px 80px rgba(15,23,42,1);
	background: #05010f;
}
.phone-inner-img {
	position: absolute;
	inset: 16px;
	border-radius: 20px;
	object-fit: cover;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	z-index: 2;
}
.phone-cta {
	position: absolute;
	left: 22px;
	bottom: 26px;
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
	z-index: 3;
	color: #fdf4ff;
	font-size: 14px;
	box-shadow: 0 14px 36px rgba(124,58,237,0.8);
}

/* mobil dalga / frame svg (soft) */
.phone-mock::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at top, rgba(124,58,237,0.28), transparent 60%);
	opacity: 0.7;
}

.mobile-content {
	flex: 1;
	min-width: 300px;
}
.mobile-content .typo-h2 {
	color: #fdf4ff;
}
.feature-list {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.feature-pill {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px;
	border-radius: 14px;
	background: radial-gradient(circle at top left, rgba(15,23,42,0.95), rgba(15,23,42,0.85));
	border: 1px solid rgba(148,163,184,0.6);
	flex: 1;
	min-width: 140px;
}
.feature-pill i {
	font-size: 18px;
	color: var(--accent3);
}
.store-btns-row {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}
.btn-store {
	padding: 10px 16px;
	border-radius: 999px;
}

/* --- BLOG GRID SECTION --- */
.blog-section {
	padding: 56px 0;
}
.blog-layout-wrapper {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 32px;
	align-items: start;
}
.k-sticky {
	position: sticky;
	top: 10px;
}
/* Sidebar */
.sidebar-card {
	background: radial-gradient(circle at top left, rgba(15,23,42,1), rgba(15,23,42,0.95));
	padding: 18px;
	border-radius: 16px;
	border: 1px solid rgba(148,163,184,0.6);
	margin-bottom: 14px;
	box-shadow: 0 18px 50px rgba(15,23,42,0.9);
}
.sidebar-list {
	margin-left: 20px;
}
.sidebar-list li {
	margin-top: 10px;
}
.cat-list {
	list-style: none;
	color: var(--muted);
	line-height: 2;
	padding: 0;
	margin-left: 10px;
}
.rules-list {
	color: var(--muted);
	line-height: 1.8;
	font-size: 14px;
	padding-left: 18px;
	margin-bottom: 12px;
}
.sidebar-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
}
.btn-xs {
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	background: rgba(15,23,42,0.9);
	color: #e5e7eb;
	transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn-xs:hover {
	background: radial-gradient(circle at top left, rgba(124,58,237,0.5), rgba(15,23,42,1));
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(15,23,42,0.9);
}
/* Main Blog Area */
.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	flex-wrap: wrap;
	gap: 10px;
}
.filter-group {
	display: flex;
	gap: 10px;
}
.btn-filter {
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(148,163,184,0.6);
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font-size: 13px;
}
.btn-filter.active {
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	color: #fdf4ff;
	border: none;
	font-weight: 700;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.blog-card {
	background: radial-gradient(circle at top left, rgba(15,23,42,0.95), rgba(15,23,42,0.85));
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(148,163,184,0.6);
	transition: transform .25s, box-shadow .25s, border-color .25s;
	display: flex;
	flex-direction: column;
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 60px rgba(15,23,42,1);
	border-color: rgba(216,180,254,0.8);
}
.blog-image {
	height: 200px;
	object-fit: cover;
	width: 100%;
	display: block;
}
.blog-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.blog-meta {
	font-size: 12px;
	opacity: 0.9;
	margin-bottom: 8px;
	color: var(--accent-soft);
}
.blog-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
}
.pageler {
	margin-top: 20px;
	padding: 17px;
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	border-radius: 10px;
	width: 100%;
}
.pageler .page-numbers {
	background: #101d25;
	padding: 5px;
	border-radius: 5px;
	color: #f7f9fa;
	text-decoration: none;
}
.pageler .page-numbers:hover {
	background: #f7f9fa;
	color: #101d25;
}
.pageler .current {
	background: #101d25;
	color: #ff751f;
}
.yorum{
	color: #100F0D;
	padding: 10px;
	border-radius: 10px;
	margin-top: 10px;
}
.yorum a{
	color: #C1FF72;
}
.yorum li{
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #2F748E;
	list-style-type: none;
	border-radius: 5px
}
.yorum textarea{
	width: 100%;
	height: 100px;
	border-radius: 5px;
	color: white;
}
.yorum input[type=text]{
	width: 100%;
	border-radius: 5px;
	background: #F3F5F9;
	border: none;
}
.yorum input[type=submit]{
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	color: #f7f9fa;
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	border: none;
}
.yorum input[type=submit]:hover {
	background: #81cdb7;
	color: #2B3465;
}
.yorum .comment-form-url{
	display: none
}

/* --- ARTICLE & RULES SECTION --- */

/* Meta Alan */
.meta-top {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 15px;
}

.meta-top i {
    margin-right: 6px;
}

/* Öne Çıkan Görsel */
.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 20px 0;
}

/* Başlık */
.article-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-title .renk {
    width: 26px;
    height: 26px;
}

/* İçerik */
.article-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
}

/* Etiketler */
.article-tags {
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

.article-tags i {
    color: var(--accent-color);
    margin-right: 8px;
}

.article-tags a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin: 4px;
    color: var(--text-secondary);
    transition: 0.2s;
}

.article-tags a:hover {
    background: var(--accent-color);
    color: #fff;
}
.article-500 {
	padding: 64px 0;
	background: radial-gradient(circle at top, rgba(124,58,237,0.28), transparent 60%);
}
.article-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 30px;
	align-items: start;
}
.article-main {
	background: radial-gradient(circle at top left, rgba(15,23,42,1), rgba(15,23,42,0.92));
	padding: 26px 24px;
	border-radius: 18px;
	border: 1px solid rgba(148,163,184,0.65);
	box-shadow: 0 22px 60px rgba(15,23,42,0.95);
}
.article-main .typo-h2 {
	color: #fdf4ff;
}
.featured-room-badge {
	margin-top: 18px;
	background: linear-gradient(120deg, var(--accent1), var(--accent2));
	padding: 12px 14px;
	border-radius: 14px;
	color: #08021a;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 14px 40px rgba(124,58,237,0.8);
}

/* --- FOOTER --- */
footer {
	padding: 36px 0 32px;
	border-top: 1px solid rgba(148,163,184,0.45);
	position: relative;
	z-index: 20;
	text-align: center;
	background: radial-gradient(circle at top, rgba(15,23,42,1), rgba(3,7,18,1));
}
.footer-logo {
	font-weight: 900;
	font-size: 20px;
	margin-bottom: 8px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.footer-desc {
	max-width: 760px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}
.social-links {
	display: flex;
	gap: 12px;
	margin-top: 18px;
	justify-content: center;
}
.social-box {
	width: 44px;
	height: 44px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9f5ff;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	border: 1px solid rgba(148,163,184,0.6);
	cursor: pointer;
}
.social-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(15,23,42,0.9);
}
.sb-fb {
	background: radial-gradient(circle at top, #3b5998, #111827);
}
.sb-tw {
	background: radial-gradient(circle at top, #1da1f2, #020617);
}
.sb-ig {
	background: conic-gradient(from 200deg, #f97316, #ec4899, #8b5cf6, #f97316);
}
.copyright {
	color: rgba(148,163,184,0.85);
	font-size: 13px;
	margin-top: 18px;
}

/* Footer soft pulse ring */
footer::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -40px;
	width: 260px;
	height: 260px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 60%);
	opacity: 0.35;
	pointer-events: none;
	filter: blur(2px);
	animation: footerPulse 13s ease-in-out infinite;
}
@keyframes footerPulse {
	0% { transform: translateX(-50%) scale(0.95); opacity: 0.28; }
	40% { transform: translateX(-50%) scale(1.05); opacity: 0.45; }
	100% { transform: translateX(-50%) scale(0.95); opacity: 0.28; }
}

/* --- RESPONSIVE CSS --- */
@media (max-width: 992px) {
	body {
		zoom: 0.9;
	}
	.btn-login {

		font-size: 15px;
		width: 130px;
	}
	.k-sticky {
		position: relative;
	}
	.hero {
		flex-direction: column;
		text-align: center;
	}
	.hero-left {
		padding: 28px;
		width: 100%;
	}
	.form-row {
		justify-content: center;
	}
	.cta-group {
		justify-content: center;
	}
	.hero-right {
		width: 100%;
		min-height: auto;
		margin-top: 20px;
	}
	.visual-frame {
		height: 360px;
		margin: 0 auto;
	}
	.blog-layout-wrapper {
		grid-template-columns: 1fr;
	}
	.article-wrap {
		grid-template-columns: 1fr;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.blog-section {
		padding-top: 40px;
	}
	.article-500 {
		padding-top: 48px;
	}
	.mobile-section {
		justify-content: center;
		text-align: center;
	}
	.phone-mock-wrap {
		margin: 0 auto;
		width: 100%;
	}
	.feature-list {
		justify-content: center;
	}
	.store-btns-row {
		justify-content: center;
	}
}
@media (max-width: 768px) {
	header {
		padding: 14px 0;
	}
	.nav-links {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.typo-h1 {
		font-size: 30px;
	}
	.typo-h2 {
		font-size: 24px;
	}
	.hero {
		padding-top: 36px;
	}
	.hero-left {
		padding: 24px 18px 22px;
	}
	.input-card {
		min-width: 100%;
	}
	.app-download-area {
		justify-content: center;
	}
	.app-buttons {
		justify-content: center;
	}
	.mobile-section {
		padding: 22px 18px;
		margin-top: 22px;
	}
	.blog-section {
		padding: 40px 0 32px;
	}
	.article-500 {
		padding: 40px 0 32px;
	}
}
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	.pageler {
		padding: 10px;
	}
	.visual-frame {
		height: 320px;
	}
	.phone-mock {
		width: 100%;
		height: 480px;
	}
	.blog-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.hero-left {
		border-radius: 18px;
	}
}