/* Imeegi industry landing pages (industry-*.html) — page-specific styles.
   Shared header/footer/buttons/hero/card-grid/contact-form live in shared.css. */

.industry-why-section {
	background-color: var(--color-ghostwhite);
}

/* "Why advertise" benefit cards pop up dynamically as the row scrolls into view */

.industry-why-section .card {
	opacity: 0;
	transform: translateY(40px) scale(0.9);
}

.industry-why-section .card.is-visible {
	animation: industryCardPop 0.7s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
}

@keyframes industryCardPop {
	0% {
		opacity: 0;
		transform: translateY(40px) scale(0.9);
	}
	65% {
		opacity: 1;
		transform: translateY(-10px) scale(1.03);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.industry-why-section .card-grid .card:nth-child(2) { animation-delay: 0.1s; }
.industry-why-section .card-grid .card:nth-child(3) { animation-delay: 0.2s; }
.industry-why-section .card-grid .card:nth-child(4) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
	.industry-why-section .card {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Hero — wide horizontal industry photo with heading overlaid in contrast color */

.industry-hero {
	position: relative;
	background: #171a1d;
	padding: 8rem 0 5rem;
	overflow: hidden;
}

.industry-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.industry-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 9, 31, 0.78) 0%, rgba(15, 9, 31, 0.58) 45%, rgba(15, 9, 31, 0.85) 100%);
	z-index: 1;
}

.industry-hero .container {
	position: relative;
	z-index: 2;
}

.industry-hero .eyebrow {
	background-color: rgba(255, 255, 255, 0.16);
	color: var(--color-white);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.industry-hero h1 {
	color: var(--color-white);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.industry-hero .subhead {
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 700px) {
	.industry-hero {
		padding: 6.5rem 0 4rem;
	}
}

/* Sample creative */

.sample-creative {
	background-color: var(--color-white);
}

.sample-creative-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 3rem;
	align-items: center;
}

.sample-creative-image {
	max-width: 17rem;
	margin: 0 auto;
	border-radius: var(--br-mini);
	overflow: hidden;
	box-shadow: 0 24px 50px rgba(105, 54, 216, 0.16);
}

.sample-creative-image img {
	width: 100%;
	display: block;
}

.sample-creative-copy h2 {
	font-size: 2rem;
	font-weight: 600;
	margin: 0.75rem 0 1rem;
}

.sample-creative-copy p {
	color: var(--color-darkslategray-100);
	line-height: 1.6;
	margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
	.sample-creative-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.sample-creative-image {
		order: -1;
	}
}

.industry-cta-panel {
	background: linear-gradient(135deg, var(--color-blueviolet-100), #5028a8);
	border-radius: var(--br-6xl);
	padding: 3.5rem 2rem;
	text-align: center;
	color: var(--color-white);
}

.industry-cta-panel h2 {
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.industry-cta-panel p {
	font-size: var(--font-size-xl);
	color: var(--color-lavender-100);
	max-width: 34rem;
	margin: 0 auto 2rem;
	line-height: 1.5;
}

.industry-cta-panel .btn-primary {
	background-color: var(--color-white);
	color: var(--color-blueviolet-100);
}
