:root {
	--atlas-store-purple: #690532;
	--atlas-store-purple-dark: #41021e;
	--atlas-store-violet: #290b5b;
	--atlas-store-blue: #0c0493;
	--atlas-store-pink: #971550;
	--atlas-store-gold: #ffb91d;
	--atlas-store-soft: #f6f0ff;
	--atlas-store-ink: #000000;
	--atlas-store-text: #111111;
	--atlas-store-muted: #565656;
	--atlas-store-white: #ffffff;
	--atlas-store-line: rgba(255, 255, 255, .34);
	--atlas-store-radius: 10px;
	--atlas-store-shadow: 7px 7px 10px rgba(0, 0, 0, .5);
}

html {
	scroll-behavior: smooth;
}

.atlas-store-body {
	margin: 0;
	background: var(--atlas-store-white);
	color: var(--atlas-store-text);
	font-family: "Nunito Sans", "Roboto", Arial, Helvetica, sans-serif;
	letter-spacing: 0;
}

.atlas-store-body *,
.atlas-store-body *::before,
.atlas-store-body *::after {
	box-sizing: border-box;
	letter-spacing: 0;
}

.atlas-store-body a {
	color: inherit;
	text-decoration: none;
}

.atlas-store-body img {
	max-width: 100%;
	height: auto;
}

.atlas-store-container {
	width: min(1140px, calc(100% - 36px));
	margin-inline: auto;
}

.atlas-skip-link {
	position: fixed;
	left: 12px;
	top: 12px;
	z-index: 1000;
	transform: translateY(-140%);
	padding: 10px 14px;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	border-radius: 4px;
	font-weight: 800;
}

.atlas-skip-link:focus {
	transform: translateY(0);
}

.atlas-store-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.atlas-store-header-inner {
	display: grid;
	grid-template-columns: 240px 1fr auto;
	align-items: center;
	gap: 22px;
	min-height: 86px;
}

.atlas-store-logo {
	display: inline-flex;
	align-items: center;
}

.atlas-store-logo img {
	display: block;
	width: 210px;
}

.atlas-store-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

.atlas-store-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 12px;
	color: #1f1f1f;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.atlas-store-nav a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 5px;
	height: 2px;
	background: var(--atlas-store-purple);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.atlas-store-nav a:hover::after,
.atlas-store-nav a:focus-visible::after {
	transform: scaleX(1);
}

.atlas-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.atlas-cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	font-size: 20px;
	font-weight: 900;
	box-shadow: 0 7px 15px rgba(105, 5, 50, .24);
}

.atlas-cart-icon {
	position: relative;
	display: block;
	width: 19px;
	height: 16px;
	border: 2px solid currentColor;
	border-top: 0;
}

.atlas-cart-icon::before {
	content: "";
	position: absolute;
	left: -3px;
	top: -6px;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: skewX(-18deg);
}

.atlas-cart-icon::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: -7px;
	height: 4px;
	background: radial-gradient(circle, currentColor 0 2px, transparent 2px) left center / 8px 4px no-repeat,
		radial-gradient(circle, currentColor 0 2px, transparent 2px) right center / 8px 4px no-repeat;
}

.atlas-support-link,
.atlas-store-hero-button,
.atlas-price-card footer a,
.atlas-final-offer a,
.atlas-app-card a,
.atlas-policy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 0;
	font-weight: 800;
	transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.atlas-support-link {
	min-width: 104px;
	padding: 0 17px;
	background: var(--atlas-store-gold);
	color: var(--atlas-store-ink);
	text-transform: none;
	box-shadow: 0 8px 16px rgba(255, 185, 29, .25);
}

.atlas-support-link:hover,
.atlas-store-hero-button:hover,
.atlas-price-card footer a:hover,
.atlas-final-offer a:hover,
.atlas-app-card a:hover,
.atlas-policy-button:hover {
	transform: translateY(-1px);
}

.atlas-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: var(--atlas-store-purple);
	padding: 10px;
	cursor: pointer;
}

.atlas-menu-toggle span {
	display: block;
	height: 3px;
	margin: 5px 0;
	background: var(--atlas-store-white);
}

.atlas-store-hero {
	position: relative;
	overflow: hidden;
	background-color: transparent;
	background-image: linear-gradient(169deg, var(--atlas-store-pink) 18%, var(--atlas-store-blue) 100%);
	padding: 100px 0;
}

.atlas-store-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 60%) minmax(300px, 40%);
	align-items: center;
	gap: 0;
}

.atlas-store-hero-copy {
	padding: 0 5% 0 10%;
	text-align: left;
}

.atlas-store-hero h1 {
	margin: 0 0 30px;
	color: var(--atlas-store-white);
	font-size: 51px;
	font-weight: 800;
	line-height: 65px;
}

.atlas-store-hero h2 {
	margin: 0 0 30px;
	color: var(--atlas-store-white);
	font-family: "Nunito", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	text-align: center;
}

.atlas-store-hero-button {
	width: calc(100% - 38px);
	margin: 19px;
	padding: 20px 12px;
	background: var(--atlas-store-white);
	color: var(--atlas-store-violet);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 19px;
	font-weight: 700;
	text-transform: none;
	gap: 8px;
}

.atlas-store-hero-button:hover {
	color: var(--atlas-store-purple);
	background: #f8f0ff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.atlas-store-hero-media {
	text-align: right;
}

.atlas-store-hero-media img {
	display: inline-block;
	width: min(100%, 540px);
	filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .24));
}

.atlas-pricing-intro {
	background: var(--atlas-store-white);
	padding: 37px 0 0;
	text-align: center;
}

.atlas-store-kicker {
	margin: 0 0 8px;
	color: var(--atlas-store-violet);
	font-size: 21px;
	font-weight: 800;
	text-transform: uppercase;
}

.atlas-pricing-intro h2 {
	margin: 0 0 10px;
	color: var(--atlas-store-ink);
	font-size: 35px;
	font-weight: 800;
	line-height: 1.2;
}

.atlas-pricing-intro h3 {
	margin: 0;
	color: var(--atlas-store-violet);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.45;
}

.atlas-pricing-intro p {
	max-width: 980px;
	margin: 8px auto 0;
	padding: 5px;
	color: #97239d;
	font-size: 16px;
	font-weight: 800;
	line-height: 25px;
}

.atlas-price-section {
	background: var(--atlas-store-white);
	padding: 27px 0 59px;
}

.atlas-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}

.atlas-price-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--atlas-store-radius);
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	box-shadow: var(--atlas-store-shadow);
}

.atlas-price-card.is-dark {
	background: var(--atlas-store-purple-dark);
}

.atlas-price-card header {
	padding: 34px 18px 14px;
	background: inherit;
	text-align: center;
}

.atlas-price-card h3 {
	margin: 0 0 9px;
	color: var(--atlas-store-white);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.15;
}

.atlas-price-card header p {
	margin: 0;
	color: #ede8e8;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
}

.atlas-price-number {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: inherit;
	padding: 0 0 13px;
	color: var(--atlas-store-gold);
	font-family: "Nunito Sans", Arial, sans-serif;
}

.atlas-price-int {
	font-size: 85px;
	font-weight: 950;
	line-height: .86;
}

.atlas-price-cents {
	padding-top: 6px;
	font-size: 30px;
	font-weight: 950;
	line-height: 1;
}

.atlas-price-currency {
	align-self: center;
	margin-left: 4px;
	font-size: 70px;
	font-weight: 950;
	line-height: 1;
}

.atlas-price-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: inherit;
	text-align: left;
}

.atlas-price-card li {
	position: relative;
	width: 92%;
	margin: 0 auto;
	padding: 9px 0 9px 28px;
	border-top: 1px solid rgba(0, 0, 0, .1);
	color: var(--atlas-store-white);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.35;
}

.atlas-price-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	color: var(--atlas-store-gold);
	font-weight: 900;
}

.atlas-price-card footer {
	padding: 22px 18px 30px;
	background: inherit;
	text-align: center;
}

.atlas-price-card footer a {
	min-width: 205px;
	padding: 15px 30px;
	border: 2px dashed #000000;
	background: var(--atlas-store-gold);
	color: var(--atlas-store-ink);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.atlas-price-card footer a:hover {
	background: #d0b4fa;
	border-color: var(--atlas-store-white);
}

.atlas-price-ribbon {
	position: absolute;
	top: 16px;
	right: -44px;
	z-index: 2;
	width: 160px;
	transform: rotate(45deg);
	background: var(--atlas-store-gold);
	color: var(--atlas-store-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 32px;
	text-align: center;
}

.atlas-how-section,
.atlas-faq-section {
	background: var(--atlas-store-soft);
}

.atlas-how-section {
	padding: 38px 0 50px;
}

.atlas-section-heading {
	max-width: 860px;
	margin: 0 auto 26px;
	text-align: center;
}

.atlas-section-heading h2 {
	margin: 0 0 12px;
	color: var(--atlas-store-ink);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.15;
}

.atlas-section-heading h3 {
	margin: 0 0 10px;
	color: var(--atlas-store-violet);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.atlas-section-heading p {
	margin: 0 auto;
	max-width: 740px;
	color: var(--atlas-store-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}

.atlas-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 28px 0 36px;
}

.atlas-steps-grid article,
.atlas-benefit-list article,
.atlas-app-card,
.atlas-editorial details,
.atlas-policy-panel {
	background: var(--atlas-store-white);
	border-radius: var(--atlas-store-radius);
	box-shadow: 0 8px 22px rgba(41, 11, 91, .12);
}

.atlas-steps-grid article {
	padding: 24px;
	text-align: center;
}

.atlas-steps-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-gold);
	font-size: 28px;
	font-weight: 900;
}

.atlas-steps-grid h2,
.atlas-benefit-list h2 {
	margin: 0 0 10px;
	color: var(--atlas-store-ink);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.atlas-steps-grid p,
.atlas-benefit-list p,
.atlas-leader-copy p {
	margin: 0;
	color: var(--atlas-store-muted);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.atlas-leader {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 24px;
	align-items: center;
}

.atlas-leader-copy {
	padding: 28px;
	border-left: 7px solid var(--atlas-store-gold);
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	border-radius: var(--atlas-store-radius);
}

.atlas-leader-copy h2 {
	margin: 0 0 12px;
	color: var(--atlas-store-white);
	font-size: 32px;
	font-weight: 900;
	line-height: 1.15;
}

.atlas-leader-copy p {
	color: rgba(255, 255, 255, .9);
}

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

.atlas-benefit-list article {
	display: grid;
	grid-template-columns: 76px 1fr;
	column-gap: 16px;
	align-items: center;
	padding: 18px;
}

.atlas-benefit-list article > span {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 999px;
	background: #f6f0ff;
	color: var(--atlas-store-purple);
	font-size: 34px;
	font-weight: 900;
}

.atlas-faq-section {
	padding: 16px 0 40px;
}

.atlas-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 3px solid var(--atlas-store-white);
}

.atlas-faq-grid details {
	border: 2px solid var(--atlas-store-white);
	background: var(--atlas-store-white);
}

.atlas-faq-grid summary {
	position: relative;
	min-height: 78px;
	padding: 25px 46px 25px 15px;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	list-style: none;
}

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

.atlas-faq-grid summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 800;
}

.atlas-faq-grid details[open] summary::after {
	content: "-";
}

.atlas-faq-grid details p {
	margin: 0;
	padding: 20px 18px 24px;
	color: var(--atlas-store-text);
	font-size: 16px;
	font-weight: 600;
	line-height: 27px;
}

.atlas-final-offer {
	background: var(--atlas-store-white);
	padding: 34px 0;
}

.atlas-final-offer-inner {
	display: grid;
	grid-template-columns: 190px 1fr auto;
	gap: 22px;
	align-items: center;
	padding: 22px;
	border-radius: var(--atlas-store-radius);
	background: linear-gradient(169deg, var(--atlas-store-pink) 18%, var(--atlas-store-blue) 100%);
	color: var(--atlas-store-white);
	box-shadow: 0 18px 36px rgba(12, 4, 147, .2);
}

.atlas-final-offer img {
	padding: 8px;
	background: var(--atlas-store-white);
	border-radius: 6px;
}

.atlas-final-offer h2 {
	margin: 0 0 6px;
	color: var(--atlas-store-white);
	font-size: 25px;
	font-weight: 900;
	line-height: 1.2;
}

.atlas-final-offer p {
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 15px;
	line-height: 1.5;
}

.atlas-final-offer a {
	min-width: 138px;
	padding: 14px 20px;
	background: var(--atlas-store-gold);
	color: var(--atlas-store-ink);
	text-transform: uppercase;
}

.atlas-store-footer {
	background: #170114;
	color: var(--atlas-store-white);
	padding: 44px 0 16px;
}

.atlas-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr .8fr .8fr;
	gap: 28px;
	align-items: start;
}

.atlas-footer-brand img {
	width: 220px;
	padding: 8px;
	background: var(--atlas-store-white);
	border-radius: 6px;
}

.atlas-footer-grid h4 {
	margin: 0 0 16px;
	color: var(--atlas-store-white);
	font-size: 18px;
	font-weight: 900;
}

.atlas-footer-grid p,
.atlas-footer-grid a,
.atlas-footer-bottom {
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.7;
}

.atlas-footer-grid p {
	margin: 0 0 8px;
}

.atlas-footer-grid a {
	display: block;
	margin-bottom: 7px;
}

.atlas-footer-grid a:hover {
	color: var(--atlas-store-gold);
}

.atlas-payment-img {
	width: 220px;
	padding: 8px;
	background: var(--atlas-store-white);
	border-radius: 6px;
}

.atlas-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.atlas-sticky-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	max-width: min(310px, calc(100vw - 36px));
	padding: 0 18px;
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.atlas-page-hero {
	background-image: linear-gradient(169deg, var(--atlas-store-pink) 18%, var(--atlas-store-blue) 100%);
	padding: 78px 0;
	color: var(--atlas-store-white);
	text-align: center;
}

.atlas-page-hero .atlas-kicker,
.atlas-page-hero p {
	margin: 0 auto;
	max-width: 820px;
	color: rgba(255, 255, 255, .88);
	font-size: 17px;
	line-height: 1.7;
}

.atlas-page-hero .atlas-kicker {
	margin-bottom: 12px;
	color: var(--atlas-store-gold);
	font-weight: 900;
	text-transform: uppercase;
}

.atlas-page-hero h1 {
	margin: 0 0 16px;
	color: var(--atlas-store-white);
	font-size: 46px;
	font-weight: 900;
	line-height: 1.15;
}

.atlas-section {
	padding: 48px 0;
}

.atlas-editorial {
	color: var(--atlas-store-text);
	font-size: 17px;
	line-height: 1.75;
}

.atlas-editorial h2 {
	margin: 0 0 18px;
	color: var(--atlas-store-ink);
	font-size: 34px;
	line-height: 1.18;
}

.atlas-editorial h3 {
	margin: 24px 0 10px;
	color: var(--atlas-store-purple);
	font-size: 22px;
	line-height: 1.25;
}

.atlas-editorial p {
	margin: 0 0 18px;
}

.atlas-editorial ul,
.atlas-editorial ol {
	margin: 0 0 22px 22px;
	padding: 0;
}

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

.atlas-app-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 250px;
	padding: 22px 16px;
	text-align: center;
}

.atlas-app-card img,
.atlas-app-fallback {
	width: 82px;
	height: 82px;
	margin-bottom: 14px;
	border-radius: 22px;
	object-fit: contain;
}

.atlas-app-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-gold);
	font-size: 24px;
	font-weight: 900;
}

.atlas-app-card h3 {
	margin: 0 0 8px;
	color: var(--atlas-store-ink);
	font-size: 18px;
}

.atlas-app-card p {
	margin: 0 0 12px;
	color: var(--atlas-store-muted);
	font-size: 14px;
	line-height: 1.45;
}

.atlas-app-card a,
.atlas-policy-button {
	width: 100%;
	padding: 12px 14px;
	background: var(--atlas-store-gold);
	color: var(--atlas-store-ink);
	text-transform: uppercase;
	font-size: 13px;
}

.atlas-download-note,
.atlas-policy-panel {
	padding: 24px;
	background: var(--atlas-store-soft);
	border-left: 6px solid var(--atlas-store-purple);
	border-radius: var(--atlas-store-radius);
}

.atlas-policy-panel {
	margin-bottom: 18px;
	background: var(--atlas-store-white);
	border: 1px solid #eadcf9;
	border-left: 6px solid var(--atlas-store-purple);
}

.atlas-editorial details {
	margin-bottom: 12px;
	border: 1px solid #eadcf9;
}

.atlas-editorial details summary {
	padding: 17px 18px;
	background: var(--atlas-store-purple);
	color: var(--atlas-store-white);
	cursor: pointer;
	font-weight: 800;
}

.atlas-editorial details p {
	padding: 16px 18px 18px;
	margin: 0;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.single_add_to_cart_button {
	border-radius: 0;
	background: var(--atlas-store-gold) !important;
	color: var(--atlas-store-ink) !important;
	font-weight: 800 !important;
	text-transform: uppercase;
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
	color: var(--atlas-store-purple);
	font-weight: 900;
}

.atlas-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.atlas-product-badges span,
.atlas-pay-badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 10px;
	background: var(--atlas-store-soft);
	color: var(--atlas-store-purple);
	font-size: 13px;
	font-weight: 800;
}

@media (max-width: 1024px) {
	.atlas-store-header-inner {
		grid-template-columns: 190px auto auto;
	}

	.atlas-store-logo img {
		width: 180px;
	}

	.atlas-store-nav a {
		padding: 0 8px;
		font-size: 12px;
	}

	.atlas-store-hero {
		padding: 100px 25px;
	}

	.atlas-store-hero-grid {
		grid-template-columns: 1fr;
	}

	.atlas-store-hero-copy {
		padding: 25px 100px 0;
		text-align: center;
	}

	.atlas-store-hero h1 {
		font-size: 40px;
		line-height: 1.35;
	}

	.atlas-store-hero h2 {
		font-size: 22px;
		line-height: 1.35;
	}

	.atlas-store-hero-media {
		text-align: center;
	}

	.atlas-price-section {
		padding: 80px 25px;
	}

	.atlas-price-grid {
		gap: 8px;
	}

	.atlas-price-int {
		font-size: 70px;
	}

	.atlas-price-currency {
		font-size: 56px;
	}

	.atlas-leader,
	.atlas-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

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

@media (max-width: 767px) {
	.atlas-store-container {
		width: min(100% - 32px, 540px);
	}

	.atlas-store-header-inner {
		grid-template-columns: 1fr auto;
		min-height: 74px;
	}

	.atlas-store-logo img {
		width: 170px;
	}

	.atlas-menu-toggle {
		display: block;
		grid-column: 2;
		grid-row: 1;
	}

	.atlas-store-nav,
	.atlas-header-actions {
		display: none;
	}

	.atlas-menu-open .atlas-store-nav,
	.atlas-menu-open .atlas-header-actions {
		display: flex;
		grid-column: 1 / -1;
		width: 100%;
	}

	.atlas-menu-open .atlas-store-nav {
		flex-direction: column;
		align-items: stretch;
		padding: 12px 0 6px;
	}

	.atlas-menu-open .atlas-store-nav a {
		justify-content: flex-start;
		border-top: 1px solid #efefef;
		font-size: 14px;
	}

	.atlas-menu-open .atlas-header-actions {
		justify-content: stretch;
		padding-bottom: 14px;
	}

	.atlas-menu-open .atlas-support-link {
		flex: 1;
	}

	.atlas-store-hero {
		padding: 50px 20px;
	}

	.atlas-store-hero-copy {
		padding: 15px 0 0;
	}

	.atlas-store-hero h1 {
		margin: -30px 0 15px;
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}

	.atlas-store-hero h2 {
		font-size: 12px;
		line-height: 1.3;
	}

	.atlas-store-hero-button {
		width: 100%;
		margin: 14px 0 0;
		font-size: 16px;
	}

	.atlas-pricing-intro h2,
	.atlas-section-heading h2,
	.atlas-page-hero h1 {
		font-size: 29px;
		line-height: 1.2;
	}

	.atlas-price-section {
		padding: 0 20px 50px;
	}

	.atlas-price-grid,
	.atlas-steps-grid,
	.atlas-leader,
	.atlas-faq-grid,
	.atlas-final-offer-inner,
	.atlas-footer-grid,
	.atlas-download-grid {
		grid-template-columns: 1fr;
	}

	.atlas-price-grid {
		gap: 30px;
	}

	.atlas-price-int {
		font-size: 90px;
	}

	.atlas-price-currency {
		font-size: 72px;
	}

	.atlas-leader-copy {
		padding: 22px;
	}

	.atlas-benefit-list article {
		grid-template-columns: 64px 1fr;
		padding: 15px;
	}

	.atlas-benefit-list article > span {
		width: 58px;
		height: 58px;
		font-size: 28px;
	}

	.atlas-faq-grid summary {
		min-height: auto;
		font-size: 18px;
		padding: 20px 44px 20px 15px;
	}

	.atlas-final-offer-inner {
		text-align: center;
	}

	.atlas-final-offer img {
		width: 190px;
		margin-inline: auto;
	}

	.atlas-footer-bottom {
		display: grid;
	}

	.atlas-sticky-whatsapp {
		position: static;
		width: calc(100% - 36px);
		margin: 18px;
		border-radius: 0;
		max-width: none;
	}
}
