/**
 * Business & Wholesale Landing Page — Almutaheda Pack
 */

/* ─── Shared layout helpers ─────────────────────────────── */

.alm-biz-section-header {
	text-align: center;
	margin-block-end: 2.5rem;
}

.alm-biz-section-title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--alm-color-navy-primary);
	margin-block-end: 0.5rem;
}

.alm-biz-section-desc {
	font-size: 1rem;
	color: var(--alm-color-text-muted, #6b7280);
	max-width: 52ch;
	margin-inline: auto;
}

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

.alm-biz-hero {
	position: relative;
	background-color: var(--alm-color-navy-primary);
	color: #fff;
	padding-block: 4rem 3rem;
	overflow: hidden;
}

.alm-biz-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 80% 20%, rgba(205, 170, 125, 0.12) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 10% 80%, rgba(205, 170, 125, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.alm-biz-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.alm-biz-hero__inner {
		grid-template-columns: 1fr 280px;
		gap: 3rem;
	}
}

.alm-biz-hero__eyebrow {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--alm-color-sand);
	margin-block-end: 0.75rem;
}

.alm-biz-hero__heading {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	margin-block-end: 1rem;
}

.alm-biz-hero__sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 54ch;
	margin-block-end: 1.5rem;
	line-height: 1.7;
}

.alm-biz-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	margin-block-end: 2rem;
}

.alm-biz-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
}

.alm-biz-hero__trust-item svg {
	color: var(--alm-color-sand);
	flex-shrink: 0;
}

.alm-biz-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Visual stat grid */

.alm-biz-hero__visual {
	display: none;
}

@media (min-width: 768px) {
	.alm-biz-hero__visual {
		display: block;
	}
}

.alm-biz-hero__stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.alm-biz-hero__stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.75rem;
	padding: 1.25rem 0.75rem;
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.9);
}

.alm-biz-hero__stat-item svg {
	color: var(--alm-color-sand);
}

/* ─── Audiences ──────────────────────────────────────────── */

.alm-biz-audiences {
	padding-block: 4rem;
	background: var(--alm-color-beige, #f7f3ee);
}

.alm-biz-audiences__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 480px) {
	.alm-biz-audiences__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.alm-biz-audiences__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.alm-biz-audience-card {
	background: #fff;
	border: 1px solid var(--alm-color-border, #e5e7eb);
	border-radius: 0.75rem;
	padding: 1.5rem;
}

.alm-biz-audience-card__icon {
	width: 48px;
	height: 48px;
	background: var(--alm-color-beige, #f7f3ee);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block-end: 0.875rem;
	color: var(--alm-color-navy-primary);
}

.alm-biz-audience-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--alm-color-navy-primary);
	margin-block-end: 0.4rem;
}

.alm-biz-audience-card__desc {
	font-size: 0.875rem;
	color: var(--alm-color-text-muted, #6b7280);
	line-height: 1.6;
}

/* ─── Categories ─────────────────────────────────────────── */

.alm-biz-categories {
	padding-block: 4rem;
}

.alm-biz-categories__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 480px) {
	.alm-biz-categories__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.alm-biz-categories__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.alm-biz-cat-card {
	border: 1px solid var(--alm-color-border, #e5e7eb);
	border-radius: 0.75rem;
	padding: 1.5rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.alm-biz-cat-card:hover {
	border-color: var(--alm-color-navy-primary);
	box-shadow: 0 2px 12px rgba(16, 42, 67, 0.08);
}

.alm-biz-cat-card__icon {
	width: 44px;
	height: 44px;
	background: var(--alm-color-beige, #f7f3ee);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block-end: 0.75rem;
	color: var(--alm-color-navy-primary);
}

.alm-biz-cat-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--alm-color-navy-primary);
	margin-block-end: 0.35rem;
}

.alm-biz-cat-card__desc {
	font-size: 0.85rem;
	color: var(--alm-color-text-muted, #6b7280);
	line-height: 1.6;
	margin-block-end: 0.75rem;
}

.alm-biz-cat-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--alm-color-navy-primary);
	text-decoration: none;
}

.alm-biz-cat-card__link:hover {
	text-decoration: underline;
}

/* ─── Process ────────────────────────────────────────────── */

.alm-biz-process {
	padding-block: 4rem;
	background: var(--alm-color-beige, #f7f3ee);
}

.alm-biz-process__steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 768px) {
	.alm-biz-process__steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.alm-biz-process__steps {
		grid-template-columns: repeat(6, 1fr);
	}
}

.alm-biz-process__step {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
	padding-block-end: 1.5rem;
}

@media (min-width: 768px) {
	.alm-biz-process__step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-block-end: 0;
		padding-inline-end: 1rem;
	}
}

.alm-biz-process__step-num {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--alm-color-navy-primary);
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.alm-biz-process__connector {
	display: none;
}

@media (min-width: 768px) {
	.alm-biz-process__connector {
		display: block;
		position: absolute;
		top: 22px;
		inset-inline-end: -0.5rem;
		width: 100%;
		height: 2px;
		background: var(--alm-color-border, #e5e7eb);
		z-index: 0;
	}
}

.alm-biz-process__step-body {
	flex: 1;
}

@media (min-width: 768px) {
	.alm-biz-process__step-body {
		flex: none;
	}
}

.alm-biz-process__step-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--alm-color-navy-primary);
	margin-block-end: 0.25rem;
}

.alm-biz-process__step-desc {
	font-size: 0.82rem;
	color: var(--alm-color-text-muted, #6b7280);
	line-height: 1.55;
}

/* ─── Capabilities ───────────────────────────────────────── */

.alm-biz-capabilities {
	padding-block: 4rem;
}

.alm-biz-capabilities__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 480px) {
	.alm-biz-capabilities__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.alm-biz-capabilities__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.alm-biz-cap-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	border-radius: 0.75rem;
	background: var(--alm-color-beige, #f7f3ee);
}

.alm-biz-cap-card__icon {
	color: var(--alm-color-navy-primary);
}

.alm-biz-cap-card__title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--alm-color-navy-primary);
}

.alm-biz-cap-card__desc {
	font-size: 0.85rem;
	color: var(--alm-color-text-muted, #6b7280);
	line-height: 1.6;
}

/* ─── Recurring supply ───────────────────────────────────── */

.alm-biz-recurring {
	padding-block: 4rem;
	background: var(--alm-color-navy-secondary, #243b53);
	color: #fff;
}

.alm-biz-recurring__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.alm-biz-recurring__inner {
		grid-template-columns: 1fr 200px;
	}
}

.alm-biz-recurring__title {
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #fff;
	margin-block-end: 0.75rem;
}

.alm-biz-recurring__desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-block-end: 1.25rem;
	max-width: 54ch;
}

.alm-biz-recurring__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.alm-biz-recurring__benefit {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}

.alm-biz-recurring__benefit svg {
	color: var(--alm-color-sand);
	flex-shrink: 0;
}

.alm-biz-recurring__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.alm-biz-recurring__visual {
	display: none;
}

@media (min-width: 768px) {
	.alm-biz-recurring__visual {
		display: flex;
		justify-content: center;
	}
}

.alm-biz-recurring__cycle {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1rem;
	padding: 2rem 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.alm-biz-recurring__cycle-icon {
	color: var(--alm-color-sand);
}

.alm-biz-recurring__cycle-label {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.alm-biz-recurring__cycle-freq {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
}

/* ─── Quote form ─────────────────────────────────────────── */

.alm-biz-quote {
	padding-block: 4rem;
	background: var(--alm-color-beige, #f7f3ee);
}

.alm-biz-quote__wrap {
	max-width: 720px;
	margin-inline: auto;
}

.alm-biz-quote__form {
	background: #fff;
	border: 1px solid var(--alm-color-border, #e5e7eb);
	border-radius: 1rem;
	padding: 2rem;
}

.alm-biz-quote__fieldset {
	border: none;
	padding: 0;
	margin: 0 0 1.75rem;
}

.alm-biz-quote__legend {
	font-size: 1rem;
	font-weight: 700;
	color: var(--alm-color-navy-primary);
	padding: 0;
	margin-block-end: 1.25rem;
	width: 100%;
	border-block-end: 1px solid var(--alm-color-border, #e5e7eb);
	padding-block-end: 0.5rem;
}

.alm-biz-quote__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 540px) {
	.alm-biz-quote__row {
		grid-template-columns: 1fr 1fr;
	}
}

.alm-biz-quote__status {
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	margin-block-end: 1.25rem;
}

.alm-biz-quote__status--success {
	background: #ecfdf5;
	border: 1px solid #6ee7b7;
	color: #065f46;
}

.alm-biz-quote__status--error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
}

.alm-biz-quote__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.875rem;
	color: var(--alm-color-text-muted, #6b7280);
	cursor: pointer;
}

.alm-biz-quote__consent-label input[type="checkbox"] {
	margin-block-start: 0.15rem;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.alm-biz-quote__submit-row {
	margin-block-start: 1.5rem;
	display: flex;
	justify-content: flex-end;
}

/* Honeypot — visually hidden but not display:none (bots still fill it) */
.alm-field--honeypot {
	position: absolute;
	inset-inline-start: -9999px;
	visibility: hidden;
	pointer-events: none;
}

/* Spinner */
.alm-biz-submit__spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-block-start-color: #fff;
	border-radius: 50%;
	animation: alm-spin 0.7s linear infinite;
	margin-inline-start: 0.5rem;
	vertical-align: middle;
}

@keyframes alm-spin {
	to { transform: rotate(360deg); }
}

/* Field errors */
.alm-field__error {
	display: block;
	font-size: 0.8rem;
	color: var(--alm-color-error, #c53030);
	margin-block-start: 0.25rem;
}

/* ─── FAQ ────────────────────────────────────────────────── */

.alm-biz-faq {
	padding-block: 4rem;
}

.alm-biz-faq__list {
	max-width: 720px;
	margin-inline: auto;
}

.alm-biz-faq__item {
	border-block-end: 1px solid var(--alm-color-border, #e5e7eb);
}

.alm-biz-faq__item:first-child {
	border-block-start: 1px solid var(--alm-color-border, #e5e7eb);
}

.alm-biz-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: none;
	border: none;
	padding: 1.1rem 0;
	cursor: pointer;
	text-align: start;
	font-family: inherit;
}

.alm-biz-faq__trigger:focus-visible {
	outline: 2px solid var(--alm-color-navy-primary);
	outline-offset: 2px;
	border-radius: 3px;
}

.alm-biz-faq__q {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--alm-color-navy-primary);
	line-height: 1.5;
}

.alm-biz-faq__icon {
	flex-shrink: 0;
	color: var(--alm-color-navy-primary);
}

.alm-biz-faq__icon-minus {
	display: none;
}

.alm-biz-faq__trigger[aria-expanded="true"] .alm-biz-faq__icon-plus {
	display: none;
}

.alm-biz-faq__trigger[aria-expanded="true"] .alm-biz-faq__icon-minus {
	display: block;
}

.alm-biz-faq__panel {
	padding-block-end: 1rem;
}

.alm-biz-faq__a {
	font-size: 0.9rem;
	color: var(--alm-color-text-muted, #6b7280);
	line-height: 1.7;
}

/* ─── Final CTA ──────────────────────────────────────────── */

.alm-biz-final-cta {
	padding-block: 4rem;
	background: var(--alm-color-navy-primary);
	color: #fff;
	text-align: center;
}

.alm-biz-final-cta__title {
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 700;
	color: #fff;
	margin-block-end: 0.75rem;
}

.alm-biz-final-cta__desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-block-end: 2rem;
	max-width: 54ch;
	margin-inline: auto;
}

.alm-biz-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */

.alm-biz-breadcrumb {
	padding-block: 0.75rem;
	background: var(--alm-color-beige, #f7f3ee);
	border-block-end: 1px solid var(--alm-color-border, #e5e7eb);
}

.alm-biz-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.8rem;
}

.alm-biz-breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--alm-color-text-muted, #6b7280);
}

.alm-biz-breadcrumb__link {
	color: var(--alm-color-navy-primary);
	text-decoration: none;
}

.alm-biz-breadcrumb__link:hover {
	text-decoration: underline;
}

.alm-biz-breadcrumb__sep {
	color: var(--alm-color-border, #e5e7eb);
}

/* ─── Button variants used on this page ─────────────────── */

.alm-btn--outline {
	background: transparent;
	border: 2px solid rgba(255,255,255,0.5);
	color: #fff;
}

.alm-btn--outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.08);
}

.alm-btn--accent {
	background: var(--alm-color-sand, #cdaa7d);
	color: var(--alm-color-navy-primary);
	border: 2px solid transparent;
	font-weight: 700;
}

.alm-btn--accent:hover {
	background: #b8945e;
}

.alm-btn--wa-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.4);
	color: #fff;
}

.alm-btn--wa-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

/* ─── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.alm-biz-cat-card,
	.alm-biz-submit__spinner {
		transition: none;
		animation: none;
	}
}
