/* Apple-Style Design for Custom Mascots Page
   Inspired by Apple's clean, minimalist design philosophy
*/

/* ========================================
   Apple Hero Section
   ======================================== */
.apple-hero {
	padding: 120px 0 80px;
	background: #ffffff;
	min-height: auto;
}

.apple-hero--frost {
	position: relative;
	background: linear-gradient(135deg, #eef1ff 0%, #f5f5f7 55%, #ffffff 100%);
	overflow: hidden;
}

.apple-hero--frost::before,
.apple-hero--frost::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.7;
	pointer-events: none;
}

.apple-hero--frost::before {
	top: -180px;
	right: -140px;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle at center, rgba(0, 113, 227, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
}

.apple-hero--frost::after {
	bottom: -140px;
	left: -160px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle at center, rgba(215, 125, 255, 0.24) 0%, rgba(255, 255, 255, 0) 72%);
}

.apple-hero--frost .solution-hero-content {
	position: relative;
	z-index: 1;
}

.apple-hero-badges {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.apple-hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(22px);
	color: #1d1d1f;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.012em;
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-hero-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

@supports not (backdrop-filter: blur(10px)) {
	.apple-hero-badge {
		background: #ffffff;
	}
}

.apple-title {
	font-size: 72px;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.005em;
	color: #1d1d1f;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-subtitle {
	font-size: 28px;
	font-weight: 400;
	line-height: 1.28571;
	letter-spacing: 0.011em;
	color: #86868b;
	margin-bottom: 30px;
}

.apple-text {
	font-size: 21px;
	line-height: 1.381;
	font-weight: 400;
	color: #1d1d1f;
	max-width: 880px;
	margin: 0 auto;
}

.apple-hero-image {
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-top: 60px;
}

.apple-hero-image:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.apple-key-benefits {
	max-width: 1100px;
	margin: 0 auto;
}

.apple-benefit-item {
	background: #f5f5f7;
	border-radius: 18px;
	padding: 32px 24px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.apple-benefit-item:hover {
	background: #ffffff;
	border-color: #e5e5e7;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-6px);
}

.apple-benefit-metric {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	color: #1d1d1f;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
	margin-bottom: 12px;
}

.apple-benefit-text {
	font-size: 17px;
	line-height: 1.47059;
	color: #86868b;
	margin: 0;
}

/* ========================================
   Apple Features Section
   ======================================== */
.apple-features-section {
	padding: 100px 0;
	background: #ffffff;
}

.apple-section-title {
	font-size: 56px;
	font-weight: 600;
	line-height: 1.07143;
	letter-spacing: -0.005em;
	color: #1d1d1f;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-section-desc {
	font-size: 21px;
	line-height: 1.381;
	font-weight: 400;
	color: #86868b;
	max-width: 600px;
	margin: 0 auto;
}

.apple-feature-card {
	background: #f5f5f7;
	border-radius: 18px;
	padding: 48px 32px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	height: 100%;
	border: 1px solid transparent;
}

.apple-feature-card:hover {
	background: #ffffff;
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-color: #e5e5e7;
}

.apple-feature-icon {
	color: #0071e3;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-feature-card:hover .apple-feature-icon {
	transform: scale(1.1);
}

.apple-feature-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.16667;
	letter-spacing: 0.009em;
	color: #1d1d1f;
	margin-bottom: 12px;
}

.apple-feature-text {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	color: #86868b;
	margin: 0;
}

.apple-section {
	padding: 100px 0;
	background: #ffffff;
}

.apple-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
}

.apple-list-block {
	background: #f5f5f7;
	border-radius: 18px;
	padding: 32px;
	height: 100%;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.apple-list-block:hover {
	background: #ffffff;
	border-color: #e5e5e7;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-6px);
}

.apple-list-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	color: #1d1d1f;
	margin-bottom: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.apple-list li {
	font-size: 17px;
	line-height: 1.47059;
	color: #4c4c4f;
	padding-left: 0;
	position: relative;
}

.apple-list li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0071e3;
	display: inline-block;
	margin-right: 12px;
	vertical-align: middle;
	transform: translateY(-2px);
}

.apple-list-compact li {
	font-size: 16px;
	color: #5e5e62;
}

.apple-list-compact li::before {
	background: #8e8e93;
}

.apple-spec-grid .apple-spec-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 40px;
	height: 100%;
	border: 1px solid #e5e5e7;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.apple-spec-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.16667;
	color: #1d1d1f;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-diff-grid {
	row-gap: 32px;
}

.apple-diff-item {
	background: #f5f5f7;
	border-radius: 18px;
	padding: 36px 32px;
	height: 100%;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.apple-diff-item:hover {
	background: #ffffff;
	border-color: #e5e5e7;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-6px);
}

.apple-diff-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #0071e3;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 16px;
}

.apple-diff-text {
	font-size: 17px;
	line-height: 1.47059;
	color: #4c4c4f;
	margin: 0;
}

/* ========================================
   Apple Showcase Section
   ======================================== */
.apple-showcase-section {
	position: relative;
	overflow: hidden;
}

.apple-showcase-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 120% at 85% 0%, rgba(0, 113, 227, 0.08) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(120% 120% at 10% 90%, rgba(215, 125, 255, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
	pointer-events: none;
}

.apple-showcase-section .container {
	position: relative;
	z-index: 1;
}

.apple-showcase-intro {
	font-size: 18px;
	line-height: 1.6;
	color: #4c4c4f;
	margin: 0;
}

.apple-case-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 36px;
}

.apple-case-card {
	background: rgba(245, 245, 247, 0.85);
	border-radius: 24px;
	border: 1px solid rgba(229, 229, 231, 0.85);
	box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(26px);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-case-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 36px 80px rgba(15, 23, 42, 0.12);
}

.apple-case-media {
	overflow: hidden;
}

.apple-case-media img {
	width: 100%;
	display: block;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	transform: scale(1.01);
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-case-card:hover .apple-case-media img {
	transform: scale(1.05);
}

.apple-case-body {
	padding: 28px 28px 34px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.apple-case-tag {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0071e3;
}

.apple-case-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.16667;
	color: #1d1d1f;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-case-text {
	font-size: 17px;
	line-height: 1.47059;
	color: #4c4c4f;
	margin: 0;
}

.apple-case-body .apple-list {
	margin-top: 4px;
}

@supports not (backdrop-filter: blur(10px)) {
	.apple-case-card {
		background: #f5f5f7;
	}
}

/* ========================================
   Apple Process Section
   ======================================== */
.apple-process-section {
	padding: 100px 0;
	background: #f5f5f7;
}

/* Solution Content spacing */
.solution-hero-wpr {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.apple-process-item {
	padding: 40px 20px;
}

.apple-process-number {
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	color: #0071e3;
	opacity: 0.2;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-process-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.16667;
	letter-spacing: 0.009em;
	color: #1d1d1f;
	margin-bottom: 12px;
}

.apple-process-text {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	color: #86868b;
	margin: 0;
}

/* ========================================
   Apple FAQ Section
   ======================================== */
.apple-faq-item {
	background: #f5f5f7;
	border-radius: 12px;
	margin-bottom: 16px;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.apple-faq-item:hover {
	background: #ffffff;
	border-color: #e5e5e7;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-section .apple-faq-item .faq-question {
	font-size: 19px;
	font-weight: 500;
	line-height: 1.42105;
	letter-spacing: 0.012em;
	color: #1d1d1f;
	padding: 28px 40px;
	border: none;
	background: transparent;
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-section .apple-faq-item .faq-answer {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	color: #86868b;
	padding: 12px 40px 28px;
}

/* ========================================
   Apple CTA Section
   ======================================== */
.apple-cta {
	padding: 100px 0;
	background: #f5f5f7;
}

.apple-cta-title {
	font-size: 56px;
	font-weight: 600;
	line-height: 1.07143;
	letter-spacing: -0.005em;
	color: #1d1d1f;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.apple-cta-text {
	font-size: 21px;
	line-height: 1.381;
	font-weight: 400;
	color: #86868b;
	max-width: 600px;
	margin: 0 auto 50px;
}

.apple-btn-primary {
	background: #0071e3;
	color: #ffffff;
	border-radius: 980px;
	padding: 12px 22px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.47059;
	letter-spacing: -0.022em;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: none;
	min-width: 120px;
}

.apple-btn-primary:hover {
	background: #0077ed;
	transform: scale(1.05);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.apple-btn-secondary {
	background: transparent;
	color: #0071e3;
	border: 2px solid #0071e3;
	border-radius: 980px;
	padding: 12px 22px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.47059;
	letter-spacing: -0.022em;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	min-width: 120px;
}

.apple-btn-secondary:hover {
	background: #0071e3;
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

/* ========================================
   Industry Navigator & Insights
   ======================================== */
.apple-industry-nav {
	padding: 28px 0 12px;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(229, 229, 231, 0.6);
	position: sticky;
	top: 0;
	z-index: 6;
}

.apple-industry-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.apple-industry-nav__label {
	font-size: 13px;
	font-weight: 600;
	color: #86868b;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.apple-industry-nav__pills,
.apple-industry-nav__other {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.apple-industry-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(245, 245, 247, 0.9);
	border: 1px solid rgba(229, 229, 231, 0.9);
	font-size: 15px;
	color: #1d1d1f;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
	text-decoration: none;
}

.apple-industry-link:hover,
.apple-industry-link:focus {
	transform: translateY(-2px);
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.apple-industry-link--ghost {
	background: transparent;
	border-color: rgba(0, 113, 227, 0.24);
	color: #0071e3;
}

.apple-industry-link--soon {
	cursor: default;
	pointer-events: none;
	border-style: dashed;
	color: #6e6e73;
	background: rgba(245, 245, 247, 0.6);
}

.apple-industry-nav__caption {
	font-size: 15px;
	color: #6e6e73;
	margin-right: 6px;
	align-self: center;
}

.apple-insight-ribbon {
	background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
	padding: 40px 0;
}

.apple-insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.apple-insight-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(229, 229, 231, 0.8);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.apple-insight-metric {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.1;
	color: #1d1d1f;
}

.apple-insight-caption {
	font-size: 16px;
	line-height: 1.5;
	color: #4c4c4f;
	margin: 0;
}

@supports not (backdrop-filter: blur(10px)) {
	.apple-industry-nav {
		background: #ffffff;
	}
}

/* ========================================
   Collaboration Section
   ======================================== */
.apple-collab-section {
	position: relative;
	overflow: hidden;
}

.apple-collab-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 120% at 15% 20%, rgba(0, 113, 227, 0.08) 0%, rgba(255, 255, 255, 0) 55%), radial-gradient(120% 120% at 85% 80%, rgba(215, 125, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
	pointer-events: none;
}

.apple-collab-section .container {
	position: relative;
	z-index: 1;
}

.apple-collab-callout {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(229, 229, 231, 0.8);
	border-radius: 18px;
	padding: 22px 28px;
	backdrop-filter: blur(20px);
	font-size: 17px;
	line-height: 1.5;
	color: #1d1d1f;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.apple-collab-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}

.apple-collab-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(229, 229, 231, 0.85);
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-collab-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 34px 80px rgba(15, 23, 42, 0.12);
}

.apple-collab-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.16667;
	color: #1d1d1f;
	margin: 0;
}

.apple-collab-text {
	font-size: 17px;
	line-height: 1.47059;
	color: #4c4c4f;
	margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
	.apple-title {
		font-size: 48px;
	}

	.apple-benefit-item {
		padding: 28px 24px;
	}

	.apple-benefit-metric {
		font-size: 32px;
	}

	.apple-subtitle {
		font-size: 24px;
	}

	.apple-text {
		font-size: 19px;
	}

	.apple-section-title {
		font-size: 40px;
	}

	.apple-list-grid {
		grid-template-columns: 1fr;
	}

	.apple-spec-grid .apple-spec-card {
		padding: 32px;
	}

	.apple-cta-title {
		font-size: 40px;
	}

	.apple-feature-card {
		margin-bottom: 24px;
	}

	.apple-process-number {
		font-size: 48px;
	}

	.apple-hero-badges {
		gap: 10px;
	}

	.apple-case-grid {
		gap: 28px;
	}

	.apple-case-card {
		border-radius: 20px;
	}

	.apple-case-media img {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
	}

	.apple-industry-nav {
		padding: 20px 0 8px;
		position: static;
		border-bottom: none;
	}

	.apple-industry-nav__inner {
		gap: 12px;
		align-items: stretch;
	}

	.apple-industry-nav__other {
		width: 100%;
		justify-content: flex-start;
	}

	.apple-collab-callout {
		margin-top: 16px;
	}

	.apple-collab-grid {
		gap: 24px;
	}

	.apple-collab-card {
		padding: 28px;
	}
}

@media (max-width: 480px) {
	.apple-title {
		font-size: 36px;
	}

	.apple-subtitle {
		font-size: 20px;
	}

	.apple-text {
		font-size: 17px;
	}

	.apple-section-title {
		font-size: 32px;
	}

	.apple-cta-title {
		font-size: 32px;
	}

	.apple-cta-buttons {
		flex-direction: column;
		gap: 16px;
	}

	.apple-cta-buttons .btn {
		width: 100%;
	}

	.apple-hero-badge {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.apple-case-body {
		padding: 24px 22px 28px;
	}

	.apple-case-title {
		font-size: 22px;
	}

	.apple-showcase-intro {
		font-size: 16px;
	}

	.apple-industry-nav__pills,
	.apple-industry-nav__other {
		gap: 8px;
	}

	.apple-industry-link {
		width: 100%;
	}

	.apple-insight-grid {
		gap: 16px;
	}

	.apple-insight-card {
		padding: 24px;
	}

	.apple-collab-callout {
		padding: 18px 22px;
		margin-top: 12px;
	}

	.apple-collab-card {
		padding: 24px 22px;
	}
}

/* ========================================
   Background Utilities
   ======================================== */
.bg-light {
	background-color: #f5f5f7 !important;
}

.bg-white {
	background-color: #ffffff !important;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Additional spacing utilities */
.mb-80 {
	margin-bottom: 80px;
}

.mt-80 {
	margin-top: 80px;
}
