/*Write your Own Css Here*/

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

.contact-input-group-full {
	grid-column: 1 / -1;
}

.contact-label {
	display: block;
	font-weight: 500;
	margin-bottom: 10px;
	color: #1d1d1f;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.apple-contact {
	display: flex;
	justify-content: center;
}

.apple-contact__panel {
	width: 100%;
	max-width: 760px;
	padding: 56px 56px 48px;
	background: linear-gradient(145deg, #ffffff, #f5f5f7);
	border: 1px solid #e5e5ea;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
	border-radius: 32px;
}

.apple-contact__header {
	margin-bottom: 36px;
}

.apple-contact__header .contact-title {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 600;
	color: #000000;
	margin-bottom: 12px;
}

.contact-eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6e6e73;
	margin-bottom: 12px;
}

.contact-subtitle {
	font-size: 17px;
	line-height: 1.55;
	color: #424245;
}

.apple-contact__form .input-style-2 {
	width: 100%;
	padding: 18px 20px;
	border-radius: 14px;
	background: #f5f5f7;
	border: 1px solid transparent;
	box-shadow: inset 0 0 0 1px #d2d2d7;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	color: #1d1d1f;
	font-size: 16px;
}

.apple-contact__form .input-style-2::placeholder {
	color: #86868b;
}

.apple-contact__form .input-style-2:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
	border-color: #0071e3;
	background: #ffffff;
}

.apple-contact__form textarea.input-style-2 {
	min-height: 170px;
	resize: vertical;
}

.contact-submit {
	margin-top: 28px;
}

.apple-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0071e3, #0055cc);
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 20px 40px rgba(0, 113, 227, 0.25);
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apple-contact__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 24px 48px rgba(0, 113, 227, 0.28);
}

.apple-contact__button:active {
	transform: translateY(1px);
	box-shadow: 0 12px 24px rgba(0, 113, 227, 0.24);
}

@media (max-width: 768px) {
	.apple-contact__panel {
		padding: 40px 28px 36px;
		border-radius: 28px;
	}

	.apple-contact__header .contact-title {
		font-size: 30px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

.dou-message {
	min-height: 70vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(50, 23, 117, 0.85), rgba(28, 5, 57, 0.92));
}

.dou-message::before {
	content: "";
	position: absolute;
	top: 10%;
	left: 5%;
	width: 120px;
	height: 120px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.05);
	transform: rotate(25deg);
}

.dou-message::after {
	content: "";
	position: absolute;
	right: 12%;
	bottom: 12%;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.dou-message-card {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 70px;
	background: rgba(12, 8, 32, 0.85);
	box-shadow: 0 30px 120px rgba(15, 6, 40, 0.4);
	border-radius: 32px;
	backdrop-filter: blur(20px);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.dou-message-icon {
	width: 88px;
	height: 88px;
	margin: 0 auto 30px;
	border-radius: 50%;
	background: linear-gradient(145deg, #f2a588, #f48c5c);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 45px rgba(242, 165, 136, 0.4);
}

.dou-message-icon .icon-shape {
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 6px;
}

.dou-message-title {
	font-size: 42px;
	line-height: 1.2;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}

.dou-message-text {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 40px;
}

.dou-message-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.dou-message-actions .btn-1 {
	min-width: 160px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.dou-message-actions .btn-white {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	background: transparent;
}

.dou-message-actions .btn-white:hover {
	background: rgba(255, 255, 255, 0.12);
}

.minimal-header {
	display: none;
}

.stock-flag {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.stock-flag.in-stock {
	color: #2ecc71;
}

.stock-flag.made-to-order {
	color: #999999;
}

.shop-empty {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	padding: 40px 0;
	color: #666666;
}

/* Custom Mascots Page */
.page-custom-mascots {
	background: #f7f7f7;
	color: #1a1a1a;
	font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.page-custom-mascots .header {
	background: transparent;
	transition: background 0.4s ease;
}

.page-custom-mascots .bsnav-sticky.active {
	background: rgba(12, 12, 12, 0.8);
	backdrop-filter: blur(16px);
}

.hero-mascot {
	position: relative;
	padding: 180px 0 140px;
	color: #ffffff;
}

.hero-mascot__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.hero-mascot__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.75) 100%);
	z-index: 1;
}

.hero-mascot__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.hero-mascot__content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.hero-mascot__content h1 {
	font-size: 58px;
	line-height: 1.05;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero-mascot__content .lead {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.82);
}

.hero-mascot__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.hero-mascot__metrics {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 32px;
	border-radius: 28px;
	backdrop-filter: blur(18px);
	background: rgba(18, 18, 18, 0.6);
	margin-top: 40px;
}

.metric__value {
	display: block;
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
}

.metric__label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.section {
	padding: 120px 0;
}

.section--light {
	background: #ffffff;
}

.section--dark {
	background: #070707;
	color: #ffffff;
}

.section-title {
	font-size: 48px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 16px;
}

.eyebrow--light {
	color: rgba(255, 255, 255, 0.7);
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 32px;
	justify-items: center;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.logo-wall img {
	max-height: 40px;
	filter: grayscale(100%);
	opacity: 0.8;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-wall img:hover {
	filter: grayscale(0);
	opacity: 1;
}

.pillar-card,
.scenario-card,
.case-card,
.diff-card,
.pricing-card,
.capability-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 32px;
	box-shadow: 0 30px 70px rgba(15, 15, 20, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section--light .pillar-card,
.section--light .scenario-card,
.section--light .case-card,
.section--light .pricing-card,
.section--light .capability-card {
	background: #f9f9f9;
	box-shadow: none;
}

.pillar-card:hover,
.scenario-card:hover,
.case-card:hover,
.diff-card:hover,
.pricing-card:hover,
.capability-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 40px 70px rgba(0, 0, 0, 0.12);
}

.pillar-card h3,
.case-card h3,
.capability-card h3 {
	font-size: 26px;
	margin-bottom: 16px;
}

.scenario-card__image {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 18px;
	margin-bottom: 24px;
}

.case-card__tag {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 16px;
}

.case-card__title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}

.case-card__body {
	font-size: 16px;
	color: #4a4a4a;
	margin-bottom: 24px;
}

.link-arrow {
	font-weight: 600;
	color: #111111;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.link-arrow::after {
	content: "→";
	font-size: 18px;
	transition: transform 0.3s ease;
}

.link-arrow:hover::after {
	transform: translateX(4px);
}

.section--dark .diff-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.differentiators__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.process__timeline {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.process-step {
	background: #111111;
	color: #ffffff;
	border-radius: 28px;
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.process-step::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.process-step:hover::before {
	opacity: 1;
}

.process-step__count {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.process-step__title {
	font-size: 26px;
	margin: 18px 0;
}

.process-step__time {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.5);
}

.pricing-card {
	text-align: left;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card--accent {
	background: #0f0f10;
	color: #ffffff;
	box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.pricing-card__price {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 18px;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
	color: rgba(0, 0, 0, 0.7);
}

.pricing-card--accent ul {
	color: rgba(255, 255, 255, 0.7);
}

.capability-card {
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq__list {
	display: grid;
	gap: 16px;
}

.faq__list details {
	background: #ffffff;
	border-radius: 18px;
	padding: 24px 32px;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__list summary {
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	outline: none;
}

.faq__list p {
	margin-top: 16px;
	color: #4a4a4a;
}

.cta-strip {
	background: linear-gradient(135deg, #0b0b0c 0%, #15161d 100%);
	color: #ffffff;
	padding: 60px 0;
}

.cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.cta-strip__actions {
	display: flex;
	gap: 16px;
}

.rfq-form {
	background: #ffffff;
	padding: 48px;
	border-radius: 28px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
	display: grid;
	gap: 24px;
}

.rfq-form .form-row {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.rfq-form .form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 200px;
}

.rfq-form label {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7d7d7d;
	margin-bottom: 10px;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 14px 18px;
	font-size: 16px;
	transition: border 0.3s ease, box-shadow 0.3s ease;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
	border-color: #0a84ff;
	box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
	outline: none;
}

.rfq-form button {
	align-self: flex-start;
}

.rfq__disclaimer {
	font-size: 14px;
	color: #7d7d7d;
	margin: 0;
}

.rfq__sidebar {
	display: grid;
	gap: 24px;
}

.rfq__sla,
.rfq__certs,
.rfq__reviews {
	background: #111111;
	color: #ffffff;
	padding: 32px;
	border-radius: 24px;
}

.rfq__sla ul {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: grid;
	gap: 12px;
	color: rgba(255, 255, 255, 0.72);
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cert-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-align: center;
	padding: 12px;
}

.rfq__reviews blockquote {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 16px;
}

.rfq__reviews cite {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-style: normal;
}

.footer--minimal {
	background: #050505;
	color: #8f8f8f;
	padding: 80px 0 40px;
}

.footer__top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	align-items: start;
	margin-bottom: 40px;
}

.footer__logo img {
	max-width: 160px;
}

.footer__links {
	display: grid;
	gap: 12px;
}

.footer__links a {
	color: #ffffff;
	font-weight: 500;
	text-decoration: none;
}

.footer__cta {
	display: grid;
	gap: 16px;
	justify-items: start;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
}

.footer__social {
	display: flex;
	gap: 18px;
}

.footer__social a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
}

@media (max-width: 1199px) {
	.hero-mascot {
		padding: 160px 0 120px;
	}

	.hero-mascot__content h1 {
		font-size: 48px;
	}

	.section-title {
		font-size: 42px;
	}

	.differentiators__grid,
	.process__timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.hero-mascot__metrics {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 24px;
	}

	.logo-wall {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.section {
		padding: 90px 0;
	}

	.cta-strip__inner {
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.hero-mascot {
		padding: 140px 0 100px;
	}

	.hero-mascot__content h1 {
		font-size: 40px;
	}

	.hero-mascot__metrics {
		grid-template-columns: 1fr;
	}

	.logo-wall {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.section-title {
		font-size: 34px;
	}

	.differentiators__grid,
	.process__timeline,
	.footer__top {
		grid-template-columns: 1fr;
	}

	.rfq-form {
		padding: 32px;
	}

	.cta-strip__actions {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}
