/* =========================================================
   PayWoow Hero — Yayıncılık Platformlarımız
   Yalnızca hero bölümünü kapsar.
   ========================================================= */

.paywoow-hero {
	position: relative;
	min-height: 260px;
	display: grid;
	align-items: center;
	overflow: hidden;
	padding: 20px 0 28px;
}

.paywoow-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 58% 32%, rgba(116, 54, 238, 0.18), transparent 30%),
		radial-gradient(circle at 18% 45%, rgba(89, 45, 180, 0.08), transparent 35%),
		#030817;
}

.paywoow-hero__inner {
	position: relative;
	z-index: 2;
	width: min(1280px, calc(100% - 64px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px) minmax(280px, 0.8fr);
	align-items: center;
	gap: 24px;
}

/* ===== Sol içerik ===== */
.paywoow-hero__content { padding-right: 8px; }

.paywoow-hero__eyebrow {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.2px;
}
.paywoow-hero__eyebrow-accent {
	color: var(--pw-primary-light);
}

.paywoow-hero__title {
	margin: 0 0 20px;
	font-size: clamp(42px, 4.5vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.04em;
	font-weight: 750;
	display: flex;
	flex-direction: column;
}
.paywoow-hero__title-line { color: #fff; }
.paywoow-hero__title-line--accent {
	background: linear-gradient(135deg, var(--pw-primary-light), var(--pw-primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.paywoow-hero__description {
	max-width: 460px;
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
	margin: 0;
}

/* ===== Telefon mockup ===== */
.paywoow-hero__phone-col {
	display: flex;
	justify-content: center;
}

.paywoow-phone {
	position: relative;
	z-index: 5;
	width: clamp(calc(var(--pw-phone-width-base, 230px) * 0.89), 15vw, calc(var(--pw-phone-width-base, 230px) * 1.13));
	margin-inline: auto;
	transform: translateY(0);
}

.paywoow-phone__frame {
	position: relative;
	aspect-ratio: var(--pw-phone-ratio, 9 / 19);
}

.paywoow-phone__screen {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #0b1125, #10172d);
}
.paywoow-phone__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.paywoow-phone__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.paywoow-phone__placeholder-logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: conic-gradient(from 220deg, var(--pw-primary), var(--pw-primary-light), var(--pw-primary));
	opacity: 0.5;
}

/* ===== Sağ "Uygulama Seç" alanı ===== */
.paywoow-hero__cta-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding-left: 8px;
}

.paywoow-hero__cta-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 600;
}

.paywoow-hero__select-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 230px;
	padding: 15px 26px;
	border-radius: 14px;
	border: none;
	background: linear-gradient(135deg, #8548ff, #5f20d5);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(113, 56, 237, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.paywoow-hero__select-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 36px rgba(113, 56, 237, 0.55);
}

.paywoow-hero__cta-hint {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 4px 0 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
	max-width: 260px;
}
.paywoow-hero__cta-arrow {
	flex: 0 0 auto;
	color: var(--pw-primary-light);
	margin-top: 2px;
}

/* ===== Alt kavisli geçiş ===== */
.paywoow-hero__curve {
	position: absolute;
	left: -5%;
	right: -5%;
	bottom: -35px;
	height: 70px;
	background: #030817;
	border-radius: 50% 50% 0 0 / 60% 60% 0 0;
	z-index: 1;
	pointer-events: none;
}
