/* ============================================
   Affiliate / Partner Program Page Styles
   ============================================ */

/* --- Nav Dropdown --- */
.nav-dropdown {
	position: relative;
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.nav-dropdown-toggle svg {
	width: 10px;
	height: 10px;
	transition: transform 0.2s;
}

/* --- Hero Section --- */
.aff-hero {
	width: 100%;
	background: linear-gradient(180deg, var(--color-aliceblue-100), rgba(239, 246, 255, 0)), linear-gradient(var(--color-aliceblue-100), var(--color-aliceblue-100));
	padding: 160px 0 0px;
	position: relative;
	overflow: hidden;
}

.aff-hero-deco img {
    width: 100%;
}

.aff-hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: center;
	gap: 80px;
}

.aff-hero-left {
	flex: 1;
	position: relative;
}

.aff-hero-image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aff-hero-image {
	width: 100%;
	/* max-width: 480px; */
	height: auto;
	border-radius: 16px;
	position: relative;
	z-index: 1;
	animation: heroImageEntry 1s ease-out forwards;
}

@keyframes heroImageEntry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.aff-badge-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.aff-hero-badge {
	position: absolute;
	bottom: 40%;
	right: -10px;
	background: #ffffff;
	border-radius: 12px;
	padding: 10px 16px;
	border: 1.19px solid #CDE6FF;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 2;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0f172a;

}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    }
}

.aff-hero-badge small {
	font-weight: 400;
	color: #64748b;
	font-size: 11px;
}


.aff-hero-deco {
	position: absolute;
	z-index: 0;
	opacity: 0.8;
}

.aff-deco-dollar-1 {
    top: -8%;
    left: 15%;
    animation: floatUp 3s ease-in-out infinite;
}

.aff-deco-dollar-2 {
	top: 18%;
	left: -5%;
    animation: floatDiagonal 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.aff-deco-bulb {
    top: -5%;
    right: 6%;
    animation: floatUp 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.aff-deco-potli {
	bottom: 10%;
	left: 0%;
    animation: floatDiagonal 3.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

.aff-deco-aro {
	bottom: 8%;
	right: 10%;
    animation: floatUp 3.2s ease-in-out infinite;
    animation-delay: 0.7s;
}

/* Floating Animations */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatDiagonal {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(5px, -10px) rotate(3deg);
    }
}

.aff-hero-right {
	flex: 1;
	text-align: left;
	max-width: 560px;
}

.aff-hero-title {
	font-family: 'Manrope', sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	margin: 0 0 20px;
}

.aff-highlight {
	color: #155dfc;
}

.aff-hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: #64748b;
	margin: 0 0 28px;
}

.aff-hero-subtitle strong {
	color: #155dfc;
}

.aff-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: #155dfc;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	box-shadow: 0 4px 14px rgba(21, 93, 252, 0.3);
}

.aff-hero-btn img {
	width: 12px;
	height: 12px;
	filter: brightness(10);
}

.aff-hero-btn:hover {
	background: #1249d6;
	transform: translateY(-1px);
	color: #ffffff;
}

.aff-hero-features {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 24px;
}

.aff-hero-feature {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #475569;
}

.aff-hero-corner-deco {
    position: absolute;
    bottom: 0;
    right: 90px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;

}

@keyframes floatCorner {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
        opacity: 0.45;
    }
}

/* --- Experience the Platform Section --- */
.aff-platform {
	width: 100%;
	background: #ffffff;
	padding: 90px 0;
}

.aff-platform-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
	text-align: center;
}

.aff-section-title {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 12px;
}

.aff-section-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #64748b;
	margin: 0 0 50px;
	line-height: 1.6;
}

.aff-platform-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.aff-platform-card {
	background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);

	border: 1px solid var(--dark-main, #101828);
	border-radius: 14px;
	padding: 32px 24px;
	text-align: left;
	transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}



.aff-platform-card-icon {

	margin-bottom: 16px;
}

/* .aff-platform-card-icon img {
	width: 24px;
	height: 24px;
} */

.aff-platform-card h3 {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 8px;
}

.aff-platform-card p {
	font-family: 'Manrope', sans-serif;

	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* --- Commission Plan Section --- */
.aff-commission {
	width: 100%;
	padding: 40px 0 80px;
}

.aff-commission-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 10px;
}

.aff-commission-card {
	background: linear-gradient(103.76deg, #2563EB 0%, #4F46E5 100%);

	border-radius: 24px;
	padding: 50px;
	position: relative;
	overflow: hidden;
}

.aff-commission-deco {
	position: absolute;
	opacity: 0.2;
}
.aff-commission-deco-1 img {
    width: 80%;
}
.aff-commission-deco-1 {
	top: 30px;
	left: 40px;
}

.aff-commission-deco-2 {
	top: 80px;
	left: 100px;
}

.aff-commission-deco-3 {
	bottom: 60px;
	left: 60px;
}

.aff-commission-header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.aff-commission-label {
		font-family: 'Manrope', sans-serif;

	font-size: 18px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
	display: block;
}

.aff-commission-title {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.aff-commission-content {
	display: flex;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.aff-commission-left {
	flex: 1;
	text-align: center;
}

.aff-commission-percent {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 8px;
}

.aff-percent-number {
	font-family: 'Manrope', sans-serif;
	font-size: 50px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.aff-percent-sign {
	font-family: 'Manrope', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-top: 12px;
}

.aff-commission-type {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 12px;
}

.aff-commission-desc {
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 390px;
	margin-left: auto;
	margin-right: auto;
}

.aff-commission-badges {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.aff-commission-badge {
	display: flex;
	align-items: center;
		max-width:275px;

	gap: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 8px 12px;
}



.aff-commission-badge span {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: #ffffff;
	text-align: left;
	line-height: 1;
}

.aff-commission-badge strong {
	font-size: 16px;
	display: block;
}

.aff-commission-badge small {
	font-size: 12px;
	opacity: 0.8;
}

.aff-commission-right {
	flex: 1;
	max-width: 450px;
}

.aff-earnings-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.aff-earnings-card h4 {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
	text-align: left;
}

.aff-earnings-desc {
		font-family: 'Manrope', sans-serif;

	font-size: 14px;
	color: #64748b;
	margin: 0 0 20px;
	text-align: left;

}

.aff-earnings-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
	border: 1px solid #4A556533;
	padding: 16px;
	border-radius: 8px;
}

.aff-earnings-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid #4A556533;
}

.aff-earnings-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.aff-earnings-item div {
	display: flex;
	flex-direction: column;
}

.aff-earnings-item strong {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
	text-align: left;
}

.aff-earnings-item span {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #4A5565;
	text-align: left;
}

.aff-earnings-amount {
		font-family: 'Manrope', sans-serif !important;

	font-size: 14px;
	font-weight: 700;
	color: #059669 !important;
	text-align: right !important;
}

.aff-earnings-footer {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #94a3b8;
	text-align: center;
	margin: 0;
	font-style: italic;
}

/* --- Ready to Start Earning CTA --- */
.aff-cta {
	width: 100%;
	padding: 60px 0 0;
	background: #F5F6FF;

}

.aff-cta-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 60px;
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}

.aff-cta-icon {
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    left: 0px;
}
.aff-cta-rocket {

}

.aff-cta-content {
	text-align: left;
	flex: 1;
}

.aff-cta-content h2 {
	font-family: 'Manrope', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
}

.aff-cta-content p {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

.aff-cta-action {
	flex-shrink: 0;
	text-align: center;
}

.aff-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: #155dfc;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	box-shadow: 0 4px 14px rgba(21, 93, 252, 0.3);
}

.aff-cta-btn img {
	width: 12px;
	height: 12px;
	filter: brightness(10);
}

.aff-cta-btn:hover {
	background: #1249d6;
	transform: translateY(-1px);
	color: #ffffff;
}

.aff-cta-note {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #94a3b8;
	margin: 10px 0 0;
}
.aff-cta-icon img {
    max-width: 200px;
}

.aff-cta-icon {
    max-width: 200px;
    flex: 0 0 200px;
    position: relative;
    top: -25px;
}

.aff-cta-content {
    max-width: calc(100% - 510px);
    flex: 0 0 calc(100% - 510px);
}

.aff-cta-inner {
    padding: 40px 0;
    max-height: 160px;
    align-items: center;
}

.aff-cta {
    padding-top: 0;
}
/* --- Trust Stats Bar --- */
.aff-trust-bar {
	width: 100%;
	background: #020617;
	padding: 60px 0;
	border-top: none;
}

.aff-trust-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
	text-align: center;
}

.aff-trust-title {
		font-family: 'Manrope', sans-serif;

	font-size: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 30px;
}

.aff-trust-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.aff-trust-stat {
	display: flex;
	align-items: center;
	gap: 12px;
}

.aff-trust-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aff-trust-icon img,
.aff-trust-icon svg {
	width: 20px;
	height: 20px;
}

.aff-trust-info {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.aff-trust-info strong {
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
}

.aff-trust-info span {
		font-family: 'Manrope', sans-serif;

	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
}

.aff-trust-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   Responsive
   ============================================ */
@media screen and (max-width: 1100px) {
	.aff-hero-inner {
		padding: 0 40px;
		gap: 40px;
	}

	.aff-hero-title {
		font-size: 36px;
	}

	.aff-platform-inner {
		padding: 0 40px;
	}

	.aff-commission-inner {
		padding: 0 40px;
	}

	.aff-cta-inner {
		padding: 0 40px;
	}
}

@media screen and (max-width: 900px) {
	.aff-hero {
		padding: 120px 0 60px;
	}

	.aff-hero-inner {
		flex-direction: column;
		padding: 0 28px;
		gap: 40px;
	}

	.aff-hero-left {
		order: 1;
	}

	.aff-hero-right {
		order: 2;
		text-align: center;
		max-width: 100%;
	}

	.aff-hero-title {
		font-size: 30px;
	}

	.aff-hero-features {
		justify-content: center;
		flex-wrap: wrap;
		gap: 16px;
	}

	.aff-hero-corner-deco {
		display: none;
	}

	.aff-platform {
		padding: 60px 0;
	}

	.aff-platform-inner {
		padding: 0 28px;
	}

	.aff-platform-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.aff-commission-inner {
		padding: 0 28px;
	}

	.aff-commission-card {
		padding: 36px 28px;
	}

	.aff-commission-content {
		flex-direction: column;
		gap: 30px;
	}

	.aff-commission-right {
		max-width: 100%;
		width: 100%;
	}

	.aff-cta-inner {
		flex-direction: column;
		text-align: center;
		padding: 0 28px;
		gap: 20px;
	}

	.aff-cta-content h2 {
		font-size: 26px;
	}

	.aff-trust-stats {
		flex-wrap: wrap;
		gap: 24px;
	}

	.aff-trust-divider {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.aff-hero {
		padding: 100px 0 40px;
	}

	.aff-hero-inner {
		padding: 0 18px;
		gap: 30px;
	}

	.aff-hero-title {
		font-size: 24px;
	}

	.aff-hero-subtitle {
		font-size: 15px;
	}

	.aff-hero-features {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.aff-hero-badge {
		right: 0;
		bottom: 10%;
	}

	.aff-hero-image {
		max-width: 320px;
	}

	.aff-platform {
		padding: 50px 0;
	}

	.aff-platform-inner {
		padding: 0 18px;
	}

	.aff-platform-cards {
		grid-template-columns: 1fr;
	}

	.aff-section-title {
		font-size: 28px;
	}

	.aff-commission-inner {
		padding: 0 18px;
	}

	.aff-commission-card {
		padding: 28px 20px;
		border-radius: 18px;
	}

	.aff-commission-title {
		font-size: 24px;
	}

	.aff-percent-number {
		font-size: 40px;
	}

	.aff-commission-badges {
		flex-direction: column;
		align-items: center;
	}

	.aff-cta {
		padding: 40px 0 60px;
	}

	.aff-cta-inner {
		padding: 0 18px;
	}

	.aff-cta-content h2 {
		font-size: 22px;
	}

	.aff-cta-rocket {
		width: 70px;
	}

	.aff-trust-inner {
		padding: 0 18px;
	}

	.aff-trust-stats {
		flex-direction: column;
		gap: 20px;
	}

	.aff-trust-stat {
		width: 100%;
		justify-content: center;
	}
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	.aff-hero-deco,
	.aff-hero-image,
	.aff-hero-corner-deco,
	.aff-badge-icon {
		animation: none;
	}
}
