/* =============================================================================
   HOMEPAGE — front-page.php
   Hero · Carousel · Showcase · Flagship · Film Finder · Blog Preview · Trust Bar
   ============================================================================= */

/* ── 1. Hero ── */

.andp-hero {
	position: relative;
	width: 100%;
	background-color: #000;
}

.andp-hero__slider-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* img-comparison-slider overrides */
.andp-hero__slider {
	--divider-width: 2px;
	--divider-color: var(--andp-gold);
	--default-handle-color: var(--andp-gold);
	--default-handle-width: 48px;
	--default-handle-opacity: 1;
	--focus-color: transparent;
	outline: none !important;
	box-shadow: none !important;
}

.andp-hero__slider:focus,
.andp-hero__slider:focus-visible,
.andp-hero__slider:focus-within {
	outline: none !important;
	box-shadow: none !important;
}

/* Before / After labels */
.andp-hero__labels {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
	pointer-events: none;
}

.andp-hero__label {
	font-family: var(--andp-font-mono);
	font-size: 9px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	padding: 4px 10px;
	line-height: 1;
}

.andp-hero__label--before {
	background-color: rgba(0,0,0,0.6);
	color: var(--andp-text-muted);
	border: 1px solid var(--andp-border-mid);
}

.andp-hero__label--after {
	background-color: rgba(201, 146, 42, 0.15);
	color: var(--andp-gold);
	border: 1px solid rgba(201, 146, 42, 0.4);
}

/* Gradient overlay + content */
.andp-hero__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.60) 0%,
		rgba(0,0,0,0.30) 35%,
		rgba(0,0,0,0.05) 60%,
		transparent 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 0 0 64px;
}

.andp-hero__overlay-inner {
	pointer-events: auto;
	padding: 0 64px;
	max-width: 640px;
}

.andp-hero__title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 300;
	color: var(--andp-white);
	line-height: 1.05;
	margin: 12px 0 20px;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.andp-hero__title-em {
	font-style: italic;
	color: var(--andp-gold);
	font-weight: 300;
}

.andp-hero__subtitle {
	font-size: 14px;
	color: var(--andp-text-primary);
	margin: 0 0 32px;
	line-height: 1.8;
}

.andp-hero__subtitle-for {
	font-size: 12px;
	color: var(--andp-text-muted);
}

.andp-hero__ctas {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Photographer credit */
.andp-hero__credit {
	display: block;
	text-align: right;
	font-family: var(--andp-font-mono);
	font-size: 9px;
	color: var(--andp-text-muted);
	background-color: var(--andp-bg);
	margin: 0;
	padding: 6px 16px;
	letter-spacing: 0.05em;
	border: none;
	outline: none;
	box-shadow: none;
}

.andp-hero__credit a {
	color: var(--andp-gold);
	text-decoration: none;
	transition: color var(--andp-transition);
}

.andp-hero__credit a:hover {
	color: var(--andp-white);
}

/* Drag hint */
.andp-hero__drag-hint {
	position: absolute;
	bottom: 52px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--andp-font-mono);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: rgba(255,255,255,0.35);
	pointer-events: none;
	animation: andp-hero-hint-fade 3s ease 1.5s forwards;
	opacity: 1;
}

@keyframes andp-hero-hint-fade {
	0%   { opacity: 1; }
	80%  { opacity: 1; }
	100% { opacity: 0; }
}


/* ── 1b. Hero Carousel ── */

.andp-carousel {
	position: relative;
}

.andp-carousel__track {
	position: relative;
	width: 100%;
	min-height: 480px;
	height: 70vh;
	max-height: 800px;
	overflow: hidden;
}

.andp-carousel__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 700ms ease;
	z-index: 0;
}

.andp-carousel__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.andp-carousel__slide .andp-hero__slider-wrap {
	height: 100%;
}

/* Nav dots */
.andp-carousel__dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

.andp-carousel__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	border: 1px solid rgba(201, 146, 42, 0.5);
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.andp-carousel__dot.is-active {
	background-color: var(--andp-gold);
	border-color: var(--andp-gold);
	transform: scale(1.3);
}

.andp-carousel__dot:hover:not(.is-active) {
	border-color: var(--andp-gold);
	background-color: rgba(201, 146, 42, 0.25);
}

/* Credit lines */
.andp-hero__credits {
	position: relative;
	background-color: var(--andp-bg);
}

.andp-hero__credits .andp-hero__credit {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity 500ms ease;
	pointer-events: none;
}

.andp-hero__credits .andp-hero__credit.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.andp-hero__credits .andp-hero__credit:empty {
	height: 0;
	padding: 0;
}

/* Slide 2 — Capture One */
.andp-slide-c1 {
	background-color: #0a0a0a;
	background-image: url('../assets/img/slide-c1-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.andp-slide-c1::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.80) 0%,
		rgba(0,0,0,0.55) 45%,
		rgba(0,0,0,0.20) 75%,
		rgba(0,0,0,0.10) 100%
	);
	z-index: 0;
	pointer-events: none;
}

.andp-slide-c1__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	padding-bottom: 64px;
}

/* Slide 3 — Free Grade */
.andp-slide-free__static {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-color: var(--andp-bg);
	position: relative;
}

.andp-hero__overlay--strong {
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.80) 0%,
		rgba(0,0,0,0.50) 40%,
		rgba(0,0,0,0.10) 75%,
		transparent 100%
	) !important;
}

.andp-hero__title--free {
	white-space: normal;
}

.andp-hero__free-formats {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}


/* ── 2. Two-column Showcase ── */

.andp-showcase {
	background-color: var(--andp-bg);
}

.andp-showcase__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.andp-showcase__col-header {
	margin-bottom: 28px;
}

.andp-showcase__col-title {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 300;
	color: var(--andp-white);
	margin: 8px 0 8px;
}

.andp-showcase__col-desc {
	font-size: 13px;
	color: var(--andp-text-muted);
	margin: 0;
}

/* Software card */
.andp-software-card {
	background-color: var(--andp-surface);
	border: 1px solid var(--andp-border-light);
}

.andp-software-card:hover {
	border-color: var(--andp-gold-dim);
}

.andp-software-card__img-link { display: block; overflow: hidden; }

.andp-software-card__img-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: var(--andp-surface-alt);
}

.andp-software-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.andp-software-card:hover .andp-software-card__img { transform: scale(1.03); }

.andp-software-card__version {
	position: absolute;
	top: 10px;
	right: 10px;
}

.andp-software-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.andp-software-card__name {
	font-size: 16px;
	font-weight: 400;
	color: var(--andp-white);
	margin: 0;
}

.andp-software-card__name a {
	color: inherit;
	text-decoration: none;
	transition: color var(--andp-transition);
}

.andp-software-card__name a:hover { color: var(--andp-gold); }

.andp-software-card__excerpt {
	font-size: 13px;
	color: var(--andp-text-muted);
	line-height: 1.65;
	margin: 0;
}

.andp-software-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid var(--andp-border-dark);
	margin-top: 4px;
}

/* Featured grades grid — 2×2 */
.andp-featured-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	background-color: transparent;
}

.andp-featured-grid .andp-product-card {
	background-color: var(--andp-bg);
	border: none !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	transition: opacity var(--andp-transition);
	position: relative;
	box-shadow:
		0 0 0 1px rgba(201,146,42,0) inset,
		inset 0 -60px 40px -20px rgba(201,146,42,0.08),
		inset 0 -2px 0 0 rgba(201,146,42,0.30),
		inset -1px -1px 0 0 rgba(201,146,42,0.12),
		inset 1px -1px 0 0 rgba(201,146,42,0.12);
}

.andp-featured-grid .andp-product-card:hover {
	box-shadow:
		0 0 0 1px rgba(201,146,42,0) inset,
		inset 0 -60px 40px -20px rgba(201,146,42,0.18),
		inset 0 -2px 0 0 rgba(201,146,42,0.55),
		inset -1px -1px 0 0 rgba(201,146,42,0.22),
		inset 1px -1px 0 0 rgba(201,146,42,0.22),
		0 8px 32px -8px rgba(201,146,42,0.20),
		0 2px 12px -4px rgba(201,146,42,0.15);
}

.andp-featured-grid .andp-product-card__img-wrap {
	aspect-ratio: 4 / 3;
	border-radius: 0;
}

.andp-featured-grid .andp-product-card__footer {
	display: none;
}

.andp-featured-grid .andp-product-card__body {
	padding: 10px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* "Film Simulation" type label */
.andp-product-card__type-label {
	display: none;
}

.andp-featured-grid .andp-product-card__type-label {
	display: block;
	font-family: var(--andp-font-mono);
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--andp-text-muted);
}

/* Featured format badges — size overrides only, colours cascade from global.css */
.andp-format-badges--featured {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.andp-format-badges--featured .andp-badge--format {
	font-size: 8px;
	padding: 2px 6px;
	border-radius: 3px;
}

.andp-showcase__browse {
	margin-top: 24px;
	display: flex;
	justify-content: flex-end;
}

/* Product grid (homepage) */
.andp-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background-color: var(--andp-border-dark);
}

.andp-product-grid .andp-product-card {
	background-color: var(--andp-surface);
	border: none;
}

.andp-product-card__img-link {
	display: block;
	overflow: hidden;
}

.andp-product-card__img-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: var(--andp-surface-alt);
}

.andp-product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.andp-product-card:hover .andp-product-card__img {
	transform: scale(1.03);
}

.andp-product-card__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.andp-product-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--andp-surface-alt) 0%, var(--andp-border-dark) 100%);
}

.andp-product-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.andp-product-card__name {
	font-family: var(--andp-font-sans);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.03em;
	color: var(--andp-white);
	margin: 0;
}

.andp-featured-grid .andp-product-card__name {
	font-family: var(--andp-font-mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: rgba(201,146,42,0.75);
}

.andp-featured-grid .andp-product-card__name a {
	color: inherit;
}

.andp-featured-grid .andp-product-card__name a:hover {
	color: var(--andp-gold);
}

.andp-product-card__name a {
	color: inherit;
	text-decoration: none;
	transition: color var(--andp-transition);
}

.andp-product-card__name a:hover { color: var(--andp-gold); }

.andp-product-card__excerpt {
	font-size: 12px;
	color: var(--andp-text-muted);
	line-height: 1.6;
	margin: 0;
}

.andp-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 4px;
	padding-top: 14px;
	border-top: 1px solid var(--andp-border-dark);
}

.andp-product-card__price {
	font-family: var(--andp-font-mono);
	font-size: 14px;
	font-weight: 500;
	color: var(--andp-white);
}

.andp-product-card__price .woocommerce-Price-amount { color: var(--andp-white); }

.andp-product-card__cta {
	padding: 8px 14px;
	font-size: 8px;
	letter-spacing: 0.1em;
}

.andp-lab__footer {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.andp-lab__no-products {
	text-align: center;
	color: var(--andp-text-muted);
	padding: 48px 0;
}


/* ── 3. Flagship Banner ── */

.andp-flagship {
	background-color: var(--andp-surface-alt);
	border-top: 1px solid var(--andp-border-light);
	border-bottom: 1px solid var(--andp-border-light);
}

.andp-flagship__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.andp-flagship__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.andp-flagship__version {
	align-self: flex-start;
}

.andp-flagship__title {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 300;
	color: var(--andp-white);
	margin: 0;
	line-height: 1.1;
}

.andp-flagship__desc {
	font-size: 14px;
	color: var(--andp-text-muted);
	line-height: 1.75;
	margin: 0;
	max-width: 440px;
}

.andp-flagship__includes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.andp-flagship__include-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.andp-flagship__include-item svg {
	color: var(--andp-gold);
	flex-shrink: 0;
}

.andp-flagship__include-label {
	color: var(--andp-text-dim);
	font-size: 11px;
}

.andp-flagship__include-label--plain {
	color: var(--andp-text-dark);
}

.andp-flagship__cta-group {
	display: flex;
	align-items: center;
	gap: 16px;
}

.andp-flagship__price {
	font-family: var(--andp-font-mono);
	font-size: 18px;
	font-weight: 500;
	color: var(--andp-white);
}

.andp-flagship__price .woocommerce-Price-amount { color: var(--andp-white); }

.andp-flagship__ctas {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 4px;
}

/* Image column */
.andp-flagship__media {
	position: relative;
}

.andp-flagship__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid var(--andp-border-light);
}

.andp-flagship__slider {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--andp-border-light);
	overflow: hidden;
}

.andp-flagship__img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	border: 1px solid var(--andp-border-light);
}

/* Floating stat chip */
.andp-flagship__stat-chip {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background-color: var(--andp-bg);
	border: 1px solid var(--andp-border-light);
	padding: 14px 18px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.andp-flagship__stat-value {
	font-family: var(--andp-font-mono);
	font-size: 24px;
	font-weight: 500;
	color: var(--andp-white);
	line-height: 1;
}

.andp-flagship__stat-label {
	font-family: var(--andp-font-mono);
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--andp-gold);
}


/* ── 4. Film Finder — Coming Soon placeholder ── */

.andp-finder {
	padding: 0;
	background-color: var(--andp-bg);
}

.andp-finder__inner {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.andp-finder__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.andp-finder__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.andp-finder__bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(10,10,10,0.88) 0%,
		rgba(10,10,10,0.60) 40%,
		transparent 70%
	);
}

.andp-finder__content {
	position: relative;
	z-index: 2;
	max-width: 520px;
	padding: 80px 0 80px 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.andp-finder__title {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 300;
	color: var(--andp-white);
	line-height: 1.1;
	margin: 0;
}

.andp-finder__desc {
	font-size: 14px;
	color: var(--andp-text-muted);
	line-height: 1.7;
	margin: 0;
	max-width: 380px;
}

.andp-finder__cta {
	align-self: flex-start;
	cursor: not-allowed;
}

.andp-finder__credit {
	display: block;
	width: 100%;
	background-color: var(--andp-bg) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
	line-height: 0;
}

.andp-finder__credit-inner {
	line-height: normal;
}

.andp-finder__credit .andp-finder__credit-inner {
	display: block;
	max-width: 1280px;
	margin: 0 auto;
	padding: 6px 24px;
	text-align: right;
	font-family: var(--andp-font-mono);
	font-size: 9px;
	color: var(--andp-text-muted);
	letter-spacing: 0.05em;
	line-height: normal;
}

.andp-finder__credit a,
.andp-finder__credit-inner a {
	color: var(--andp-gold);
	text-decoration: none;
	transition: color var(--andp-transition);
}

.andp-finder__credit a:hover,
.andp-finder__credit-inner a:hover { color: var(--andp-white); }

.andp-finder__coming-soon {
	font-family: var(--andp-font-mono);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--andp-text-dark);
}


/* ── 5. Blog Preview — From the Darkroom ── */

.andp-darkroom {
	background-color: var(--andp-bg);
}

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

.andp-blog-card {
	background-color: var(--andp-surface);
	border: none;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.andp-blog-card__img-link {
	display: block !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
	font-size: 0 !important;
}

.andp-blog-card__img-wrap {
	position: relative !important;
	aspect-ratio: 3 / 2 !important;
	overflow: hidden !important;
	background-color: var(--andp-surface-alt) !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
}

.andp-blog-card__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: cover !important;
	object-position: center !important;
	transition: transform 400ms ease;
	transform-origin: center;
}

.andp-blog-card:hover .andp-blog-card__img {
	transform: scale(1.03);
}

.andp-blog-card__featured-badge {
	position: absolute;
	top: 12px;
	left: 12px;
}

.andp-blog-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.andp-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.andp-blog-card__cat {
	font-family: var(--andp-font-mono);
	font-size: 9px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--andp-gold);
	text-decoration: none;
}

.andp-blog-card__cat:hover { color: var(--andp-white); }

.andp-blog-card__sep,
.andp-blog-card__date,
.andp-blog-card__read-time {
	font-family: var(--andp-font-mono);
	font-size: 9px;
	color: var(--andp-text-dark);
}

.andp-blog-card__title {
	font-size: 15px;
	font-weight: 400;
	color: var(--andp-white);
	margin: 0;
	line-height: 1.35;
}

.andp-blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--andp-transition);
}

.andp-blog-card:hover .andp-blog-card__title a { color: var(--andp-gold); }

.andp-blog-card__excerpt {
	font-size: 12px;
	color: var(--andp-text-muted);
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

.andp-blog-card__read-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--andp-font-mono);
	font-size: 9px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--andp-text-dark);
	text-decoration: none;
	margin-top: auto;
	transition: color var(--andp-transition);
}

.andp-blog-card:hover .andp-blog-card__read-link { color: var(--andp-gold); }

.andp-darkroom__see-all {
	white-space: nowrap;
	flex-shrink: 0;
}

.andp-darkroom__no-posts {
	text-align: center;
	color: var(--andp-text-muted);
	padding: 48px 0;
}


/* ── 6. Trust Bar ── */

.andp-trust {
	background-color: var(--andp-surface-alt);
	border-top: 1px solid var(--andp-border-light);
	border-bottom: 1px solid var(--andp-border-light);
	padding: 48px 0;
}

.andp-trust__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}

.andp-trust__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px 48px;
	text-align: center;
}

.andp-trust__divider {
	width: 1px;
	height: 40px;
	background-color: var(--andp-border-light);
	flex-shrink: 0;
}

.andp-trust__stat-value {
	font-family: var(--andp-font-mono);
	font-size: 28px;
	font-weight: 500;
	color: var(--andp-white);
	line-height: 1;
}

.andp-trust__stat-label {
	font-family: var(--andp-font-mono);
	font-size: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--andp-text-muted);
}

.andp-trust__stat-meta {
	display: flex;
	align-items: center;
	gap: 3px;
	font-family: var(--andp-font-mono);
	font-size: 8px;
	letter-spacing: 0.08em;
	color: var(--andp-text-dark);
	margin-top: 2px;
}

.andp-trust__stat-meta svg { color: var(--andp-gold); }


/* ── Homepage Responsive ── */

@media ( max-width: 1024px ) {
	.andp-showcase__cols          { grid-template-columns: 1fr; gap: 56px; }
	.andp-product-grid           { grid-template-columns: repeat(2, 1fr); }
	.andp-flagship__inner        { grid-template-columns: 1fr; gap: 40px; }
	.andp-flagship__media        { order: 2; }
	.andp-flagship__stat-chip    { bottom: -16px; left: 16px; }
}

@media ( max-width: 900px ) {
	.andp-blog-grid              { grid-template-columns: repeat(2, 1fr); }
	.andp-trust__stat            { padding: 12px 24px; }
	.andp-section                { padding: 72px 0; }
}

@media ( max-width: 768px ) {
	.andp-hero__overlay          { padding: 0 0 48px; }
	.andp-hero__overlay-inner    { padding: 0 24px; }
	.andp-hero__title            { font-size: 2.25rem; }
	.andp-hero__ctas             { flex-direction: column; align-items: flex-start; }

	.andp-product-grid           { grid-template-columns: 1fr; }
	.andp-blog-grid              { grid-template-columns: 1fr; }
	.andp-trust__inner           { gap: 0; }
	.andp-trust__divider         { width: 40px; height: 1px; }
	.andp-trust__stat            { padding: 12px 16px; }
	.andp-trust                  { padding: 32px 0; }

	.andp-section__header--split { flex-direction: column; align-items: flex-start; }
	.andp-section                { padding: 56px 0; }
}

@media ( max-width: 480px ) {
	.andp-container              { padding: 0 16px; }
	.andp-flagship__stat-chip    { position: static; margin-top: 16px; }

	/* Reduce container height on mobile */
	.andp-carousel__track {
		min-height: unset !important;
		height: 55vh !important;
		max-height: unset !important;
	}

	/* Make images fill the container */
	.andp-hero__slider img,
	.andp-hero__slider--free img {
		height: 55vh !important;
		min-height: unset !important;
		max-height: unset !important;
		width: 100vw !important;
	}

	/* Scale hero text and buttons to ~75% on mobile */
	.andp-hero__overlay          { padding: 0 0 20px; }
	.andp-hero__overlay-inner    { padding: 0 16px; max-width: 100%; }
	.andp-hero__title            { font-size: 1.7rem; margin: 6px 0 12px; white-space: normal; }
	.andp-hero__title--free      { font-size: 1.4rem; }
	.andp-hero__subtitle         { font-size: 11px; margin: 0 0 12px; line-height: 1.5; }
	.andp-hero__subtitle-for     { font-size: 10px; }
	.andp-hero__ctas             { flex-direction: column; align-items: flex-start; gap: 6px; }
	.andp-hero__ctas .andp-btn   { font-size: 9px; padding: 8px 14px; }
	.andp-hero__free-formats     { gap: 4px; margin-bottom: 8px; }

	/* Flagship slider — make images fill the aspect-ratio container */
	.andp-flagship__slider img {
		height: 100% !important;
		width: 100% !important;
		min-height: unset !important;
		max-height: unset !important;
		object-fit: cover !important;
		object-position: center !important;
	}

	.andp-flagship__slider {
		aspect-ratio: 3 / 2 !important;
	}
}

/* ── Color Lab screenshot — rounded + zoom on hover ── */

.andp-software-screenshot__img-wrap {
	overflow: hidden !important;
	border-radius: 32px !important;
	display: block !important;
}

.andp-software-screenshot__img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	border-radius: 32px !important;
	transition: transform 0.4s ease !important;
}

.andp-software-screenshot__img-wrap:hover .andp-software-screenshot__img {
	transform: scale(1.04) !important;
}
