/*
Theme Name: Cheporeklame Landing
Author: Codex
Description: Custom landing page for Cheporeklame.
Version: 1.0.0
Text Domain: cheporeklame-landing
*/

:root {
	--chepo-ink: #111827;
	--chepo-muted: #5f6675;
	--chepo-line: rgba(17, 24, 39, 0.12);
	--chepo-pink: #ff4f92;
	--chepo-red: #ff3d57;
	--chepo-yellow: #ffd743;
	--chepo-blue: #5bc7ff;
	--chepo-green: #4bd081;
	--chepo-bg: #fff8ee;
	--chepo-white: #ffffff;
	--chepo-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--chepo-bg);
	color: var(--chepo-ink);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

body.chepo-no-scroll {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.chepo-page {
	overflow: hidden;
	background:
		radial-gradient(circle at 7% 9%, rgba(255, 215, 67, 0.65), transparent 18rem),
		radial-gradient(circle at 93% 2%, rgba(91, 199, 255, 0.34), transparent 20rem),
		linear-gradient(180deg, #fff8ee 0%, #ffffff 46%, #fff4e7 100%);
}

.chepo-wrap {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.chepo-header {
	position: fixed;
	z-index: 20;
	top: 18px;
	left: 50%;
	width: min(1180px, calc(100% - 32px));
	transform: translateX(-50%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
	backdrop-filter: blur(18px);
}

.chepo-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 14px 18px;
}

.chepo-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 190px;
}

.chepo-logo img {
	width: 168px;
	height: auto;
}

.chepo-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #303746;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.chepo-menu a {
	transition: color 0.2s ease;
}

.chepo-menu a:hover {
	color: var(--chepo-red);
}

.chepo-phone {
	color: #202838;
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.chepo-phone:hover {
	color: var(--chepo-red);
}

.chepo-phone-icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--chepo-red), var(--chepo-pink));
	box-shadow: 0 14px 28px rgba(255, 61, 87, 0.24);
	color: #fff;
}

.chepo-phone-icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.chepo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--chepo-red), var(--chepo-pink));
	box-shadow: 0 16px 36px rgba(255, 61, 87, 0.28);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chepo-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(255, 61, 87, 0.34);
}

.chepo-button--ghost {
	background: #ffffff;
	box-shadow: inset 0 0 0 1px var(--chepo-line);
	color: var(--chepo-ink);
}

.chepo-burger {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--chepo-ink);
	color: #fff;
	font-size: 0;
	cursor: pointer;
}

.chepo-burger span,
.chepo-burger::before,
.chepo-burger::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 3px 0;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.chepo-hero {
	position: relative;
	min-height: 760px;
	padding: 150px 0 72px;
}

.chepo-hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(255, 248, 238, 0.94) 0%, rgba(255, 248, 238, 0.76) 48%, rgba(255, 248, 238, 0.3) 100%),
		var(--chepo-hero-image) center right / min(58vw, 760px) auto no-repeat;
	content: "";
}

.chepo-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 650px) minmax(280px, 1fr);
	align-items: center;
	gap: 42px;
}

.chepo-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 20px;
	padding: 8px 15px;
	border: 1px solid rgba(255, 61, 87, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--chepo-red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.chepo-kicker::before {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--chepo-yellow);
	content: "";
}

.chepo-hero h1,
.chepo-section-title {
	margin: 0;
	font-size: clamp(46px, 6vw, 92px);
	line-height: 0.96;
	font-weight: 950;
	letter-spacing: 0;
}

.chepo-gradient-text {
	background: linear-gradient(135deg, var(--chepo-red), var(--chepo-pink) 42%, #7b61ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.chepo-lead {
	max-width: 650px;
	margin: 26px 0 0;
	color: #363d4b;
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.55;
}

.chepo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.chepo-hero__aside {
	align-self: end;
}

.chepo-floating {
	display: grid;
	gap: 16px;
	max-width: 390px;
	margin-left: auto;
}

.chepo-mini-card {
	position: relative;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--chepo-shadow);
	backdrop-filter: blur(16px);
}

.chepo-mini-card strong {
	display: block;
	font-size: 42px;
	line-height: 1;
}

.chepo-mini-card span {
	color: var(--chepo-muted);
	font-weight: 700;
}

.chepo-sticker {
	width: max-content;
	margin-left: auto;
	padding: 16px 22px;
	border-radius: 999px;
	background: var(--chepo-yellow);
	box-shadow: 0 16px 34px rgba(204, 154, 0, 0.22);
	font-weight: 950;
	transform: rotate(-5deg);
}

.chepo-wave {
	position: relative;
	margin-top: -2px;
	color: #fff;
}

.chepo-wave svg {
	display: block;
	width: 100%;
	height: 82px;
}

.chepo-section {
	position: relative;
	padding: 98px 0;
	background: #fff;
}

.chepo-section--cream {
	background: #fff4e7;
}

.chepo-section--dark {
	background: #111827;
	color: #fff;
}

.chepo-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 42px;
}

.chepo-section-title {
	max-width: 780px;
	font-size: clamp(38px, 5vw, 70px);
}

.chepo-section-copy {
	max-width: 430px;
	margin: 0;
	color: var(--chepo-muted);
	font-size: 18px;
}

.chepo-section--dark .chepo-section-copy,
.chepo-section--dark .chepo-card p,
.chepo-section--dark .chepo-step p {
	color: rgba(255, 255, 255, 0.72);
}

.chepo-goals {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.chepo-goal {
	position: relative;
	min-height: 260px;
	padding: 34px;
	border-radius: 30px;
	background: var(--chepo-card-bg, #fff);
	box-shadow: var(--chepo-shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chepo-goal::after {
	position: absolute;
	right: -48px;
	bottom: -48px;
	width: 130px;
	height: 130px;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.34);
	transform: rotate(18deg) scale(0.8);
	transition: transform 0.25s ease, opacity 0.25s ease;
	content: "";
	opacity: 0;
}

.chepo-goal:hover {
	transform: translateY(-10px) rotate(-1deg);
	box-shadow: 0 34px 86px rgba(17, 24, 39, 0.2);
}

.chepo-goal:hover::after {
	opacity: 1;
	transform: rotate(18deg) scale(1);
}

.chepo-goal:nth-child(1) {
	--chepo-card-bg: #ffd743;
}

.chepo-goal:nth-child(2) {
	--chepo-card-bg: #ff6aa4;
	color: #fff;
}

.chepo-goal:nth-child(3) {
	--chepo-card-bg: #5bc7ff;
}

.chepo-goal span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 28px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 26px;
	font-weight: 950;
}

.chepo-goal h3,
.chepo-card h3,
.chepo-step h3 {
	margin: 0 0 12px;
	font-size: 26px;
	line-height: 1.15;
}

.chepo-goal p,
.chepo-card p,
.chepo-step p {
	margin: 0;
	color: #3d4656;
}

.chepo-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.chepo-card {
	position: relative;
	min-height: 265px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.chepo-card::after {
	position: absolute;
	right: -32px;
	bottom: -32px;
	width: 118px;
	height: 118px;
	border-radius: 34px;
	background: var(--chepo-accent, var(--chepo-pink));
	opacity: 0.22;
	transform: rotate(18deg);
	transition: transform 0.25s ease, opacity 0.25s ease;
	content: "";
}

.chepo-card:hover {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
	transform: translateY(-10px);
}

.chepo-card:hover::after {
	opacity: 0.36;
	transform: rotate(18deg) scale(1.16);
}

.chepo-card__icon,
.chepo-card h3,
.chepo-card p,
.chepo-card .chepo-tags,
.chepo-goal span,
.chepo-goal h3,
.chepo-goal p {
	position: relative;
	z-index: 1;
}

.chepo-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 24px;
	border-radius: 19px;
	background: var(--chepo-accent, var(--chepo-pink));
	color: #111827;
	font-size: 26px;
	font-weight: 950;
}

.chepo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.chepo-tag {
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 800;
}

.chepo-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.chepo-step {
	padding: 28px;
	border: 1px solid var(--chepo-line);
	border-radius: 28px;
	background: #fff;
}

.chepo-step span {
	display: block;
	margin-bottom: 50px;
	color: var(--chepo-red);
	font-size: 15px;
	font-weight: 950;
}

.chepo-media {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: stretch;
	gap: 24px;
}

.chepo-showcase {
	position: relative;
	min-height: 520px;
	border-radius: 36px;
	background: #ffffff;
	box-shadow: var(--chepo-shadow);
	overflow: hidden;
}

.chepo-showcase img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chepo-showcase__label {
	position: absolute;
	left: 24px;
	bottom: 24px;
	max-width: calc(100% - 48px);
	padding: 14px 18px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.88);
	color: #fff;
	font-weight: 900;
}

.chepo-stack {
	display: grid;
	gap: 24px;
}

.chepo-stack .chepo-showcase {
	min-height: 248px;
	border-radius: 30px;
}

.chepo-cta {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
	align-items: start;
	gap: 30px;
	padding: 54px;
	border-radius: 38px;
	background:
		linear-gradient(135deg, rgba(255, 61, 87, 0.94), rgba(255, 79, 146, 0.94)),
		var(--chepo-cta-image) center / cover;
	color: #fff;
	box-shadow: 0 30px 80px rgba(255, 61, 87, 0.26);
}

.chepo-cta h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(36px, 5vw, 66px);
	line-height: 1.02;
}

.chepo-cta p {
	max-width: 650px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 20px;
}

.chepo-cta .chepo-button {
	background: #fff;
	box-shadow: 0 16px 38px rgba(17, 24, 39, 0.16);
	color: var(--chepo-red);
	white-space: nowrap;
}

.chepo-form {
	width: 100%;
	min-width: 0;
	padding: 24px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 20px 58px rgba(17, 24, 39, 0.18);
	color: var(--chepo-ink);
}

.chepo-form .wpcf7 {
	margin: 0;
}

.chepo-form p {
	margin: 0 0 14px;
	color: var(--chepo-ink);
	font-size: 14px;
	font-weight: 850;
}

.chepo-form label {
	display: grid;
	gap: 6px;
}

.chepo-form .chepo-consent,
.chepo-form [data-name="privacy-consent"] {
	display: block;
	margin: 8px 0 16px;
	color: var(--chepo-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.chepo-form .chepo-consent .wpcf7-list-item,
.chepo-form [data-name="privacy-consent"] .wpcf7-list-item {
	margin: 0;
}

.chepo-form .chepo-consent label,
.chepo-form [data-name="privacy-consent"] label {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	cursor: pointer;
}

.chepo-form .chepo-consent input,
.chepo-form [data-name="privacy-consent"] input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin: 1px 0 0;
	padding: 0;
	accent-color: var(--chepo-pink);
}

.chepo-form input,
.chepo-form textarea {
	max-width: 100%;
	width: 100%;
	min-height: 48px;
	padding: 12px 15px;
	border: 1px solid rgba(17, 24, 39, 0.13);
	border-radius: 16px;
	background: #fff;
	color: var(--chepo-ink);
	font: inherit;
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chepo-form textarea {
	min-height: 108px;
	resize: vertical;
}

.chepo-form input:focus,
.chepo-form textarea:focus {
	border-color: var(--chepo-pink);
	box-shadow: 0 0 0 4px rgba(255, 79, 146, 0.14);
}

.chepo-form input[type="submit"] {
	min-height: 52px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--chepo-red), var(--chepo-pink));
	box-shadow: 0 16px 32px rgba(255, 61, 87, 0.24);
	color: #fff;
	font-weight: 950;
	cursor: pointer;
}

.chepo-form .wpcf7-spinner {
	margin: 12px 0 0 8px;
}

.chepo-form .wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 700;
}

.chepo-form .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 10px 12px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
}

.chepo-footer {
	padding: 30px 0 44px;
	background: #111827;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.chepo-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.chepo-footer__contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 18px;
	text-align: center;
}

.chepo-footer img {
	width: 146px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.chepo-footer a {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.chepo-menu,
	.chepo-header .chepo-button,
	.chepo-phone--desktop {
		display: none;
	}

	.chepo-phone-icon,
	.chepo-burger {
		display: flex;
		flex-direction: column;
        align-items: center;
        justify-content: center;
	}

	.chepo-header.is-open .chepo-menu {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: 0;
		display: grid;
		gap: 0;
		padding: 16px;
		border-radius: 24px;
		background: #fff;
		box-shadow: var(--chepo-shadow);
	}

	.chepo-header.is-open .chepo-menu a {
		display: block;
		padding: 13px 6px;
	}

	.chepo-hero__inner,
	.chepo-media,
	.chepo-cta {
		grid-template-columns: 1fr;
	}

	.chepo-hero::before {
		background:
			linear-gradient(180deg, rgba(255, 248, 238, 0.96) 0%, rgba(255, 248, 238, 0.76) 58%, rgba(255, 248, 238, 0.96) 100%),
			var(--chepo-hero-image) center bottom / 760px auto no-repeat;
	}

	.chepo-floating {
		margin-left: 0;
	}

	.chepo-goals,
	.chepo-services,
	.chepo-process {
		grid-template-columns: repeat(2, 1fr);
	}

	.chepo-section-head {
		display: block;
	}

	.chepo-section-copy {
		margin-top: 18px;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}

	.chepo-wrap {
		width: min(100% - 28px, 1180px);
	}

	.chepo-header {
		top: 10px;
		width: calc(100% - 20px);
		border-radius: 22px;
	}

	.chepo-logo img {
		width: 132px;
	}

	.chepo-hero {
		min-height: 720px;
		padding: 118px 0 44px;
	}

	.chepo-hero h1 {
		font-size: clamp(40px, 13vw, 58px);
	}

	.chepo-lead {
		font-size: 18px;
	}

	.chepo-actions,
	.chepo-actions .chepo-button {
		width: 100%;
	}

	.chepo-goals,
	.chepo-services,
	.chepo-process {
		grid-template-columns: 1fr;
	}

	.chepo-section {
		padding: 70px 0;
	}

	.chepo-goal,
	.chepo-card,
	.chepo-step {
		padding: 24px;
		border-radius: 24px;
	}

	.chepo-showcase,
	.chepo-stack .chepo-showcase {
		min-height: 300px;
		border-radius: 26px;
	}

	.chepo-cta {
		padding: 32px 22px;
		border-radius: 28px;
	}

	.chepo-form {
		padding: 20px;
		border-radius: 22px;
	}

	.chepo-form .chepo-consent label {
		grid-template-columns: 18px minmax(0, 1fr);
	}

	.chepo-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.chepo-footer__contacts {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		text-align: left;
	}
}
