/**
 * ACCESFY Bokeh Flower Bokeh — modern 3-column hero
 */

/* ── Hero section ── */
.apo-hero {
	position: relative;
	padding: 48px 20px 56px;
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
	overflow: hidden;
}

.apo-hero__bg {
	position: absolute;
	inset: -20% -10%;
	background:
		radial-gradient(ellipse 60% 50% at 15% 40%, rgba(201, 169, 98, 0.14), transparent 60%),
		radial-gradient(ellipse 50% 40% at 85% 60%, rgba(139, 115, 85, 0.1), transparent 55%);
	pointer-events: none;
	animation: apo-bg-shift 12s ease-in-out infinite alternate;
}

@keyframes apo-bg-shift {
	from { transform: translate(0, 0) scale(1); }
	to   { transform: translate(2%, -2%) scale(1.04); }
}

.apo-hero__header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.apo-hero__eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: #c9a962;
	text-transform: uppercase;
}

.apo-hero__heading {
	margin: 0 0 10px;
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	background: linear-gradient(135deg, #fff 30%, #c9a962 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.apo-hero__lead {
	margin: 0 auto;
	max-width: 520px;
	color: #a1a1aa;
	font-size: 15px;
	line-height: 1.6;
}

/* ── 3-column grid ── */
.apo-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr 0.9fr;
	gap: 20px;
	position: relative;
	z-index: 1;
	align-items: stretch;
}

@media (max-width: 960px) {
	.apo-hero__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

/* Stagger entrance */
.apo-animate {
	opacity: 0;
	transform: translateY(28px);
	animation: apo-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--apo-delay, 0) * 0.12s);
}

@keyframes apo-fade-up {
	to { opacity: 1; transform: translateY(0); }
}

.apo-hero__col--image { --apo-delay: 1; }
.apo-hero__col--steps { --apo-delay: 2; }
.apo-hero__col--order { --apo-delay: 3; }

/* ── Col 1: Image ── */
.apo-hero__image-card {
	position: relative;
	height: 100%;
	min-height: 340px;
	border-radius: 24px;
	background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
	border: 1px solid rgba(201, 169, 98, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.apo-hero__image-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 24px 60px rgba(201, 169, 98, 0.18);
}

.apo-hero__image-ring {
	position: absolute;
	inset: 16px;
	border-radius: 20px;
	border: 1px dashed rgba(201, 169, 98, 0.25);
	animation: apo-ring-spin 20s linear infinite;
}

@keyframes apo-ring-spin {
	to { transform: rotate(360deg); }
}

.apo-hero__image-glow {
	position: absolute;
	width: 70%;
	height: 70%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 169, 98, 0.25), transparent 70%);
	filter: blur(30px);
	animation: apo-float 5s ease-in-out infinite;
}

@keyframes apo-float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-12px); }
}

.apo-hero__image {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 260px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
	animation: apo-img-float 4s ease-in-out infinite;
	transition: transform 0.4s;
}

.apo-hero__image-card:hover .apo-hero__image {
	transform: scale(1.05) rotate(-2deg);
}

@keyframes apo-img-float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-8px); }
}

.apo-hero__image-badge {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 169, 98, 0.5);
	font-size: 12px;
	font-weight: 700;
	color: #c9a962;
	white-space: nowrap;
}

.apo-hero__image-badge-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* ── Col 2: Steps ── */
.apo-hero__steps-wrap {
	height: 100%;
	padding: 24px;
	border-radius: 24px;
	background: rgba(14, 14, 14, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.apo-hero__steps-wrap:hover {
	border-color: rgba(201, 169, 98, 0.25);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.apo-hero__steps-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
}

.apo-hero__steps-title svg {
	width: 22px;
	height: 22px;
	color: #c9a962;
	flex-shrink: 0;
}

.apo-hero__steps-sub {
	margin: 0 0 20px;
	font-size: 13px;
	color: #737373;
	line-height: 1.5;
}

.apo-hero__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.apo-hero__step {
	position: relative;
	display: grid;
	grid-template-columns: 32px 40px 1fr;
	gap: 12px;
	align-items: start;
	padding: 14px 12px;
	border-radius: 16px;
	transition: background 0.25s, transform 0.25s;
	animation: apo-step-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
	animation-delay: calc(0.4s + var(--apo-i, 0) * 0.1s);
}

@keyframes apo-step-in {
	from { opacity: 0; transform: translateX(-12px); }
	to   { opacity: 1; transform: translateX(0); }
}

.apo-hero__step:hover {
	background: rgba(201, 169, 98, 0.06);
	transform: translateX(4px);
}

.apo-hero__step-num {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: linear-gradient(135deg, #c9a962, #8b7355);
	color: #000;
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.apo-hero__step-icon svg {
	width: 28px;
	height: 28px;
	color: #c9a962;
	display: block;
	transition: transform 0.3s, color 0.3s;
}

.apo-hero__step:hover .apo-hero__step-icon svg {
	transform: scale(1.12);
	color: #dbc07a;
}

.apo-hero__step-body h4 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
}

.apo-hero__step-body p {
	margin: 0;
	font-size: 12px;
	color: #a1a1aa;
	line-height: 1.55;
}

.apo-hero__step-line {
	position: absolute;
	left: 27px;
	bottom: -6px;
	width: 2px;
	height: 12px;
	background: linear-gradient(180deg, #c9a962, transparent);
	opacity: 0.4;
}

/* ── Col 3: Order ── */
.apo-hero__order-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px 22px;
	border-radius: 24px;
	background: linear-gradient(160deg, #1a1510 0%, #0a0a0a 50%, #0d0d0d 100%);
	border: 1px solid rgba(201, 169, 98, 0.3);
	box-shadow: inset 0 1px 0 rgba(201, 169, 98, 0.15);
	transition: transform 0.4s, box-shadow 0.4s;
}

.apo-hero__order-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(201, 169, 98, 0.12), inset 0 1px 0 rgba(201, 169, 98, 0.2);
}

.apo-hero__order-icon svg {
	width: 44px;
	height: 44px;
	color: #c9a962;
	margin-bottom: 14px;
	animation: apo-icon-pulse 3s ease-in-out infinite;
}

@keyframes apo-icon-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50%       { transform: scale(1.08); opacity: 0.85; }
}

.apo-hero__order-title {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 800;
}

.apo-hero__order-desc {
	margin: 0 0 18px;
	font-size: 13px;
	color: #a1a1aa;
	line-height: 1.55;
}

.apo-hero__perks {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.apo-hero__perks li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	font-weight: 600;
	color: #d4d4d8;
	transition: background 0.2s, border-color 0.2s;
}

.apo-hero__perks li:hover {
	background: rgba(201, 169, 98, 0.1);
	border-color: rgba(201, 169, 98, 0.35);
}

.apo-hero__perks svg {
	width: 14px;
	height: 14px;
	color: #c9a962;
}

.apo-hero__order-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	border: none;
	border-radius: 16px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.apo-hero__order-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.apo-hero__order-btn:active {
	transform: scale(0.98);
}

.apo-hero__order-btn-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
	transform: translateX(-100%);
	animation: apo-shine 3s ease-in-out infinite;
}

@keyframes apo-shine {
	0%, 70% { transform: translateX(-100%); }
	100%    { transform: translateX(100%); }
}

.apo-hero__order-btn-icon svg {
	width: 22px;
	height: 22px;
}

.apo-hero__order-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 14px 0 0;
	font-size: 11px;
	color: #737373;
	font-weight: 600;
}

.apo-hero__order-note svg {
	width: 14px;
	height: 14px;
	color: #25d366;
}

/* ── Wizard modal ── */
body.apo-modal-open {
	overflow: hidden;
}

.apo-wizard {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	animation: apo-modal-in 0.3s ease;
}

@keyframes apo-modal-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.apo-wizard[hidden] {
	display: none !important;
}

.apo-wizard__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(6px);
}

.apo-wizard__panel {
	position: relative;
	width: min(500px, 100%);
	max-height: 92vh;
	overflow-y: auto;
	background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
	border: 1px solid rgba(201, 169, 98, 0.25);
	border-radius: 24px;
	padding: 24px 22px 20px;
	color: #fff;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
	animation: apo-panel-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes apo-panel-in {
	from { opacity: 0; transform: scale(0.92) translateY(20px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}

.apo-wizard__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #a1a1aa;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	z-index: 2;
}

.apo-wizard__close:hover {
	background: rgba(201, 169, 98, 0.15);
	color: #c9a962;
	transform: rotate(90deg);
}

.apo-wizard__step-tag {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c9a962;
}

.apo-wizard__progress {
	height: 4px;
	background: #1e1e1e;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 16px;
}

.apo-wizard__progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #8b7355, #c9a962, #dbc07a);
	border-radius: 999px;
	transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.apo-wizard__steps-label {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.apo-wizard__steps-label li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	opacity: 0.35;
	transition: opacity 0.3s, transform 0.3s;
}

.apo-wizard__steps-label li.is-active,
.apo-wizard__steps-label li.is-done {
	opacity: 1;
}

.apo-wizard__steps-label li.is-active {
	transform: scale(1.05);
}

.apo-wizard__steps-label li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #141414;
	border: 1px solid #2a2a2a;
	color: #c9a962;
	transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.apo-wizard__steps-label li.is-active span {
	background: rgba(201, 169, 98, 0.15);
	border-color: #c9a962;
	box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.apo-wizard__steps-label li.is-done span {
	background: rgba(37, 211, 102, 0.12);
	border-color: #25d366;
	color: #25d366;
}

.apo-wizard__steps-label svg {
	width: 18px;
	height: 18px;
}

.apo-wizard__steps-label em {
	font-style: normal;
	font-size: 10px;
	font-weight: 600;
	color: #737373;
}

.apo-wizard__body {
	min-height: 200px;
}

.apo-wizard__step {
	animation: apo-step-slide 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.apo-wizard__step[hidden] {
	display: none !important;
}

@keyframes apo-step-slide {
	from { opacity: 0; transform: translateX(16px); }
	to   { opacity: 1; transform: translateX(0); }
}

.apo-wizard__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
}

.apo-wizard__title-icon svg {
	width: 22px;
	height: 22px;
	color: #c9a962;
}

.apo-wizard__hint {
	margin: 0 0 18px;
	color: #737373;
	font-size: 13px;
}

.apo-wizard__grid {
	display: grid;
	gap: 10px;
}

.apo-wizard__grid--types { grid-template-columns: 1fr; }
.apo-wizard__grid--sizes { grid-template-columns: repeat(3, 1fr); }
.apo-wizard__grid--colors { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 400px) {
	.apo-wizard__grid--colors { grid-template-columns: repeat(2, 1fr); }
}

.apo-choice { position: relative; }

.apo-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.apo-choice__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	border-radius: 16px;
	background: #111;
	border: 2px solid #222;
	cursor: pointer;
	min-height: 72px;
	transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.apo-choice__box:hover {
	border-color: rgba(201, 169, 98, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.apo-choice input:checked + .apo-choice__box {
	border-color: #c9a962;
	background: rgba(201, 169, 98, 0.1);
	box-shadow: 0 0 24px rgba(201, 169, 98, 0.15);
	transform: scale(1.02);
}

.apo-choice__icon svg {
	width: 28px;
	height: 28px;
	color: #c9a962;
}

.apo-choice__label {
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.apo-choice--size .apo-choice__size {
	font-size: 24px;
	font-weight: 800;
	color: #c9a962;
}

.apo-choice__swatch {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--apo-swatch, #ccc);
	border: 3px solid rgba(255, 255, 255, 0.15);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}

.apo-choice__box:hover .apo-choice__swatch {
	transform: scale(1.1);
}

.apo-choice input:checked + .apo-choice__box .apo-choice__swatch {
	box-shadow: 0 0 0 3px #c9a962, 0 0 16px var(--apo-swatch);
}

.apo-wizard__summary {
	background: rgba(201, 169, 98, 0.06);
	border: 1px solid rgba(201, 169, 98, 0.2);
	border-radius: 16px;
	padding: 14px;
	margin-bottom: 14px;
}

.apo-summary__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.apo-summary__row:last-child { border-bottom: none; }
.apo-summary__row span { color: #737373; }
.apo-summary__row strong { color: #c9a962; }

.apo-wizard__fields {
	display: grid;
	gap: 10px;
	margin-bottom: 4px;
}

.apo-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #111;
	border: 1px solid #222;
	transition: border-color 0.2s;
}

.apo-field:focus-within {
	border-color: rgba(201, 169, 98, 0.5);
}

.apo-field__icon svg {
	width: 18px;
	height: 18px;
	color: #c9a962;
	flex-shrink: 0;
}

.apo-field input {
	flex: 1;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 14px;
	outline: none;
}

.apo-wizard__error {
	margin: 0 0 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(248, 113, 113, 0.12);
	color: #f87171;
	font-size: 13px;
	animation: apo-shake 0.4s ease;
}

@keyframes apo-shake {
	0%, 100% { transform: translateX(0); }
	25%       { transform: translateX(-6px); }
	75%       { transform: translateX(6px); }
}

.apo-wizard__nav {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.apo-wizard__btn {
	flex: 1;
	padding: 14px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.apo-wizard__btn:hover { transform: translateY(-2px); }
.apo-wizard__btn:active { transform: scale(0.97); }

.apo-wizard__btn--ghost {
	background: #1a1a1a;
	color: #fff;
	border: 1px solid #333;
}

.apo-wizard__btn--primary {
	background: linear-gradient(135deg, #c9a962, #dbc07a);
	color: #000;
	box-shadow: 0 6px 20px rgba(201, 169, 98, 0.3);
}

.apo-wizard__btn--whatsapp {
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: #fff;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.apo-wizard__btn--whatsapp svg {
	width: 20px;
	height: 20px;
}

/* Hide legacy recruitment (merged into hero) */
.apo-recruitment { display: none !important; }
