/* DPDP Theme — Homepage-specific styles (front-page.php). Shared chrome lives in main.css. */

/* ─── HERO (single centered column, unique to homepage) ─── */
.hero {
	background: linear-gradient(160deg, #f0f5ff 0%, #fff 55%, #faf5ff 100%);
	padding: 72px 24px 80px;
	overflow: hidden;
	text-align: center;
}
.hero::before { content: none; }
.hero-inner {
	/* Match the header content area (nav-inner: 1200px max-width, 24px side padding). */
	max-width: 1200px; margin: 0 auto;
	display: flex; flex-direction: column; align-items: center;
}
.hero-badge { margin-bottom: 24px; }
.hero-badge-dot { background: var(--green-500); animation: dpdp-pulse 2s infinite; }
@keyframes dpdp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
	font-size: clamp(36px, 5vw, 54px);
	font-weight: 800; line-height: 1.15;
	letter-spacing: -.02em; color: var(--slate-900);
	margin-bottom: 20px;
}
.hero-title-line {
	display: block;
}
.hero h1 .gradient-text {
	display: block;
	background: linear-gradient(135deg, var(--blue-600) 0%, var(--indigo-600) 50%, var(--purple-600) 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-sub {
	font-size: 17px;
	color: var(--slate-500);
	line-height: 1.7;
	/* Span the same width as the hero dashboard (.dpdp-dash max-width). */
	max-width: 1120px;
	margin: 0 auto 36px;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-btn-primary {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
	color: #fff; font-size: 15px; font-weight: 700;
	border-radius: var(--radius-md); border: none; cursor: pointer;
	box-shadow: 0 4px 20px rgba(37,99,235,.35);
	transition: transform .15s, box-shadow .15s;
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,99,235,.45); }
.hero-btn-secondary {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 28px;
	border: 1.5px solid var(--slate-300);
	color: var(--slate-700); font-size: 15px; font-weight: 600;
	border-radius: var(--radius-md); background: #fff; cursor: pointer;
	transition: border-color .15s, color .15s, transform .15s;
}
.hero-btn-secondary:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-2px); }
/* Hero media */
.hero-media {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1800px;
	margin: 44px 0 40px;
}
.hero-media-frame {
	position: relative;
	width: 100%;
	/* Wraps the hero dashboard; keep the frame a touch under the header width. */
	max-width: 1120px;
	padding: 16px;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
		linear-gradient(135deg, rgba(37,99,235,.18), rgba(79,70,229,.12));
	border: 1px solid rgba(148,163,184,.22);
	box-shadow:
		0 40px 80px rgba(15,23,42,.14),
		-24px 22px 48px rgba(37,99,235,.12),
		inset 0 1px 0 rgba(255,255,255,.8);
	transform: none;
	transform-style: preserve-3d;
	transition: box-shadow .35s ease;
}
.hero-media-frame::before,
.hero-media-frame::after {
	content: "";
	position: absolute;
	pointer-events: none;
}
.hero-media-frame::before {
	inset: -18px -24px 28px 20px;
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(168,85,247,.08));
	filter: blur(24px);
	transform: translate3d(-22px, 28px, -60px);
	z-index: -2;
}
.hero-media-frame::after {
	top: 12px;
	left: 12px;
	width: 42%;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
	opacity: .9;
	transform: translateZ(40px);
}
.hero-media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: 20px;
	border: 1px solid rgba(191,219,254,.9);
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
	transform: translateZ(26px);
}
/* Float the dashboard forward inside the glass frame — same 3D lift the page
   images get via `.hero-media img` / `.op-visual-frame img`. */
.hero-media-frame .dpdp-dash {
	position: relative;
	transform: translateZ(26px);
	border-radius: 16px;
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
}

/* ─── STATS BAR ─── */
.stats-bar { background: var(--white); border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); padding: 40px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 8px; }
.stat-val {
	font-size: 42px; font-weight: 800;
	background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text; line-height: 1.1;
}
.stat-label { font-size: 14px; color: var(--slate-500); margin-top: 6px; font-weight: 500; }

/* ─── TRUSTED BY ─── */
.trusted { background: var(--slate-50); padding: 40px 24px; text-align: center; overflow: hidden; }
.trusted-label { font-size: 13px; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px; }
.trusted-logos-wrap {
	max-width: 1240px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trusted-logos-track {
	display: flex;
	align-items: center;
	gap: 30px;
	width: max-content;
	animation: home-trusted-scroll 28s linear infinite;
}
.trusted-logos-wrap:hover .trusted-logos-track { animation-play-state: paused; }
.trusted-logo {
	width: auto;
	min-width: 0;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.trusted-logo img {
	display: block;
	max-width: 200px;
	max-height: none;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .82;
	transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.trusted-logo:hover img,
.trusted-logo:focus-within img {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-1px);
}
@keyframes home-trusted-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-50% - 15px)); }
}

/* ─── OUR PRODUCTS ─── */
.our-products { background: var(--white); padding: 96px 24px; }
.op-inner { max-width: 1200px; margin: 0 auto; }
.op-header { text-align: center; margin-bottom: 56px; }
.op-tag {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--blue-50); border: 1px solid var(--blue-200); color: var(--blue-600);
	border-radius: 999px; padding: 5px 14px; font-size: 12.5px; font-weight: 700;
	letter-spacing: .03em; text-transform: uppercase; margin-bottom: 16px;
}
.op-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: var(--slate-900); margin-bottom: 14px; }
.op-title span { background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.op-sub { font-size: 16.5px; color: var(--slate-500); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.op-grid { display: flex; flex-direction: column; gap: 42px; }
.op-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
	gap: 56px;
	align-items: center;
	padding: 40px 0;
}
.op-row:first-child { padding-top: 0; }
.op-row:last-child { padding-bottom: 0; }
.op-row.is-reversed .op-content { order: 2; }
.op-row.is-reversed .op-visual { order: 1; }
.op-content { max-width: 520px; }
.op-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.op-card-icon svg { width: 26px; height: 26px; }
.op-product-name { font-size: 30px; font-weight: 600; color: var(--slate-900); margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.14; }
.op-tagline { font-size: 18px; color: var(--slate-500); margin-bottom: 26px; line-height: 1.6; font-style: normal; }
.op-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.op-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--slate-600); line-height: 1.65; }
.op-feature-arrow { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.op-feature-arrow svg { width: 10px; height: 10px; stroke: var(--blue-600); fill: none; }
.op-learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-600); font-size: 15px; font-weight: 700; transition: gap .15s, color .15s; align-self: flex-start; padding: 8px 0; border-bottom: 1px solid var(--blue-200); }
.op-learn-more:hover { gap: 10px; color: var(--blue-700); border-bottom-color: var(--blue-400); }
.op-learn-more svg { flex-shrink: 0; transition: transform .15s; }
.op-learn-more:hover svg { transform: translateX(3px); }
.op-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1800px;
}
.op-visual-frame {
	position: relative;
	width: 100%;
	padding: 16px;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
		linear-gradient(135deg, rgba(37,99,235,.18), rgba(79,70,229,.12));
	border: 1px solid rgba(148,163,184,.22);
	box-shadow:
		0 40px 80px rgba(15,23,42,.14),
		-24px 22px 48px rgba(37,99,235,.12),
		inset 0 1px 0 rgba(255,255,255,.8);
	transform: none;
	transform-style: preserve-3d;
	transition: box-shadow .35s ease;
}
.op-visual-frame::before,
.op-visual-frame::after {
	content: "";
	position: absolute;
	pointer-events: none;
}
.op-visual-frame::before {
	inset: -18px -24px 28px 20px;
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(59,130,246,.18), rgba(168,85,247,.08));
	filter: blur(24px);
	transform: translate3d(-22px, 28px, -60px);
	z-index: -2;
}
.op-row.is-reversed .op-visual-frame::before {
	transform: translate3d(22px, 28px, -60px);
}
.op-visual-frame::after {
	top: 12px;
	left: 12px;
	width: 42%;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
	opacity: .9;
	transform: translateZ(40px);
}
.op-visual-frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	border: 1px solid rgba(191,219,254,.9);
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
	transform: translateZ(26px);
}
/* Code-driven product dashboards get the same forward 3D lift as the images. */
.op-visual-frame .dpdp-clog,
.op-visual-frame .dpdp-pdd,
.op-visual-frame .dpdp-cmd,
.op-visual-frame .dpdp-abm {
	border-radius: 14px;
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
	transform: translateZ(26px);
}
.op-visual-placeholder {
	min-height: 320px;
	border-radius: 20px;
	background:
		radial-gradient(circle at top left, rgba(219,234,254,.9), transparent 45%),
		linear-gradient(180deg, #ffffff, #f8fbff);
	border: 1px solid rgba(191,219,254,.9);
	box-shadow:
		0 12px 28px rgba(15,23,42,.08),
		0 0 0 1px rgba(255,255,255,.65);
	transform: translateZ(26px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 34px;
}
.op-visual-placeholder-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.op-visual-placeholder-icon svg { width: 30px; height: 30px; }
.op-visual-placeholder-name {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--slate-900);
	margin-bottom: 18px;
}
.op-visual-placeholder-lines {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.op-visual-placeholder-lines span {
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(59,130,246,.16), rgba(148,163,184,.18));
}
.op-visual-placeholder-lines span:nth-child(1) { width: 88%; }
.op-visual-placeholder-lines span:nth-child(2) { width: 72%; }
.op-visual-placeholder-lines span:nth-child(3) { width: 80%; }

/* ─── FEATURES ─── */
.features { padding: 96px 24px; background: #fff; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s, transform .2s, border-color .2s; cursor: default; }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon-wrap svg { width: 26px; height: 26px; }
.fi-blue   { background: #dbeafe; color: #2563eb; }
.fi-indigo { background: #e0e7ff; color: #4f46e5; }
.fi-purple { background: #f3e8ff; color: #9333ea; }
.fi-green  { background: #dcfce7; color: #16a34a; }
.fi-orange { background: #ffedd5; color: #ea580c; }
.fi-teal   { background: #ccfbf1; color: #0d9488; }
.fi-pink   { background: #fce7f3; color: #db2777; }
.fi-yellow { background: #fef9c3; color: #ca8a04; }
.fi-red    { background: #fee2e2; color: #dc2626; }
.feature-title { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ─── 3 STEPS ─── */
.steps { padding: 96px 24px; background: linear-gradient(160deg, var(--blue-50) 0%, #f0f0ff 100%); }
.steps-inner { max-width: 1200px; margin: 0 auto; }
.steps-header { text-align: center; margin-bottom: 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 52px; left: calc(16.66% + 32px); right: calc(16.66% + 32px); height: 2px; background: linear-gradient(90deg, #93c5fd, #a5b4fc); z-index: 0; }
.step-card { background: #fff; border-radius: var(--radius-xl); padding: 36px 28px; text-align: center; position: relative; z-index: 1; box-shadow: var(--shadow-md); border: 1px solid var(--blue-100); }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 14px rgba(37,99,235,.3); }
.step-title { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ─── MULTI-REGULATION COVERAGE ─── */
.platform { padding: 96px 24px; background: var(--white); }
.platform-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.reg-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.reg-item { background: var(--white); border: 1.5px solid var(--slate-200); border-radius: var(--radius-md); padding: 16px 18px; transition: border-color .2s, box-shadow .2s; }
.reg-item.active { border-color: #93c5fd; box-shadow: 0 0 0 3px rgba(37,99,235,.06); }
.reg-item-header { display: flex; align-items: center; gap: 10px; }
.reg-check { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--green-100); display: flex; align-items: center; justify-content: center; }
.reg-check svg { width: 11px; height: 11px; stroke: var(--green-600); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.reg-name { font-size: 14.5px; font-weight: 700; color: var(--slate-900); flex: 1; }
.reg-primary { font-size: 10.5px; font-weight: 700; background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-200); border-radius: 999px; padding: 2px 9px; letter-spacing: .04em; text-transform: uppercase; }
.reg-desc { font-size: 12px; color: var(--slate-400); margin: 5px 0 8px 32px; }
.reg-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-left: 32px; }
.reg-tag { font-size: 11px; font-weight: 500; background: var(--slate-100); color: var(--slate-600); border-radius: 5px; padding: 3px 8px; }
.reg-item.active .reg-tag { background: var(--blue-50); color: var(--blue-600); }
.platform-right { display: flex; flex-direction: column; gap: 14px; }
.checklist-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.checklist-hd { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--slate-100); }
.checklist-hd-title { font-size: 14px; font-weight: 700; color: var(--slate-900); }
.checklist-hd-badge { font-size: 11px; font-weight: 700; background: var(--green-100); color: var(--green-600); border-radius: 999px; padding: 3px 10px; }
.cl-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--slate-100); }
.cl-row:last-child { border-bottom: none; padding-bottom: 0; }
.cl-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; background: var(--green-100); display: flex; align-items: center; justify-content: center; }
.cl-dot svg { width: 9px; height: 9px; stroke: var(--green-600); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cl-label { flex: 1; font-size: 12.5px; color: var(--slate-600); }
.cl-badge { font-size: 10.5px; font-weight: 600; background: var(--green-100); color: var(--green-600); border-radius: 999px; padding: 2px 8px; }
.penalty-card { background: #fffbf5; border: 1px solid #fed7aa; border-radius: var(--radius-md); padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; }
.penalty-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: #fff7ed; border: 1.5px solid #fed7aa; display: flex; align-items: center; justify-content: center; }
.penalty-icon svg { width: 18px; height: 18px; stroke: var(--orange-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.penalty-title { font-size: 13px; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.penalty-text { font-size: 12px; color: var(--slate-500); line-height: 1.65; margin-bottom: 7px; }
.penalty-text strong { color: #c2410c; }
.penalty-date { font-size: 11.5px; color: var(--slate-400); }
.penalty-date strong { color: var(--slate-600); }

/* ─── TIMER CTA ─── */
.timer-cta { padding: 80px 24px; background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 30%, #4f46e5 65%, #7c3aed 100%); position: relative; overflow: hidden; }
.timer-cta::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 10% 50%, rgba(255,255,255,.07) 0%, transparent 55%),
		radial-gradient(ellipse at 90% 20%, rgba(139,92,246,.3) 0%, transparent 50%),
		radial-gradient(ellipse at 60% 90%, rgba(37,99,235,.2) 0%, transparent 45%);
	pointer-events: none;
}
.timer-cta-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 56px; }
.timer-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.9); border-radius: 999px; padding: 6px 14px; font-size: 12.5px; font-weight: 600; margin-bottom: 20px; letter-spacing: .01em; }
.timer-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #facc15; animation: dpdp-pulse 2s infinite; flex-shrink: 0; }
.timer-cta h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 14px; }
.timer-cta h2 span { color: #facc15; }
.timer-cta p { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 520px; margin-bottom: 32px; }
.timer-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.timer-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: #fff; color: var(--blue-700); font-size: 14.5px; font-weight: 700; font-family: var(--font); border-radius: var(--radius-md); border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: transform .15s, box-shadow .15s; }
.timer-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.timer-btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: transparent; color: #fff; font-size: 14.5px; font-weight: 600; font-family: var(--font); border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.38); cursor: pointer; transition: background .15s, transform .15s; }
.timer-btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.timer-countdown { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.timer-unit { text-align: center; min-width: 88px; }
.timer-box { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); border-radius: var(--radius-lg); padding: 18px 10px 14px; margin-bottom: 8px; position: relative; overflow: hidden; }
.timer-box::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,.12); }
.timer-digits { font-size: 44px; font-weight: 800; line-height: 1; color: #fff; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.timer-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }
.timer-sep { font-size: 36px; font-weight: 800; color: rgba(255,255,255,.3); line-height: 1; margin-bottom: 20px; flex-shrink: 0; }
.timer-deadline-note { margin-top: 12px; text-align: center; font-size: 11.5px; color: rgba(255,255,255,.45); letter-spacing: .01em; }

/* ─── INDUSTRY ─── */
.industry { padding: 96px 24px; background: var(--slate-50); }
.industry-inner { max-width: 1200px; margin: 0 auto; }
.industry-header { text-align: center; margin-bottom: 48px; }
.industry-header .section-sub { margin: 0 auto; }
.industry-tabs { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 40px; }
.industry-tab { padding: 9px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--slate-200); background: var(--white); color: var(--slate-600); transition: all .2s; white-space: nowrap; font-family: var(--font); }
.industry-tab:hover { border-color: var(--blue-300); color: var(--blue-600); background: var(--blue-50); }
.industry-tab.active { background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(37,99,235,.3); }
.industry-panels { position: relative; }
.industry-panel { display: none; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; animation: dpdp-panel-in .3s ease; }
.industry-panel.active { display: grid; }
@keyframes dpdp-panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ind-content { background: var(--white); border: 1.5px solid var(--slate-200); border-radius: var(--radius-xl); padding: 40px; }
.ind-eyebrow { font-size: 11.5px; font-weight: 700; color: var(--blue-600); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.ind-title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--slate-900); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px; }
.ind-title span { background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ind-body { font-size: 14.5px; color: var(--slate-500); line-height: 1.8; margin-bottom: 28px; }
.ind-body p + p { margin-top: 12px; }
.ind-body strong { color: var(--slate-700); font-weight: 600; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.ind-tag { padding: 5px 12px; border-radius: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.ind-tag-blue   { background: var(--blue-50);  color: var(--blue-700);  border: 1px solid var(--blue-100); }
.ind-tag-indigo { background: #e0e7ff; color: #3730a3; border: 1px solid #c7d2fe; }
.ind-tag-green  { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.ind-tag-orange { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
.ind-tag-purple { background: #f3e8ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.ind-tag-teal   { background: #ccfbf1; color: #0f766e; border: 1px solid #99f6e4; }
.ind-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: #fff; font-size: 14px; font-weight: 700; border-radius: var(--radius-md); border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(37,99,235,.3); transition: transform .15s, box-shadow .15s; font-family: var(--font); text-decoration: none; }
.ind-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,99,235,.4); }
.ind-products { background: var(--white); border: 1.5px solid var(--slate-200); border-radius: var(--radius-xl); padding: 28px; position: sticky; top: 88px; }
.ind-products-label { font-size: 11px; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--slate-100); }
.ind-product-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
.ind-product-row:last-of-type { border-bottom: none; }
.ind-product-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ind-product-name { font-size: 14px; font-weight: 700; color: var(--slate-800); flex: 1; }
.ind-product-badge { font-size: 10.5px; font-weight: 700; border-radius: 999px; padding: 2px 9px; }
.badge-required  { background: #dcfce7; color: #15803d; }
.badge-recommend { background: var(--blue-50); color: var(--blue-700); }
.badge-optional  { background: var(--slate-100); color: var(--slate-500); }
.ind-products-cta { display: block; width: 100%; margin-top: 20px; padding: 11px; border-radius: var(--radius-md); border: none; background: linear-gradient(135deg, var(--blue-600), var(--indigo-600)); color: #fff; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: opacity .15s, transform .1s; text-decoration: none; }
.ind-products-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 96px 0; background: var(--slate-50); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: none; }
.testi-slider-wrap {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
	display: flex;
	gap: 24px;
	width: max-content;
	animation: home-testi-scroll 32s linear infinite;
}
.testi-slider-wrap:hover .testi-track { animation-play-state: paused; }
@keyframes home-testi-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50%)); }
}
.testi-card {
	background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200);
	transition: box-shadow .2s, transform .2s, border-color .2s;
	flex-shrink: 0; width: 380px;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--yellow-400); font-size: 16px; }
.testi-quote { font-size: 14.5px; color: var(--slate-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--slate-800); }
.testi-role { font-size: 12px; color: var(--slate-400); }
.testi-company { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--slate-100); font-size: 12px; font-weight: 600; color: var(--blue-600); }

/* ─── BLOG ─── */
.blog { padding: 96px 24px; background: var(--slate-50); }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-header { text-align: center; margin-bottom: 56px; }
.blog-header .section-sub { margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.blog-cover { height: 180px; position: relative; overflow: hidden; flex-shrink: 0; }
.blog-cover-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-cover-icon { font-size: 48px; opacity: .18; }
.blog-cover-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-radius: 999px; padding: 4px 12px; font-size: 11.5px; font-weight: 700; color: var(--blue-700); }
.blog-body { padding: 22px 24px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--slate-900); line-height: 1.45; margin-bottom: 10px; transition: color .15s; }
.blog-card:hover .blog-title { color: var(--blue-600); }
.blog-excerpt { font-size: 13.5px; color: var(--slate-500); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--slate-100); }
.blog-author { display: flex; align-items: center; gap: 9px; }
.blog-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.blog-author-name { font-size: 12.5px; font-weight: 600; color: var(--slate-700); }
.blog-date { font-size: 11.5px; color: var(--slate-400); }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--blue-600); transition: gap .15s; }
.blog-card:hover .blog-read-more { gap: 8px; }
.blog-read-more svg { flex-shrink: 0; }

/* ─── BOTTOM CTA (homepage-specific card wrapper, overrides main.css values) ─── */
.bottom-cta { padding: 60px 24px; background: var(--slate-50); }
.bottom-cta::before { content: none; }
.bottom-cta-card {
	max-width: 1200px; margin: 0 auto;
	background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #9333ea 100%);
	border-radius: 20px; padding: 80px 48px;
	position: relative; overflow: hidden;
}
.bottom-cta-card::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 25% 70%, rgba(255,255,255,.09) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 20%, rgba(139,92,246,.25) 0%, transparent 50%);
	pointer-events: none;
}
.bottom-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.9); padding: 6px 14px; margin-bottom: 24px; }
.cta-tag svg { opacity: .85; flex-shrink: 0; }
.bottom-cta h2 { margin-bottom: 16px; }
.bottom-cta h2 span { color: #facc15; }
.bottom-cta p { margin-bottom: 32px; color: rgba(255,255,255,.75); }
.cta-buttons { margin-bottom: 28px; gap: 12px; }
.cta-btn-white { padding: 13px 26px; font-size: 14.5px; }
.cta-btn-ghost { padding: 13px 26px; font-size: 14.5px; border: 1.5px solid rgba(255,255,255,.35); }
.cta-trust { font-size: 12.5px; color: rgba(255,255,255,.45); letter-spacing: .01em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.timer-cta-inner { grid-template-columns: 1fr; gap: 48px; }
	.timer-countdown { justify-content: flex-start; }
	.op-row { grid-template-columns: 1fr; gap: 32px; }
	/* On tablets and phones every Platform product shows its dashboard first. */
	.op-row .op-visual,
	.op-row.is-reversed .op-visual { order: 1; }
	.op-row .op-content,
	.op-row.is-reversed .op-content { order: 2; }
	.op-content { max-width: none; }
	.op-visual,
	.op-visual-frame { width: 100%; max-width: 100%; min-width: 0; }
	.op-content { width: 100%; min-width: 0; }
}
@media (max-width: 900px) {
	.industry-panel.active { grid-template-columns: 1fr; }
	.ind-products { position: static; }
	.industry-tabs { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: thin; }
}
@media (max-width: 768px) {
	.hero h1 { font-size: 36px; }
	.hero-media { margin: 32px 0 32px; }
	.hero-media-frame {
		max-width: 100%;
		padding: 12px;
		border-radius: 24px;
	}
	.stats-inner { grid-template-columns: repeat(2, 1fr); }
	.features-grid { grid-template-columns: 1fr; }
	.steps-grid { grid-template-columns: 1fr; }
	.steps-grid::before { display: none; }
	.platform-inner { grid-template-columns: 1fr; gap: 40px; }
	.blog-grid { grid-template-columns: 1fr; }
	.op-product-name { font-size: 30px; }
	.op-tagline { font-size: 17px; }
	.our-products,
	.features,
	.steps,
	.platform,
	.industry,
	.blog { padding-left: 20px; padding-right: 20px; }
	.our-products { padding-top: 72px; padding-bottom: 72px; }
	.op-header { margin-bottom: 42px; }
	.op-grid { gap: 18px; }
	.op-row { padding: 34px 0; }
	.op-card-icon { width: 46px; height: 46px; margin-bottom: 16px; }
	.op-card-icon svg { width: 23px; height: 23px; }
	.timer-countdown { flex-wrap: wrap; }
	.timer-cta { padding-left: 20px; padding-right: 20px; }
	.checklist-hd { gap: 12px; flex-wrap: wrap; }
	.bottom-cta { padding-left: 20px; padding-right: 20px; }
	.bottom-cta-card { padding-left: 28px; padding-right: 28px; }
	.op-visual-frame {
		padding: 12px;
		border-radius: 24px;
		overflow: hidden;
	}
	.op-visual-frame::before { inset: -8px; filter: blur(18px); }
}
@media (prefers-reduced-motion: reduce) {
	.testi-track { animation: none; }
	.trusted-logos-track { animation: none; }
	.hero-media-frame,
	.hero-media:hover .hero-media-frame { transform: none; }
}
@media (max-width: 480px) {
	.trusted-logos-track { gap: 18px; }
	.trusted-logo img { max-width: 140px; }
	.our-products,
	.features,
	.steps,
	.platform,
	.industry,
	.blog { padding-left: 16px; padding-right: 16px; }
	.our-products { padding-top: 56px; padding-bottom: 56px; }
	.op-title { font-size: 29px; }
	.op-sub { font-size: 15px; }
	.hero-media-frame {
		padding: 10px;
		border-radius: 20px;
	}
	.op-row { gap: 24px; padding: 32px 0; }
	.op-product-name { font-size: 26px; }
	.op-tagline { font-size: 16px; margin-bottom: 20px; }
	.op-feature { font-size: 15px; }
	.op-visual-frame {
		padding: 8px;
		border-radius: 18px;
	}
	.op-visual-frame .dpdp-clog,
	.op-visual-frame .dpdp-pdd,
	.op-visual-frame .dpdp-cmd,
	.op-visual-frame .dpdp-abm { border-radius: 10px; }
	.op-visual-placeholder {
		min-height: 240px;
		padding: 24px;
	}
	.stats-inner { grid-template-columns: 1fr 1fr; }
	.ind-content,
	.ind-products { padding: 22px 18px; }
	.timer-unit { min-width: 70px; }
	.timer-digits { font-size: 34px; }
	.timer-countdown { gap: 6px; }
	.timer-sep { display: none; }
	.timer-box { padding-left: 8px; padding-right: 8px; }
	.bottom-cta { padding-left: 16px; padding-right: 16px; }
	.bottom-cta-card { padding: 52px 20px; border-radius: 18px; }
	.cta-buttons { flex-direction: column; align-items: stretch; }
	.cta-btn-white,
	.cta-btn-ghost { width: 100%; justify-content: center; }
	.reg-item { padding: 14px; }
	.reg-desc,
	.reg-tags { margin-left: 0; }
	.reg-tags { margin-top: 10px; }
}

@media (max-width: 360px) {
	.hero h1 { font-size: 31px; }
	.hero-sub { font-size: 15px; }
	.stats-inner { grid-template-columns: 1fr; }
	.timer-countdown { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
	.timer-unit { min-width: 0; }
	.op-product-name { font-size: 24px; }
	.op-feature { gap: 9px; font-size: 14px; }
	.industry-tab { white-space: nowrap; }
}
