.accupyc-product-template {
	width: 100%;
}

/* ── Hero ─────────────────────────────────────────────── */

/* Outer section — full width, centres the inner box */
.accupyc-hero {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 30px;
	width: 100%;
}

/* Inner box — this IS the hero container the user sees */
.accupyc-hero__inner {
	background-color: #000;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 600px;
	overflow: hidden;
	padding: 100px;
	position: relative;
	width: 100%;
	max-width: 1280px;
}

.accupyc-hero__inner.has-bg-image {
	background-image: var(--hero-bg);
}

/* Video fills the inner box */
.accupyc-hero__video {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

/* Gradient overlay — left dark to right transparent */
.accupyc-hero__overlay {
	display: none;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.3) 72%, transparent 95%);
	position: absolute;
	z-index: 1;
}

.accupyc-hero__inner.has-bg-image .accupyc-hero__overlay,
.accupyc-hero__inner.has-video .accupyc-hero__overlay {
	display: block;
}

/* Content sits above video and overlay */
.accupyc-hero__content {
	position: relative;
	z-index: 2;
}

/* Text */
.accupyc-hero__title {
	color: #fff !important;
	font-size: 76px;
	font-weight: 900;
	line-height: 1.0;
	margin: 0 0 20px;
}

.accupyc-hero__subtitle {
	color: #4a90d9;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px;
}

.accupyc-hero__caption {
	color: #fff;
	font-size: 24px;
	line-height: 1.35;
	max-width: 40%;
}

.accupyc-hero__caption p {
	margin: 0;
}

.accupyc-hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.accupyc-hero__brochure-btn {
	border: 2px solid #fff;
	border-radius: 4px;
	color: #fff !important;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 24px;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}

.accupyc-hero__brochure-btn:hover {
	background: #fff;
	color: #000 !important;
}

.accupyc-hero__rfi-btn {
	background: #fff;
	border-radius: 4px;
	color: #000 !important;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 24px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.accupyc-hero__rfi-btn:hover {
	background: rgba(255, 255, 255, 0.85);
}

/* ── Highlights ───────────────────────────────────────── */
.accupyc-highlights {
	background: #fff;
	padding: 70px 30px;
	width: 100%;
}

.accupyc-highlights__inner {
	align-items: flex-start;
	display: flex;
	gap: 0;
	justify-content: center;
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-highlight {
	border-right: 1px solid #e0e8f0;
	flex: 1;
	opacity: 0;
	padding: 20px 40px;
	text-align: center;
	transform: translateY(30px);
	transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s ease var(--delay, 0ms);
}

.accupyc-highlight:last-child {
	border-right: none;
}

.accupyc-highlight.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.accupyc-highlight__count {
	background: linear-gradient(135deg, #00b4c8 0%, #02559A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: clamp(40px, 4.6vw, 58px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 14px;
	white-space: nowrap;
}

.accupyc-highlight__desc {
	color: var(--e-global-color-primary);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
}

/* ── Overview ─────────────────────────────────────────── */
.accupyc-overview {
	background: #fff;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-overview__inner {
	align-items: center;
	display: flex;
	gap: 60px;
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-overview__text {
	flex: 0 0 65%;
	max-width: 65%;
}

.accupyc-overview__title {
	color: var(--e-global-color-primary) !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 28px;
}

.accupyc-overview__content {
	color: #3a3a3a;
	font-size: 17px;
	line-height: 1.75;
}

.accupyc-overview__content p {
	margin: 0 0 18px;
}

.accupyc-overview__content p:last-child {
	margin-bottom: 0;
}

.accupyc-overview__photo {
	flex: 1;
}

.accupyc-overview__photo img {
	border-radius: 10px;
	display: block;
	height: auto;
	width: 100%;
	object-fit: cover;
}

/* ── Features grid ────────────────────────────────────── */
.accupyc-features {
	background: #f4f7fb;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-features__inner {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-feature {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 16px rgba(2, 85, 154, 0.07);
	display: grid;
	grid-row: span 3;
	grid-template-rows: subgrid;
	opacity: 0;
	overflow: hidden;
	transform: translateY(30px);
	transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s ease var(--delay, 0ms);
}

.accupyc-feature.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.accupyc-feature__title {
	align-self: start;
	margin: 0;
	padding: 28px 28px 24px;
}

.accupyc-feature__media {
	line-height: 0;
	width: 100%;
}

.accupyc-feature__media img,
.accupyc-feature__media video,
.accupyc-feature__media iframe {
	display: block;
	height: 280px;
	object-fit: cover;
	width: 100%;
	border: none;
}

.accupyc-feature__content {
	flex: 1;
	padding: 20px 28px 28px;
}

.accupyc-feature__content p:last-child {
	margin-bottom: 0;
}

/* ── Vertical Tabs ────────────────────────────────────── */
.accupyc-vtabs {
	padding: 80px 30px;
	width: 100%;
}

.accupyc-vtabs__inner {
	align-items: center;
	background: #000;
	border-radius: 10px;
	display: grid;
	gap: 60px;
	grid-template-columns: 6fr 6fr;
	margin: 0 auto;
	max-width: 1280px;
	overflow: hidden;
	padding: 80px;
}

.accupyc-vtabs__right {
	align-items: center;
	display: flex;
}

/* Left column */
.accupyc-vtabs__header {
	margin-bottom: 48px;
}

.accupyc-vtabs__heading {
	color: #fff !important;
	font-size: 42px !important;
	font-weight: 600 !important;
	letter-spacing: -0.02em;
	line-height: 1.15 !important;
	margin: 0 0 6px !important;
}

.accupyc-vtabs__label {
	color: #999;
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.3em;
	margin-left: 2px;
	text-transform: uppercase;
}

/* Tab items */
.accupyc-vtabs__list {
	display: flex;
	flex-direction: column;
}

.accupyc-vtab {
	align-items: flex-start;
	background: none !important;
	border: none !important;
	border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
	color: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	display: flex;
	gap: 16px;
	padding: 28px 0 28px 20px;
	position: relative;
	text-align: left;
	transition: color 0.4s ease;
	width: 100%;
}

.accupyc-vtab:first-child {
	border-top: none !important;
}

.accupyc-vtab.is-active {
	color: #fff;
}

.accupyc-vtab:hover:not(.is-active) {
	color: rgba(255, 255, 255, 0.7);
}

/* Progress bar */
.accupyc-vtab__progress {
	background: rgba(255, 255, 255, 0.15);
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 2px;
}

.accupyc-vtab__progress-fill {
	background: #fff;
	height: 100%;
	transform: scaleY(0);
	transform-origin: top;
	width: 100%;
}

@keyframes accupyc-vtab-progress {
	from { transform: scaleY(0); }
	to   { transform: scaleY(1); }
}

.accupyc-vtab.is-active .accupyc-vtab__progress-fill {
	animation: accupyc-vtab-progress 5s linear forwards;
}

/* Tab number */
.accupyc-vtab__num {
	font-size: 10px;
	font-weight: 600;
	margin-top: 6px;
	opacity: 0.5;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

/* Tab body */
.accupyc-vtab__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
}

.accupyc-vtab__title {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	transition: color 0.4s ease;
}

.accupyc-vtab__desc {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: height 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}

.accupyc-vtab__desc p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	padding-bottom: 4px;
}

/* Right column — image gallery */
.accupyc-vtabs__gallery-wrap {
	align-items: center;
	display: flex;
	height: 100%;
	position: relative;
	width: 100%;
}

.accupyc-vtabs__gallery {
	aspect-ratio: 16 / 11;
	border-radius: 24px;
	margin: auto 0;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	width: 100%;
}

.accupyc-vtabs__slide {
	bottom: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(100%);
	transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
	            opacity 0.4s ease;
	z-index: 0;
}

.accupyc-vtabs__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	z-index: 2;
}

.accupyc-vtabs__slide img {
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	width: 100%;
	transition: transform 0.6s ease;
}

.accupyc-vtabs__gallery:hover .accupyc-vtabs__slide.is-active img {
	transform: scale(1.03);
}

.accupyc-vtabs__slide-overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.18), transparent 50%);
	bottom: 0;
	left: 0;
	opacity: 0.6;
	position: absolute;
	right: 0;
	top: 0;
}


/* ── Applications Tabs ────────────────────────────────── */
.accupyc-apptabs {
	background: #f4f7fb;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-apptabs__inner {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: 4fr 8fr;
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-apptabs__heading {
	color: var(--e-global-color-primary) !important;
	font-size: 42px;
	font-weight: 800;
	grid-column: 1 / -1;
	line-height: 1.15;
	margin: 0 0 12px;
}

/* Tab list */
.accupyc-apptabs__nav {
	border-top: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
}

.accupyc-apptab {
	align-items: center;
	background: none !important;
	border: none !important;
	border-bottom: 1px solid #e2e8f0 !important;
	color: #888 !important;
	cursor: pointer;
	display: flex;
	gap: 14px;
	padding: 22px 0 22px 20px;
	position: relative;
	text-align: left;
	transition: color 0.3s ease;
	width: 100%;
}

/* Sliding left accent bar */
.accupyc-apptab::before {
	content: '';
	background: var(--e-global-color-primary);
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleY(0);
	transform-origin: center;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	width: 3px;
}

.accupyc-apptab.is-active::before {
	transform: scaleY(1);
}

.accupyc-apptab.is-active {
	color: var(--e-global-color-primary) !important;
}

.accupyc-apptab:hover:not(.is-active) {
	color: #111 !important;
}

.accupyc-apptab__title {
	flex: 1;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

/* Panels — CSS grid stacking (all panels same cell) */
.accupyc-apptabs__panels {
	display: grid;
}

.accupyc-apppanel {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transform: translateY(16px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.accupyc-apppanel.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.accupyc-apppanel__title {
	color: var(--e-global-color-primary) !important;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 24px;
}

.accupyc-apppanel__content {
	color: #555;
	font-size: 16px;
	line-height: 1.75;
}

.accupyc-apppanel__content p:last-child {
	margin-bottom: 0;
}

/* ── Performance Banner ──────────────────────────────── */
.accupyc-performance {
	padding: 80px 30px;
	width: 100%;
}

.accupyc-performance__inner {
	align-items: center;
	background: #000;
	border-radius: 10px;
	display: flex;
	margin: 0 auto;
	max-width: 1280px;
	min-height: 320px;
	overflow: hidden;
	padding: 80px;
	position: relative;
}

.accupyc-performance__video {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.accupyc-performance__bg-image {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	inset: 0;
	position: absolute;
	z-index: 0;
}

.accupyc-performance__overlay {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.15) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.accupyc-performance__content {
	max-width: 620px;
	position: relative;
	z-index: 2;
}

.accupyc-performance__eyebrow {
	color: var(--e-global-color-secondary);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 20px;
}

.accupyc-performance__title {
	color: #fff !important;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 18px;
}

.accupyc-performance__text {
	color: #fff;
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 560px;
}

.accupyc-performance__text p:last-child {
	margin-bottom: 0;
}

.accupyc-performance__cta {
	background: var(--e-global-color-primary);
	border-radius: 4px;
	color: #fff !important;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	padding: 12px 24px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.accupyc-performance__cta:hover {
	background: #0d6a97;
}

/* ── Specifications ───────────────────────────────────── */
.accupyc-specs {
	background: #fff;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-specs__inner {
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-specs__heading {
	color: var(--e-global-color-primary) !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 40px;
}

/* Tab bar */
.accupyc-specs__tabbar {
	border-bottom: 2px solid #e2e8f0;
	display: flex;
	margin-bottom: 40px;
	position: relative;
}

/* Sliding indicator */
.accupyc-specs__indicator {
	background: var(--e-global-color-primary);
	bottom: -2px;
	height: 2px;
	left: 0;
	position: absolute;
	transition: left 0.35s cubic-bezier(0.23, 1, 0.32, 1),
	            width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	width: 0;
}

/* Tab buttons */
.accupyc-specs__tab {
	background: none !important;
	border: none !important;
	color: #888 !important;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 28px;
	position: relative;
	transition: color 0.25s ease;
	white-space: nowrap;
}

.accupyc-specs__tab.is-active {
	color: var(--e-global-color-primary) !important;
}

.accupyc-specs__tab:hover:not(.is-active) {
	color: #111 !important;
}

/* Panels — absolute stack, height driven by JS */
.accupyc-specs__panels {
	overflow: hidden;
	position: relative;
	transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.accupyc-specs__panel {
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	width: 100%;
}

.accupyc-specs__panel.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Table */
.accupyc-specs__table {
	border-collapse: collapse;
	width: 100%;
}

.accupyc-specs__table tr {
	border-bottom: 1px solid #e2e8f0;
}

.accupyc-specs__table tr:last-child {
	border-bottom: none;
}

.accupyc-specs__field {
	color: #888;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 16px 0;
	text-transform: uppercase;
	width: 40%;
}

.accupyc-specs__value {
	color: #1a1a1a;
	font-size: 15px;
	padding: 16px 0;
}

/* ── Accessories ──────────────────────────────────────── */
.accupyc-accessories {
	background: #f4f7fb;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-accessories__inner {
	margin: 0 auto;
	max-width: 1280px;
}

.accupyc-accessories__header {
	margin: 0 auto 40px;
	max-width: 760px;
	text-align: center;
}

.accupyc-accessories__heading {
	color: var(--e-global-color-primary) !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
}

.accupyc-accessories__intro {
	color: #5b6470;
	font-size: 17px;
	line-height: 1.75;
}

.accupyc-accessories__intro p:last-child {
	margin-bottom: 0;
}

.accupyc-accessories__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
	justify-content: center;
}

.accupyc-accessory-card {
	height: 100%;
	max-width: 320px;
	width: 100%;
}

.accupyc-accessories__grid > .accupyc-accessory-card {
	justify-self: center;
}

.accupyc-accessory-card__link {
	background: #fff;
	border: 1px solid #dde5ee;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(19, 42, 67, 0.05);
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.accupyc-accessory-card__link:hover {
	border-color: #c7d5e4;
	box-shadow: 0 12px 30px rgba(19, 42, 67, 0.12);
	transform: translateY(-4px);
}

.accupyc-accessory-card__media {
	align-items: center;
	background: #eef2f6;
	display: flex;
	height: 190px;
	justify-content: center;
	overflow: hidden;
}

.accupyc-accessory-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.accupyc-accessory-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	padding: 28px 24px 30px;
	text-align: center;
}

.accupyc-accessory-card__title {
	color: #2d3136 !important;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 18px;
}

.accupyc-accessory-card__excerpt {
	color: #4e5761;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

/* ── FAQ ──────────────────────────────────────────────── */
.accupyc-faq {
	padding: 80px 30px;
	width: 100%;
}

.accupyc-faq__inner {
	background: #000;
	border-radius: 10px;
	margin: 0 auto;
	max-width: 1280px;
	overflow: hidden;
	padding: 80px;
}

.accupyc-faq__heading {
	color: #fff !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 40px;
}

.accupyc-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accupyc-faq__item:first-of-type {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accupyc-faq__question {
	align-items: center;
	background: none !important;
	border: none !important;
	color: #fff !important;
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 600;
	gap: 16px;
	justify-content: space-between;
	padding: 22px 0;
	text-align: left;
	transition: color 0.25s ease;
	width: 100%;
}

.accupyc-faq__question:hover {
	color: rgba(255, 255, 255, 0.65) !important;
}

.accupyc-faq__question-text {
	flex: 1;
}

.accupyc-faq__chevron {
	color: currentColor;
	flex-shrink: 0;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.accupyc-faq__item.is-open .accupyc-faq__chevron {
	transform: rotate(180deg);
}

.accupyc-faq__answer {
	height: 0;
	overflow: hidden;
	transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.accupyc-faq__answer-inner {
	color: #fff;
	font-size: 16px;
	line-height: 1.75;
	padding-bottom: 24px;
}

.accupyc-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

/* ── Request Info ─────────────────────────────────────── */
.accupyc-rfi {
	background: #f4f7fb;
	padding: 80px 30px;
	width: 100%;
}

.accupyc-rfi__inner {
	margin: 0 auto;
	max-width: 900px;
}

.accupyc-rfi__header {
	margin-bottom: 48px;
	text-align: center;
}

.accupyc-rfi__title {
	color: var(--e-global-color-primary) !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
}

.accupyc-rfi__subtitle {
	color: #666;
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1366px) {
	.accupyc-hero {
		padding: 20px;
	}
}

@media (max-width: 1023px) {
	.accupyc-hero__caption {
		max-width: 100%;
	}
}

@media (max-width: 1023px) {
	.accupyc-vtabs {
		padding: 50px 20px;
	}

	.accupyc-vtabs__inner {
		grid-template-columns: 1fr;
		padding: 48px 40px;
	}

	.accupyc-vtabs__right {
		order: -1;
	}

	.accupyc-vtabs__heading {
		font-size: 32px !important;
	}

	.accupyc-vtab__title {
		font-size: 22px;
	}

	.accupyc-highlight {
		padding: 20px;
	}

	.accupyc-highlight__count {
		font-size: clamp(34px, 7vw, 44px);
	}

	.accupyc-features__inner {
		grid-template-columns: 1fr;
	}

	.accupyc-overview__inner {
		flex-direction: column;
		gap: 40px;
	}

	.accupyc-overview__text {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.accupyc-overview__title {
		font-size: 34px;
	}

	.accupyc-apptabs__inner {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.accupyc-apppanel__title {
		font-size: 28px;
	}

	.accupyc-performance {
		padding: 60px 20px;
	}

	.accupyc-performance__inner {
		min-height: 280px;
		padding: 48px 40px;
	}

	.accupyc-performance__eyebrow {
		font-size: 22px;
	}

	.accupyc-performance__title {
		font-size: 28px;
	}

	.accupyc-accessories__heading {
		font-size: 34px;
	}

	.accupyc-accessories__grid {
		grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
	}
}

@media (max-width: 767px) {
	.accupyc-vtabs {
		padding: 0;
	}

	.accupyc-vtabs__inner {
		border-radius: 0;
		padding: 40px 24px;
	}

	.accupyc-faq {
		padding: 0;
	}

	.accupyc-faq__inner {
		border-radius: 0;
		padding: 40px 24px;
	}

	.accupyc-highlights {
		padding: 50px 20px;
	}

	.accupyc-highlights__inner {
		flex-direction: column;
		align-items: center;
	}

	.accupyc-highlight {
		border-right: none;
		border-bottom: 1px solid #e0e8f0;
		width: 100%;
		padding: 30px 20px;
	}

	.accupyc-highlight:last-child {
		border-bottom: none;
	}

	.accupyc-hero {
		padding: 0;
	}

	.accupyc-hero__inner {
		border-radius: 0;
		min-height: 500px;
		padding: 30px;
	}

	.accupyc-hero__title {
		font-size: 40px;
	}

	.accupyc-hero__subtitle {
		font-size: 15px;
	}

	.accupyc-hero__caption {
		font-size: 20px;
	}

	.accupyc-apptabs {
		padding: 50px 20px;
	}

	.accupyc-performance {
		padding: 0;
	}

	.accupyc-performance__inner {
		border-radius: 0;
		min-height: 260px;
		padding: 40px 24px;
	}

	.accupyc-performance__eyebrow {
		font-size: 22px;
	}

	.accupyc-performance__title {
		font-size: 24px;
	}

	.accupyc-performance__text {
		font-size: 16px;
	}

	.accupyc-specs {
		padding: 50px 20px;
	}

	.accupyc-accessories {
		padding: 50px 20px;
	}

	.accupyc-faq {
		padding: 50px 20px;
	}

	.accupyc-faq__inner {
		padding: 48px 40px;
	}

	.accupyc-faq__heading {
		font-size: 30px;
	}

	.accupyc-rfi {
		padding: 50px 20px;
	}

	.accupyc-rfi__title {
		font-size: 30px;
	}

	.accupyc-specs__heading {
		font-size: 30px;
	}

	.accupyc-accessories__heading {
		font-size: 30px;
	}

	.accupyc-accessories__grid {
		gap: 20px;
		grid-template-columns: minmax(0, 320px);
		justify-content: center;
	}

	.accupyc-accessory-card__body {
		padding: 24px 20px 26px;
	}

	.accupyc-specs__tabbar {
		border-bottom: none;
		border-left: 2px solid #e2e8f0;
		flex-direction: column;
		padding-left: 0;
	}

	.accupyc-specs__indicator {
		bottom: auto;
		height: 0;
		left: -2px;
		top: 0;
		transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
		            height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
		width: 2px !important;
	}

	.accupyc-specs__tab {
		padding: 12px 20px;
		text-align: left;
		white-space: normal;
	}
}
