:root {
	--brand: #f59e0b;
	--brand-dark: #b45309;
	--brand-soft: #fff7ed;
	--accent-warm: #d97706;
	--accent-gold: #f59e0b;
	--ink: #1f2937;
	--muted: #6b7280;
	--line: #ead7b7;
	--panel: #ffffff;
	--green: #15803d;
	--blue: #0f766e;
	--shadow: 0 18px 45px rgba(120, 53, 15, 0.13);
}

* { box-sizing: border-box; }
html {
	scrollbar-width: none;
}

html::-webkit-scrollbar {
	width: 0;
}

body.restaurant-site {
	margin: 0;
	background: #fffaf2;
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

.web-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 250, 242, 0.96);
	border-bottom: 1px solid rgba(234, 215, 183, 0.9);
	backdrop-filter: blur(14px);
}

.nav-bar {
	min-height: 76px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	font-size: 18px;
	color: #111827;
	white-space: nowrap;
}

.brand-mark img {
	width: 96px;
	height: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.main-nav > a,
.nav-dropdown > a,
.portal-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 8px;
	color: #374151;
	font-size: 14px;
	font-weight: 800;
}

.main-nav a.active,
.main-nav > a:hover,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
	background: #ffedd5;
	color: var(--brand-dark);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 12px;
}

.submenu-panel {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 120;
	display: none;
	width: 290px;
	margin-top: 10px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.nav-dropdown:hover .submenu-panel,
.nav-dropdown:focus-within .submenu-panel {
	display: grid;
}

.submenu-panel a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 11px;
	border-radius: 8px;
	color: #374151;
	font-size: 14px;
	font-weight: 800;
}

.submenu-panel a:hover {
	background: var(--brand-soft);
	color: var(--brand-dark);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.portal-button {
	background: #111827;
	color: #ffffff;
}

.portal-button:hover {
	background: var(--brand-dark);
	color: #ffffff;
}

.mobile-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	color: var(--brand-dark);
	font-size: 18px;
}

.mobile-menu-backdrop {
	position: fixed;
	inset: 0;
	display: none;
	background: rgba(17, 24, 39, 0.48);
}

.mobile-side-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 130;
	width: min(360px, 88vw);
	height: 100vh;
	padding: 18px;
	background: #ffffff;
	box-shadow: var(--shadow);
	transform: translateX(110%);
	transition: transform 0.22s ease;
}

.mobile-menu-open .mobile-side-menu { transform: translateX(0); }
.mobile-menu-open .mobile-menu-backdrop { display: block; }

.mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.mobile-menu-head button {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 8px;
	background: var(--brand-soft);
	font-size: 24px;
}

.mobile-menu-links {
	display: grid;
	gap: 6px;
	padding-top: 14px;
}

.mobile-menu-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 8px;
	background: #fffaf2;
	font-weight: 800;
}

.hero-section {
	padding: 18px 0 0;
}

.hero-carousel {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: #111827;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.55s ease, transform 6s ease;
}

.hero-slide:before,
.page-hero.solution-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17,24,39,.78), rgba(17,24,39,.28), rgba(245,158,11,.18));
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-content,
.page-hero .web-container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 720px;
	margin-left: max(16px, calc((100vw - 1180px) / 2));
	color: #ffffff;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	color: var(--brand-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.hero-content .eyebrow,
.page-hero.solution-hero .eyebrow {
	color: #fed7aa;
}

h1, h2, h3, h4 {
	margin: 0;
	color: #111827;
	font-weight: 900;
	letter-spacing: 0;
}

.hero-content h1,
.page-hero.solution-hero h1 {
	color: #ffffff;
	font-size: clamp(36px, 5vw, 66px);
	line-height: 1.02;
	max-width: 760px;
}

.hero-content p,
.page-hero.solution-hero p {
	max-width: 660px;
	margin: 18px 0 0;
	color: rgba(255,255,255,.9);
	font-size: 18px;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.primary-button,
.secondary-button,
.outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font: inherit;
	font-weight: 900;
}

.primary-button {
	background: var(--brand);
	color: #111827;
	box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.primary-button:hover {
	background: #fbbf24;
	color: #111827;
}

.secondary-button {
	background: #ffffff;
	border-color: var(--line);
	color: var(--brand-dark);
}

.secondary-button:hover {
	background: var(--brand-soft);
}

.outline-button {
	border-color: var(--accent-gold);
	background: rgba(245, 158, 11, 0.08);
	color: var(--brand-dark);
	font-weight: 900;
	text-align: center;
}

.outline-button:hover {
	background: var(--accent-gold);
	color: #111827;
}

.hero-dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.hero-dots button {
	width: 34px;
	height: 6px;
	border: 0;
	border-radius: 99px;
	background: rgba(255,255,255,.55);
}

.hero-dots button.is-active {
	background: var(--brand);
}

.home-login-band {
	padding: 20px 0 28px;
	background: linear-gradient(180deg, #fff7ed, #ffffff);
	border-bottom: 1px solid var(--line);
}

.home-login-form {
	display: grid;
	grid-template-columns: 60px minmax(260px, 1fr) minmax(230px, .85fr) minmax(300px, auto);
	gap: 14px;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow);
}

.home-login-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
}

.home-login-title i {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-size: 18px;
}

.home-login-form label {
	display: grid;
	gap: 6px;
	margin: 0;
	color: #374151;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.home-login-form input[type="text"],
.home-login-form input[type="password"] {
	width: 100%;
	min-height: 50px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 0 14px;
	color: var(--ink);
	background: #fffdf6;
	font: inherit;
}

.home-login-form input[type="text"]:focus,
.home-login-form input[type="password"]:focus {
	outline: 2px solid rgba(245, 158, 11, 0.28);
	border-color: var(--brand);
	background: #ffffff;
}

.home-login-actions {
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px 12px;
	align-items: center;
	justify-content: end;
	align-self: stretch;
	min-height: 50px;
	padding-top: 20px;
}

.home-login-remember {
	grid-template-columns: auto 1fr;
	align-items: center;
	min-height: 50px;
	text-transform: none !important;
	font-size: 13px !important;
}

.home-login-remember input {
	width: 18px;
	height: 18px;
}

.home-login-actions .primary-button {
	min-width: 164px;
	min-height: 50px;
}

.home-login-state {
	grid-column: 1 / -1;
	align-self: center;
	min-height: 18px;
	color: var(--brand-dark);
	font-size: 13px;
	font-weight: 900;
	text-align: right;
}

.home-login-state.error {
	color: #b91c1c;
}

.page-hero {
	position: relative;
	padding: 92px 0;
	background: #111827;
	color: #ffffff;
	overflow: hidden;
}

.page-hero.small {
	background: linear-gradient(135deg, #fff7ed, #ffffff);
	color: var(--ink);
}

.page-hero.small h1 {
	max-width: 820px;
	font-size: clamp(34px, 4vw, 56px);
}

.page-hero.small p {
	max-width: 760px;
	margin-top: 16px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}

.page-hero.solution-hero {
	min-height: 430px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
}

.web-section {
	padding: 76px 0;
	background: #ffffff;
}

.web-section.muted {
	background: #fff7ed;
}

.section-head {
	max-width: 780px;
	margin-bottom: 28px;
}

.section-head.wide {
	max-width: 940px;
}

.section-head h2,
.split-grid h2 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.12;
}

.section-head p,
.split-grid p {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: center;
}

.feature-grid,
.solution-grid,
.pricing-grid,
.metric-grid,
.contact-grid {
	display: grid;
	gap: 18px;
}

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }

.feature-card,
.solution-card,
.price-card,
.contact-card,
.image-panel,
.metric-grid div {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.feature-card,
.solution-card {
	display: grid;
	gap: 10px;
	padding: 22px;
}

.feature-card i,
.solution-card i,
.contact-card i {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-size: 20px;
}

.feature-card strong,
.solution-card strong {
	font-size: 18px;
	font-weight: 900;
}

.feature-card span,
.solution-card span {
	color: var(--muted);
	line-height: 1.55;
}

.solution-card:hover {
	transform: translateY(-2px);
	border-color: var(--brand);
}

.home-solution-showcase {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.home-solution-showcase article {
	display: grid;
	grid-template-rows: 38px 150px 210px 46px;
	gap: 16px;
	height: 100%;
	align-content: stretch;
}

.home-solution-showcase h4 {
	color: var(--accent-warm);
	font-size: 26px;
	line-height: 1.12;
	align-self: start;
}

.home-solution-showcase p {
	margin: 0;
	color: #374151;
	font-size: 16px;
	line-height: 1.65;
	align-self: start;
}

.home-solution-showcase img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(17, 24, 39, 0.13);
	transition: transform .22s ease, box-shadow .22s ease;
}

.home-solution-showcase .outline-button {
	align-self: end;
	width: 100%;
	min-height: 46px;
}

.product-story {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
	gap: 46px;
	align-items: center;
}

.product-story.reverse {
	grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
}

.product-story h2 {
	color: var(--accent-warm);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.05;
}

.product-story p {
	margin: 20px 0 0;
	color: #374151;
	font-size: 17px;
	line-height: 1.75;
}

.benefit-list {
	display: grid;
	gap: 13px;
	margin: 26px 0;
}

.benefit-list span {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #243044;
	font-size: 16px;
}

.benefit-list i {
	display: inline-flex;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-gold), #f97316);
	color: #111827;
	font-size: 14px;
}

.screenshot-frame {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 22px 55px rgba(17, 24, 39, 0.16);
}

.screenshot-frame img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	transition: transform .35s ease;
}

.screenshot-frame:hover img {
	transform: scale(1.03);
}

.fiscal-printer-section {
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
}

.fiscal-printer-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: #ffffff;
}

.fiscal-printer-frame img {
	width: min(100%, 430px);
	height: auto;
	max-height: 360px;
	object-fit: contain;
}

.float-card {
	animation: floatCard 5s ease-in-out infinite;
}

.screenshot-stack {
	position: relative;
	min-height: 430px;
}

.screenshot-stack img {
	position: absolute;
	width: 62%;
	height: 330px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 22px 55px rgba(17, 24, 39, 0.16);
}

.screenshot-stack img:first-child {
	left: 0;
	top: 42px;
	z-index: 2;
}

.screenshot-stack img:last-child {
	right: 0;
	top: 0;
}

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

.workflow-grid div {
	position: relative;
	display: grid;
	gap: 10px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.workflow-grid div:before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--brand);
}

.workflow-grid i {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 20px;
}

.workflow-grid strong {
	font-size: 18px;
	font-weight: 900;
}

.workflow-grid span {
	color: var(--muted);
	line-height: 1.55;
}

.restaurant-pos-hero h1 {
	max-width: 880px;
}

.restaurant-pos-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
	gap: 34px;
	align-items: center;
}

.restaurant-pos-layout h2 {
	font-size: clamp(30px, 3vw, 44px);
	line-height: 1.12;
}

.restaurant-pos-layout p {
	color: #374151;
	font-size: 17px;
	line-height: 1.75;
}

.restaurant-pos-highlight {
	display: grid;
	gap: 14px;
}

.restaurant-pos-highlight div,
.restaurant-feature-grid article {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.restaurant-pos-highlight div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 7px 12px;
	padding: 18px;
}

.restaurant-pos-highlight i,
.restaurant-feature-grid i {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	grid-row: span 2;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-size: 20px;
}

.restaurant-pos-highlight strong,
.restaurant-feature-grid h3 {
	color: #111827;
	font-weight: 900;
}

.restaurant-pos-highlight span,
.restaurant-feature-grid p {
	color: var(--muted);
	line-height: 1.65;
}

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

.restaurant-feature-grid article {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 24px;
}

.restaurant-feature-grid h3 {
	font-size: 22px;
}

.restaurant-feature-grid p {
	margin: 0;
}

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

.restaurant-gallery-grid a {
	display: block;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.restaurant-gallery-grid img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform .28s ease;
}

.restaurant-gallery-grid a:hover img {
	transform: scale(1.04);
}

.restaurant-view-section {
	display: grid;
	gap: 22px;
}

.restaurant-view-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.restaurant-view-gallery article {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.restaurant-view-gallery button {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	overflow: hidden;
}

.restaurant-view-gallery img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	transition: transform .28s ease;
}

.restaurant-view-gallery button:hover img {
	transform: scale(1.04);
}

.restaurant-view-gallery button span {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	border-radius: 8px;
	background: rgba(17, 24, 39, .82);
	color: #ffffff;
	font-weight: 900;
}

.restaurant-view-gallery article > div {
	display: grid;
	gap: 8px;
	padding: 18px;
}

.restaurant-view-gallery strong {
	color: var(--brand-dark);
	font-size: 22px;
	font-weight: 900;
}

.restaurant-view-gallery p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.restaurant-view-benefits {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.restaurant-view-benefits .benefit-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

.image-panel {
	overflow: hidden;
}

.image-panel img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.metric-grid div {
	padding: 24px;
}

.metric-grid strong {
	display: block;
	color: var(--brand-dark);
	font-size: 30px;
	font-weight: 900;
}

.metric-grid span {
	color: var(--muted);
	font-weight: 800;
}

.check-list {
	display: grid;
	gap: 12px;
}

.check-list div {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	font-weight: 800;
}

.check-list i {
	color: var(--green);
	margin-top: 3px;
}

.cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.cta-band p {
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.65;
}

.reveal-section {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.feature-card,
.solution-card,
.price-card,
.metric-grid div,
.workflow-grid div,
.home-solution-showcase article {
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover,
.price-card:hover,
.metric-grid div:hover,
.workflow-grid div:hover,
.home-solution-showcase article:hover img {
	transform: translateY(-4px);
	box-shadow: 0 24px 52px rgba(120, 53, 15, 0.18);
}

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
	.reveal-section {
		opacity: 1;
		transform: none;
	}
}

.price-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.price-card.featured {
	border-color: var(--brand);
	box-shadow: 0 20px 48px rgba(245, 158, 11, 0.25);
}

.price-card > span {
	color: var(--brand-dark);
	font-weight: 900;
	text-transform: uppercase;
}

.price-card h2 {
	font-size: 34px;
}

.price-card p {
	color: var(--muted);
	min-height: 48px;
}

.price-card ul {
	display: grid;
	gap: 10px;
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.price-card li {
	display: flex;
	gap: 8px;
	color: #374151;
	font-weight: 700;
}

.price-card li i {
	color: var(--green);
	margin-top: 3px;
}

.price-card a {
	margin-top: auto;
}

.contact-form {
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.contact-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	font-weight: 900;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px 13px;
	color: var(--ink);
	font: inherit;
}

.contact-card {
	display: grid;
	align-content: start;
	gap: 16px;
	padding: 28px;
}

.contact-card p {
	color: var(--muted);
	line-height: 1.65;
}

.contact-card div {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
}

.form-notice {
	padding: 13px 14px;
	border-radius: 8px;
	font-weight: 800;
}

.form-notice.success {
	background: rgba(21, 128, 61, .12);
	color: var(--green);
}

.form-notice.error {
	background: rgba(185, 28, 28, .10);
	color: #b91c1c;
}

.trial-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.trial-modal.is-open {
	display: flex;
}

body.modal-open {
	overflow: hidden;
}

.image-zoom-modal {
	position: fixed;
	inset: 0;
	z-index: 360;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.image-zoom-modal.is-open {
	display: flex;
}

.image-zoom-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(17, 24, 39, .78);
	cursor: zoom-out;
}

.image-zoom-panel {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
	width: min(1180px, 100%);
	max-height: calc(100vh - 44px);
	padding: 16px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(17, 24, 39, .34);
}

.image-zoom-panel strong {
	color: var(--brand-dark);
	font-size: 18px;
	font-weight: 900;
}

.image-zoom-panel img {
	width: 100%;
	max-height: calc(100vh - 132px);
	object-fit: contain;
	border-radius: 8px;
	background: #fff7ed;
}

.image-zoom-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 8px;
	background: var(--brand);
	color: #111827;
	font-size: 24px;
	font-weight: 900;
	cursor: pointer;
}

.trial-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.62);
}

.trial-modal-panel {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	max-height: calc(100vh - 36px);
	overflow: auto;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(17, 24, 39, 0.28);
}

.trial-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 8px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.trial-modal-head {
	padding-right: 44px;
	margin-bottom: 18px;
}

.trial-modal-head h2 {
	font-size: clamp(26px, 3vw, 38px);
}

.trial-modal-head p {
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.6;
}

.trial-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.trial-steps span {
	padding: 7px 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff7ed;
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
}

.trial-steps span.active {
	border-color: #f97316;
	background: #ffedd5;
	color: #9a3412;
}

.trial-form {
	display: grid;
	gap: 14px;
}

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

.trial-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	font-weight: 900;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px 13px;
	color: var(--ink);
	background: #ffffff;
	font: inherit;
}

.trial-check {
	grid-template-columns: auto 1fr;
	align-items: start;
	font-weight: 700 !important;
}

.trial-check input {
	width: auto;
	margin-top: 4px;
}

.trial-check a {
	color: var(--brand-dark);
	font-weight: 900;
}

.trial-helper {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.trial-reset-form {
	margin-top: 12px;
}

.trial-reset-form button {
	border: 0;
	background: transparent;
	color: var(--brand-dark);
	font-weight: 900;
	cursor: pointer;
}

.legal-content {
	max-width: 900px;
}

.legal-content h2 {
	margin-top: 28px;
	font-size: 24px;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
}

.legal-hero {
	position: relative;
	border-bottom: 1px solid var(--line);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.legal-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 247, 237, .96), rgba(255, 247, 237, .86), rgba(255, 247, 237, .46));
}

.legal-hero .web-container {
	position: relative;
	z-index: 1;
}

.legal-page-section {
	background: linear-gradient(180deg, #ffffff, #fff7ed);
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(260px, .35fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.legal-summary-card {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 13px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.legal-summary-card i {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-size: 22px;
}

.legal-summary-card strong {
	color: #111827;
	font-size: 20px;
	font-weight: 900;
}

.legal-summary-card span,
.legal-summary-card a {
	color: var(--muted);
	line-height: 1.65;
}

.legal-summary-card a {
	color: var(--brand-dark);
	font-weight: 900;
}

.legal-main-content {
	display: grid;
	gap: 22px;
}

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

.legal-info-card,
.legal-article-list article {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.legal-info-card {
	display: grid;
	gap: 10px;
	padding: 20px;
}

.legal-info-card i {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-size: 18px;
}

.legal-info-card h2,
.legal-article-list h2 {
	font-size: 20px;
}

.legal-info-card p,
.legal-article-list p {
	margin: 0;
	color: var(--muted);
	line-height: 1.75;
}

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

.legal-article-list article {
	padding: 22px;
}

.legal-article-list h2 {
	margin-bottom: 10px;
	color: var(--brand-dark);
}

.legal-article-list a {
	color: var(--brand-dark);
	font-weight: 900;
}

.legal-plain-content {
	max-width: 980px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.legal-plain-content h2 {
	margin: 0 0 26px;
	color: #111827;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.12;
}

.legal-plain-content h3 {
	margin: 34px 0 14px;
	color: var(--brand-dark);
	font-size: 22px;
	line-height: 1.25;
}

.legal-plain-content h3:first-of-type {
	margin-top: 0;
}

.legal-plain-content p {
	margin: 0 0 14px;
	color: #374151;
	font-size: 16px;
	line-height: 1.78;
}

.legal-plain-content a {
	color: var(--brand-dark);
	font-weight: 900;
}

.site-footer {
	padding: 48px 0;
	background: #111827;
	color: #e5e7eb;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .9fr .7fr;
	gap: 28px;
}

.footer-grid > div {
	display: grid;
	gap: 9px;
	align-content: start;
}

.footer-brand,
.footer-grid strong {
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
}

.footer-power-logo {
	display: inline-flex;
	width: fit-content;
	padding: 8px;
	border-radius: 8px;
	background: #ffffff;
}

.footer-power-logo img {
	width: 156px;
	height: auto;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
	color: #d1d5db;
}

.footer-cta {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-top: 6px;
	padding: 10px 13px;
	border: 0;
	border-radius: 8px;
	background: var(--brand);
	color: #111827 !important;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.footer-legal {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #ffffff;
	font-weight: 900;
}

.footer-legal a:hover {
	background: var(--brand);
	color: #111827;
}

@media (max-width: 1080px) {
	.main-nav,
	.header-actions { display: none; }
	.mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
	.solution-grid,
	.pricing-grid,
	.legal-card-grid,
	.restaurant-feature-grid,
	.restaurant-gallery-grid,
	.home-solution-showcase,
	.workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.home-login-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.home-login-title,
	.home-login-actions {
		grid-column: 1 / -1;
	}
	.home-solution-showcase article {
		grid-template-rows: 34px 120px 230px 46px;
	}
	.home-solution-showcase img {
		height: 230px;
	}
	.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-story,
	.product-story.reverse,
	.restaurant-pos-layout { grid-template-columns: 1fr; }
	.legal-layout {
		grid-template-columns: 1fr;
	}
	.legal-summary-card {
		position: static;
	}
}

@media (max-width: 760px) {
	.web-container { width: min(100% - 24px, 1180px); }
	.brand-mark img { width: 76px; }
	.hero-carousel { min-height: 560px; }
	.hero-content { margin: 0 18px; }
	.hero-content h1,
	.page-hero.solution-hero h1 { font-size: 38px; }
	.split-grid,
	.contact-grid,
	.solution-grid,
	.pricing-grid,
	.legal-card-grid,
	.restaurant-feature-grid,
	.restaurant-gallery-grid,
	.home-solution-showcase,
	.workflow-grid,
	.feature-grid,
	.feature-grid.compact,
	.metric-grid,
	.footer-grid { grid-template-columns: 1fr; }
	.home-login-form {
		grid-template-columns: 1fr;
	}
	.home-login-actions {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}
	.home-login-actions .primary-button {
		width: 100%;
	}
	.home-login-state {
		text-align: left;
	}
	.web-section { padding: 54px 0; }
	.page-hero { padding: 68px 0; }
	.cta-band { align-items: flex-start; flex-direction: column; }
	.image-panel img { height: 280px; }
	.screenshot-frame img { height: 300px; }
	.restaurant-gallery-grid img {
		height: 220px;
	}
	.restaurant-view-gallery {
		grid-template-columns: 1fr;
	}
	.restaurant-view-gallery img {
		height: 260px;
	}
	.restaurant-view-benefits .benefit-list {
		grid-template-columns: 1fr;
	}
	.home-solution-showcase article {
		grid-template-rows: auto auto 230px 46px;
	}
	.screenshot-stack {
		display: grid;
		gap: 14px;
		min-height: 0;
	}
	.screenshot-stack img {
		position: static;
		width: 100%;
		height: 260px;
	}
	.trial-form-grid { grid-template-columns: 1fr; }
	.trial-modal-panel { padding: 22px; }
}

/* About page redesign */
.about-hero-section {
	position: relative;
	overflow: hidden;
	padding: 86px 0 72px;
	background: radial-gradient(circle at 92% 10%, rgba(245, 158, 11, .22), transparent 34%), linear-gradient(135deg, #ffffff 0%, #fffaf2 100%);
}

.about-hero-section:before {
	content: "";
	position: absolute;
	left: -90px;
	bottom: -110px;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	background: rgba(245, 158, 11, .14);
}

.about-hero-section:after {
	content: "";
	position: absolute;
	top: 42px;
	left: 54px;
	width: 120px;
	height: 90px;
	background-image: radial-gradient(var(--brand) 3px, transparent 4px);
	background-size: 22px 22px;
	opacity: .75;
}

.about-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	gap: 46px;
	align-items: center;
}

.about-hero-content h1 {
	max-width: 720px;
	font-size: clamp(38px, 5vw, 66px);
	line-height: 1.03;
}

.about-hero-content p {
	max-width: 670px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.72;
}

.about-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.about-hero-visual {
	position: relative;
	min-height: 460px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.about-hero-visual img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
}

.about-floating-card {
	position: absolute;
	display: grid;
	gap: 3px;
	padding: 14px 16px;
	border: 1px solid rgba(234, 215, 183, .9);
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 35px rgba(120, 53, 15, .16);
	backdrop-filter: blur(10px);
}

.about-floating-card strong {
	color: var(--brand-dark);
	font-size: 22px;
	font-weight: 900;
}

.about-floating-card span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.about-card-top { top: 22px; left: 22px; }
.about-card-bottom { right: 22px; bottom: 22px; }

.about-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
	gap: 28px;
	align-items: start;
}

.about-story-panel,
.about-timeline,
.about-restaurant-card,
.about-event-strip div {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.about-story-panel {
	padding: 30px;
}

.about-story-panel h2,
.about-restaurant-card h2,
.about-events-section h2,
.cta-band h2 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.12;
}

.about-story-panel p,
.about-restaurant-card p,
.cta-band p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
}

.about-timeline {
	display: grid;
	gap: 0;
	padding: 12px;
}

.about-timeline-item {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 20px 20px 20px 68px;
	border-bottom: 1px solid var(--line);
}

.about-timeline-item:last-child {
	border-bottom: 0;
}

.about-timeline-item span {
	position: absolute;
	left: 16px;
	top: 20px;
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-weight: 900;
}

.about-timeline-item strong {
	font-size: 18px;
	font-weight: 900;
}

.about-timeline-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.about-restaurant-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.about-restaurant-card {
	display: grid;
	gap: 11px;
	padding: 24px;
}

.about-restaurant-card.highlighted {
	grid-column: span 2;
	grid-row: span 2;
	align-content: start;
	background: linear-gradient(135deg, #ffffff, #fff7ed);
}

.about-restaurant-card i {
	display: inline-flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #ffedd5;
	color: var(--brand-dark);
	font-size: 21px;
}

.about-restaurant-card strong {
	font-size: 18px;
	font-weight: 900;
}

.about-restaurant-card span {
	color: var(--muted);
	line-height: 1.6;
}

.about-event-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.about-event-strip div {
	padding: 24px;
}

.about-event-strip strong {
	display: block;
	color: var(--brand-dark);
	font-size: 24px;
	font-weight: 900;
}

.about-event-strip span {
	display: block;
	margin-top: 7px;
	color: var(--muted);
	font-weight: 800;
	line-height: 1.5;
}

@media (max-width: 1080px) {
	.about-hero-grid,
	.about-story-grid { grid-template-columns: 1fr; }
	.about-restaurant-grid,
	.about-event-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	.about-hero-section { padding: 62px 0 54px; }
	.about-hero-content h1 { font-size: 38px; }
	.about-hero-visual,
	.about-hero-visual img { min-height: 340px; }
	.about-floating-card { position: static; margin: 12px; }
	.about-card-top { margin-bottom: 0; }
	.about-card-bottom { margin-top: 0; }
	.about-hero-visual { display: grid; }
	.about-restaurant-grid,
	.about-event-strip { grid-template-columns: 1fr; }
	.about-restaurant-card.highlighted { grid-column: auto; grid-row: auto; }
	.about-story-panel { padding: 24px; }
}


.kiosk-demo-page{
		--kiosk-accent:#f59e0b;
		--kiosk-accent-dark:#d97706;
		--kiosk-text:#1f2937;
		--kiosk-muted:#6b7280;
		--kiosk-border:#f3d69b;
		--kiosk-bg:#fff8ed;
		background:linear-gradient(180deg,#fff 0%,#fff8ed 100%);
	}

	.kiosk-demo-hero{
		position:relative;
		min-height:clamp(190px,27vh,330px);
		display:flex;
		align-items:center;
		background-size:cover;
		background-position:center;
		overflow:hidden;
	}

	.kiosk-demo-hero:before{
		content:"";
		position:absolute;
		inset:0;
		background:linear-gradient(90deg,rgba(15,23,42,.88),rgba(15,23,42,.62),rgba(245,158,11,.18));
	}

	.kiosk-demo-hero .web-container{
		position:relative;
		z-index:2;
		color:#fff;
		padding-top:30px;
		padding-bottom:30px;
	}

	.kiosk-demo-hero .eyebrow,
	.kiosk-interactive-badge{
		display:inline-flex;
		align-items:center;
		gap:8px;
		padding:9px 14px;
		border-radius:999px;
		background:rgba(245,158,11,.18);
		border:1px solid rgba(255,255,255,.24);
		font-weight:900;
		letter-spacing:.04em;
		text-transform:uppercase;
		font-size:12px;
	}

	.kiosk-demo-hero h1{
		margin:14px 0 10px;
		font-size:clamp(30px,4vw,56px);
		line-height:1.05;
		color:#ffffff;
		font-weight:900;
	}

	.kiosk-demo-hero p{
		max-width:820px;
		margin:0;
		font-size:clamp(15px,1.35vw,19px);
		color:rgba(255,255,255,.88);
		line-height:1.6;
	}

	.kiosk-demo-hero-actions{
		display:flex;
		gap:12px;
		flex-wrap:wrap;
		margin-top:20px;
	}

	.kiosk-demo-shell{
		padding:clamp(14px,2vh,24px) 0;
	}

	.kiosk-demo-layout{
		display:grid;
		grid-template-columns:minmax(280px,430px) minmax(300px,1fr);
		gap:clamp(16px,2vw,30px);
		align-items:center;
		min-height:calc(100vh - clamp(190px,27vh,330px) - 48px);
	}

	.kiosk-demo-info,
	.kiosk-demo-feature-card{
		background:rgba(255,255,255,.9);
		border:1px solid var(--kiosk-border);
		border-radius:28px;
		padding:24px;
		box-shadow:0 24px 70px rgba(120,72,0,.12);
	}

	.kiosk-demo-info h2{
		margin:0 0 10px;
		font-size:28px;
		line-height:1.15;
		color:var(--kiosk-text);
		font-weight:900;
	}

	.kiosk-demo-info p{
		margin:0 0 18px;
		color:var(--kiosk-muted);
		font-size:15px;
		line-height:1.65;
	}

	.kiosk-demo-points{
		display:grid;
		gap:10px;
		margin:0;
		padding:0;
		list-style:none;
	}

	.kiosk-demo-points li{
		display:flex;
		align-items:center;
		gap:10px;
		padding:11px 12px;
		border-radius:16px;
		background:#fff7e8;
		color:#3f2c13;
		font-weight:800;
		font-size:14px;
	}

	.kiosk-demo-points i{
		width:34px;
		height:34px;
		border-radius:12px;
		display:flex;
		align-items:center;
		justify-content:center;
		background:linear-gradient(135deg,var(--kiosk-accent),var(--kiosk-accent-dark));
		color:#fff;
		box-shadow:0 10px 22px rgba(245,158,11,.24);
		flex:0 0 auto;
	}

	.kiosk-demo-open,
	.kiosk-demo-scroll-hint{
		display:inline-flex;
		align-items:center;
		justify-content:center;
		gap:9px;
		padding:13px 18px;
		border-radius:16px;
		background:linear-gradient(135deg,var(--kiosk-accent),var(--kiosk-accent-dark));
		color:#fff;
		font-weight:900;
		text-decoration:none;
		box-shadow:0 14px 30px rgba(245,158,11,.28);
	}

	.kiosk-demo-open:hover{
		color:#fff;
		transform:translateY(-1px);
	}

	.kiosk-demo-secondary{
		background:rgba(255,255,255,.12);
		border:1px solid rgba(255,255,255,.22);
		box-shadow:none;
	}

	.kiosk-demo-feature-grid{
		display:grid;
		grid-template-columns:repeat(2,minmax(0,1fr));
		gap:10px;
		margin-top:16px;
	}

	.kiosk-demo-feature-card{
		padding:16px;
		border-radius:20px;
		box-shadow:none;
	}

	.kiosk-demo-feature-card strong{
		display:block;
		margin-bottom:5px;
		color:var(--kiosk-text);
		font-size:14px;
	}

	.kiosk-demo-feature-card span{
		display:block;
		color:var(--kiosk-muted);
		font-size:13px;
		line-height:1.45;
	}

	.kiosk-frame-stage{
		display:flex;
		justify-content:center;
		align-items:center;
		min-width:0;
		position:relative;
	}

	.kiosk-frame-card{
		position:relative;
		width:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		padding:42px 18px 18px;
		border-radius:34px;
		background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,248,237,.92));
		border:2px solid rgba(245,158,11,.38);
		box-shadow:0 28px 90px rgba(120,72,0,.16);
	}

	.kiosk-interactive-badge{
		position:absolute;
		top:14px;
		left:50%;
		transform:translateX(-50%);
		z-index:8;
		white-space:nowrap;
		background:linear-gradient(135deg,#f59e0b,#d97706);
		color:#fff;
		border:0;
		box-shadow:0 12px 28px rgba(245,158,11,.32);
		animation:kioskPulse 1.8s infinite;
	}

	@keyframes kioskPulse{
		0%,100%{box-shadow:0 12px 28px rgba(245,158,11,.28);transform:translateX(-50%) scale(1);}
		50%{box-shadow:0 16px 38px rgba(245,158,11,.46);transform:translateX(-50%) scale(1.03);}
	}

	.kiosk-device{
		position:relative;
		width:min(100%,calc((100vh - clamp(190px,27vh,330px) - 112px) * .6));
		max-width:620px;
		min-width:280px;
		aspect-ratio:1080/1800;
		padding:12px;
		border-radius:38px;
		background:linear-gradient(145deg,#111827,#374151 42%,#111827);
		box-shadow:0 28px 90px rgba(17,24,39,.28),0 8px 24px rgba(245,158,11,.14);
	}

	.kiosk-device:before{
		content:"";
		position:absolute;
		top:9px;
		left:50%;
		width:78px;
		height:7px;
		transform:translateX(-50%);
		border-radius:99px;
		background:rgba(255,255,255,.2);
		z-index:3;
	}

	.kiosk-screen{
		position:relative;
		width:100%;
		height:100%;
		overflow:hidden;
		border-radius:28px;
		background:#fff;
		box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
	}

	#kioskFrame{
		position:absolute;
		top:0;
		left:0;
		width:1080px;
		height:1800px;
		border:0;
		transform-origin:0 0;
		background:#fff;
		overflow:hidden;
	}

	.kiosk-touch-marker{
		position:absolute;
		right:18px;
		bottom:18px;
		z-index:9;
		pointer-events:none;
		display:flex;
		align-items:center;
		gap:8px;
		padding:10px 13px;
		border-radius:999px;
		background:rgba(17,24,39,.86);
		color:#fff;
		font-size:12px;
		font-weight:900;
		box-shadow:0 14px 35px rgba(17,24,39,.28);
	}

	.kiosk-touch-marker i{
		color:#fbbf24;
	}

	@media (max-width:1080px){
		.kiosk-demo-layout{
			grid-template-columns:1fr;
			min-height:auto;
		}

		.kiosk-demo-info{
			order:2;
		}

		.kiosk-frame-stage{
			order:1;
		}

		.kiosk-device{
			width:min(92vw,calc((100vh - 170px) * .6));
			max-height:calc(100vh - 170px);
		}
	}

	@media (max-width:680px){
		.kiosk-demo-feature-grid{
			grid-template-columns:1fr;
		}
	}

	@media (max-width:560px){
		.kiosk-demo-hero{
			min-height:180px;
		}

		.kiosk-demo-info{
			padding:18px;
			border-radius:22px;
		}

		.kiosk-frame-card{
			padding:40px 8px 10px;
			border-radius:26px;
		}

		.kiosk-interactive-badge{
			font-size:10px;
			padding:8px 10px;
		}

		.kiosk-device{
			padding:8px;
			border-radius:28px;
			min-width:0;
			width:min(94vw,calc((100vh - 150px) * .6));
		}

		.kiosk-screen{
			border-radius:21px;
		}
	}