.elementor-widget-tomee_header,
.elementor-widget-tomee_hero,
.elementor-widget-tomee_features,
.elementor-widget-tomee_steps,
.elementor-widget-tomee_audience,
.elementor-widget-tomee_app_showcase,
.elementor-widget-tomee_cta,
.elementor-widget-tomee_footer {
	margin: 0 !important;
}

.tomee-landing,
.tomee-landing * {
	box-sizing: border-box;
}

.tomee-landing {
	--tomee-radius: 12px;
	background: var(--tomee-background);
	color: var(--tomee-text);
	font-family: var(--font-inter), Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	overflow-x: clip;
}

.tomee-landing a {
	color: inherit;
	text-decoration: none;
}

.tomee-landing button {
	border: 0;
	cursor: pointer;
	font: inherit;
}

.tomee-landing img,
.tomee-landing svg {
	display: block;
}

.tomee-container {
	margin: 0 auto;
	max-width: 1152px;
	padding: 0 16px;
	position: relative;
	width: 100%;
}

.tomee-container-narrow {
	max-width: 896px;
}

.tomee-header {
	background: transparent;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
	z-index: 999;
}

.tomee-header.is-scrolled {
	background: rgba(255, 255, 255, .84);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(21, 27, 36, .08);
}

.tomee-header-inner {
	align-items: center;
	display: grid;
	gap: 8px 12px;
	grid-template-areas:
		"logo download"
		"nav nav";
	grid-template-columns: auto 1fr;
	height: auto;
	justify-content: space-between;
	min-height: 64px;
	padding-bottom: 10px;
	padding-top: 10px;
}

.tomee-logo {
	align-items: center;
	display: inline-flex;
	grid-area: logo;
	height: 40px;
}

.tomee-logo img,
.tomee-footer img {
	height: 32px;
	object-fit: contain;
	width: auto;
}

.tomee-header-actions {
	align-items: center;
	display: contents;
}

.tomee-nav {
	align-items: center;
	display: flex;
	gap: 14px;
	grid-area: nav;
	justify-content: center;
	margin: 0;
	overflow-x: auto;
	padding: 2px 4px;
	scrollbar-width: none;
	white-space: nowrap;
	width: 100%;
}

.tomee-nav::-webkit-scrollbar {
	display: none;
}

.tomee-nav button {
	background: transparent !important;
	color: var(--tomee-muted);
	font-size: 14px;
	padding: 8px 0;
	transition: color .2s ease;
}

.tomee-nav button:hover,
.tomee-nav button:focus,
.tomee-nav button:active {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--tomee-text);
	outline: 0;
}

.tomee-download {
	grid-area: download;
	justify-self: end;
	position: relative;
}

.tomee-gradient-button {
	align-items: center;
	background: linear-gradient(90deg, var(--tomee-red), var(--tomee-orange), var(--tomee-yellow));
	border-radius: 999px;
	box-shadow: 0 12px 26px rgba(255, 90, 95, .24);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	overflow: hidden;
	padding: 8px 16px;
	position: relative;
	transition: box-shadow .3s ease, transform .15s ease;
}

.tomee-gradient-button::before {
	background: linear-gradient(90deg, var(--tomee-orange), var(--tomee-yellow), var(--tomee-red));
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .45s ease;
}

.tomee-gradient-button:hover::before {
	opacity: 1;
}

.tomee-gradient-button:active {
	transform: scale(.96);
}

.tomee-gradient-button span,
.tomee-gradient-button svg {
	position: relative;
	z-index: 1;
}

.tomee-gradient-button svg {
	height: 16px;
	transition: transform .2s ease;
	width: 16px;
}

.tomee-download.is-open .tomee-gradient-button svg {
	transform: rotate(180deg);
}

.tomee-download-menu {
	background: var(--tomee-card);
	border: 1px solid var(--tomee-border);
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(21, 27, 36, .16);
	min-width: 238px;
	opacity: 0;
	padding: 12px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	transform: translateY(-6px);
	transition: opacity .2s ease, transform .2s ease;
	z-index: 1001;
}

.tomee-download.is-open .tomee-download-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.tomee-download-menu .tomee-app-buttons {
	display: grid;
	gap: 8px;
	margin: 0;
}

.tomee-download-menu .tomee-store-button {
	width: 100%;
}

.tomee-hero {
	align-items: center;
	background: var(--tomee-background);
	display: flex;
	min-height: 100vh;
	overflow: hidden;
	padding: 116px 16px 48px;
	position: relative;
}

.tomee-hero-grid {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

.tomee-hero-copy {
	order: 2;
	text-align: center;
}

.tomee-hero h1 {
	color: var(--tomee-text);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	text-wrap: balance;
}

.tomee-highlight {
	background: linear-gradient(90deg, var(--tomee-red), var(--tomee-orange), var(--tomee-yellow));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
	position: relative;
}

.tomee-highlight svg {
	bottom: -8px;
	height: 12px;
	left: 0;
	position: absolute;
	width: 100%;
}

.tomee-lead {
	color: var(--tomee-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 24px auto 0;
	max-width: 576px;
}

.tomee-app-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

.tomee-store-button {
	align-items: center;
	background: #151b24;
	border-radius: 12px;
	color: #fff;
	display: inline-flex;
	gap: 12px;
	justify-content: center;
	min-height: 54px;
	padding: 10px 20px;
	transition: background .25s ease, transform .15s ease;
}

.tomee-store-button,
.tomee-store-button span,
.tomee-store-button small,
.tomee-store-button strong,
.tomee-store-button svg {
	color: #fff;
}

.tomee-store-button svg,
.tomee-store-button svg path {
	fill: currentColor;
}

.tomee-store-button:hover {
	background: rgba(21, 27, 36, .92);
	color: #fff;
}

.tomee-store-button:active {
	transform: scale(.97);
}

.tomee-store-icon {
	flex: 0 0 auto;
	height: 28px;
	opacity: 1;
	width: 28px;
}

.tomee-store-button span {
	display: grid;
	line-height: 1.1;
	text-align: left;
}

.tomee-store-button small {
	font-size: 10px;
	opacity: .82;
}

.tomee-store-button strong {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.tomee-hero-phone {
	display: flex;
	justify-content: center;
	order: 1;
	position: relative;
}

.tomee-phone-glow {
	background: linear-gradient(90deg, rgba(255, 90, 95, .2), rgba(255, 140, 66, .2), rgba(255, 202, 40, .2));
	border-radius: 999px;
	filter: blur(48px);
	inset: -32px;
	position: absolute;
}

.tomee-phone {
	background: var(--tomee-text);
	border-radius: 40px;
	box-shadow: 0 25px 60px rgba(21, 27, 36, .24);
	height: 360px;
	padding: 6px;
	position: relative;
	transition: transform .5s ease;
	width: 180px;
}

.tomee-phone:hover {
	transform: scale(1.04);
}

.tomee-phone.large {
	transform: scale(1);
}

.tomee-phone.large:hover {
	transform: scale(1.05);
}

.tomee-phone.tilt-left {
	transform: rotate(-12deg) translateY(32px);
}

.tomee-phone.tilt-left:hover {
	transform: rotate(0) translateY(0);
}

.tomee-phone.tilt-right {
	transform: rotate(12deg) translateY(32px);
}

.tomee-phone.tilt-right:hover {
	transform: rotate(0) translateY(0);
}

.tomee-phone-notch {
	background: var(--tomee-text);
	border-radius: 0 0 12px 12px;
	height: 20px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 80px;
	z-index: 2;
}

.tomee-phone-screen {
	background: var(--tomee-background);
	border-radius: 32px;
	height: 100%;
	overflow: hidden;
	padding: 12px;
	position: relative;
	width: 100%;
}

.tomee-phone-profile {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.tomee-phone-profile span {
	background: linear-gradient(90deg, var(--tomee-red), var(--tomee-yellow));
	border-radius: 999px;
	height: 32px;
	width: 32px;
}

.tomee-phone-profile i,
.tomee-phone-profile b,
.tomee-phone-list i,
.tomee-phone-list b,
.tomee-phone-search span,
.tomee-phone-tile i,
.tomee-phone-tile b,
.tomee-history-row i,
.tomee-history-row b {
	background: rgba(21, 27, 36, .16);
	border-radius: 999px;
	display: block;
}

.tomee-phone-profile i {
	height: 10px;
	width: 64px;
}

.tomee-phone-profile b {
	height: 8px;
	margin-top: 4px;
	opacity: .5;
	width: 40px;
}

.tomee-phone-hero-card {
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 90, 95, .2), rgba(255, 202, 40, .2));
	border-radius: 12px;
	color: var(--tomee-red);
	display: flex;
	height: 96px;
	justify-content: center;
	margin-bottom: 12px;
}

.tomee-phone-hero-card svg {
	height: 40px;
	width: 40px;
}

.tomee-phone-list {
	display: grid;
	gap: 8px;
}

.tomee-phone-list div {
	align-items: center;
	background: var(--tomee-secondary);
	border-radius: 10px;
	display: grid;
	gap: 0 8px;
	grid-template-columns: 40px 1fr;
	height: 56px;
	padding: 8px;
}

.tomee-phone-list span {
	background: rgba(255, 90, 95, .18);
	border-radius: 10px;
	grid-row: span 2;
	height: 40px;
	width: 40px;
}

.tomee-phone-list div:nth-child(2) span {
	background: rgba(255, 202, 40, .22);
}

.tomee-phone-list i {
	height: 10px;
	width: 80px;
}

.tomee-phone-list b {
	height: 8px;
	opacity: .5;
	width: 48px;
}

.tomee-phone-search {
	align-items: center;
	background: var(--tomee-secondary);
	border-radius: 999px;
	display: flex;
	gap: 8px;
	height: 32px;
	margin-bottom: 12px;
	padding: 0 12px;
}

.tomee-phone-search svg {
	color: var(--tomee-muted);
	height: 12px;
	width: 12px;
}

.tomee-phone-search span {
	height: 8px;
	opacity: .45;
	width: 96px;
}

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

.tomee-phone-tile {
	aspect-ratio: 1;
	background: linear-gradient(135deg, rgba(255, 90, 95, .1), rgba(255, 202, 40, .1));
	border-radius: 9px;
	padding: 6px;
}

.tomee-phone-tile span {
	background: var(--tomee-secondary);
	border-radius: 6px;
	display: block;
	height: 66%;
	width: 100%;
}

.tomee-phone-tile i {
	height: 6px;
	margin-top: 4px;
	width: 100%;
}

.tomee-phone-tile b {
	height: 6px;
	margin-top: 3px;
	opacity: .5;
	width: 50%;
}

.tomee-wallet-balance {
	background: linear-gradient(90deg, var(--tomee-red), var(--tomee-yellow));
	border-radius: 12px;
	color: #fff;
	height: 80px;
	padding: 12px;
}

.tomee-wallet-balance small {
	display: block;
	font-size: 10px;
	opacity: .8;
}

.tomee-wallet-balance strong {
	display: block;
	font-size: 20px;
	font-weight: 800;
	margin-top: 2px;
}

.tomee-wallet-history {
	display: grid;
	gap: 6px;
	margin-top: 10px;
}

.tomee-wallet-history > small {
	color: var(--tomee-muted);
	font-size: 10px;
	font-weight: 600;
}

.tomee-history-row {
	align-items: center;
	background: var(--tomee-secondary);
	border-radius: 9px;
	display: grid;
	gap: 8px;
	grid-template-columns: 24px 1fr 40px;
	height: 40px;
	padding: 0 8px;
}

.tomee-history-row span {
	align-items: center;
	background: #dcfce7;
	border-radius: 999px;
	color: #00a544;
	display: flex;
	height: 24px;
	justify-content: center;
	width: 24px;
}

.tomee-history-row svg {
	height: 12px;
	width: 12px;
}

.tomee-history-row i {
	height: 8px;
}

.tomee-history-row b {
	background: rgba(0, 199, 88, .5);
	height: 8px;
}

.tomee-more {
	align-items: center;
	background: transparent !important;
	bottom: 32px;
	color: var(--tomee-muted);
	display: none;
	flex-direction: column;
	font-size: 12px;
	gap: 8px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: color .2s ease;
}

.tomee-more:hover,
.tomee-more:focus,
.tomee-more:active {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--tomee-text);
	outline: 0;
}

.tomee-more svg {
	animation: tomee-bounce 1s infinite;
	height: 20px;
	width: 20px;
}

.tomee-orb {
	animation: tomee-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
	border-radius: 999px;
	filter: blur(64px);
	position: absolute;
}

.tomee-orb-one {
	background: linear-gradient(135deg, rgba(255, 90, 95, .15), rgba(255, 202, 40, .15));
	height: 256px;
	right: 10%;
	top: 80px;
	width: 256px;
}

.tomee-orb-two {
	animation-delay: 1s;
	background: linear-gradient(45deg, rgba(255, 202, 40, .15), rgba(255, 90, 95, .15));
	bottom: 80px;
	height: 192px;
	left: 5%;
	width: 192px;
}

.tomee-dot {
	animation: tomee-bounce 2s infinite;
	border-radius: 999px;
	display: none;
	position: absolute;
}

.dot-one {
	background: var(--tomee-red);
	height: 12px;
	left: 15%;
	top: 160px;
	width: 12px;
}

.dot-two {
	animation-duration: 2.5s;
	animation-delay: .5s;
	background: var(--tomee-yellow);
	height: 8px;
	right: 20%;
	top: 240px;
	width: 8px;
}

.dot-three {
	animation-duration: 3s;
	animation-delay: 1s;
	background: var(--tomee-orange);
	bottom: 160px;
	height: 16px;
	right: 15%;
	width: 16px;
}

.tomee-section {
	background: var(--tomee-background);
	padding: 64px 16px;
}

.tomee-section-muted {
	background: color-mix(in srgb, var(--tomee-secondary) 30%, transparent);
}

.tomee-section-heading {
	margin: 0 auto 48px;
	text-align: center;
}

.tomee-section-heading p {
	color: var(--tomee-red);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 12px;
}

.tomee-section-heading h2 {
	color: var(--tomee-text);
	font-size: 30px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 auto;
	max-width: 820px;
	text-wrap: balance;
}

.tomee-feature-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

.tomee-feature-card,
.tomee-audience-card {
	background: var(--tomee-card);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(21, 27, 36, .06);
	height: 100%;
	padding: 24px;
	transition: box-shadow .3s ease, transform .3s ease;
}

.tomee-feature-card:hover {
	box-shadow: 0 18px 38px rgba(255, 90, 95, .1);
	transform: translateY(-4px);
}

.tomee-card-icon {
	align-items: center;
	background: linear-gradient(135deg, var(--icon-from, var(--tomee-red)), var(--icon-to, var(--tomee-orange)));
	border-radius: 16px;
	color: #fff;
	display: flex;
	height: 56px;
	justify-content: center;
	margin-bottom: 24px;
	transition: transform .3s ease;
	width: 56px;
}

.tomee-card-icon.small {
	border-radius: 12px;
	height: 48px;
	width: 48px;
}

.tomee-feature-card:hover .tomee-card-icon,
.tomee-audience-card:hover .tomee-card-icon {
	transform: scale(1.1);
}

.tomee-card-icon svg {
	height: 28px;
	width: 28px;
}

.tomee-card-icon.small svg {
	height: 24px;
	width: 24px;
}

.tomee-feature-card h3,
.tomee-audience-card h3 {
	color: var(--tomee-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 12px;
}

.tomee-audience-card h3 {
	font-size: 24px;
	margin-bottom: 24px;
}

.tomee-feature-card p {
	color: var(--tomee-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

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

.tomee-step {
	text-align: center;
}

.tomee-step-icon {
	align-items: center;
	background: linear-gradient(135deg, var(--tomee-red), var(--tomee-yellow));
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(255, 90, 95, .18);
	color: #fff;
	display: inline-flex;
	height: 64px;
	justify-content: center;
	position: relative;
	transition: transform .3s ease;
	width: 64px;
}

.tomee-step-icon:hover {
	transform: scale(1.1) rotate(3deg);
}

.tomee-step-icon svg {
	height: 28px;
	width: 28px;
}

.tomee-step-icon span {
	align-items: center;
	background: var(--tomee-text);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(21, 27, 36, .18);
	color: var(--tomee-background);
	display: flex;
	font-size: 12px;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	position: absolute;
	right: -8px;
	top: -8px;
	width: 28px;
}

.tomee-step h3 {
	color: var(--tomee-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	margin: 16px 0 4px;
}

.tomee-step p {
	color: var(--tomee-muted);
	font-size: 12px;
	line-height: 1.4;
	margin: 0;
}

.tomee-audience-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

.tomee-audience-card:hover {
	box-shadow: 0 18px 38px rgba(21, 27, 36, .1);
}

.tomee-audience-card ul {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tomee-audience-card li {
	align-items: center;
	color: var(--tomee-text);
	display: flex;
	font-size: 16px;
	gap: 12px;
	line-height: 1.45;
}

.tomee-audience-card li svg {
	background: color-mix(in srgb, var(--check-color, var(--tomee-red)) 12%, transparent);
	border-radius: 999px;
	color: var(--check-color, var(--tomee-red));
	flex: 0 0 auto;
	height: 24px;
	padding: 4px;
	transition: background .2s ease;
	width: 24px;
}

.tomee-audience-card li:hover svg {
	background: color-mix(in srgb, var(--check-color, var(--tomee-red)) 22%, transparent);
}

.tomee-app-section {
	overflow: hidden;
}

.tomee-phone-row {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.tomee-phone-side {
	display: none;
}

.tomee-cta-section {
	padding-top: 64px;
}

.tomee-cta {
	background: linear-gradient(90deg, var(--tomee-red), var(--tomee-orange), var(--tomee-yellow));
	border-radius: 24px;
	color: #fff;
	overflow: hidden;
	padding: 48px 24px;
	position: relative;
	text-align: center;
}

.tomee-cta::after {
	background-image: radial-gradient(rgba(255, 255, 255, .18) 2px, transparent 2px);
	background-size: 60px 60px;
	content: "";
	inset: 0;
	opacity: .35;
	position: absolute;
}

.tomee-cta > * {
	position: relative;
	z-index: 1;
}

.tomee-cta img {
	filter: drop-shadow(0 8px 16px rgba(21, 27, 36, .2));
	height: 56px;
	margin: 0 auto 24px;
	object-fit: contain;
	width: 56px;
}

.tomee-cta h2 {
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
	text-wrap: balance;
}

.tomee-cta p {
	color: rgba(255, 255, 255, .9);
	font-size: 16px;
	line-height: 1.55;
	margin: 0 auto 32px;
	max-width: 450px;
}

.tomee-cta .tomee-app-buttons {
	margin-top: 0;
}

.tomee-footer {
	background: var(--tomee-background);
	border-top: 1px solid var(--tomee-border);
	padding: 32px 16px;
}

.tomee-footer-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
	text-align: center;
}

.tomee-footer img {
	height: 28px;
}

.tomee-footer-links {
	align-items: center;
	display: flex;
	gap: 16px;
}

.tomee-footer-links a,
.tomee-footer-links span,
.tomee-footer p {
	color: var(--tomee-muted);
	font-size: 14px;
	margin: 0;
	transition: color .2s ease;
}

.tomee-footer-links a:hover {
	color: var(--tomee-text);
}

.tomee-footer p {
	font-size: 12px;
}

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

.tomee-reveal.is-visible,
.elementor-editor-active .tomee-reveal {
	opacity: 1;
	transform: translateY(0);
}

.elementor-editor-active .tomee-header {
	position: relative;
}

@keyframes tomee-pulse {
	50% {
		opacity: .5;
	}
}

@keyframes tomee-bounce {
	0%,
	100% {
		animation-timing-function: cubic-bezier(.8, 0, 1, 1);
		transform: translateY(-25%);
	}

	50% {
		animation-timing-function: cubic-bezier(0, 0, .2, 1);
		transform: none;
	}
}

@media (min-width: 640px) {
	.tomee-app-buttons {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.tomee-header-inner {
		display: flex;
		height: 80px;
		min-height: 80px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.tomee-header-actions {
		display: flex;
		gap: 8px;
	}

	.tomee-logo img {
		height: 40px;
	}

	.tomee-nav {
		gap: 24px;
		grid-area: auto;
		justify-content: flex-start;
		margin-right: 16px;
		overflow: visible;
		padding: 0;
		width: auto;
	}

	.tomee-download {
		grid-area: auto;
		justify-self: auto;
	}

	.tomee-gradient-button {
		padding: 12px 24px;
	}

	.tomee-hero {
		padding-top: 96px;
	}

	.tomee-hero h1 {
		font-size: 48px;
	}

	.tomee-lead {
		font-size: 18px;
	}

	.tomee-phone {
		height: 400px;
		width: 200px;
	}

	.tomee-more {
		display: flex;
	}

	.tomee-orb-one {
		height: 384px;
		width: 384px;
	}

	.tomee-orb-two {
		height: 288px;
		width: 288px;
	}

	.tomee-section {
		padding: 96px 16px;
	}

	.tomee-section-heading {
		margin-bottom: 64px;
	}

	.tomee-section-heading h2 {
		font-size: 40px;
	}

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

	.tomee-feature-card,
	.tomee-audience-card {
		padding: 32px;
	}

	.tomee-steps-grid {
		gap: 32px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tomee-step-icon {
		border-radius: 20px;
		height: 80px;
		width: 80px;
	}

	.tomee-step-icon svg {
		height: 32px;
		width: 32px;
	}

	.tomee-step-icon span {
		font-size: 14px;
		height: 32px;
		width: 32px;
	}

	.tomee-step h3 {
		font-size: 18px;
		margin-top: 24px;
	}

	.tomee-step p {
		font-size: 14px;
	}

	.tomee-audience-grid {
		gap: 32px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tomee-phone-row {
		gap: 24px;
	}

	.tomee-phone-side {
		display: block;
	}

	.tomee-phone-main .tomee-phone {
		transform: scale(1.1);
	}

	.tomee-phone-main .tomee-phone:hover {
		transform: scale(1.15);
	}

	.tomee-cta {
		padding: 80px 48px;
	}

	.tomee-cta img {
		height: 64px;
		width: 64px;
	}

	.tomee-cta h2 {
		font-size: 36px;
	}

	.tomee-cta p {
		font-size: 18px;
	}

	.tomee-footer {
		padding: 48px 16px;
	}

	.tomee-footer-inner {
		flex-direction: row;
		text-align: left;
	}
}

@media (min-width: 1024px) {
	.tomee-hero-grid {
		gap: 48px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tomee-hero-copy {
		order: 1;
		text-align: left;
	}

	.tomee-hero-copy .tomee-app-buttons {
		justify-content: flex-start;
	}

	.tomee-hero-phone {
		order: 2;
	}

	.tomee-hero h1 {
		font-size: 60px;
	}

	.tomee-lead {
		font-size: 20px;
		margin-left: 0;
		margin-right: 0;
	}

	.tomee-dot {
		display: block;
	}

	.tomee-section-heading h2 {
		font-size: 48px;
	}
}

@media (max-width: 420px) {
	.tomee-hero h1 {
		font-size: 36px;
	}

	.tomee-store-button {
		padding-left: 16px;
		padding-right: 16px;
		width: 100%;
	}

	.tomee-download-menu {
		right: -4px;
	}

	.tomee-steps-grid {
		gap: 20px 14px;
	}
}
