:root {
	--bg: #f2eee6;
	--bg-soft: #fbf8f2;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-strong: #ffffff;
	--surface-dark: #101826;
	--surface-deep: #151f30;
	--text: #182232;
	--muted: #68758d;
	--line: rgba(24, 34, 50, 0.12);
	--brand: #ef6a3a;
	--brand-deep: #cf4f20;
	--accent: #0d8d81;
	--accent-soft: rgba(13, 141, 129, 0.14);
	--shadow-soft: 0 18px 48px rgba(14, 25, 40, 0.1);
	--shadow-strong: 0 28px 90px rgba(12, 22, 36, 0.18);
	--radius-xl: 8px;
	--radius-lg: 8px;
	--radius-md: 8px;
	--radius-sm: 4px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 10% 14%, rgba(255, 146, 97, 0.18), transparent 16%),
		radial-gradient(circle at 90% 8%, rgba(0, 155, 140, 0.14), transparent 18%),
		linear-gradient(180deg, #f8f4ec 0%, #f1efe9 40%, #eef2f6 100%);
	color: var(--text);
	font: 16px/1.7 "Manrope", "Segoe UI", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

code {
	padding: 2px 10px;
	border-radius: 999px;
	background: rgba(24, 34, 50, 0.08);
	font-family: "Sora", "Segoe UI", sans-serif;
	font-size: 0.94em;
}

.color-green{
	color: var(--accent);
	font-weight: 500;
}

.page {
	position: relative;
	overflow-x: clip;
}

.shell {
	width: min(1400px, calc(100% - 36px));
	margin: 0 auto;
}

.hero {
	position: relative;
	padding: 26px 0 20px;
	background: url(images/hero-bg.png) no-repeat center center / cover;
}
.hero::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	background: linear-gradient(360deg, #fff 0%, rgba(255, 255, 255, 0.4) 72%, transparent 100%);
}

.hero__backdrop {
	position: absolute;
	inset: 0 0 auto;
	height: 760px;
	/* background:
		radial-gradient(circle at 18% 10%, rgba(239, 106, 58, 0.16), transparent 20%),
		radial-gradient(circle at 84% 16%, rgba(13, 141, 129, 0.14), transparent 22%),
		linear-gradient(180deg, #f7f4ee 0%, rgba(247, 244, 238, 0.4) 72%, transparent 100%); */
	pointer-events: none;
}

.topbar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 16px 20px;
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.58);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--brand) 0%, #ffb46e 100%);
	color: #ffffff;
	font: 800 1rem/1 "Sora", sans-serif;
	box-shadow: 0 18px 30px rgba(239, 106, 58, 0.26);
}

.brand__copy {
	display: grid;
	gap: 2px;
}

.brand__copy strong {
	font: 700 1rem/1.1 "Sora", sans-serif;
	letter-spacing: -0.03em;
}

.brand__copy small {
	color: var(--muted);
	font-size: 0.82rem;
}

.topbar__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.topbar__nav a {
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--muted);
	font-weight: 700;
	transition: background 0.18s ease, color 0.18s ease;
}

.topbar__nav a:hover {
	background: rgba(255, 255, 255, 0.74);
	color: var(--text);
}

.hero__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.30fr) minmax(380px, 0.70fr);
	gap: 24px;
	margin-top: 30px;
}

.hero__content {
	padding: 30px 30px 30px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.58) 100%);
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow-strong);
}

.hero__visual {
	display: flex;
}

.eyebrow,
.section-kicker,
.visual-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 8px 13px;
	border-radius: 4px;
	background: var(--accent-soft);
	color: #0e7268;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.order-copy .section-kicker{
	margin-bottom: 20px;
}

.hero h1,
.section-heading h2,
.visual-card h2,
.cta-card h2 {
	margin: 18px 0 0;
	font-family: "Sora", sans-serif;
	letter-spacing: -0.05em;
	line-height: 1.1;
}

.hero h1 {
	font-size: 3rem;
}

.hero__lead,
.section-heading p,
.cta-card p,
.order-copy p,
.visual-card p {
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.hero__actions,
.hero__meta,
.hero__proof,
.topbar__nav,
.pricing-card__actions,
.form-actions,
.footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__actions {
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 700;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--large {
	padding: 17px 28px;
	font-weight: 800;
}

.button--primary {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(207, 79, 32, 0.28);
}

.button--secondary {
	background: linear-gradient(135deg, #111d30 0%, #29466b 100%);
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(17, 29, 48, 0.24);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.66);
	border-color: rgba(24, 34, 50, 0.08);
	color: var(--text);
}

.button--ghost-dark {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	color: #f4f7fb;
}

.hero__meta {
	margin-top: 22px;
}

.meta-chip {
	padding: 11px 14px;
	border-radius: 4px;
	background: rgba(24, 34, 50, 0.06);
	color: var(--text);
	font-size: 0.92rem;
	font-weight: 700;
}

.hero__proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.proof-card {
	padding: 18px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.proof-card strong {
	display: block;
	font-family: "Sora", sans-serif;
	font-size: 1rem;
}

.proof-card span {
	display: block;
	margin-top: 9px;
	color: var(--muted);
	font-size: 0.93rem;
}

.visual-card {
	width: 100%;
	padding: 30px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(16, 24, 38, 0.98) 0%, rgba(26, 38, 58, 0.85) 100%);
	color: #f7fbff;
	box-shadow: 0 34px 100px rgba(9, 16, 29, 0.32);
}

.visual-card__header {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
}

.status-pill {
	padding: 9px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.08);
	color: #b8d9d5;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 24px;
}

.dashboard-panel {
	padding: 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-panel--dark {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dashboard-panel--wide {
	grid-column: 1 / -1;
}

.dashboard-panel h3,
.benefit-card h3,
.capability-card p,
.flow-card h3,
.pricing-card h3,
.order-copy h2 {
	margin: 0;
	font-family: "Sora", sans-serif;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.dashboard-panel ul {
	display: grid;
	gap: 12px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(247, 251, 255, 0.82);
}

.dashboard-panel li {
	display: flex;
	gap: 12px;
}

.dashboard-panel li::before,
.pricing-card__list li::before,
.order-checklist li::before {
	content: "";
	flex: 0 0 9px;
	width: 9px;
	height: 9px;
	margin-top: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand) 0%, #f7a55f 100%);
}

.mini-stat + .mini-stat {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat span {
	display: block;
	color: rgba(247, 251, 255, 0.64);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mini-stat strong {
	display: block;
	margin-top: 8px;
	font-size: 1rem;
}

.timeline {
	display: grid;
	gap: 14px;
}

.timeline__item {
	padding: 16px 18px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.timeline__item strong {
	display: block;
	font-family: "Sora", sans-serif;
}

.timeline__item span {
	display: block;
	margin-top: 8px;
	color: rgba(247, 251, 255, 0.68);
}

.band {
	position: relative;
	z-index: 1;
	margin-top: 40px;
	padding-bottom: 55px;
}

.band__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.band-card {
	padding: 20px 22px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow-soft);
}

.band-card span {
	display: block;
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.band-card strong {
	display: block;
	margin-top: 8px;
	font-family: "Sora", sans-serif;
	font-size: 1.02rem;
	letter-spacing: -0.03em;
}

.section {
	padding: 78px 0;
}

.section--light {
	/* background: linear-gradient(180deg, rgba(251, 248, 242, 0.74) 0%, rgba(247, 245, 239, 0.58) 100%); */
	background: #fff;
}

.section--dark {
	background: linear-gradient(180deg, #101826 0%, #182234 100%);
	color: #eff4fb;
}

.section--comparison {
	background: linear-gradient(180deg, #f3efe8 0%, #eef1f5 100%);
}

.section--pricing {
	background: linear-gradient(180deg, #101826 0%, #182234 100%);
	color: #eff4fb;
}

.section--order {
	background: linear-gradient(180deg, #f8f5ef 0%, #f2f0ea 100%);
}

.section--faq {
	background: linear-gradient(180deg, #eef2f5 0%, #f7f4ee 100%);
}

.section-heading {
	max-width: 850px;
	margin-bottom: 28px;
}

.section-heading h2 {
	font-size: 2.5rem;
}
@media (max-width: 1180px){
	.section-heading h2 {
		font-size: 1.8rem;
	}
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 20px;
	max-width: none;
	align-items: end;
}

.section-heading--dark p,
.section-heading--dark .section-kicker {
	color: rgba(239, 244, 251, 0.8);
}

.section-heading--dark .section-kicker {
	background: rgba(255, 255, 255, 0.08);
}

.benefits-grid,
.capabilities-grid,
.steps-flow,
.pricing-grid {
	display: grid;
	gap: 18px;
}

.benefits-grid {
	grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.benefit-card {
	padding: 30px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.benefit-card--accent {
	/* background: linear-gradient(180deg, #ffffff 0%, #fff4ee 100%); */
}

.benefit-card__index,
.capability-card__index,
.pricing-card__badge,
.flow-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	margin-bottom: 20px;
	border-radius: 4px;
	background: rgba(239, 106, 58, 0.12);
	color: var(--brand-deep);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.benefit-card p,
.flow-card p,
.pricing-card p,
.faq-item p,
.capability-card p {
	margin: 14px 0 0;
	color: var(--muted);
}

.benefits-compare {
	margin-top: 28px;
	padding: 30px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.benefits-compare__intro {
	margin-bottom: 24px;
}

.benefits-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.benefits-gallery__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.benefits-gallery__card a {
	display: block;
	max-height: 350px;
}

.benefits-gallery__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.benefits-gallery__card--featured {
	background: linear-gradient(180deg, #fffefc 0%, #fff4ee 100%);
	border-color: rgba(239, 106, 58, 0.22);
}

.benefits-gallery__meta {
	display: grid;
	gap: 10px;
	padding: 20px 20px 22px;
}

.benefits-gallery__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(13, 141, 129, 0.12);
	color: #0e7268;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.benefits-gallery__meta h3,
.showcase-card__caption strong,
.gallery-lightbox__caption strong {
	margin: 0;
	font-family: "Sora", sans-serif;
	font-size: 1.08rem;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.benefits-gallery__meta p,
.showcase-card__caption span,
.gallery-lightbox__caption span {
	margin: 0;
	color: var(--muted);
}

@media (max-width: 980px){
	.benefits-gallery{
		grid-template-columns: 1fr;
	}
}

.comparison-row > div{
	margin-top: 1px;
}
.comparison-row.comparison-row--head > div{
	margin-top: 0;
}

.section--dark .capability-card p,
.section--pricing .pricing-card p {
	color: rgba(239, 244, 251, 0.72);
}

.capabilities-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card {
	padding: 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-card__index {
	margin-bottom: 14px;
	background: rgba(255, 255, 255, 0.08);
	color: #f6b28f;
}

.dark-compare {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 22px;
	margin-top: 24px;
	padding: 28px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-compare__copy h3 {
	margin: 0;
	font-family: "Sora", sans-serif;
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	line-height: 1.1;
}

.dark-compare__copy p {
	margin: 16px 0 0;
	color: rgba(239, 244, 251, 0.72);
}

.audience-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-content: flex-start;
	font-size: 14px;
}

.audience-cloud span {
	padding: 14px 16px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.08);
	color: #f4f8fd;
	font-weight: 700;
}

.steps-flow {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-card {
	padding: 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.flow-card h3 {
}

.comparison-table {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.comparison-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1px;
	background: rgba(24, 34, 50, 0.08);
}

.comparison-row > div {
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.92);
}

.comparison-row--head > div {
	background: #152132;
	color: #ffffff;
	font-family: "Sora", sans-serif;
}

.pricing-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 56px rgba(6, 13, 24, 0.18);
}

.pricing-card--featured {
	transform: translateY(-12px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
	border-color: rgba(255, 196, 166, 0.36);
}

.pricing-card__top {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card h3 {
	margin-top: 18px;
	font-size: 1.5rem;
}

.pricing-card__count {
	margin-top: 16px;
	font-family: "Sora", sans-serif;
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.pricing-card__subtitle {
	margin-top: 10px;
	color: rgba(239, 244, 251, 0.72);
	font-weight: 700;
}

.pricing-card__price {
	margin-top: 18px;
	font-family: "Sora", sans-serif;
	font-size: clamp(2.3rem, 4.2vw, 3.7rem);
	line-height: 0.95;
	letter-spacing: -0.06em;
	color: #ffffff;
}

.pricing-card__price-note {
	margin-top: 10px;
	color: rgba(239, 244, 251, 0.62);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.section--showcase {
	position: relative;
	background:
		radial-gradient(circle at 12% 24%, rgba(239, 106, 58, 0.12), transparent 22%),
		radial-gradient(circle at 88% 18%, rgba(13, 141, 129, 0.12), transparent 24%),
		linear-gradient(180deg, #f5f0e7 0%, #e8edf4 100%);
}

.showcase-frame {
	position: relative;
	padding: 34px;
	border-radius: 8px;
	background:
		radial-gradient(circle at top right, rgba(239, 106, 58, 0.14), transparent 24%),
		radial-gradient(circle at left bottom, rgba(13, 141, 129, 0.12), transparent 22%),
		linear-gradient(180deg, #111b2b 0%, #1a2537 100%);
	box-shadow: 0 36px 96px rgba(13, 21, 34, 0.22);
	overflow: hidden;
}

.showcase-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: inherit;
	pointer-events: none;
}

.section-heading--showcase {
	position: relative;
	z-index: 1;
	align-items: start;
	margin-bottom: 26px;
}

.section-heading--showcase h2,
.section-heading--showcase p {
	color: #f4f8fd;
}

.section-heading--showcase .section-kicker {
	background: rgba(255, 255, 255, 0.1);
	color: #9fdad3;
}

.showcase-frame__aside {
	display: grid;
	gap: 18px;
}

.showcase-frame__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.showcase-frame__chips span {
	display: inline-flex;
	align-items: center;
	padding: 11px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(244, 248, 253, 0.88);
	font-size: 0.88rem;
	font-weight: 700;
}

.showcase-gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.showcase-card {
	grid-column: span 4;
	display: grid;
	gap: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 42px rgba(6, 13, 24, 0.18);
}

.showcase-card:nth-child(1),
.showcase-card:nth-child(2) {
	grid-column: span 6;
}

.showcase-card--hero {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.12);
}

.showcase-card__media {
	position: relative;
	padding: 0;
	border: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
	cursor: zoom-in;
}

.showcase-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
	filter: saturate(1.02) contrast(1.02);
}

.showcase-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 44%;
	background: linear-gradient(180deg, rgba(10, 16, 27, 0) 0%, rgba(10, 16, 27, 0.82) 100%);
	pointer-events: none;
}

.showcase-card:hover .showcase-card__media img {
	transform: scale(1.035);
	filter: saturate(1.07) contrast(1.04);
}

.showcase-card__hint {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.showcase-card__caption {
	display: grid;
	gap: 10px;
	padding: 22px;
	background: linear-gradient(180deg, rgba(17, 27, 43, 0.42) 0%, rgba(17, 27, 43, 0.68) 100%);
}

.showcase-card__eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(239, 106, 58, 0.16);
	color: #ffbb95;
	font-size: 0.76rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.showcase-card__caption strong {
	color: #ffffff;
	font-size: 1.18rem;
}

.showcase-card__caption span {
	color: rgba(244, 248, 253, 0.72);
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 40;
}

.gallery-lightbox.is-open {
	display: block;
}

.gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 12, 20, 0.84);
	backdrop-filter: blur(10px);
}

.gallery-lightbox__dialog {
	position: relative;
	width: min(1380px, calc(100% - 28px));
	height: 100%;
	margin: 24px auto;
	padding: 26px;
	border-radius: 8px;
	background:
		radial-gradient(circle at top right, rgba(239, 106, 58, 0.14), transparent 20%),
		radial-gradient(circle at left bottom, rgba(13, 141, 129, 0.14), transparent 18%),
		linear-gradient(180deg, rgba(17, 25, 39, 0.98) 0%, rgba(22, 32, 49, 0.98) 100%);
	box-shadow: 0 34px 90px rgba(5, 9, 15, 0.45);
	color: #f4f8fd;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
	border: 0;
	cursor: pointer;
}

.gallery-lightbox__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
}

.gallery-lightbox__stage {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 64px;
	gap: 16px;
	align-items: center;
	height: 100%;
	overflow-y: auto;
}

.gallery-lightbox__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 2rem;
}

.gallery-lightbox__figure {
	margin: 0;
}

.gallery-lightbox__figure img {
	display: block;
	width: 100%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-lightbox__caption {
	display: grid;
	gap: 10px;
	padding: 18px 6px 0;
}

.gallery-lightbox__caption strong {
	color: #ffffff;
	font-size: 1.22rem;
}

.gallery-lightbox__caption span,
.gallery-lightbox__footer p {
	color: rgba(244, 248, 253, 0.72);
}

.gallery-lightbox__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	margin-top: 12px;
	padding: 0 6px;
}

.gallery-lightbox__footer p {
	margin: 0;
	max-width: 680px;
}

.gallery-lightbox__counter {
	font-family: "Sora", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
}

.pricing-card__list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 22px 0 0;
	list-style: none;
}

.pricing-card__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.pricing-card__actions {
	margin-top: auto;
	padding-top: 22px;
	font-size: 14px;
}

.order-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
	gap: 22px;
}

.order-copy,
.form-card,
.faq-item,
.cta-card {
	padding: 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: var(--shadow-soft);
}

.order-checklist {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 26px;
}

.order-checklist > div {
	position: relative;
	padding: 22px 22px 20px;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 245, 239, 0.9) 100%);
	border: 1px solid rgba(24, 34, 50, 0.08);
	box-shadow: 0 18px 34px rgba(14, 25, 40, 0.08);
	overflow: hidden;
}

.order-checklist > div::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--brand) 0%, #ffb46e 100%);
}

.order-checklist > div:last-child::before {
	background: linear-gradient(180deg, var(--accent) 0%, #8ed8cf 100%);
}

.order-checklist strong {
	display: block;
	font-family: "Sora", sans-serif;
	font-size: 1.08rem;
	line-height: 1.3;
	letter-spacing: -0.03em;
	max-width: 22ch;
}

.order-checklist ul {
	display: grid;
	gap: 6px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.order-checklist li {
	padding: 12px 14px 12px 0;
	border-top: 1px solid rgba(24, 34, 50, 0.08);
}

.order-checklist li:first-child {
	border-top: 0;
	padding-top: 0;
}

.order-checklist p {
	margin-top: 14px;
	font-weight: 800;
	color: var(--text);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.honeypot-field {
	display: none !important;
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

.field label {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--muted);
}

.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--text);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: rgba(239, 106, 58, 0.5);
	box-shadow: 0 0 0 4px rgba(239, 106, 58, 0.1);
}

.field--full {
	grid-column: 1 / -1;
}

.form-actions {
	align-items: center;
	margin-top: 22px;
}

.form-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	max-width: 330px;
}

.form-status {
	min-height: 24px;
	margin-top: 14px;
	font-size: 0.94rem;
	font-weight: 700;
}

.form-status.is-success {
	color: #177048;
}

.form-status.is-error {
	color: #ab3322;
}

.faq-list {
	display: grid;
	gap: 14px;
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	font-family: "Sora", sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.cta-card h2{
	max-width: 780px;
}
.cta-card p{
	max-width: 590px;
}

.footer {
	padding: 0 0 48px;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding-top: 14px;
	color: var(--muted);
}

.footer__brand {
	display: grid;
	gap: 4px;
}

.footer__links {
	align-items: center;
}

.modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 30;
}

.modal.is-open {
	display: block;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 16, 28, 0.68);
	backdrop-filter: blur(8px);
}

.modal__dialog {
	position: relative;
	width: min(760px, calc(100% - 28px));
	margin: 42px auto;
	padding: 32px;
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 238, 0.98) 100%);
	box-shadow: 0 34px 90px rgba(9, 16, 28, 0.38);
}

.modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(24, 34, 50, 0.08);
	color: var(--text);
	font-size: 1.5rem;
	cursor: pointer;
}

.modal__header {
	margin-bottom: 18px;
}

.is-loading {
	opacity: 0.74;
	pointer-events: none;
}

@media (max-width: 1160px) {
	.hero__layout,
	.section-heading--split,
	.dark-compare,
	.order-layout,
	.order-checklist,
	.benefits-grid,
	.capabilities-grid,
	.steps-flow,
	.pricing-grid,
	.band__grid,
	.hero__proof,
	.dashboard-grid,
	.showcase-gallery {
		grid-template-columns: 1fr;
	}

	.showcase-card,
	.showcase-card:nth-child(1),
	.showcase-card:nth-child(2) {
		grid-column: span 1;
	}

	.showcase-frame__chips {
		gap: 8px;
	}

	.pricing-card--featured {
		transform: none;
	}

	.comparison-row {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		max-width: none;
		font-size: 2rem;
	}
}

@media (max-width: 860px) {
	.shell {
		width: min(100% - 24px, 1280px);
	}

	.topbar,
	.topbar__nav,
	.hero__actions,
	.hero__meta,
	.cta-card,
	.footer__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__content,
	.visual-card,
	.order-copy,
	.form-card,
	.faq-item,
	.cta-card,
	.benefit-card,
	.capability-card,
	.flow-card,
	.pricing-card,
	.band-card,
	.showcase-frame {
		padding: 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.gallery-lightbox__dialog {
		width: min(100% - 20px, 1280px);
		margin: 10px auto;
		padding: 18px;
	}

	.gallery-lightbox__stage {
		grid-template-columns: 1fr;
	}

	.gallery-lightbox__nav {
		width: 54px;
		height: 54px;
	}

	.gallery-lightbox__nav--prev {
		order: 2;
	}

	.gallery-lightbox__figure {
		order: 1;
	}

	.gallery-lightbox__nav--next {
		order: 3;
	}

	.gallery-lightbox__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.modal__dialog {
		margin: 20px auto;
		padding: 22px;
	}
}
