:root {
	--purple: #6d5dfc;
	--pink: #ff6bb5;
	--yellow: #ffd166;
	--green: #4dd599;
	--blue: #4dabf7;
	--dark: #23304a;
	--muted: #65708a;
	--bg: #fffaf0;
	--white: #fff;
	--bs-gold: #f0c030;
	--bs-blue: #003DA5
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden
}

body {
	margin: 0;
	font-family: Inter, ui-rounded, "Comic Sans MS", system-ui, sans-serif;
	color: var(--dark);
	background: linear-gradient(180deg, #fffaf0 0%, #f4fbff 100%);
	overflow-x: hidden
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 6%;
	background: var(--bs-blue);
	border-bottom: 3px solid var(--bs-gold);
	box-shadow: 0 4px 24px rgba(0, 61, 165, 0.35)
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: white;
	font-weight: 900;
	font-size: 1.2rem
}

.logo {
	display: block;
	height: 48px;
	width: auto;
	filter: drop-shadow(0 0 2px white) drop-shadow(0 0 4px white) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
	cursor: pointer;
	transform-style: preserve-3d;
}

.logo-spin {
	animation: logo-flip 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes logo-flip {
	0%   { transform: rotateY(0deg)    scale(1) }
	40%  { transform: rotateY(200deg)  scale(1.15) }
	70%  { transform: rotateY(340deg)  scale(0.93) }
	85%  { transform: rotateY(375deg)  scale(1.05) }
	100% { transform: rotateY(360deg)  scale(1) }
}

.nav {
	display: flex;
	gap: 24px;
	align-items: center
}

.nav a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-weight: 800;
	transition: color 0.2s
}

.nav a:hover {
	color: var(--bs-gold)
}

.lang-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 10px;
	background: var(--bs-gold);
	color: var(--bs-blue) !important;
	font-weight: 900;
	font-size: .85rem;
	letter-spacing: .04em;
	text-decoration: none;
	transition: opacity .2s
}

.lang-btn:hover {
	opacity: .85;
	color: var(--bs-blue) !important
}

.menu-btn {
	display: none;
	border: 0;
	background: var(--bs-gold);
	color: var(--bs-blue);
	border-radius: 14px;
	padding: 10px 14px;
	font-size: 24px;
	font-weight: 900
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	align-items: center;
	gap: 40px;
	min-height: 760px;
	padding: 70px 6% 100px
}

.eyebrow,
.section-label {
	display: inline-block;
	margin: 0 0 12px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	color: var(--purple);
	font-weight: 900;
	box-shadow: 0 8px 20px rgba(35, 48, 74, .08)
}

h1 {
	font-size: clamp(2.7rem, 6vw, 5.9rem);
	line-height: .94;
	margin: 0 0 24px;
	letter-spacing: -.06em
}

h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1;
	margin: 0 0 18px;
	letter-spacing: -.04em
}

h3 {
	font-size: 1.45rem;
	margin: 12px 0
}

.subtitle,
.section p,
.page p {
	font-size: 1.2rem;
	line-height: 1.65;
	color: var(--muted);
	max-width: 680px
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px
}

.cta-row.center {
	justify-content: center
}

.store-btn,
.secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 24px;
	border-radius: 18px;
	text-decoration: none;
	border: 0;
	font-weight: 900;
	color: white;
	box-shadow: 0 12px 24px rgba(35, 48, 74, .16);
	cursor: pointer
}

/* Store buttons shared */
.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 22px;
	border-radius: 16px;
	text-decoration: none;
	font-family: inherit;
	transition: transform .2s, box-shadow .2s;
}

.store-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(35,48,74,.22);
}

.store-btn__icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.store-btn__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	text-align: left;
}

.store-btn__text small {
	font-size: .7rem;
	font-weight: 600;
	opacity: .85;
	letter-spacing: .02em;
}

.store-btn__text b,
.store-btn__text {
	font-size: 1rem;
	font-weight: 900;
}

/* Apple */
.store-btn--apple {
	background: #111;
	color: white;
	box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* Google Play */
.store-btn--google {
	background: white;
	color: #1a1a2e;
	border: 2px solid #e8edf8;
	box-shadow: 0 8px 24px rgba(35,48,74,.12);
}

.store-btn--google .store-btn__text small {
	color: #555;
}

/* Register / Web */
.store-btn--register {
	background: var(--bs-blue);
	color: white;
	border-bottom: 3px solid var(--bs-gold);
	box-shadow: 0 8px 24px rgba(0,61,165,.3);
}

.secondary-btn {
	background: var(--bs-blue);
	color: white;
	margin-top: 18px;
	border-bottom: 3px solid var(--bs-gold);
	transition: background .2s, transform .2s;
}

.secondary-btn:hover {
	background: #0050cc;
	transform: translateY(-2px);
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px
}

.trust-row span {
	background: white;
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 800;
	box-shadow: 0 8px 20px rgba(35, 48, 74, .08)
}

.hero-card {
	position: relative;
	display: grid;
	place-items: center
}

/* ── 3-phone rotating stage ── */
.phone-stage {
	position: relative;
	width: min(360px, 84vw);
	height: 760px;
	perspective: 1200px;
	transform-style: preserve-3d;
	margin: 0 auto;
}

.phone-wrap {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	transition:
		transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
		opacity   0.7s ease,
		filter    0.7s ease,
		z-index   0s 0.35s;
	transform-style: preserve-3d;
	will-change: transform, opacity;
}

/* Front */
.phone-wrap--front {
	transform: translateZ(0) translateX(0) scale(1) rotateY(0deg);
	opacity: 1;
	z-index: 3;
	filter: none;
}

/* Right (behind) */
.phone-wrap--right {
	transform: translateX(55%) translateZ(-180px) scale(0.82) rotateY(-22deg);
	opacity: 0.6;
	z-index: 2;
	filter: brightness(0.7);
}

/* Left (behind) */
.phone-wrap--left {
	transform: translateX(-55%) translateZ(-180px) scale(0.82) rotateY(22deg);
	opacity: 0.6;
	z-index: 2;
	filter: brightness(0.7);
}

/* Exiting to left */
.phone-wrap--exit-left {
	transform: translateX(-120%) translateZ(-300px) scale(0.65) rotateY(35deg);
	opacity: 0;
	z-index: 1;
	filter: brightness(0.4);
}

/* Entering from right */
.phone-wrap--enter-right {
	transform: translateX(120%) translateZ(-300px) scale(0.65) rotateY(-35deg);
	opacity: 0;
	z-index: 1;
	filter: brightness(0.4);
}

.phone {
	width: min(300px, 80vw);
	height: 620px;
	border: 12px solid #1a2540;
	border-radius: 46px;
	background: #1a2540;
	box-shadow: 0 30px 80px rgba(35, 48, 74, .35);
}

.phone-top {
	width: 90px;
	height: 8px;
	background: #1a2540;
	border-radius: 0 0 12px 12px;
	margin: auto
}

.screen {
	position: relative;
	height: 580px;
	border-radius: 38px;
	background: linear-gradient(180deg, #93e6ff, #fff1a8);
	overflow: hidden
}

.phone-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 32px;
	display: block
}

/* Fallback content when no video */
.phone-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 12px;
}

.phone-fallback__icon {
	font-size: 80px;
}

.phone-fallback__label {
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--dark);
}

/* Dots */
.phone-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
	position: relative;
	z-index: 10;
}

.phone-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(35,48,74,.2);
	cursor: pointer;
	padding: 0;
	transition: background .3s, transform .3s;
}

.phone-dot--active {
	background: var(--bs-blue);
	transform: scale(1.3);
}

.screen h2 {
	font-size: 2.7rem
}

.sun {
	font-size: 64px;
	animation: bounce 3s ease-in-out infinite
}

.game-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 30px
}

.game-grid span {
	display: grid;
	place-items: center;
	min-height: 115px;
	border-radius: 24px;
	background: white;
	font-size: 34px;
	font-weight: 900;
	box-shadow: 0 8px 20px rgba(35, 48, 74, .1)
}

.game-grid small {
	display: block;
	font-size: 14px;
	margin-top: 6px
}

.floating {
	position: absolute;
	font-size: 56px;
	filter: drop-shadow(0 10px 12px rgba(35, 48, 74, .18));
	animation: float 4s ease-in-out infinite
}

/* Bosnian-themed floating decorations */
.lily {
	top: 8%;
	left: 4%;
	font-size: 52px
}

.star-bs {
	right: 4%;
	top: 18%;
	font-size: 44px;
	animation-delay: .7s
}

.srce {
	bottom: 14%;
	left: 2%;
	font-size: 40px;
	animation-delay: 1.3s
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: .25;
	z-index: -1
}

.blob-one {
	width: 360px;
	height: 360px;
	background: var(--pink);
	top: 110px;
	left: -120px
}

.blob-two {
	width: 420px;
	height: 420px;
	background: var(--blue);
	right: -160px;
	bottom: 60px
}

.section {
	padding: 90px 6%;
	text-align: center
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 34px
}

.feature-card {
	padding: 30px 22px;
	border-radius: 34px;
	background: white;
	box-shadow: 0 18px 40px rgba(35, 48, 74, .1);
	transition: .25s transform;
	border-top: 12px solid transparent
}

.feature-card:hover {
	transform: translateY(-8px) rotate(-1deg)
}

.feature-card div {
	font-size: 52px
}

.feature-card.yellow {
	border-top-color: var(--bs-gold)
}

.feature-card.pink {
	border-top: 12px solid var(--pink)
}

.feature-card.blue {
	border-top: 12px solid var(--blue)
}

.feature-card.green {
	border-top: 12px solid var(--green)
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	text-align: left
}

.checklist {
	list-style: none;
	padding: 0;
	margin: 26px 0 0;
	display: grid;
	gap: 12px
}

.checklist li {
	background: white;
	border-radius: 18px;
	padding: 16px 18px;
	font-weight: 850;
	box-shadow: 0 8px 18px rgba(35, 48, 74, .08)
}

.checklist li:before {
	content: "⭐ ";
}

.app-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.app-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	cursor: pointer;
}

.app-icon-img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(35,48,74,.13);
	transition: transform .25s, box-shadow .25s;
	background: #f0f3fb;
}

.app-icon-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s;
}

.app-icon-item:hover .app-icon-img {
	transform: translateY(-5px) scale(1.04);
	box-shadow: 0 14px 32px rgba(35,48,74,.2);
}

.app-icon-item:hover .app-icon-img img {
	transform: scale(1.06);
}

.app-icon-item span {
	font-size: .78rem;
	font-weight: 900;
	color: var(--dark);
	text-align: center;
	line-height: 1.2;
}

/* WC 2026 special badge */
.app-icon-item--wc .app-icon-img {
	border: 3px solid var(--bs-gold);
	box-shadow: 0 6px 20px rgba(240,192,48,.35);
}

.app-icon-item--wc span {
	color: var(--bs-blue);
}

.app-icon-item--wc:hover .app-icon-img {
	box-shadow: 0 14px 36px rgba(240,192,48,.5);
}

@media (max-width: 560px) {
	.app-icon-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
}

.parents {
	background: linear-gradient(135deg, #f4fbff 0%, #eef4ff 100%);
	text-align: left;
}

.parents-inner {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 56px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}

.parents-text h2 {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	margin-bottom: 12px;
}

.parents-sub {
	font-size: 1.1rem;
	color: var(--muted);
	margin: 0 0 24px;
}

/* Feature pills */
.parents-pills {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.parents-pills li {
	background: white;
	border: 2px solid var(--bs-gold);
	color: var(--bs-blue);
	font-weight: 900;
	font-size: .82rem;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

.parents-content {
	font-size: .95rem;
	color: var(--muted);
	line-height: 1.7;
	margin: 0 0 16px;
	padding: 16px 20px;
	background: white;
	border-left: 4px solid var(--bs-gold);
	border-radius: 0 14px 14px 0;
}

.parents-text p:not(.parents-sub):not(.parents-content):not(.section-label) {
	font-size: .98rem;
	line-height: 1.75;
	color: var(--muted);
	margin-bottom: 20px;
}

/* Stat cards grid */
.parents-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	position: sticky;
	top: 100px;
}

.stat-card {
	border-radius: 24px;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-shadow: 0 8px 28px rgba(35,48,74,.1);
}

.stat-card--blue {
	background: var(--bs-blue);
	color: white;
}

.stat-card--gold {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

.stat-card--white {
	background: white;
	color: var(--dark);
	border: 2px solid #e8edf8;
}

.stat-card__num {
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.04em;
}

.stat-card--blue .stat-card__num { color: var(--bs-gold); }
.stat-card--gold .stat-card__num { color: var(--bs-blue); }

.stat-card__label {
	font-size: .88rem;
	font-weight: 700;
	line-height: 1.35;
	opacity: .85;
}

@media (max-width: 900px) {
	.parents-inner {
		grid-template-columns: 1fr;
	}

	.parents-stats {
		position: static;
	}
}

.parents-card {
	margin: auto;
	max-width: 900px;
	background: white;
	padding: 50px;
	border-radius: 38px;
	box-shadow: 0 20px 50px rgba(35, 48, 74, .1)
}

.download {
	background: var(--bs-blue);
	color: white;
	border-radius: 48px;
	border-bottom: 5px solid var(--bs-gold);
	margin: 60px 6% 90px
}

.download p {
	color: #fff;
	max-width: none
}

.small-note {
	font-size: .95rem;
	opacity: .9
}

.footer {
	background: var(--bs-blue);
	color: white;
}

/* ── Top section: 3 columns ── */
.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 48px;
	padding: 56px 6% 48px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-col--about {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-logo {
	height: 48px;
	width: auto;
	filter: drop-shadow(0 0 2px white) drop-shadow(0 0 4px white) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
	cursor: pointer;
	transform-style: preserve-3d;
}

.footer-col p {
	color: rgba(255,255,255,.7);
	font-size: .95rem;
	line-height: 1.7;
	margin: 0;
}

.footer-col__title {
	font-size: 1rem;
	font-weight: 900;
	color: var(--bs-gold);
	margin: 0 0 18px;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-size: .85rem;
}

.footer-col__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col__list li {
	font-size: .92rem;
	color: rgba(255,255,255,.65);
	line-height: 1.5;
}

.footer-col__list--contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.footer-col__icon {
	flex-shrink: 0;
	font-size: 1rem;
	margin-top: 2px;
}

.footer a {
	color: rgba(255,255,255,.88);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s;
}

.footer a:hover {
	color: var(--bs-gold);
}

/* ── Bottom section: copyright + social ── */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 24px 6%;
	flex-wrap: wrap;
}

.footer-bottom__copy {
	margin: 0;
	color: rgba(255,255,255,.5);
	font-size: .88rem;
}

.footer-bottom__copy a {
	color: rgba(255,255,255,.7);
}

.footer-social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: white;
	transition: background .2s, color .2s;
}

.footer-social a:hover {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

@media (max-width: 900px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.footer-col--about {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
}

.page {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 6%;
	min-height: 70vh
}

.page h1 {
	font-size: clamp(2.4rem, 5vw, 4.5rem)
}

.contact-form {
	display: grid;
	gap: 18px;
	margin-top: 30px
}

.contact-form label {
	display: grid;
	gap: 8px;
	font-weight: 900
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 3px solid #e1e7fb;
	border-radius: 18px;
	padding: 16px;
	font: inherit;
	background: white
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 0;
	border-color: var(--purple)
}

.wave-canvas {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: .45
}

.site-header {
	z-index: 10
}

.site-header,
main,
footer.footer {
	position: relative;
	z-index: 1
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) rotate(-4deg)
	}

	50% {
		transform: translateY(-22px) rotate(6deg)
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}
}

@media(max-width:900px) {
	.menu-btn {
		display: block
	}

	.nav {
		display: none;
		position: absolute;
		top: 82px;
		left: 6%;
		right: 6%;
		padding: 18px;
		border-radius: 22px;
		background: var(--bs-blue);
		border: 2px solid var(--bs-gold);
		box-shadow: 0 18px 40px rgba(0, 61, 165, 0.3);
		flex-direction: column
	}

	.nav.open {
		display: flex
	}

	.hero,
	.split {
		grid-template-columns: 1fr;
		text-align: center
	}

	.hero {
		padding-top: 45px
	}

	.subtitle,
	.section p {
		margin-left: auto;
		margin-right: auto
	}

	.cards {
		grid-template-columns: 1fr 1fr
	}


	.footer {
		flex-direction: column;
		text-align: center
	}
}

@media(max-width:560px) {
	.cards {
		grid-template-columns: 1fr
	}

	h1 {
		font-size: 3rem
	}

	.phone {
		height: 590px
	}

	.screen {
		height: 530px
	}

	.hero {
		min-height: auto
	}

	.download {
		border-radius: 30px
	}

	.site-header {
		padding: 12px 5%
	}
}

/* ============================================
   BOSNIAN CULTURE STRIP
   ============================================ */

.bs-strip {
	padding: 0;
	overflow: hidden;
	max-width: 100vw;
	background: linear-gradient(135deg, var(--bs-blue), #1a56c4);
	margin: 0;
}

.bs-strip-inner {
	display: flex;
	gap: 0;
	width: max-content;
	animation: bs-scroll 28s linear infinite;
	padding: 18px 0;
}

.bs-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 28px;
	font-weight: 900;
	font-size: 1rem;
	color: var(--bs-gold);
	white-space: nowrap;
	border-right: 2px solid rgba(240, 192, 48, 0.25);
	letter-spacing: .02em;
}

@keyframes bs-scroll {
	0%   { transform: translateX(0) }
	100% { transform: translateX(-50%) }
}

/* Bosnian gold accent on feature card top borders */
.feature-card.yellow { border-top-color: var(--bs-gold) }

/* Section label lily accent — already in HTML as 🌸 prefix */

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
	background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
	overflow: hidden;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 28px;
	text-align: left;
	max-width: 100%;
}

/* Full blog page — 3 columns with more space */
.blog-grid--full {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.blog-page h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 8px;
}

.blog-card {
	background: white;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(35, 48, 74, 0.08);
	transition: transform 0.25s, box-shadow 0.25s;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 36px rgba(35, 48, 74, 0.13);
}

.blog-card__img-wrap {
	position: relative;
	display: block;
	overflow: hidden;
}

.blog-card__img-wrap img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img-wrap img {
	transform: scale(1.05);
}

.blog-card__date {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: var(--bs-gold);
	color: var(--bs-blue);
	font-weight: 900;
	font-size: .72rem;
	padding: 3px 10px;
	border-radius: 999px;
}

.blog-card__body {
	padding: 14px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.blog-card__title {
	margin: 0;
	font-size: .95rem;
	line-height: 1.4;
	font-weight: 800;
}

.blog-card__title a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
}

.blog-card__title a:hover {
	color: var(--purple);
}

.blog-card__btn {
	display: inline-flex;
	align-items: center;
	font-weight: 900;
	font-size: .8rem;
	color: var(--purple);
	text-decoration: none;
	gap: 4px;
	margin-top: auto;
	transition: gap 0.2s, color 0.2s;
}

.blog-card__btn:hover {
	gap: 8px;
	color: var(--pink);
}

@media (max-width: 900px) {
	.blog-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-hero {
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
}

.article-hero__overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
	width: 100%;
	padding: 60px 6% 40px;
}

.article-hero__content {
	max-width: 820px;
}

.article-hero__date {
	display: inline-block;
	background: var(--bs-gold);
	color: var(--bs-blue);
	font-weight: 900;
	font-size: .82rem;
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.article-hero__title {
	color: white;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 20px;
	letter-spacing: -.03em;
}

.article-hero__share {
	display: flex;
	gap: 10px;
}

.article-hero__share a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	color: white;
	backdrop-filter: blur(4px);
	transition: background 0.2s;
}

.article-hero__share a:hover {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

/* Layout */
.article-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 6% 80px;
	align-items: start;
}

/* Article body */
.article-body {
	min-width: 0;
}

.article-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--dark);
}

.article-content img {
	width: 100%;
	border-radius: 18px;
	margin: 20px 0;
}

.article-content h2, .article-content h3 {
	margin-top: 36px;
}

.article-content p {
	margin: 0 0 18px;
}

/* Share row */
.article-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 2px solid #f0f3fb;
	flex-wrap: wrap;
}

.article-share span {
	font-weight: 900;
	color: var(--muted);
	font-size: .9rem;
}

.article-share a {
	padding: 8px 18px;
	border-radius: 999px;
	background: #f0f3fb;
	color: var(--dark);
	text-decoration: none;
	font-weight: 800;
	font-size: .85rem;
	transition: background 0.2s, color 0.2s;
}

.article-share a:hover {
	background: var(--bs-blue);
	color: white;
}

/* Sidebar */
.article-sidebar {
	position: sticky;
	top: 100px;
}

.article-sidebar__title {
	font-size: 1.1rem;
	margin: 0 0 18px;
	color: var(--dark);
}

.article-sidebar__posts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Sidebar post card */
.sidebar-post-card {
	display: flex;
	gap: 12px;
	align-items: center;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(35,48,74,.07);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.sidebar-post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(35,48,74,.12);
}

.sidebar-post-card img {
	width: 80px;
	height: 70px;
	object-fit: cover;
	flex-shrink: 0;
}

.sidebar-post-card__body {
	padding: 10px 12px 10px 0;
}

.sidebar-post-card__date {
	display: block;
	font-size: .72rem;
	font-weight: 800;
	color: var(--bs-blue);
	margin-bottom: 4px;
}

.sidebar-post-card__title {
	margin: 0;
	font-size: .85rem;
	line-height: 1.35;
	color: var(--dark);
	font-weight: 800;
}

@media (max-width: 900px) {
	.article-layout {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
	}

	.article-hero {
		min-height: 300px;
	}
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
	min-height: 360px;
	background: linear-gradient(135deg, var(--bs-blue) 0%, #1a56c4 50%, var(--purple) 100%);
	display: flex;
	align-items: center;
	padding: 80px 6%;
	position: relative;
	overflow: hidden;
}

.about-hero::before {
	content: '🌸';
	position: absolute;
	font-size: 220px;
	opacity: .06;
	right: 6%;
	top: 50%;
	transform: translateY(-50%);
}

.about-hero__overlay {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.about-hero .section-label {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

.about-hero h1 {
	color: white;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	line-height: 1.3;
	letter-spacing: -.02em;
	font-style: italic;
	margin: 0;
}

/* About split section */
.about-section {
	align-items: start;
}

.about-greeting {
	font-weight: 900;
	font-size: 1.1rem;
	color: var(--dark);
	margin-bottom: 20px;
}

.about-text p {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 16px;
	max-width: none;
}

/* Image stack */
.about-img-stack {
	position: relative;
	display: inline-block;
	width: 100%;
}

.about-img {
	width: 100%;
	border-radius: 28px;
	box-shadow: 0 24px 60px rgba(35, 48, 74, .18);
	display: block;
}

.about-img-badge {
	position: absolute;
	bottom: -18px;
	right: -18px;
	background: var(--bs-gold);
	color: var(--bs-blue);
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	padding: 16px 20px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(240, 192, 48, .4);
	line-height: 1.2;
}

.about-img-badge small {
	display: block;
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .05em;
}

/* Apps section */
.about-apps {
	background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
}

.about-apps__intro {
	margin-bottom: 40px;
}

.apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	text-align: left;
}

/* Style whatever getAppsCollectionV2 outputs */
.apps-grid > * {
	background: white;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(35, 48, 74, .08);
	transition: transform .25s, box-shadow .25s;
}

.apps-grid > *:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(35, 48, 74, .13);
}

.apps-grid img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

@media (max-width: 900px) {
	.about-hero {
		min-height: auto;
		padding: 60px 6%;
	}

	.about-img-badge {
		right: 0;
		bottom: -14px;
	}
}

/* ============================================
   REGISTER / PRICING PAGE
   ============================================ */

.register-hero {
	background: linear-gradient(135deg, var(--bs-blue) 0%, #1a56c4 60%, var(--purple) 100%);
	padding: 80px 6%;
	position: relative;
	overflow: hidden;
}

.register-hero::before {
	content: '🎓';
	position: absolute;
	font-size: 260px;
	opacity: .05;
	right: 4%;
	top: 50%;
	transform: translateY(-50%);
}

.register-hero__inner {
	max-width: 720px;
	position: relative;
	z-index: 1;
}

.register-hero .section-label {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

.register-hero h1 {
	color: white;
	margin: 0 0 20px;
	font-size: clamp(2.4rem, 5vw, 4rem);
}

.register-hero__intro {
	color: var(--bs-gold);
	font-weight: 900;
	font-size: 1.1rem;
	margin: 0 0 10px;
}

.register-hero__desc {
	color: rgba(255,255,255,.88);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0 0 16px;
	max-width: none;
}

.register-hero__tagline {
	color: rgba(255,255,255,.65);
	font-style: italic;
	font-size: .95rem;
	margin: 0;
	max-width: none;
}

/* Pricing grid */
.pricing-section h2 {
	margin-bottom: 40px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
	align-items: start;
}

.pricing-card {
	background: white;
	border-radius: 28px;
	box-shadow: 0 8px 32px rgba(35, 48, 74, .09);
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	transition: transform .25s, box-shadow .25s;
	border-top: 4px solid #e8edf8;
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(35, 48, 74, .14);
}

/* Featured (middle) card */
.pricing-card--featured {
	border-top-color: var(--purple);
	box-shadow: 0 16px 50px rgba(109, 93, 252, .18);
	transform: translateY(-10px);
}

.pricing-card--featured:hover {
	transform: translateY(-16px);
}

/* Badge */
.pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--purple);
	color: white;
	font-weight: 900;
	font-size: .78rem;
	padding: 5px 16px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(109, 93, 252, .35);
}

.pricing-card__badge--gold {
	background: var(--bs-gold);
	color: var(--bs-blue);
	box-shadow: 0 4px 12px rgba(240, 192, 48, .4);
}

/* Header */
.pricing-card__header {
	text-align: center;
}

.pricing-card__price {
	font-size: 3rem;
	font-weight: 900;
	color: var(--dark);
	line-height: 1;
	letter-spacing: -.04em;
}

.pricing-card--featured .pricing-card__price {
	color: var(--purple);
}

.pricing-card__period {
	font-size: .95rem;
	color: var(--muted);
	font-weight: 700;
	margin-top: 6px;
}

/* Features list */
.pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.pricing-card__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .95rem;
	color: var(--dark);
	font-weight: 700;
}

.pricing-card__features li::before {
	content: '✓';
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #edf5ff;
	color: var(--purple);
	font-size: .75rem;
	font-weight: 900;
	flex-shrink: 0;
}

.pricing-card--featured .pricing-card__features li::before {
	background: var(--purple);
	color: white;
}

/* CTA button */
.pricing-card__btn {
	display: block;
	text-align: center;
	padding: 16px;
	border-radius: 16px;
	background: #f0f3fb;
	color: var(--dark);
	font-weight: 900;
	text-decoration: none;
	transition: background .2s, color .2s, transform .2s;
}

.pricing-card__btn:hover {
	background: var(--purple);
	color: white;
	transform: scale(1.02);
}

.pricing-card--featured .pricing-card__btn {
	background: var(--bs-blue);
	color: white;
	border-bottom: 3px solid var(--bs-gold);
	box-shadow: 0 8px 20px rgba(0, 61, 165, .25);
}

.pricing-card--featured .pricing-card__btn:hover {
	background: #0050cc;
	opacity: 1;
}

.pricing-card--featured .pricing-card__btn:hover {
	opacity: .9;
}

@media (max-width: 900px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
	}

	.pricing-card--featured {
		transform: none;
	}

	.pricing-card--featured:hover {
		transform: translateY(-6px);
	}
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-hero {
	background: linear-gradient(135deg, var(--bs-blue) 0%, #1a56c4 60%, var(--purple) 100%);
	padding: 80px 6%;
	position: relative;
	overflow: hidden;
}

.faq-hero::before {
	content: '❓';
	position: absolute;
	font-size: 260px;
	opacity: .05;
	right: 4%;
	top: 50%;
	transform: translateY(-50%);
}

.faq-hero__inner {
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.faq-hero .section-label {
	background: var(--bs-gold);
	color: var(--bs-blue);
}

.faq-hero h1 {
	color: white;
	margin: 0 0 16px;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.faq-hero p {
	color: rgba(255,255,255,.8);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
	max-width: none;
}

/* Layout */
.faq-section {
	background: linear-gradient(180deg, #f4fbff 0%, #fff 100%);
}

.faq-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

/* Sidebar */
.faq-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-sidebar__card {
	background: white;
	border-radius: 24px;
	padding: 28px 24px;
	box-shadow: 0 8px 28px rgba(35,48,74,.08);
	border-top: 4px solid var(--purple);
}

.faq-sidebar__card--gold {
	border-top-color: var(--bs-gold);
}

.faq-sidebar__icon {
	font-size: 2rem;
	margin-bottom: 12px;
}

.faq-sidebar__card h3 {
	font-size: 1.05rem;
	margin: 0 0 8px;
	color: var(--dark);
}

.faq-sidebar__card p {
	color: var(--muted);
	font-size: .9rem;
	line-height: 1.6;
	margin: 0 0 16px;
	max-width: none;
}

.faq-sidebar__btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 12px;
	background: var(--purple);
	color: white;
	font-weight: 900;
	font-size: .88rem;
	text-decoration: none;
	transition: opacity .2s;
}

.faq-sidebar__btn:hover {
	opacity: .85;
}

/* Accordion */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: white;
	border-radius: 20px;
	box-shadow: 0 4px 18px rgba(35,48,74,.07);
	overflow: hidden;
	transition: box-shadow .2s;
}

.faq-item--open {
	box-shadow: 0 10px 32px rgba(35,48,74,.12);
}

.faq-item__btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}

.faq-item__q {
	font-size: 1rem;
	font-weight: 900;
	color: var(--dark);
	line-height: 1.4;
}

.faq-item--open .faq-item__q {
	color: var(--purple);
}

.faq-item__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f0f3fb;
	display: grid;
	place-items: center;
	font-size: 1.2rem;
	font-weight: 900;
	color: var(--purple);
	transition: transform .3s, background .2s;
}

.faq-item--open .faq-item__icon {
	transform: rotate(45deg);
	background: var(--purple);
	color: white;
}

.faq-item__body {
	padding: 0 24px 22px;
}

.faq-item__answer {
	font-size: .97rem;
	line-height: 1.75;
	color: var(--muted);
	border-top: 2px solid #f0f3fb;
	padding-top: 18px;
}

@media (max-width: 900px) {
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.faq-sidebar {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.faq-sidebar__card {
		flex: 1;
		min-width: 220px;
	}
}

/* ============================================
   WORLD CUP PROMO SECTION
   ============================================ */

.wc-promo {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: flex-end;
	background-image: url('images/main-slider/bosnia-vs-qatar.jpg');
	background-size: cover;
	background-position: center;
	/* Fallback when image is missing */
	background-color: var(--bs-blue);
}

.wc-promo__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 61, 165, 0.4) 50%,
		rgba(0, 0, 0, 0.15) 100%
	);
}

.wc-promo__content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 60px 6%;
}

.wc-promo__eyebrow {
	display: inline-block;
	background: var(--bs-gold);
	color: var(--bs-blue);
	font-weight: 900;
	font-size: .85rem;
	padding: 6px 18px;
	border-radius: 999px;
	margin: 0 0 20px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.wc-promo__title {
	color: white;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.05;
	letter-spacing: -.04em;
	margin: 0 0 16px;
}

.wc-promo__sub {
	color: rgba(255,255,255,.8);
	font-size: 1.15rem;
	margin: 0 0 32px;
	max-width: none;
}

.wc-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background: var(--bs-gold);
	color: var(--bs-blue);
	font-weight: 900;
	font-size: 1.1rem;
	border-radius: 18px;
	text-decoration: none;
	border-bottom: 4px solid rgba(0,0,0,.2);
	transition: transform .2s, opacity .2s;
	box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.wc-promo__btn:hover {
	transform: translateY(-3px);
	opacity: .92;
}

@media (max-width: 600px) {
	.wc-promo {
		min-height: 420px;
	}
}

