/* ==========================================================================
   STUDENT SAARTHI PREMIUM HOMEPAGE
   FILE: assets/css/home.css
   PART 1: BASE + HERO + TRUST STRIP
   ========================================================================== */

:root {
	--ssh-primary: #5b3df5;
	--ssh-primary-dark: #3520bb;
	--ssh-primary-deep: #23156f;
	--ssh-primary-soft: #eeeaff;

	--ssh-secondary: #ff7a00;
	--ssh-secondary-dark: #d85d00;
	--ssh-secondary-soft: #fff1e5;

	--ssh-success: #16a866;
	--ssh-success-dark: #087d48;
	--ssh-success-soft: #e7f9ef;

	--ssh-cyan: #05a9d6;
	--ssh-cyan-soft: #e5f9ff;

	--ssh-red: #ef4444;
	--ssh-red-soft: #fff0f0;

	--ssh-dark: #0b1020;
	--ssh-dark-two: #111a34;
	--ssh-heading: #151a2d;
	--ssh-text: #495269;
	--ssh-muted: #748097;

	--ssh-white: #ffffff;
	--ssh-bg: #f7f8fc;
	--ssh-bg-two: #f0f3fb;
	--ssh-card: #ffffff;
	--ssh-border: #e7eaf2;
	--ssh-border-dark: rgba(255, 255, 255, 0.12);

	--ssh-shadow-sm: 0 5px 18px rgba(17, 24, 39, 0.07);
	--ssh-shadow-md: 0 14px 38px rgba(17, 24, 39, 0.11);
	--ssh-shadow-lg: 0 26px 75px rgba(17, 24, 39, 0.18);
	--ssh-shadow-primary: 0 18px 45px rgba(91, 61, 245, 0.28);

	--ssh-radius-sm: 10px;
	--ssh-radius-md: 16px;
	--ssh-radius-lg: 22px;
	--ssh-radius-xl: 30px;

	--ssh-container: 1440px;
	--ssh-transition: 0.28s ease;
}

/* ==========================================================================
   HOMEPAGE RESET
   ========================================================================== */

.ss-homepage,
.ss-homepage *,
.ss-homepage *::before,
.ss-homepage *::after {
	box-sizing: border-box;
}

.ss-homepage {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--ssh-bg);
	color: var(--ssh-text);
	font-family: "Poppins", Arial, sans-serif;
}

.ss-homepage img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ss-homepage a {
	text-decoration: none;
}

.ss-homepage button,
.ss-homepage input,
.ss-homepage select,
.ss-homepage textarea {
	font: inherit;
}

.ss-homepage button {
	cursor: pointer;
}

.ss-homepage svg {
	display: block;
	width: 100%;
	height: 100%;
}

.ss-home-container {
	position: relative;
	z-index: 2;
	width: min(100% - 32px, var(--ssh-container));
	margin-inline: auto;
}

.ss-home-section {
	position: relative;
	padding: 82px 0;
}

.ss-home-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--ssh-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.ss-home-section-label::before {
	content: "";
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		var(--ssh-primary),
		#9b8cff
	);
}

.ss-home-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	overflow: hidden;
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition),
		background var(--ssh-transition),
		color var(--ssh-transition),
		border-color var(--ssh-transition);
}

.ss-home-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -130%;
	width: 45%;
	height: 100%;
	background:
		linear-gradient(
			110deg,
			transparent,
			rgba(255, 255, 255, 0.35),
			transparent
		);
	transform: skewX(-20deg);
	transition: left 0.65s ease;
}

.ss-home-btn:hover::before {
	left: 140%;
}

.ss-home-btn:hover {
	transform: translateY(-3px);
}

.ss-home-btn svg {
	position: relative;
	z-index: 1;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.ss-home-btn > * {
	position: relative;
	z-index: 1;
}

.ss-home-btn-primary {
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary) 0%,
			var(--ssh-primary-dark) 100%
		);
	color: var(--ssh-white);
	box-shadow: var(--ssh-shadow-primary);
}

.ss-home-btn-primary:hover {
	color: var(--ssh-white);
	box-shadow: 0 24px 55px rgba(91, 61, 245, 0.36);
}

.ss-home-btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.11);
	color: var(--ssh-white);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.ss-home-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.18);
	color: var(--ssh-white);
}

.ss-home-btn-light {
	border: 1px solid var(--ssh-border);
	background: var(--ssh-white);
	color: var(--ssh-heading);
	box-shadow: var(--ssh-shadow-sm);
}

.ss-home-btn-light:hover {
	border-color: #cfc9ff;
	color: var(--ssh-primary);
	box-shadow: var(--ssh-shadow-md);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.ss-home-hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	padding: 78px 0 88px;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			#070b18 0%,
			#10182f 25%,
			#25136d 61%,
			#4429d8 100%
		);
	color: var(--ssh-white);
	isolation: isolate;
}

.ss-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		);
	background-size: 42px 42px;
	mask-image:
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.85),
			transparent
		);
	-webkit-mask-image:
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.85),
			transparent
		);
}

.ss-home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(
			circle at 12% 18%,
			rgba(98, 198, 255, 0.18),
			transparent 28%
		),
		radial-gradient(
			circle at 82% 22%,
			rgba(255, 122, 0, 0.17),
			transparent 24%
		),
		radial-gradient(
			circle at 58% 85%,
			rgba(139, 92, 246, 0.24),
			transparent 32%
		);
	pointer-events: none;
}

.ss-home-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.ss-home-hero-shape {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(10px);
	opacity: 0.45;
	animation: ssHomeHeroFloat 9s ease-in-out infinite;
}

.ss-home-hero-shape-one {
	top: 6%;
	left: -110px;
	width: 310px;
	height: 310px;
	background:
		radial-gradient(
			circle,
			rgba(35, 176, 255, 0.55),
			rgba(35, 176, 255, 0)
		);
}

.ss-home-hero-shape-two {
	top: 8%;
	right: -130px;
	width: 390px;
	height: 390px;
	background:
		radial-gradient(
			circle,
			rgba(255, 122, 0, 0.42),
			rgba(255, 122, 0, 0)
		);
	animation-delay: -3s;
}

.ss-home-hero-shape-three {
	bottom: -180px;
	left: 45%;
	width: 460px;
	height: 460px;
	background:
		radial-gradient(
			circle,
			rgba(139, 92, 246, 0.6),
			rgba(139, 92, 246, 0)
		);
	animation-delay: -6s;
}

@keyframes ssHomeHeroFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(0, -28px, 0) scale(1.06);
	}
}

.ss-home-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(470px, 0.94fr);
	align-items: center;
	gap: 72px;
}

.ss-home-hero-content {
	position: relative;
	z-index: 3;
	max-width: 780px;
}

.ss-home-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: #f2f0ff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.45px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 12px 30px rgba(0, 0, 0, 0.16);
}

.ss-home-hero-badge span {
	width: 17px;
	height: 17px;
	color: #ffd572;
}

.ss-home-hero h1 {
	max-width: 800px;
	margin: 22px 0 0;
	color: var(--ssh-white);
	font-size: clamp(46px, 5vw, 76px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -2.9px;
	text-wrap: balance;
}

.ss-home-hero h1 span {
	display: inline-block;
	background:
		linear-gradient(
			90deg,
			#ffffff 0%,
			#b8d9ff 38%,
			#ffd18a 72%,
			#ffffff 100%
		);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: ssHomeHeroTextShine 7s linear infinite;
}

@keyframes ssHomeHeroTextShine {
	to {
		background-position: 220% center;
	}
}

.ss-home-hero-content > p {
	max-width: 690px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.85;
}

/* ==========================================================================
   HERO SEARCH
   ========================================================================== */

.ss-home-hero-search {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: min(100%, 690px);
	min-height: 66px;
	margin-top: 32px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition),
		border-color var(--ssh-transition);
}

.ss-home-hero-search:focus-within {
	transform: translateY(-2px);
	border-color: rgba(182, 170, 255, 0.75);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.3),
		0 0 0 5px rgba(129, 104, 255, 0.13);
}

.ss-home-hero-search-icon {
	width: 22px;
	height: 22px;
	margin-left: 15px;
	color: #8c96a9;
}

.ss-home-hero-search input {
	width: 100%;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ssh-heading);
	font-size: 14px;
	font-weight: 500;
}

.ss-home-hero-search input::placeholder {
	color: #9aa3b4;
	opacity: 1;
}

.ss-home-hero-search button {
	position: relative;
	min-width: 116px;
	height: 50px;
	padding: 0 21px;
	border: 0;
	border-radius: 12px;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary),
			var(--ssh-primary-dark)
		);
	color: var(--ssh-white);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 11px 24px rgba(91, 61, 245, 0.26);
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition),
		filter var(--ssh-transition);
}

.ss-home-hero-search button::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			110deg,
			transparent 15%,
			rgba(255, 255, 255, 0.28) 48%,
			transparent 78%
		);
	transform: translateX(-130%);
	transition: transform 0.65s ease;
}

.ss-home-hero-search button:hover {
	transform: translateY(-1px);
	filter: brightness(1.06);
	box-shadow: 0 15px 30px rgba(91, 61, 245, 0.34);
}

.ss-home-hero-search button:hover::after {
	transform: translateX(130%);
}

/* ==========================================================================
   POPULAR SEARCHES
   ========================================================================== */

.ss-home-popular-searches {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 15px;
}

.ss-home-popular-searches strong {
	margin-right: 3px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 11px;
	font-weight: 700;
}

.ss-home-popular-searches a {
	display: inline-flex;
	align-items: center;
	min-height: 29px;
	padding: 0 11px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.75);
	font-size: 10px;
	font-weight: 600;
	transition:
		background var(--ssh-transition),
		color var(--ssh-transition),
		border-color var(--ssh-transition),
		transform var(--ssh-transition);
}

.ss-home-popular-searches a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.14);
	color: var(--ssh-white);
}

/* ==========================================================================
   HERO BUTTONS
   ========================================================================== */

.ss-home-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 29px;
}

/* ==========================================================================
   HERO PROOF
   ========================================================================== */

.ss-home-hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 660px;
	margin-top: 34px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ss-home-hero-proof > div {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0 20px;
}

.ss-home-hero-proof > div:first-child {
	padding-left: 0;
}

.ss-home-hero-proof > div + div::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	bottom: 3px;
	width: 1px;
	background: rgba(255, 255, 255, 0.13);
}

.ss-home-hero-proof strong {
	color: var(--ssh-white);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.6px;
}

.ss-home-hero-proof span {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.4;
}

/* ==========================================================================
   HERO VISUAL
   ========================================================================== */

.ss-home-hero-visual {
	position: relative;
	min-height: 590px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1200px;
}

.ss-home-hero-visual::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(169, 145, 255, 0.34),
			rgba(169, 145, 255, 0.04) 52%,
			transparent 72%
		);
	filter: blur(4px);
	animation: ssHomeVisualPulse 5.5s ease-in-out infinite;
}

@keyframes ssHomeVisualPulse {
	0%,
	100% {
		transform: scale(0.96);
		opacity: 0.72;
	}

	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

.ss-home-hero-main-card {
	position: relative;
	z-index: 3;
	width: min(100%, 430px);
	min-height: 510px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	background:
		linear-gradient(
			150deg,
			rgba(255, 255, 255, 0.97),
			rgba(244, 241, 255, 0.92)
		);
	box-shadow:
		0 35px 90px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transform: rotateY(-6deg) rotateX(3deg);
	transform-style: preserve-3d;
	animation: ssHomeMainCardFloat 6s ease-in-out infinite;
}

@keyframes ssHomeMainCardFloat {
	0%,
	100% {
		transform: rotateY(-6deg) rotateX(3deg) translateY(0);
	}

	50% {
		transform: rotateY(-3deg) rotateX(1deg) translateY(-12px);
	}
}

.ss-home-hero-main-card::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(91, 61, 245, 0.1);
	border-radius: 22px;
	pointer-events: none;
}

.ss-home-hero-main-card-top {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e8e3ff;
}

.ss-home-hero-mini-logo {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary),
			#8771ff
		);
	color: var(--ssh-white);
	box-shadow: 0 11px 25px rgba(91, 61, 245, 0.24);
}

.ss-home-hero-mini-logo svg {
	width: 25px;
	height: 25px;
}

.ss-home-hero-main-card-top > div {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.ss-home-hero-main-card-top strong {
	color: var(--ssh-heading);
	font-size: 14px;
	font-weight: 800;
}

.ss-home-hero-main-card-top small {
	margin-top: 5px;
	color: var(--ssh-muted);
	font-size: 10px;
	font-weight: 500;
}

/* ==========================================================================
   BOOK STACK
   ========================================================================== */

.ss-home-hero-book-stack {
	position: relative;
	z-index: 2;
	min-height: 335px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 0;
}

.ss-home-book {
	position: relative;
	width: 270px;
	height: 88px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 25px;
	border-radius: 9px 16px 16px 9px;
	color: var(--ssh-white);
	box-shadow:
		0 16px 35px rgba(0, 0, 0, 0.18),
		inset 5px 0 0 rgba(255, 255, 255, 0.15);
	transform-origin: center;
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-book::before {
	content: "";
	position: absolute;
	top: 7px;
	bottom: 7px;
	left: 13px;
	width: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.3);
}

.ss-home-book span {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.3px;
	opacity: 0.8;
}

.ss-home-book strong {
	margin-top: 5px;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.8px;
}

.ss-home-book-one {
	z-index: 3;
	background:
		linear-gradient(
			135deg,
			#603eff,
			#3921b9
		);
	transform: translateX(-16px) rotate(-3deg);
}

.ss-home-book-two {
	z-index: 2;
	margin-top: -4px;
	background:
		linear-gradient(
			135deg,
			#ff8a1f,
			#df5900
		);
	transform: translateX(18px) rotate(2deg);
}

.ss-home-book-three {
	z-index: 1;
	margin-top: -4px;
	background:
		linear-gradient(
			135deg,
			#0ec77c,
			#08764c
		);
	transform: translateX(-5px) rotate(-1deg);
}

.ss-home-hero-main-card:hover .ss-home-book-one {
	transform: translateX(-25px) rotate(-5deg);
}

.ss-home-hero-main-card:hover .ss-home-book-two {
	transform: translateX(26px) rotate(4deg);
}

.ss-home-hero-main-card:hover .ss-home-book-three {
	transform: translateX(-10px) rotate(-2deg);
}

.ss-home-hero-main-card-bottom {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid #e8e3ff;
}

.ss-home-hero-main-card-bottom span {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--ssh-text);
	font-size: 9px;
	font-weight: 700;
}

.ss-home-hero-main-card-bottom svg {
	width: 15px;
	height: 15px;
	color: var(--ssh-success);
}

/* ==========================================================================
   FLOATING HERO CARDS
   ========================================================================== */

.ss-home-floating-card {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 150px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.93);
	color: var(--ssh-heading);
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	animation: ssHomeFloatingCard 5s ease-in-out infinite;
}

.ss-home-floating-card > span:first-child {
	flex: 0 0 37px;
	width: 37px;
	height: 37px;
	display: grid;
	place-items: center;
	border-radius: 11px;
}

.ss-home-floating-card svg {
	width: 20px;
	height: 20px;
}

.ss-home-floating-card > div {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.ss-home-floating-card strong {
	font-size: 12px;
	font-weight: 900;
}

.ss-home-floating-card small {
	margin-top: 4px;
	color: var(--ssh-muted);
	font-size: 8px;
	font-weight: 600;
}

.ss-home-floating-card-one {
	top: 45px;
	left: -20px;
	animation-delay: -1s;
}

.ss-home-floating-card-one > span:first-child {
	background: #fff1c7;
	color: #ff9800;
}

.ss-home-floating-card-two {
	right: -25px;
	top: 210px;
	animation-delay: -2.8s;
}

.ss-home-floating-card-two > span:first-child {
	background: var(--ssh-primary-soft);
	color: var(--ssh-primary);
}

.ss-home-floating-card-three {
	bottom: 52px;
	left: 8px;
	animation-delay: -4s;
}

.ss-home-floating-card-three > span:first-child {
	background: var(--ssh-success-soft);
	color: var(--ssh-success);
}

@keyframes ssHomeFloatingCard {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.ss-home-trust-strip {
	position: relative;
	z-index: 10;
	margin-top: -1px;
	border-bottom: 1px solid var(--ssh-border);
	background: var(--ssh-white);
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.055);
}

.ss-home-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ss-home-trust-grid > div {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	min-height: 96px;
	padding: 18px 28px;
	transition:
		background var(--ssh-transition),
		transform var(--ssh-transition);
}

.ss-home-trust-grid > div + div::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	bottom: 22px;
	width: 1px;
	background: var(--ssh-border);
}

.ss-home-trust-grid > div:hover {
	background: #fafaff;
	transform: translateY(-2px);
}

.ss-home-trust-grid > div > span {
	grid-row: 1 / 3;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary-soft),
			#f6f3ff
		);
	color: var(--ssh-primary);
	box-shadow: 0 9px 22px rgba(91, 61, 245, 0.09);
}

.ss-home-trust-grid > div:nth-child(2) > span {
	background:
		linear-gradient(
			135deg,
			var(--ssh-success-soft),
			#f3fff8
		);
	color: var(--ssh-success);
}

.ss-home-trust-grid > div:nth-child(3) > span {
	background:
		linear-gradient(
			135deg,
			var(--ssh-secondary-soft),
			#fff9f2
		);
	color: var(--ssh-secondary);
}

.ss-home-trust-grid > div:nth-child(4) > span {
	background:
		linear-gradient(
			135deg,
			var(--ssh-cyan-soft),
			#f2fcff
		);
	color: var(--ssh-cyan);
}

.ss-home-trust-grid svg {
	width: 24px;
	height: 24px;
}

.ss-home-trust-grid strong {
	align-self: end;
	color: var(--ssh-heading);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.ss-home-trust-grid small {
	align-self: start;
	margin-top: 4px;
	color: var(--ssh-muted);
	font-size: 10px;
	font-weight: 500;
}

/* ==========================================================================
   PART 1 RESPONSIVE
   ========================================================================== */

@media (max-width: 1280px) {
	.ss-home-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
		gap: 45px;
	}

	.ss-home-hero h1 {
		font-size: clamp(44px, 5vw, 66px);
	}

	.ss-home-hero-main-card {
		width: 390px;
	}

	.ss-home-floating-card-one {
		left: -5px;
	}

	.ss-home-floating-card-two {
		right: -8px;
	}
}

@media (max-width: 1080px) {
	.ss-home-hero {
		min-height: auto;
		padding: 70px 0 78px;
	}

	.ss-home-hero-grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.ss-home-hero-content {
		max-width: 850px;
	}

	.ss-home-hero-visual {
		min-height: 560px;
	}

	.ss-home-trust-grid > div {
		padding-inline: 18px;
	}
}

@media (max-width: 767px) {
	.ss-home-container {
		width: min(100% - 22px, var(--ssh-container));
	}

	.ss-home-section {
		padding: 58px 0;
	}

	.ss-home-hero {
		padding: 52px 0 60px;
	}

	.ss-home-hero-grid {
		gap: 42px;
	}

	.ss-home-hero-badge {
		min-height: 32px;
		padding-inline: 11px;
		font-size: 9px;
	}

	.ss-home-hero h1 {
		margin-top: 18px;
		font-size: clamp(37px, 10vw, 50px);
		line-height: 1.06;
		letter-spacing: -1.6px;
	}

	.ss-home-hero-content > p {
		margin-top: 18px;
		font-size: 13px;
		line-height: 1.75;
	}

	.ss-home-hero-search {
		grid-template-columns: auto minmax(0, 1fr);
		min-height: 58px;
		padding: 6px;
		border-radius: 15px;
	}

	.ss-home-hero-search input {
		height: 46px;
		padding-inline: 12px;
		font-size: 12px;
	}

	.ss-home-hero-search-icon {
		width: 19px;
		height: 19px;
		margin-left: 11px;
	}

	.ss-home-hero-search button {
		grid-column: 1 / -1;
		width: 100%;
		height: 45px;
		margin-top: 5px;
	}

	.ss-home-popular-searches {
		gap: 6px;
	}

	.ss-home-popular-searches a {
		min-height: 27px;
		padding-inline: 9px;
		font-size: 9px;
	}

	.ss-home-hero-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.ss-home-btn {
		width: 100%;
		min-height: 48px;
		padding: 0 12px;
		font-size: 10px;
	}

	.ss-home-btn svg {
		width: 16px;
		height: 16px;
	}

	.ss-home-hero-proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-top: 28px;
		padding-top: 20px;
	}

	.ss-home-hero-proof > div {
		padding-inline: 12px;
	}

	.ss-home-hero-proof strong {
		font-size: 19px;
	}

	.ss-home-hero-proof span {
		font-size: 8px;
	}

	.ss-home-hero-visual {
		min-height: 480px;
	}

	.ss-home-hero-main-card {
		width: min(100% - 34px, 370px);
		min-height: 435px;
		padding: 19px;
		border-radius: 24px;
		transform: none;
	}

	.ss-home-hero-main-card-top strong {
		font-size: 12px;
	}

	.ss-home-hero-main-card-top small {
		font-size: 8px;
	}

	.ss-home-hero-book-stack {
		min-height: 275px;
	}

	.ss-home-book {
		width: 225px;
		height: 72px;
		padding-inline: 21px;
	}

	.ss-home-book strong {
		font-size: 18px;
	}

	.ss-home-floating-card {
		min-width: 126px;
		padding: 9px 10px;
		border-radius: 12px;
	}

	.ss-home-floating-card > span:first-child {
		width: 31px;
		height: 31px;
		flex-basis: 31px;
	}

	.ss-home-floating-card svg {
		width: 17px;
		height: 17px;
	}

	.ss-home-floating-card strong {
		font-size: 10px;
	}

	.ss-home-floating-card small {
		font-size: 7px;
	}

	.ss-home-floating-card-one {
		top: 20px;
		left: 0;
	}

	.ss-home-floating-card-two {
		top: 170px;
		right: 0;
	}

	.ss-home-floating-card-three {
		bottom: 24px;
		left: 4px;
	}

	.ss-home-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ss-home-trust-grid > div {
		min-height: 82px;
		padding: 14px 12px;
		gap: 9px;
		border-bottom: 1px solid var(--ssh-border);
	}

	.ss-home-trust-grid > div + div::before {
		display: none;
	}

	.ss-home-trust-grid > div:nth-child(odd) {
		border-right: 1px solid var(--ssh-border);
	}

	.ss-home-trust-grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.ss-home-trust-grid > div > span {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		border-radius: 11px;
	}

	.ss-home-trust-grid svg {
		width: 20px;
		height: 20px;
	}

	.ss-home-trust-grid strong {
		font-size: 10px;
	}

	.ss-home-trust-grid small {
		font-size: 8px;
		line-height: 1.35;
	}
}

@media (max-width: 420px) {
	.ss-home-hero-actions {
		grid-template-columns: 1fr;
	}

	.ss-home-hero-proof {
		gap: 0;
	}

	.ss-home-hero-proof > div {
		padding-inline: 8px;
	}

	.ss-home-hero-proof strong {
		font-size: 17px;
	}

	.ss-home-hero-main-card {
		width: calc(100% - 20px);
	}

	.ss-home-book {
		width: 205px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ss-home-hero-shape,
	.ss-home-hero h1 span,
	.ss-home-hero-main-card,
	.ss-home-floating-card,
	.ss-home-hero-visual::before {
		animation: none !important;
	}

	.ss-homepage *,
	.ss-homepage *::before,
	.ss-homepage *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   PART 2: SECTION HEADINGS + CATEGORIES + PROMO BANNERS
   ========================================================================== */

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.ss-home-section-head {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.ss-home-section-head > div:first-child {
	max-width: 760px;
}

.ss-home-section-head h2 {
	margin: 0;
	color: var(--ssh-heading);
	font-size: clamp(31px, 3.2vw, 46px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1.4px;
	text-wrap: balance;
}

.ss-home-section-head p {
	max-width: 660px;
	margin: 13px 0 0;
	color: var(--ssh-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75;
}

.ss-home-section-head-centered {
	justify-content: center;
	text-align: center;
}

.ss-home-section-head-centered > div:first-child {
	max-width: 760px;
	margin-inline: auto;
}

.ss-home-section-head-centered .ss-home-section-label {
	justify-content: center;
}

.ss-home-section-head-centered .ss-home-section-label::before {
	display: none;
}

.ss-home-view-link {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--ssh-border);
	border-radius: 12px;
	background: var(--ssh-white);
	color: var(--ssh-heading);
	font-size: 11px;
	font-weight: 800;
	box-shadow: var(--ssh-shadow-sm);
	transition:
		transform var(--ssh-transition),
		color var(--ssh-transition),
		border-color var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-view-link svg {
	width: 17px;
	height: 17px;
	transition: transform var(--ssh-transition);
}

.ss-home-view-link:hover {
	transform: translateY(-2px);
	border-color: #cfc7ff;
	color: var(--ssh-primary);
	box-shadow: var(--ssh-shadow-md);
}

.ss-home-view-link:hover svg {
	transform: translateX(4px);
}

/* ==========================================================================
   CATEGORY SECTION
   ========================================================================== */

.ss-home-category-section {
	background:
		linear-gradient(
			180deg,
			#f8f9fd 0%,
			#f2f5fb 100%
		);
}

.ss-home-category-section::before {
	content: "";
	position: absolute;
	top: 10%;
	left: -150px;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(91, 61, 245, 0.09),
			transparent 70%
		);
	pointer-events: none;
}

.ss-home-category-section::after {
	content: "";
	position: absolute;
	right: -110px;
	bottom: 4%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(255, 122, 0, 0.08),
			transparent 70%
		);
	pointer-events: none;
}

.ss-home-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ss-home-category-card {
	position: relative;
	min-height: 158px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 17px;
	padding: 23px;
	border: 1px solid var(--ssh-border);
	border-radius: 20px;
	background: var(--ssh-white);
	color: var(--ssh-heading);
	box-shadow: var(--ssh-shadow-sm);
	overflow: hidden;
	isolation: isolate;
	transition:
		transform var(--ssh-transition),
		border-color var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-category-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0;
	transition: opacity var(--ssh-transition);
}

.ss-home-category-card::after {
	content: "";
	position: absolute;
	top: -52px;
	right: -50px;
	z-index: -1;
	width: 135px;
	height: 135px;
	border-radius: 50%;
	opacity: 0.4;
	transform: scale(0.9);
	transition:
		transform var(--ssh-transition),
		opacity var(--ssh-transition);
}

.ss-home-category-card:hover {
	transform: translateY(-7px);
	border-color: transparent;
	box-shadow: 0 22px 52px rgba(17, 24, 39, 0.14);
}

.ss-home-category-card:hover::before {
	opacity: 1;
}

.ss-home-category-card:hover::after {
	transform: scale(1.12);
	opacity: 0.65;
}

.ss-home-category-icon {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	display: grid;
	place-items: center;
	border-radius: 17px;
	box-shadow: 0 11px 24px rgba(17, 24, 39, 0.08);
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-category-card:hover .ss-home-category-icon {
	transform: translateY(-3px) rotate(-3deg);
	box-shadow: 0 15px 30px rgba(17, 24, 39, 0.13);
}

.ss-home-category-icon svg {
	width: 30px;
	height: 30px;
}

.ss-home-category-card > div {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.ss-home-category-card strong {
	color: var(--ssh-heading);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
}

.ss-home-category-card small {
	margin-top: 7px;
	color: var(--ssh-muted);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.55;
}

.ss-home-category-arrow {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	border: 1px solid var(--ssh-border);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--ssh-heading);
	transition:
		transform var(--ssh-transition),
		background var(--ssh-transition),
		color var(--ssh-transition),
		border-color var(--ssh-transition);
}

.ss-home-category-arrow svg {
	width: 16px;
	height: 16px;
}

.ss-home-category-card:hover .ss-home-category-arrow {
	transform: translateX(4px);
	border-color: transparent;
	background: var(--ssh-white);
}

/* ==========================================================================
   CATEGORY COLOR VARIANTS
   ========================================================================== */

.ss-home-category-purple .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#efeaff,
			#ddd4ff
		);
	color: #6344f6;
}

.ss-home-category-purple::before {
	background:
		linear-gradient(
			135deg,
			rgba(99, 68, 246, 0.055),
			rgba(99, 68, 246, 0.01)
		);
}

.ss-home-category-purple::after {
	background: rgba(99, 68, 246, 0.18);
}

.ss-home-category-blue .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#e5f1ff,
			#cae2ff
		);
	color: #1877db;
}

.ss-home-category-blue::before {
	background:
		linear-gradient(
			135deg,
			rgba(24, 119, 219, 0.055),
			rgba(24, 119, 219, 0.01)
		);
}

.ss-home-category-blue::after {
	background: rgba(24, 119, 219, 0.17);
}

.ss-home-category-green .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#e7fbf1,
			#cef4df
		);
	color: #0f9e5e;
}

.ss-home-category-green::before {
	background:
		linear-gradient(
			135deg,
			rgba(15, 158, 94, 0.055),
			rgba(15, 158, 94, 0.01)
		);
}

.ss-home-category-green::after {
	background: rgba(15, 158, 94, 0.17);
}

.ss-home-category-orange .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#fff1e3,
			#ffe0c1
		);
	color: #e46600;
}

.ss-home-category-orange::before {
	background:
		linear-gradient(
			135deg,
			rgba(228, 102, 0, 0.055),
			rgba(228, 102, 0, 0.01)
		);
}

.ss-home-category-orange::after {
	background: rgba(228, 102, 0, 0.17);
}

.ss-home-category-red .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#ffebeb,
			#ffd5d5
		);
	color: #dc3030;
}

.ss-home-category-red::before {
	background:
		linear-gradient(
			135deg,
			rgba(220, 48, 48, 0.055),
			rgba(220, 48, 48, 0.01)
		);
}

.ss-home-category-red::after {
	background: rgba(220, 48, 48, 0.17);
}

.ss-home-category-cyan .ss-home-category-icon {
	background:
		linear-gradient(
			135deg,
			#e4f9ff,
			#c8f0fb
		);
	color: #0398c2;
}

.ss-home-category-cyan::before {
	background:
		linear-gradient(
			135deg,
			rgba(3, 152, 194, 0.055),
			rgba(3, 152, 194, 0.01)
		);
}

.ss-home-category-cyan::after {
	background: rgba(3, 152, 194, 0.17);
}

/* ==========================================================================
   PROMO SECTION
   ========================================================================== */

.ss-home-promo-section {
	position: relative;
	padding: 10px 0 82px;
	background:
		linear-gradient(
			180deg,
			#f2f5fb,
			#f7f8fc
		);
}

.ss-home-promo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ss-home-promo-card {
	position: relative;
	min-height: 320px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	align-items: center;
	gap: 24px;
	padding: 36px;
	border-radius: 28px;
	overflow: hidden;
	isolation: isolate;
	box-shadow: var(--ssh-shadow-md);
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-promo-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--ssh-shadow-lg);
}

.ss-home-promo-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
}

.ss-home-promo-card::after {
	content: "";
	position: absolute;
	z-index: -2;
	right: -70px;
	bottom: -90px;
	width: 270px;
	height: 270px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: transform 0.5s ease;
}

.ss-home-promo-card:hover::after {
	transform: scale(1.18);
}

.ss-home-promo-card > div {
	position: relative;
	z-index: 2;
}

.ss-home-promo-card > div > span:first-child {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.ss-home-promo-card h3 {
	max-width: 500px;
	margin: 17px 0 0;
	color: var(--ssh-white);
	font-size: clamp(25px, 2.5vw, 37px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -1.1px;
}

.ss-home-promo-card p {
	max-width: 470px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7;
}

.ss-home-promo-card > div > strong {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 24px;
	color: var(--ssh-white);
	font-size: 11px;
	font-weight: 800;
}

.ss-home-promo-card > div > strong svg {
	width: 17px;
	height: 17px;
	transition: transform var(--ssh-transition);
}

.ss-home-promo-card:hover > div > strong svg {
	transform: translateX(5px);
}

.ss-home-promo-visual {
	position: relative;
	z-index: 2;
	width: 165px;
	height: 165px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 36px;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.06)
		);
	color: var(--ssh-white);
	box-shadow:
		0 24px 50px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	transform: rotate(7deg);
	transition:
		transform 0.45s ease,
		box-shadow 0.45s ease;
}

.ss-home-promo-card:hover .ss-home-promo-visual {
	transform: rotate(0deg) scale(1.06);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.23),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ss-home-promo-visual svg {
	width: 78px;
	height: 78px;
}

/* ==========================================================================
   PREMIUM PROMO
   ========================================================================== */

.ss-home-promo-premium {
	background:
		linear-gradient(
			135deg,
			#17102f 0%,
			#3d1d9b 52%,
			#7049ff 100%
		);
}

.ss-home-promo-premium::before {
	background:
		radial-gradient(
			circle at 15% 20%,
			rgba(255, 215, 128, 0.17),
			transparent 30%
		),
		radial-gradient(
			circle at 85% 70%,
			rgba(255, 255, 255, 0.12),
			transparent 34%
		);
}

.ss-home-promo-premium .ss-home-promo-visual {
	color: #ffd477;
}

/* ==========================================================================
   FREE PROMO
   ========================================================================== */

.ss-home-promo-free {
	background:
		linear-gradient(
			135deg,
			#073e43 0%,
			#087d67 48%,
			#13b87b 100%
		);
}

.ss-home-promo-free::before {
	background:
		radial-gradient(
			circle at 12% 18%,
			rgba(143, 255, 216, 0.16),
			transparent 30%
		),
		radial-gradient(
			circle at 85% 72%,
			rgba(255, 255, 255, 0.12),
			transparent 34%
		);
}

.ss-home-promo-free .ss-home-promo-visual {
	color: #d8fff0;
}

/* ==========================================================================
   PART 2 RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
	.ss-home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ss-home-promo-card {
		grid-template-columns: minmax(0, 1fr) 145px;
		padding: 30px;
	}

	.ss-home-promo-visual {
		width: 138px;
		height: 138px;
		border-radius: 29px;
	}

	.ss-home-promo-visual svg {
		width: 65px;
		height: 65px;
	}
}

@media (max-width: 900px) {
	.ss-home-promo-grid {
		grid-template-columns: 1fr;
	}

	.ss-home-promo-card {
		min-height: 280px;
		grid-template-columns: minmax(0, 1fr) 150px;
	}
}

@media (max-width: 767px) {
	.ss-home-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 25px;
	}

	.ss-home-section-head h2 {
		font-size: 30px;
		letter-spacing: -0.8px;
	}

	.ss-home-section-head p {
		margin-top: 10px;
		font-size: 11px;
		line-height: 1.65;
	}

	.ss-home-view-link {
		min-height: 40px;
		padding-inline: 13px;
		font-size: 10px;
	}

	.ss-home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ss-home-category-card {
		min-height: 160px;
		grid-template-columns: 1fr;
		align-content: start;
		gap: 12px;
		padding: 17px;
		border-radius: 17px;
	}

	.ss-home-category-icon {
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}

	.ss-home-category-icon svg {
		width: 25px;
		height: 25px;
	}

	.ss-home-category-card strong {
		font-size: 12px;
		line-height: 1.35;
	}

	.ss-home-category-card small {
		margin-top: 5px;
		font-size: 8px;
		line-height: 1.45;
	}

	.ss-home-category-arrow {
		position: absolute;
		right: 12px;
		bottom: 12px;
		width: 30px;
		height: 30px;
		border-radius: 9px;
	}

	.ss-home-category-arrow svg {
		width: 14px;
		height: 14px;
	}

	.ss-home-promo-section {
		padding-bottom: 58px;
	}

	.ss-home-promo-grid {
		gap: 14px;
	}

	.ss-home-promo-card {
		min-height: 250px;
		grid-template-columns: minmax(0, 1fr) 105px;
		gap: 12px;
		padding: 23px;
		border-radius: 22px;
	}

	.ss-home-promo-card h3 {
		margin-top: 13px;
		font-size: 24px;
		letter-spacing: -0.7px;
	}

	.ss-home-promo-card p {
		margin-top: 10px;
		font-size: 9px;
		line-height: 1.55;
	}

	.ss-home-promo-card > div > strong {
		margin-top: 18px;
		font-size: 9px;
	}

	.ss-home-promo-visual {
		width: 100px;
		height: 100px;
		border-radius: 23px;
	}

	.ss-home-promo-visual svg {
		width: 48px;
		height: 48px;
	}
}

@media (max-width: 480px) {
	.ss-home-section-head h2 {
		font-size: 27px;
	}

	.ss-home-category-card {
		min-height: 150px;
		padding: 15px;
	}

	.ss-home-promo-card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 22px;
	}

	.ss-home-promo-visual {
		position: absolute;
		right: 18px;
		bottom: 16px;
		width: 76px;
		height: 76px;
		opacity: 0.58;
	}

	.ss-home-promo-visual svg {
		width: 38px;
		height: 38px;
	}

	.ss-home-promo-card > div {
		padding-right: 55px;
	}
}

/* ==========================================================================
   PART 3: UNIVERSITIES + PRODUCT CARDS + EMPTY STATES
   ========================================================================== */

/* ==========================================================================
   UNIVERSITIES SECTION
   ========================================================================== */

.ss-home-university-section {
	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f7f8fc 100%
		);
}

.ss-home-university-section::before {
	content: "";
	position: absolute;
	left: -120px;
	top: 12%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(5, 169, 214, 0.08),
			transparent 70%
		);
	pointer-events: none;
}

.ss-home-university-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ss-home-university-card {
	position: relative;
	min-height: 145px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 20px;
	border: 1px solid var(--ssh-border);
	border-radius: 18px;
	background: var(--ssh-white);
	color: var(--ssh-heading);
	box-shadow: var(--ssh-shadow-sm);
	overflow: hidden;
	transition:
		transform var(--ssh-transition),
		border-color var(--ssh-transition),
		box-shadow var(--ssh-transition),
		background var(--ssh-transition);
}

.ss-home-university-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			135deg,
			rgba(91, 61, 245, 0.035),
			transparent 60%
		);
	opacity: 0;
	transition: opacity var(--ssh-transition);
}

.ss-home-university-card:hover {
	transform: translateY(-6px);
	border-color: #d7d0ff;
	box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
}

.ss-home-university-card:hover::before {
	opacity: 1;
}

.ss-home-university-mark {
	position: relative;
	z-index: 1;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	color: var(--ssh-white);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.4px;
	box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
}

.ss-home-university-mark-1 {
	background:
		linear-gradient(
			135deg,
			#5b3df5,
			#3922b8
		);
}

.ss-home-university-mark-2 {
	background:
		linear-gradient(
			135deg,
			#0f8ee8,
			#0a5db5
		);
}

.ss-home-university-mark-3 {
	background:
		linear-gradient(
			135deg,
			#0cb174,
			#08764e
		);
}

.ss-home-university-mark-4 {
	background:
		linear-gradient(
			135deg,
			#ef7a1f,
			#c44c00
		);
}

.ss-home-university-mark-5 {
	background:
		linear-gradient(
			135deg,
			#d93a65,
			#8c1940
		);
}

.ss-home-university-mark-6 {
	background:
		linear-gradient(
			135deg,
			#05a9d6,
			#087d9d
		);
}

.ss-home-university-card > div {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ss-home-university-card strong {
	color: var(--ssh-heading);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
}

.ss-home-university-card small {
	margin-top: 6px;
	color: var(--ssh-muted);
	font-size: 9px;
	font-weight: 500;
	line-height: 1.45;
}

.ss-home-university-arrow {
	position: relative;
	z-index: 1;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 1px solid var(--ssh-border);
	border-radius: 10px;
	color: var(--ssh-heading);
	background: var(--ssh-white);
	transition:
		transform var(--ssh-transition),
		color var(--ssh-transition),
		border-color var(--ssh-transition);
}

.ss-home-university-arrow svg {
	width: 15px;
	height: 15px;
}

.ss-home-university-card:hover .ss-home-university-arrow {
	transform: translateX(4px);
	color: var(--ssh-primary);
	border-color: #d4ceff;
}

/* ==========================================================================
   PRODUCT SECTION
   ========================================================================== */

.ss-home-product-section,
.ss-home-latest-section {
	background: var(--ssh-bg);
}

.ss-home-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ss-home-product-card {
	position: relative;
	min-width: 0;
	border: 1px solid var(--ssh-border);
	border-radius: 20px;
	background: var(--ssh-white);
	box-shadow: var(--ssh-shadow-sm);
	overflow: hidden;
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition),
		border-color var(--ssh-transition);
}

.ss-home-product-card:hover {
	transform: translateY(-8px);
	border-color: #d8d2ff;
	box-shadow: 0 24px 55px rgba(17, 24, 39, 0.14);
}

.ss-home-product-image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			#eef0f7,
			#f8f9fd
		);
}

.ss-home-product-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			transparent 60%,
			rgba(17, 24, 39, 0.18)
		);
	pointer-events: none;
}

.ss-home-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.55s ease;
}

.ss-home-product-card:hover .ss-home-product-image img {
	transform: scale(1.06);
}

.ss-home-product-badge {
	position: absolute;
	top: 13px;
	left: 13px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary),
			var(--ssh-primary-dark)
		);
	color: var(--ssh-white);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(91, 61, 245, 0.28);
}

.ss-home-product-format {
	position: absolute;
	left: 13px;
	bottom: 13px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: rgba(17, 24, 39, 0.68);
	color: var(--ssh-white);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.6px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ss-home-product-wishlist {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 4;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ssh-heading);
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
	transition:
		transform var(--ssh-transition),
		background var(--ssh-transition),
		color var(--ssh-transition);
}

.ss-home-product-wishlist:hover {
	transform: translateY(-2px) scale(1.05);
	background: var(--ssh-white);
	color: var(--ssh-red);
}

.ss-home-product-wishlist svg {
	width: 19px;
	height: 19px;
}

.ss-home-product-body {
	padding: 18px;
}

.ss-home-product-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.ss-home-product-topline span {
	color: var(--ssh-muted);
	font-size: 8px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.45px;
}

.ss-home-product-topline span:last-child {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 7px;
	background: var(--ssh-primary-soft);
	color: var(--ssh-primary);
	font-size: 7px;
}

.ss-home-product-body h3 {
	margin: 14px 0 0;
}

.ss-home-product-body h3 a {
	display: -webkit-box;
	overflow: hidden;
	color: var(--ssh-heading);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color var(--ssh-transition);
}

.ss-home-product-body h3 a:hover {
	color: var(--ssh-primary);
}

.ss-home-product-rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 13px;
}

.ss-home-product-stars {
	color: #f7a900;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
}

.ss-home-product-rating small {
	color: var(--ssh-muted);
	font-size: 8px;
	font-weight: 600;
}

.ss-home-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 17px;
	padding-top: 15px;
	border-top: 1px solid #eef0f5;
}

.ss-home-product-price {
	min-width: 0;
	color: var(--ssh-heading);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.2;
}

.ss-home-product-price del {
	margin-right: 5px;
	color: #9aa3b4;
	font-size: 10px;
	font-weight: 600;
	opacity: 1;
}

.ss-home-product-price ins {
	color: var(--ssh-heading);
	text-decoration: none;
}

.ss-home-product-cart {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary),
			var(--ssh-primary-dark)
		);
	color: var(--ssh-white);
	box-shadow: 0 10px 24px rgba(91, 61, 245, 0.24);
	transition:
		transform var(--ssh-transition),
		box-shadow var(--ssh-transition),
		filter var(--ssh-transition);
}

.ss-home-product-cart:hover {
	transform: translateY(-3px);
	filter: brightness(1.06);
	color: var(--ssh-white);
	box-shadow: 0 15px 30px rgba(91, 61, 245, 0.33);
}

.ss-home-product-cart svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.ss-home-empty-state {
	min-height: 330px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border: 1px dashed #d8dce7;
	border-radius: 24px;
	background:
		linear-gradient(
			135deg,
			#ffffff,
			#f8f9fd
		);
	text-align: center;
	box-shadow: var(--ssh-shadow-sm);
}

.ss-home-empty-state > span {
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	border-radius: 20px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary-soft),
			#f6f3ff
		);
	color: var(--ssh-primary);
}

.ss-home-empty-state svg {
	width: 34px;
	height: 34px;
}

.ss-home-empty-state h3 {
	margin: 20px 0 0;
	color: var(--ssh-heading);
	font-size: 19px;
	font-weight: 900;
}

.ss-home-empty-state p {
	max-width: 520px;
	margin: 10px 0 0;
	color: var(--ssh-muted);
	font-size: 11px;
	line-height: 1.7;
}

/* ==========================================================================
   PART 3 RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
	.ss-home-university-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ss-home-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ss-home-university-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ss-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ss-home-university-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ss-home-university-card {
		min-height: 145px;
		grid-template-columns: 1fr;
		align-content: start;
		gap: 11px;
		padding: 16px;
		border-radius: 16px;
	}

	.ss-home-university-mark {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
		border-radius: 14px;
		font-size: 10px;
	}

	.ss-home-university-card strong {
		font-size: 12px;
	}

	.ss-home-university-card small {
		font-size: 8px;
	}

	.ss-home-university-arrow {
		position: absolute;
		right: 12px;
		bottom: 12px;
		width: 29px;
		height: 29px;
		border-radius: 9px;
	}

	.ss-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ss-home-product-card {
		border-radius: 16px;
	}

	.ss-home-product-image {
		aspect-ratio: 1 / 1;
	}

	.ss-home-product-badge {
		top: 9px;
		left: 9px;
		min-height: 24px;
		padding-inline: 8px;
		font-size: 7px;
	}

	.ss-home-product-format {
		left: 9px;
		bottom: 9px;
		min-height: 22px;
		font-size: 7px;
	}

	.ss-home-product-wishlist {
		top: 8px;
		right: 8px;
		width: 32px;
		height: 32px;
		border-radius: 10px;
	}

	.ss-home-product-wishlist svg {
		width: 16px;
		height: 16px;
	}

	.ss-home-product-body {
		padding: 13px;
	}

	.ss-home-product-topline {
		gap: 6px;
	}

	.ss-home-product-topline span {
		font-size: 7px;
	}

	.ss-home-product-topline span:last-child {
		min-height: 21px;
		padding-inline: 6px;
		font-size: 6px;
	}

	.ss-home-product-body h3 {
		margin-top: 10px;
	}

	.ss-home-product-body h3 a {
		font-size: 11px;
		line-height: 1.4;
	}

	.ss-home-product-rating {
		margin-top: 10px;
		gap: 5px;
	}

	.ss-home-product-stars {
		font-size: 10px;
		letter-spacing: 0.5px;
	}

	.ss-home-product-rating small {
		font-size: 7px;
	}

	.ss-home-product-footer {
		margin-top: 12px;
		padding-top: 11px;
		gap: 8px;
	}

	.ss-home-product-price {
		font-size: 14px;
	}

	.ss-home-product-price del {
		font-size: 8px;
	}

	.ss-home-product-cart {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
		border-radius: 10px;
	}

	.ss-home-product-cart svg {
		width: 17px;
		height: 17px;
	}

	.ss-home-empty-state {
		min-height: 250px;
		padding: 28px 18px;
		border-radius: 19px;
	}

	.ss-home-empty-state > span {
		width: 58px;
		height: 58px;
		border-radius: 17px;
	}

	.ss-home-empty-state svg {
		width: 28px;
		height: 28px;
	}

	.ss-home-empty-state h3 {
		font-size: 15px;
	}

	.ss-home-empty-state p {
		font-size: 9px;
	}
}

@media (max-width: 430px) {
	.ss-home-product-body {
		padding: 11px;
	}

	.ss-home-product-body h3 a {
		font-size: 10px;
	}

	.ss-home-product-price {
		font-size: 13px;
	}
}

/* ==========================================================================
   PART 4: WHY CHOOSE US + LATEST PRODUCTS + APP SECTION
   ========================================================================== */

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.ss-home-why-section {
	position: relative;
	padding: 92px 0;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			#0c1225 0%,
			#161f3f 45%,
			#34208f 100%
		);
	color: var(--ssh-white);
	isolation: isolate;
}

.ss-home-why-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		linear-gradient(
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		);
	background-size: 40px 40px;
}

.ss-home-why-section::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(
			circle at 12% 16%,
			rgba(69, 179, 255, 0.18),
			transparent 30%
		),
		radial-gradient(
			circle at 82% 75%,
			rgba(255, 122, 0, 0.15),
			transparent 28%
		),
		radial-gradient(
			circle at 50% 100%,
			rgba(139, 92, 246, 0.22),
			transparent 34%
		);
}

.ss-home-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 72px;
}

.ss-home-why-content {
	position: relative;
	z-index: 2;
}

.ss-home-why-content .ss-home-section-label {
	color: #c9c1ff;
}

.ss-home-why-content .ss-home-section-label::before {
	background:
		linear-gradient(
			90deg,
			#8d7aff,
			#d2cbff
		);
}

.ss-home-why-content h2 {
	max-width: 660px;
	margin: 0;
	color: var(--ssh-white);
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 900;
	line-height: 1.07;
	letter-spacing: -1.8px;
}

.ss-home-why-content > p {
	max-width: 620px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
}

.ss-home-why-list {
	display: grid;
	gap: 13px;
	margin-top: 30px;
}

.ss-home-why-list > div {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	padding: 8px 0;
}

.ss-home-why-list > div > span {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.1);
	color: #b9ffd8;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.ss-home-why-list svg {
	width: 16px;
	height: 16px;
}

.ss-home-why-list strong {
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.ss-home-why-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

/* ==========================================================================
   WHY CARDS
   ========================================================================== */

.ss-home-why-cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ss-home-why-cards::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(139, 92, 246, 0.25),
			transparent 68%
		);
	transform: translate(-50%, -50%);
	filter: blur(5px);
}

.ss-home-why-card {
	position: relative;
	min-height: 245px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 22px;
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.12),
			rgba(255, 255, 255, 0.055)
		);
	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
	transition:
		transform var(--ssh-transition),
		border-color var(--ssh-transition),
		background var(--ssh-transition),
		box-shadow var(--ssh-transition);
}

.ss-home-why-card:nth-child(2),
.ss-home-why-card:nth-child(4) {
	transform: translateY(28px);
}

.ss-home-why-card::before {
	content: "";
	position: absolute;
	top: -70px;
	right: -70px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	transition: transform 0.45s ease;
}

.ss-home-why-card:hover {
	transform: translateY(-7px);
	border-color: rgba(255, 255, 255, 0.25);
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.17),
			rgba(255, 255, 255, 0.075)
		);
	box-shadow:
		0 26px 58px rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.ss-home-why-card:nth-child(2):hover,
.ss-home-why-card:nth-child(4):hover {
	transform: translateY(18px);
}

.ss-home-why-card:hover::before {
	transform: scale(1.18);
}

.ss-home-why-card > span {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 16px;
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.22),
			rgba(255, 255, 255, 0.08)
		);
	color: var(--ssh-white);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.ss-home-why-card:nth-child(1) > span {
	color: #cabfff;
}

.ss-home-why-card:nth-child(2) > span {
	color: #9de8ff;
}

.ss-home-why-card:nth-child(3) > span {
	color: #ffd296;
}

.ss-home-why-card:nth-child(4) > span {
	color: #a9ffd2;
}

.ss-home-why-card svg {
	width: 27px;
	height: 27px;
}

.ss-home-why-card strong {
	color: var(--ssh-white);
	font-size: 16px;
	font-weight: 900;
}

.ss-home-why-card p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.7;
}

/* ==========================================================================
   LATEST PRODUCTS SECTION
   ========================================================================== */

.ss-home-latest-section {
	background:
		linear-gradient(
			180deg,
			#f8f9fd 0%,
			#f1f4fa 100%
		);
}

.ss-home-latest-section::before {
	content: "";
	position: absolute;
	top: 12%;
	right: -120px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(91, 61, 245, 0.08),
			transparent 72%
		);
	pointer-events: none;
}

.ss-home-latest-section .ss-home-product-card {
	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#fcfcff 100%
		);
}

.ss-home-latest-section .ss-home-product-badge {
	background:
		linear-gradient(
			135deg,
			#0aa76d,
			#087348
		);
	box-shadow: 0 8px 20px rgba(10, 167, 109, 0.24);
}

/* ==========================================================================
   APP SECTION
   ========================================================================== */

.ss-home-app-section {
	position: relative;
	padding: 92px 0;
	background:
		linear-gradient(
			180deg,
			#f1f4fa 0%,
			#ffffff 100%
		);
}

.ss-home-app-card {
	position: relative;
	min-height: 560px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	align-items: center;
	gap: 60px;
	padding: 54px 70px;
	border-radius: 32px;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			#f1edff 0%,
			#ffffff 44%,
			#eaf7ff 100%
		);
	border: 1px solid #e0dcf7;
	box-shadow: 0 28px 75px rgba(17, 24, 39, 0.12);
	isolation: isolate;
}

.ss-home-app-card::before {
	content: "";
	position: absolute;
	top: -110px;
	right: -100px;
	z-index: -2;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(91, 61, 245, 0.22),
			transparent 70%
		);
}

.ss-home-app-card::after {
	content: "";
	position: absolute;
	left: -100px;
	bottom: -120px;
	z-index: -2;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(5, 169, 214, 0.17),
			transparent 70%
		);
}

.ss-home-app-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.ss-home-app-content h2 {
	margin: 0;
	color: var(--ssh-heading);
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -1.7px;
	text-wrap: balance;
}

.ss-home-app-content > p {
	max-width: 600px;
	margin: 20px 0 0;
	color: var(--ssh-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.8;
}

.ss-home-app-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin-top: 28px;
}

.ss-home-app-points span {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ssh-text);
	font-size: 10px;
	font-weight: 700;
}

.ss-home-app-points svg {
	width: 17px;
	height: 17px;
	color: var(--ssh-success);
}

.ss-home-app-content .ss-home-btn {
	margin-top: 30px;
}

/* ==========================================================================
   PHONE MOCKUP
   ========================================================================== */

.ss-home-app-mockup {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 450px;
}

.ss-home-app-mockup::before {
	content: "";
	position: absolute;
	width: 370px;
	height: 370px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(91, 61, 245, 0.16),
			transparent 70%
		);
}

.ss-home-phone {
	position: relative;
	z-index: 2;
	width: 250px;
	height: 500px;
	padding: 12px;
	border: 8px solid #131827;
	border-radius: 38px;
	background: #131827;
	box-shadow:
		0 35px 70px rgba(17, 24, 39, 0.25),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	transform: rotate(5deg);
	transition:
		transform 0.5s ease,
		box-shadow 0.5s ease;
}

.ss-home-app-card:hover .ss-home-phone {
	transform: rotate(1deg) translateY(-8px);
	box-shadow:
		0 45px 85px rgba(17, 24, 39, 0.3),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ss-home-phone-notch {
	position: absolute;
	top: 7px;
	left: 50%;
	z-index: 5;
	width: 86px;
	height: 21px;
	border-radius: 0 0 13px 13px;
	background: #131827;
	transform: translateX(-50%);
}

.ss-home-phone-screen {
	width: 100%;
	height: 100%;
	padding: 42px 15px 18px;
	border-radius: 26px;
	background:
		linear-gradient(
			180deg,
			#f6f4ff 0%,
			#ffffff 42%,
			#eef8ff 100%
		);
	overflow: hidden;
}

.ss-home-phone-brand {
	display: flex;
	align-items: center;
	gap: 9px;
}

.ss-home-phone-brand > span {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background:
		linear-gradient(
			135deg,
			var(--ssh-primary),
			var(--ssh-primary-dark)
		);
	color: var(--ssh-white);
}

.ss-home-phone-brand svg {
	width: 18px;
	height: 18px;
}

.ss-home-phone-brand strong {
	color: var(--ssh-heading);
	font-size: 11px;
	font-weight: 900;
}

.ss-home-phone-card {
	position: relative;
	margin-top: 18px;
	padding: 16px;
	border: 1px solid #e6e3f5;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.ss-home-phone-card::after {
	content: "";
	position: absolute;
	right: -20px;
	bottom: -22px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(91, 61, 245, 0.08);
}

.ss-home-phone-card small {
	display: block;
	color: var(--ssh-primary);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.ss-home-phone-card strong {
	display: block;
	margin-top: 8px;
	color: var(--ssh-heading);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.4;
}

.ss-home-phone-card > span {
	display: block;
	margin-top: 8px;
	color: var(--ssh-success);
	font-size: 8px;
	font-weight: 700;
}

/* ==========================================================================
   PART 4 RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
	.ss-home-why-grid {
		gap: 44px;
	}

	.ss-home-app-card {
		grid-template-columns: minmax(0, 1fr) 360px;
		padding: 48px;
		gap: 40px;
	}
}

@media (max-width: 991px) {
	.ss-home-why-grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.ss-home-why-content {
		max-width: 780px;
	}

	.ss-home-app-card {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 45px;
	}

	.ss-home-app-content {
		max-width: 760px;
	}

	.ss-home-app-mockup {
		min-height: 520px;
	}
}

@media (max-width: 767px) {
	.ss-home-why-section {
		padding: 64px 0;
	}

	.ss-home-why-grid {
		gap: 42px;
	}

	.ss-home-why-content h2 {
		font-size: 34px;
		letter-spacing: -1px;
	}

	.ss-home-why-content > p {
		margin-top: 16px;
		font-size: 11px;
		line-height: 1.7;
	}

	.ss-home-why-list {
		gap: 8px;
		margin-top: 22px;
	}

	.ss-home-why-list > div {
		min-height: 38px;
		gap: 9px;
	}

	.ss-home-why-list > div > span {
		width: 27px;
		height: 27px;
		flex-basis: 27px;
		border-radius: 8px;
	}

	.ss-home-why-list svg {
		width: 14px;
		height: 14px;
	}

	.ss-home-why-list strong {
		font-size: 10px;
		line-height: 1.45;
	}

	.ss-home-why-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
		margin-top: 25px;
	}

	.ss-home-why-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ss-home-why-card,
	.ss-home-why-card:nth-child(2),
	.ss-home-why-card:nth-child(4) {
		min-height: 190px;
		padding: 17px;
		border-radius: 17px;
		transform: none;
	}

	.ss-home-why-card:hover,
	.ss-home-why-card:nth-child(2):hover,
	.ss-home-why-card:nth-child(4):hover {
		transform: translateY(-5px);
	}

	.ss-home-why-card > span {
		width: 44px;
		height: 44px;
		margin-bottom: 18px;
		border-radius: 13px;
	}

	.ss-home-why-card svg {
		width: 22px;
		height: 22px;
	}

	.ss-home-why-card strong {
		font-size: 12px;
	}

	.ss-home-why-card p {
		margin-top: 7px;
		font-size: 8px;
		line-height: 1.55;
	}

	.ss-home-app-section {
		padding: 60px 0;
	}

	.ss-home-app-card {
		min-height: auto;
		padding: 28px 22px;
		border-radius: 23px;
		gap: 25px;
	}

	.ss-home-app-content h2 {
		font-size: 33px;
		letter-spacing: -1px;
	}

	.ss-home-app-content > p {
		font-size: 10px;
		line-height: 1.65;
	}

	.ss-home-app-points {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 20px;
	}

	.ss-home-app-points span {
		font-size: 9px;
	}

	.ss-home-app-mockup {
		min-height: 430px;
	}

	.ss-home-phone {
		width: 215px;
		height: 430px;
		border-width: 7px;
		border-radius: 32px;
	}

	.ss-home-phone-screen {
		padding: 38px 12px 15px;
		border-radius: 22px;
	}

	.ss-home-phone-card {
		padding: 13px;
		border-radius: 14px;
	}

	.ss-home-phone-brand strong {
		font-size: 10px;
	}
}

@media (max-width: 430px) {
	.ss-home-why-actions {
		grid-template-columns: 1fr;
	}

	.ss-home-why-card {
		min-height: 180px;
		padding: 15px;
	}

	.ss-home-app-card {
		padding-inline: 18px;
	}

	.ss-home-phone {
		width: 200px;
		height: 405px;
	}
}
