@font-face {
	font-family: "Space Grotesk";
	src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
	font-display: swap;
}

:root {
	--bg: #fefdfb;
	--bg-warm: #fff1f1;
	--surface: #ffffff;
	--text: #1e1b18;
	--text-soft: #5c554e;
	--text-muted: #8c857c;
	--accent: #f26f69;
	--accent-light: #e8945c;
	--accent-bg: #fff1f1;
	--accent-border: #fff1f1;
	--border: #e8e0d8;
	--border-light: #f0ebe4;
	--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.09);
	--radius: 20px;
	--radius-sm: 12px;
	--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--font-heading: 'Space Grotesk', 'Georgia', 'Times New Roman', serif;
	--font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

section {
	overflow: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 400;
	color: #1e1b18;
	line-height: 1.25;
}

p {
	color: var(--text-soft);
	line-height: 1.7;
}

a {
	color: var(--accent);
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 80px 0;
}

.section-warm {
	background: var(--bg-warm);
}

/* ========== HEADER ========== */
.header {
	background: #00102b;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border-light);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo, .footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	color: white;
}
.footer-logo {
	justify-content: center;
	margin-bottom: 16px;
}
.header-logo img {
	height: auto;
}

.btn-cta {
	display: inline-block;
	background: var(--accent);
	color: #fff !important;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all var(--transition);
	box-shadow: 0 4px 16px rgba(197, 106, 58, 0.25);
}

.btn-cta:hover {
	background: #d67a4a;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(197, 106, 58, 0.35);
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
}

.mobile-toggle span {
	display: block;
	width: 26px;
	height: 2.5px;
	background: var(--text);
	border-radius: 3px;
}

@media (max-width: 768px) {
	.mobile-toggle {
		display: flex;
	}

	.header-nav-desktop {
		display: none;
	}
}

/* ========== HERO SPLIT ========== */
.hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	min-height: 80vh;
	padding: 40px 0 60px;
}

.hero-badge {
	display: inline-block;
	background: var(--accent-bg);
	color: var(--accent);
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 18px;
	border: 1px solid var(--accent-border);
}

.hero-text h1 {
	font-size: 3rem;
	margin-bottom: 16px;
}

.hero-text p {
	font-size: 1.1rem;
	margin-bottom: 28px;
}

.store-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.store-btns img {
	height: 50px;
	transition: transform var(--transition);
	border-radius: 8px;
}

.store-btns img:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-visual {
	position: relative;
}

.hero-visual img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-hover);
}

.hero-visual::after {
	content: '';
	position: absolute;
	inset: -16px;
	border: 2px dashed var(--accent-border);
	border-radius: 28px;
	z-index: -1;
	opacity: 0.5;
	pointer-events: none;
}

/* ========== FEATURES AS MARQUEE CARDS ========== */
.features-scroll {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.feat-card {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 28px 22px;
	transition: all var(--transition);
	text-align: center;
	position: relative;
}

.feat-card:hover {
	border-color: var(--accent-border);
	box-shadow: var(--shadow-hover);
	transform: translateY(-6px);
}

.feat-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--accent-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	transition: all var(--transition);
}

.feat-card:hover .feat-icon {
	background: var(--accent);
}

.feat-card:hover .feat-icon img {
	filter: brightness(0) invert(1);
}

.feat-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	transition: filter var(--transition);
}

.feat-card h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.feat-card p {
	font-size: 0.9rem;
}

/* ========== ABOUT WITH SIDE ACCENT ========== */
.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-img-wrapper {
	position: relative;
}

.about-img-wrapper img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	width: 100%;
}

.about-img-wrapper::before {
	content: '';
	position: absolute;
	top: 20px;
	left: -20px;
	width: 100%;
	height: 100%;
	background: var(--accent-bg);
	border-radius: var(--radius);
	z-index: -1;
}

.about-content h2 {
	font-size: 2.2rem;
	margin-bottom: 18px;
}

.about-content p {
	margin-bottom: 14px;
}

/* ========== SWIPER GALLERY ========== */
.swiper-gallery {
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.swiper-gallery .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--accent) !important;
	background: rgba(255, 255, 255, 0.8);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	backdrop-filter: blur(8px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px !important;
	font-weight: bold;
}

/* ========== CTA BANNER ========== */
.cta-card {
	background: linear-gradient(135deg, #fff1f1 0%, #fff9f5 100%);
	border: 1px solid var(--accent-border);
	border-radius: var(--radius);
	padding: 55px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-card::before {
	content: '';
	position: absolute;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(197, 106, 58, 0.06) 0%, transparent 70%);
	top: -80px;
	right: -80px;
	border-radius: 50%;
	pointer-events: none;
}

.cta-card h2 {
	font-size: 2.3rem;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

.cta-card p {
	max-width: 600px;
	margin: 0 auto 28px;
	position: relative;
	z-index: 1;
}

.cta-card .store-btns {
	justify-content: center;
	position: relative;
	z-index: 1;
}

/* ========== MAGAZINE ACCORDION ========== */
.accordion-item {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	margin-bottom: 16px;
	overflow: hidden;
	transition: all var(--transition);
}

.accordion-item:hover {
	border-color: var(--accent-border);
	box-shadow: var(--shadow-card);
}

.accordion-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 22px;
	cursor: pointer;
	transition: background var(--transition);
}

.accordion-header:hover {
	background: var(--bg-warm);
}

.accordion-header img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
}

.accordion-header h3 {
	font-size: 1.2rem;
	margin-bottom: 4px;
}

.accordion-header p {
	font-size: 0.9rem;
	margin: 0;
}

.accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s ease, padding 0.45s ease;
	padding: 0 22px;
	background: var(--bg-warm);
}

.accordion-item.active .accordion-body {
	max-height: 200px;
	padding: 18px 22px;
}

.accordion-body a {
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
}

.accordion-body a .arrow {
	transition: transform var(--transition);
}

.accordion-body a:hover .arrow {
	transform: translateX(4px);
}

/* ========== RULES TABS ========== */
.tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	justify-content: center;
}

.tab-btn {
	padding: 10px 22px;
	border-radius: 30px;
	border: 1px solid var(--border);
	background: var(--surface);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all var(--transition);
	color: var(--text-soft);
}

.tab-btn.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	box-shadow: 0 4px 14px rgba(197, 106, 58, 0.3);
}

.tab-btn:hover {
	border-color: var(--accent-border);
}

.tab-panel {
	display: none;
	animation: fadeIn 0.4s ease;
}

.tab-panel.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-panel .rule-content {
	background: var(--surface);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 30px 28px;
	border-left: 4px solid var(--accent);
	box-shadow: var(--shadow-card);
}

.tab-panel h4 {
	color: var(--accent);
	margin-bottom: 10px;
	font-size: 1.2rem;
}

/* ========== FOOTER ========== */
.footer {
	background: #00102b;
	color: #c4bbb2;
	padding: 55px 0 25px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
.big-column {
	grid-column: span 2;
}
.footer-store {
	padding-top: 16px;
}
.footer h4 {
	color: #fff9f5;
	margin-bottom: 14px;
	font-size: 1.05rem;
}

.footer p,
.footer li {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #fff;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #fff;
}

.footer ul {
	list-style: none;
}

.footer ul li {
	margin-bottom: 7px;
}

.footer-logo {
	height: 32px;
	margin-top: 14px;
	opacity: 0.75;
}

.footer-store img {
	height: 38px;
	margin-top: 10px;
	margin-right: 8px;
	display: inline-block;
	border-radius: 6px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 35px;
	padding-top: 18px;
	text-align: center;
	font-size: 0.82rem;
	color: #8c8278;
}

@media (max-width: 991px) {

	.hero-split,
	.about-row {
		grid-template-columns: 1fr;
	}

	.features-scroll {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.features-scroll {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-text h1 {
		font-size: 2.2rem;
	}
	.big-column {
		grid-column: span 1;
	}
	h2 {
		font-size: 1.8rem !important;
	}
}
.docs {
	padding: 50px 0;
	word-break: break-word;
}
.docs h1 {
	margin-bottom: 20px;
}