/* =============================================
   WORDPRESS GLOBAL STYLE RESETS
   The hostinger-ai-theme parent injects these
   via theme.json on the frontend (not in editor):
   · body left/right padding (~24 px)
   · blockGap margin-block-start: 40 px between blocks
   · button background: #E1D7C6 (beige)
   · link color: near-black
   All use specificity > :where() to win cleanly.
   ============================================= */

body,
.wp-site-blocks {
	padding: 0 !important;
	--wp--style--block-gap: 0 !important;
}

/* Kill margins injected by is-layout-flow block gap */
.wp-site-blocks > *,
.pa-site > *,
.entry-content > *,
.wp-block-post-content > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Prevent WP from constraining our wide sections inside post-content */
.wp-block-post-content {
	padding: 0 !important;
}

/* Reset WP group block auto-padding so our pa-section controls it */
.wp-block-group:not([class*="pa-"]) {
	padding: 0;
}

/* =============================================
   CUSTOM PROPERTIES & BASE
   ============================================= */

:root {
	--pa-ink: #1d1d1f;
	--pa-muted: #6e6e73;
	--pa-panel: #f5f5f7;
	--pa-soft: #fbfbfd;
	--pa-line: #d2d2d7;
	--pa-blue: #0071e3;
	--pa-blue-dark: #005bb5;
	--pa-green: #30d158;
	--pa-max: 1180px;
	--pa-font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--pa-font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color-scheme: light;
}

html {
	scroll-behavior: smooth;
}

body,
.editor-styles-wrapper {
	margin: 0;
	background: #fff;
	color: var(--pa-ink);
	font-family: var(--pa-font-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.wp-block-heading {
	font-family: var(--pa-font-display);
}

body.admin-bar .pa-header {
	top: 32px;
}

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

img {
	max-width: 100%;
	height: auto;
}

.pa-en {
	display: none;
}

html[lang^="en"] .pa-es {
	display: none !important;
}

html[lang^="en"] .pa-en {
	display: revert;
}

.pa-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(251, 251, 253, .86);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	backdrop-filter: saturate(180%) blur(18px);
}

.pa-nav {
	height: 44px;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 22px;
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 12px;
	line-height: 1;
	color: rgba(29, 29, 31, .88);
}

.pa-brand,
.pa-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.pa-brand-mark {
	width: 22px;
	height: 22px;
	display: inline-grid;
	place-items: center;
	border-radius: 6px;
	background: #111;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.pa-nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex: 1;
}

.pa-nav a {
	transition: color .18s ease;
}

.pa-nav a:hover {
	color: #000;
}

.pa-language {
	display: flex;
	gap: 10px;
	font-size: 11px;
	color: var(--pa-muted);
}

.pa-language a:first-child {
	color: var(--pa-ink);
	font-weight: 600;
}

html[lang^="en"] .pa-language a:first-child {
	color: var(--pa-muted);
	font-weight: 400;
}

html[lang^="en"] .pa-language a:last-child {
	color: var(--pa-ink);
	font-weight: 600;
}

.pa-site {
	overflow: hidden;
	background: #fff;
}

.pa-site > * {
	margin-block-start: 0;
}

.pa-section {
	max-width: var(--pa-max);
	margin: 0 auto;
	padding: 72px 24px;
	box-sizing: border-box;
}

.pa-eyebrow {
	margin: 0 0 10px;
	color: var(--pa-muted);
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
}

.pa-hero {
	min-height: calc(100vh - 44px);
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
	align-items: center;
	gap: 44px;
	padding-top: 58px;
	padding-bottom: 38px;
}

.pa-hero-copy {
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.pa-hero h1,
.pa-choice h2,
.pa-showcase h2,
.pa-testimonials h2,
.pa-steps h2,
.pa-audience h2,
.pa-faq h2,
.pa-download h2,
.pa-utility-hero h1 {
	margin: 0 auto;
	color: var(--pa-ink);
	font-size: 64px;
	line-height: 1.03;
	font-weight: 700;
	letter-spacing: 0;
	max-width: 860px;
}

.pa-hero-subtitle,
.pa-showcase p:not(.pa-eyebrow),
.pa-product p:not(.pa-eyebrow),
.pa-audience p,
.pa-download p,
.pa-utility-hero p:not(.pa-eyebrow) {
	margin: 18px auto 0;
	color: var(--pa-muted);
	font-size: 23px;
	line-height: 1.25;
	font-weight: 400;
	max-width: 760px;
}

.pa-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.pa-trust-row {
	max-width: 640px;
	margin: 28px auto 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pa-trust-row p {
	margin: 0;
	padding: 8px 12px;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 999px;
	background: rgba(245, 245, 247, .72);
	color: #424245;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
}

.pa-button-primary .wp-block-button__link,
.pa-button-primary.wp-block-button .wp-block-button__link {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: var(--pa-blue);
	color: #fff;
	padding: 12px 24px;
	font-size: 17px;
	font-weight: 500;
	box-shadow: none;
}

.pa-button-primary .wp-block-button__link:hover {
	background: var(--pa-blue-dark);
}

.pa-text-link .wp-block-button__link,
.pa-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: var(--pa-blue);
	padding: 0;
	font-size: 19px;
	font-weight: 500;
	box-shadow: none;
}

.pa-text-link .wp-block-button__link::after,
.pa-link::after {
	content: "\203A";
	font-size: 24px;
	line-height: 1;
}

.pa-text-link .wp-block-button__link:hover,
.pa-link:hover {
	text-decoration: underline;
}

.pa-hero-stage {
	position: relative;
	height: 610px;
	display: grid;
	place-items: center;
}

.pa-icon-orbit {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pa-orbit-icon,
.pa-app-icon {
	width: 86px;
	margin: 0;
}

.pa-orbit-icon img,
.pa-app-icon img,
img.pa-app-icon {
	width: 86px;
	height: 86px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
}

.pa-orbit-icon {
	position: absolute;
}

.pa-orbit-icon:nth-child(1) {
	top: 46px;
	left: 56px;
}

.pa-orbit-icon:nth-child(2) {
	top: 98px;
	right: 30px;
}

.pa-orbit-icon:nth-child(3) {
	bottom: 82px;
	left: 28px;
}

.pa-orbit-icon:nth-child(4) {
	right: 62px;
	bottom: 42px;
}

.pa-device {
	position: relative;
	width: min(320px, 80vw);
	aspect-ratio: 9 / 19;
	border: 10px solid var(--pa-ink);
	border-radius: 46px;
	background: #f7f7f7;
	box-shadow: 0 32px 70px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .5);
	overflow: hidden;
}

.pa-device-main {
	transform: rotate(-4deg);
}

.pa-device-top {
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 2;
	width: 92px;
	height: 26px;
	transform: translateX(-50%);
	border-radius: 18px;
	background: #111;
}

.pa-board {
	height: 100%;
	padding: 58px 16px 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	background: linear-gradient(#fff, var(--pa-panel));
	box-sizing: border-box;
}

.pa-board > *,
.pa-chain > * {
	margin: 0;
	display: grid;
	place-items: center;
	min-height: 72px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid #e6e6e8;
	color: var(--pa-ink);
	font-size: 17px;
	font-weight: 650;
	text-align: center;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .06);
}

.pa-dark {
	max-width: none;
	margin: 0;
	padding: 86px 24px;
	text-align: center;
	background: #000;
	color: var(--pa-panel);
}

.pa-dark > * {
	max-width: var(--pa-max);
	margin-left: auto;
	margin-right: auto;
}

.pa-dark .pa-eyebrow,
.pa-dark p {
	color: #a1a1a6;
}

.pa-dark h1,
.pa-dark h2,
.pa-dark h3 {
	color: var(--pa-panel);
}

.pa-choice {
	padding-top: 84px;
	padding-bottom: 84px;
	text-align: center;
}

.pa-choice h2,
.pa-testimonials h2,
.pa-steps h2,
.pa-faq h2 {
	font-size: 54px;
}

.pa-choice-grid {
	margin-top: 36px;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	text-align: left;
}

.pa-choice-card {
	min-height: 360px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--pa-panel);
	box-sizing: border-box;
}

.pa-choice-card .pa-app-icon {
	margin-bottom: 28px;
}

.pa-choice-card h3 {
	margin: 0;
	font-size: 26px;
	line-height: 1.08;
	letter-spacing: 0;
}

.pa-choice-card p {
	margin: 12px 0 0;
	color: var(--pa-muted);
	font-size: 18px;
	line-height: 1.36;
}

.pa-choice-card .wp-block-buttons {
	margin-top: auto;
	padding-top: 22px;
}

.pa-showcase p:not(.pa-eyebrow) {
	font-size: 25px;
}

.pa-testimonials {
	padding-top: 92px;
	padding-bottom: 92px;
	display: grid !important;
	grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
	gap: 48px;
	align-items: start;
}

.pa-testimonial-heading {
	position: sticky;
	top: 82px;
}

.pa-testimonial-heading h2 {
	margin-left: 0;
	max-width: 520px;
	font-size: 52px;
}

.pa-testimonial-heading p:not(.pa-eyebrow) {
	margin: 18px 0 0;
	max-width: 520px;
	color: var(--pa-muted);
	font-size: 21px;
	line-height: 1.34;
}

.pa-testimonial-grid {
	display: grid;
	gap: 12px;
}

.pa-testimonial-card {
	padding: 34px;
	background: var(--pa-panel);
	box-sizing: border-box;
}

.pa-testimonial-card .pa-rating {
	margin: 0 0 26px;
	color: var(--pa-blue);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
}

.pa-testimonial-card h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
}

.pa-testimonial-card blockquote {
	margin: 18px 0 0;
	padding: 0;
	border: 0;
}

.pa-testimonial-card blockquote p {
	margin: 0;
	color: var(--pa-ink);
	font-size: 24px;
	line-height: 1.25;
	font-weight: 650;
}

.pa-testimonial-card cite {
	display: block;
	margin-top: 18px;
	color: var(--pa-muted);
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
}

.pa-product-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 1260px;
}

.pa-product {
	min-height: 640px;
	padding: 54px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	text-align: center;
	background: var(--pa-panel);
	color: var(--pa-ink);
	box-sizing: border-box;
}

.pa-product-wide {
	grid-column: 1 / -1;
	min-height: 760px;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	text-align: left;
	gap: 56px;
}

.pa-product-wide .pa-product-copy {
	align-self: center;
	max-width: 600px;
}

.pa-product h2 {
	margin: 8px auto 0;
	font-size: 46px;
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: 0;
	max-width: 660px;
}

.pa-product p:not(.pa-eyebrow) {
	font-size: 21px;
	line-height: 1.28;
}

.pa-product .pa-actions {
	justify-content: inherit;
	margin-top: 22px;
}

.pa-check-list {
	margin: 22px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: #424245;
	font-size: 17px;
	line-height: 1.35;
	list-style: none;
}

.pa-check-list li {
	position: relative;
	padding-left: 25px;
}

.pa-check-list li::before {
	content: "";
	position: absolute;
	top: .48em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--pa-blue);
}

.pa-product-dark {
	background: #050505;
	color: var(--pa-panel);
}

.pa-product-dark h2 {
	color: var(--pa-panel);
}

.pa-product-dark p,
.pa-product-dark .pa-eyebrow {
	color: #a1a1a6;
}

.pa-product-light {
	background: var(--pa-soft);
}

.pa-screenshot-stack {
	width: min(520px, 100%);
	margin: 38px auto 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 14px;
}

.pa-screenshot-stack figure {
	margin: 0;
	position: relative;
}

.pa-screenshot-stack img {
	display: block;
	width: 100%;
	height: auto;
	background: #fff;
	box-shadow: 0 26px 60px rgba(0, 0, 0, .24);
}

.pa-phone-stack figure {
	width: min(176px, 31%);
}

.pa-phone-stack figure:nth-child(1) {
	transform: translateY(20px) rotate(-5deg);
	z-index: 1;
}

.pa-phone-stack figure:nth-child(2) {
	transform: translateY(-8px);
	z-index: 2;
}

.pa-phone-stack figure:nth-child(3) {
	transform: translateY(20px) rotate(5deg);
	z-index: 1;
}

.pa-phone-stack img {
	border: 8px solid var(--pa-ink);
	border-radius: 30px;
}

.pa-landscape-stack {
	width: min(560px, 100%);
	display: grid;
	gap: 12px;
	align-self: center;
}

.pa-landscape-stack figure {
	width: 100%;
}

.pa-landscape-stack figure:nth-child(2) {
	width: 88%;
	margin-left: auto;
	transform: translateY(-8px);
}

.pa-landscape-stack figure:nth-child(3) {
	width: 78%;
	transform: translateY(-16px);
}

.pa-landscape-stack img {
	border-radius: 28px;
}

.pa-screenshot {
	width: min(280px, 78%);
	margin: 28px auto 0;
}

.pa-screenshot img {
	border-radius: 36px;
	border: 8px solid var(--pa-ink);
	box-shadow: 0 26px 60px rgba(0, 0, 0, .24);
}

.pa-talk-device {
	justify-self: center;
	width: min(390px, 82vw);
}

.pa-board-large {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.pa-board-large > * {
	font-size: 15px;
	min-height: 64px;
}

.pa-chain {
	width: min(420px, 100%);
	display: grid;
	gap: 12px;
	margin-top: 38px;
}

.pa-chain > * {
	min-height: 64px;
	justify-content: start;
	place-items: center start;
	padding: 0 22px;
	border-radius: 18px;
}

.pa-chain > *::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 12px;
	border-radius: 50%;
	background: var(--pa-green);
	display: inline-block;
}

.pa-chain > * {
	display: flex;
	align-items: center;
}

.pa-search-demo {
	width: min(420px, 100%);
	margin-top: 38px;
	padding: 20px;
	border-radius: 28px;
	background: #161617;
	border: 1px solid #2d2d2f;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	box-sizing: border-box;
}

.pa-search-demo > p:first-child {
	grid-column: 1 / -1;
	margin: 0;
	padding: 13px 16px;
	border-radius: 999px;
	background: #fff;
	color: var(--pa-ink);
	text-align: left;
	font-size: 16px;
}

.pa-search-demo > .wp-block-group {
	aspect-ratio: 1;
	border-radius: 14px;
	background: var(--pa-panel);
}

.pa-search-demo > .wp-block-group:nth-of-type(2) {
	background: #c7f9d6;
}

.pa-search-demo > .wp-block-group:nth-of-type(3) {
	background: #d7efff;
}

.pa-search-demo > .wp-block-group:nth-of-type(4) {
	background: #ffe3ae;
}

.pa-steps {
	padding-top: 92px;
	padding-bottom: 92px;
	text-align: center;
}

.pa-step-grid {
	margin-top: 36px;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	text-align: left;
}

.pa-step-card {
	min-height: 290px;
	padding: 34px;
	background: var(--pa-panel);
	box-sizing: border-box;
}

.pa-step-number {
	width: 38px;
	height: 38px;
	margin: 0 0 46px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pa-blue);
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}

.pa-step-card h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.1;
}

.pa-step-card p:not(.pa-step-number) {
	margin: 12px 0 0;
	color: var(--pa-muted);
	font-size: 19px;
	line-height: 1.36;
}

.pa-audience {
	display: grid !important;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
	gap: 56px;
	align-items: start;
	padding-top: 92px;
	padding-bottom: 92px;
}

.pa-audience h2 {
	font-size: 48px;
}

.pa-audience-grid {
	display: grid;
	gap: 12px;
}

.pa-audience-grid > * {
	padding: 28px;
	background: var(--pa-panel);
}

.pa-audience h3 {
	margin: 0;
	font-size: 24px;
}

.pa-audience p {
	margin-top: 8px;
	font-size: 18px;
	line-height: 1.35;
}

.pa-faq {
	padding-top: 92px;
	padding-bottom: 92px;
}

.pa-faq-list {
	margin-top: 36px;
	display: grid;
	gap: 10px;
}

.pa-faq-item {
	padding: 28px 0;
	border-top: 1px solid var(--pa-line);
}

.pa-faq-item:last-child {
	border-bottom: 1px solid var(--pa-line);
}

.pa-faq-item h3 {
	margin: 0;
	font-size: 26px;
	line-height: 1.14;
}

.pa-faq-item p {
	margin: 10px 0 0;
	color: var(--pa-muted);
	font-size: 19px;
	line-height: 1.45;
}

.pa-download {
	text-align: center;
	padding-top: 92px;
	padding-bottom: 104px;
}

.pa-download h2 {
	font-size: 54px;
}

.pa-download > p:not(.pa-eyebrow) {
	margin: 16px auto 0;
	max-width: 720px;
	color: var(--pa-muted);
	font-size: 21px;
	line-height: 1.32;
}

.pa-download-grid {
	margin: 36px auto 0;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	max-width: 920px;
}

.pa-download-grid .wp-block-column {
	min-height: 160px;
	padding: 22px;
	background: var(--pa-panel);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-size: 20px;
	font-weight: 650;
	transition: transform .18s ease, background .18s ease;
	box-sizing: border-box;
}

.pa-download-grid .wp-block-column:hover {
	transform: translateY(-2px);
	background: #ececf0;
}

.pa-download-grid figure {
	width: 68px;
	margin: 0 auto;
}

.pa-download-grid img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 14px;
}

.pa-download-grid p {
	margin: 0;
	color: var(--pa-ink);
	font-size: 20px;
	font-weight: 650;
}

.pa-page-shell,
.pa-single,
.pa-loop,
.pa-commerce {
	padding: 0 24px 96px;
	box-sizing: border-box;
}

.pa-page-hero,
.pa-single-hero,
.pa-loop-hero,
.pa-utility-hero {
	padding-top: 92px;
	padding-bottom: 48px;
	text-align: center;
}

.pa-page-hero h1,
.pa-single-hero h1,
.pa-loop-hero h1,
.pa-loop-hero .wp-block-query-title {
	margin: 0;
	font-size: 56px;
	line-height: 1.04;
	letter-spacing: 0;
}

.pa-page-content {
	padding-bottom: 80px;
}

.pa-page-content > * + * {
	margin-block-start: 1.2em;
}

.pa-page-content p,
.pa-page-content li {
	color: #424245;
	font-size: 19px;
	line-height: 1.55;
}

.pa-featured-image {
	max-width: 1080px;
	margin: 0 auto 54px;
}

.pa-featured-image img {
	width: 100%;
	border-radius: 0;
}

.pa-post-meta {
	margin-top: 16px;
	color: var(--pa-muted);
	font-size: 14px;
}

.pa-post-list {
	display: grid !important;
	gap: 12px;
	padding: 0;
	list-style: none;
}

.pa-post-card {
	padding: 34px;
	background: var(--pa-panel);
}

.pa-post-card h2,
.pa-post-card h3 {
	margin: 0;
}

.pa-post-card a {
	color: var(--pa-ink);
}

.pa-post-card .wp-block-post-excerpt {
	margin-top: 12px;
	color: var(--pa-muted);
}

.pa-search-form {
	max-width: 620px;
	margin: 28px auto 0;
}

.pa-search-form .wp-block-search__inside-wrapper {
	border: 1px solid var(--pa-line);
	border-radius: 999px;
	background: var(--pa-panel);
	overflow: hidden;
}

.pa-search-form input {
	padding-left: 18px;
}

.pa-search-form button {
	border-radius: 999px;
	background: var(--pa-blue);
	color: #fff;
}

.pa-empty-state,
.pa-commerce {
	padding-top: 86px;
}

.pa-commerce h1 {
	text-align: center;
	font-size: 48px;
	line-height: 1.08;
}

.pa-utility-hero {
	min-height: 64vh;
	display: grid;
	align-content: center;
}

.pa-utility-hero .pa-app-icon {
	margin: 0 auto 20px;
}

.pa-footer {
	background: var(--pa-panel);
	color: var(--pa-muted);
	font-size: 13px;
}

.pa-footer-inner {
	max-width: 1024px;
	margin: 0 auto;
	padding: 34px 22px;
}

.pa-footer-brand {
	color: var(--pa-ink);
	font-size: 15px;
}

.pa-footer p {
	max-width: 680px;
	margin: 10px 0 0;
}

.pa-footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.pa-footer-links a {
	color: #424245;
}

.pa-fineprint {
	padding-top: 18px;
	border-top: 1px solid var(--pa-line);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
	}
}

@media (max-width: 980px) {
	body.admin-bar .pa-header {
		top: 0;
	}

	.pa-nav {
		gap: 14px;
	}

	.pa-nav-links {
		gap: 16px;
	}

	.pa-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 62px;
	}

	.pa-hero-stage {
		height: 500px;
	}

	.pa-hero h1 {
		font-size: 52px;
	}

	.pa-product-grid {
		grid-template-columns: 1fr;
	}

	.pa-choice-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pa-testimonials {
		grid-template-columns: 1fr;
	}

	.pa-testimonial-heading {
		position: static;
		text-align: center;
	}

	.pa-testimonial-heading h2,
	.pa-testimonial-heading p:not(.pa-eyebrow) {
		margin-left: auto;
		margin-right: auto;
	}

	.pa-product-wide {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pa-product-wide .pa-product-copy {
		text-align: center;
		margin: auto;
	}

	.pa-product .pa-actions {
		justify-content: center;
	}

	.pa-audience {
		grid-template-columns: 1fr;
	}

	.pa-step-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 680px) {
	.pa-nav {
		height: 48px;
		padding: 0 14px;
	}

	.pa-brand span:last-child {
		display: none;
	}

	.pa-nav-links {
		justify-content: flex-start;
		overflow: auto;
		white-space: nowrap;
		gap: 18px;
	}

	.pa-language {
		display: none;
	}

	.pa-section {
		padding-left: 18px;
		padding-right: 18px;
	}

	.pa-hero {
		padding-top: 44px;
		gap: 34px;
	}

	.pa-hero h1 {
		font-size: 40px;
		line-height: 1.05;
	}

	.pa-eyebrow {
		font-size: 17px;
	}

	.pa-hero-subtitle,
	.pa-showcase p:not(.pa-eyebrow),
	.pa-product p:not(.pa-eyebrow) {
		font-size: 19px;
	}

	.pa-actions {
		gap: 16px;
	}

	.pa-trust-row {
		margin-bottom: 8px;
	}

	.pa-trust-row p {
		font-size: 13px;
	}

	.pa-button-primary .wp-block-button__link {
		width: 100%;
		max-width: 310px;
	}

	.pa-hero-stage {
		height: 390px;
	}

	.pa-device {
		width: min(250px, 78vw);
		border-width: 8px;
		border-radius: 38px;
	}

	.pa-device-main {
		transform: none;
	}

	.pa-orbit-icon,
	.pa-app-icon {
		width: 58px;
	}

	.pa-orbit-icon img,
	.pa-app-icon img {
		width: 58px;
		height: 58px;
		border-radius: 13px;
	}

	.pa-orbit-icon:nth-child(1) {
		top: 14px;
		left: 6px;
	}

	.pa-orbit-icon:nth-child(2) {
		top: 40px;
		right: 2px;
	}

	.pa-orbit-icon:nth-child(3) {
		bottom: 44px;
		left: 4px;
	}

	.pa-orbit-icon:nth-child(4) {
		right: 18px;
		bottom: 10px;
	}

	.pa-dark {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	.pa-showcase h2,
	.pa-choice h2,
	.pa-testimonials h2,
	.pa-steps h2,
	.pa-audience h2,
	.pa-faq h2,
	.pa-download h2,
	.pa-utility-hero h1 {
		font-size: 36px;
	}

	.pa-choice-grid {
		grid-template-columns: 1fr;
	}

	.pa-choice-card {
		min-height: 0;
	}

	.pa-testimonial-card {
		padding: 28px;
	}

	.pa-testimonial-card h3 {
		font-size: 24px;
	}

	.pa-testimonial-card blockquote p {
		font-size: 21px;
	}

	.pa-product {
		min-height: 560px;
		padding: 38px 20px;
	}

	.pa-product-wide {
		min-height: 680px;
	}

	.pa-product h2 {
		font-size: 34px;
	}

	.pa-product-wide .pa-check-list {
		width: fit-content;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.pa-screenshot-stack {
		width: min(430px, 100%);
		gap: 8px;
	}

	.pa-phone-stack figure {
		width: min(136px, 31%);
	}

	.pa-phone-stack img {
		border-width: 6px;
		border-radius: 24px;
	}

	.pa-board > * {
		font-size: 14px;
		min-height: 56px;
	}

	.pa-download-grid {
		grid-template-columns: 1fr;
	}

	.pa-download-grid .wp-block-column {
		min-height: 118px;
	}

	.pa-step-card {
		min-height: 0;
		padding: 28px;
	}

	.pa-step-number {
		margin-bottom: 30px;
	}

	.pa-page-hero h1,
	.pa-single-hero h1,
	.pa-loop-hero h1,
	.pa-loop-hero .wp-block-query-title {
		font-size: 40px;
	}

	.pa-footer-links {
		display: grid;
		gap: 10px;
	}
}

/* =============================================
   CARD CORNERS – 28 px (Apple standard)
   ============================================= */

.pa-choice-card,
.pa-product,
.pa-testimonial-card,
.pa-step-card,
.pa-post-card {
	border-radius: 28px;
}

.pa-audience-grid > * {
	border-radius: 28px;
}

.pa-download-grid .wp-block-column {
	border-radius: 22px;
}

/* =============================================
   CARD HOVER LIFT
   ============================================= */

.pa-choice-card,
.pa-product:not(.pa-product-wide) {
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pa-choice-card:hover,
.pa-product:not(.pa-product-wide):hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 52px rgba(0, 0, 0, .12);
}

/* =============================================
   CENTERED HERO  (pa-hero-centered)
   Full-width center-aligned product hero.
   ============================================= */

.pa-hero-centered {
	min-height: 70vh;
	text-align: center;
	display: grid;
	place-content: center;
	padding-top: 80px;
	padding-bottom: 80px;
}

.pa-hero-centered h1 {
	font-size: 80px;
	line-height: 1.0;
	font-weight: 700;
	letter-spacing: -0.01em;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* =============================================
   STATS ROW  (pa-stats)
   Four big numbers with labels.
   ============================================= */

.pa-stats {
	text-align: center;
	border-top: 1px solid var(--pa-line);
	border-bottom: 1px solid var(--pa-line);
}

.pa-stats-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.pa-stat-number {
	font-family: var(--pa-font-display);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.0;
	color: var(--pa-ink);
	margin: 0;
}

.pa-stat-label {
	margin: 8px 0 0;
	color: var(--pa-muted);
	font-size: 17px;
	line-height: 1.3;
}

/* =============================================
   FEATURE TRIO  (pa-feature-trio)
   Three-column feature highlights.
   ============================================= */

.pa-feature-trio {
	text-align: center;
	padding-top: 92px;
	padding-bottom: 92px;
}

.pa-trio-grid {
	margin-top: 48px;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	text-align: left;
}

.pa-trio-card {
	padding: 38px 34px;
	background: var(--pa-panel);
	border-radius: 28px;
	box-sizing: border-box;
}

.pa-trio-icon {
	margin: 0 0 20px;
	font-size: 36px;
	line-height: 1;
}

.pa-trio-card h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.1;
}

.pa-trio-card p {
	margin: 12px 0 0;
	color: var(--pa-muted);
	font-size: 18px;
	line-height: 1.4;
}

/* =============================================
   PULL QUOTE  (pa-quote)
   Single large testimonial or pull quote.
   ============================================= */

.pa-quote {
	text-align: center;
	padding-top: 92px;
	padding-bottom: 92px;
}

.pa-quote .wp-block-quote {
	margin: 0 auto;
	padding: 0;
	border: 0;
	max-width: 820px;
}

.pa-quote .wp-block-quote p {
	font-family: var(--pa-font-display);
	font-size: 44px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--pa-ink);
	margin: 0;
}

.pa-quote .wp-block-quote cite {
	display: block;
	margin-top: 28px;
	color: var(--pa-muted);
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
}

/* =============================================
   PRICING SECTION  (pa-pricing)
   Two-tier pricing cards.
   ============================================= */

.pa-pricing {
	text-align: center;
	padding-top: 92px;
	padding-bottom: 92px;
}

.pa-pricing-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 760px;
	margin: 40px auto 0;
	text-align: left;
}

.pa-pricing-card {
	padding: 38px;
	background: var(--pa-panel);
	border-radius: 28px;
	box-sizing: border-box;
}

.pa-pricing-featured {
	background: var(--pa-ink);
	color: var(--pa-panel);
}

.pa-pricing-tier {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pa-blue);
}

.pa-pricing-featured .pa-pricing-tier {
	color: var(--pa-green);
}

.pa-pricing-card h3 {
	margin: 10px 0 0;
	font-size: 30px;
	line-height: 1.1;
}

.pa-pricing-featured h3 {
	color: var(--pa-panel);
}

.pa-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 22px 0 0;
}

.pa-price-amount {
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	color: var(--pa-ink);
}

.pa-pricing-featured .pa-price-amount {
	color: var(--pa-panel);
}

.pa-price-period {
	font-size: 17px;
	color: var(--pa-muted);
	margin: 0;
}

.pa-pricing-featured .pa-price-period {
	color: #a1a1a6;
}

.pa-pricing-card > p:not(.pa-pricing-tier) {
	margin: 12px 0 0;
	color: var(--pa-muted);
	font-size: 17px;
	line-height: 1.4;
}

.pa-pricing-featured > p:not(.pa-pricing-tier) {
	color: #a1a1a6;
}

.pa-pricing-featured .pa-check-list {
	color: var(--pa-panel);
}

.pa-pricing-featured .pa-check-list li::before {
	background: var(--pa-green);
}

.pa-pricing-card .wp-block-buttons {
	margin-top: 28px;
}

/* =============================================
   FEATURE COMPARISON TABLE  (pa-compare)
   Side-by-side feature grid across apps.
   ============================================= */

.pa-compare {
	padding-top: 92px;
	padding-bottom: 92px;
	overflow-x: auto;
}

.pa-compare h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 48px;
}

.pa-compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 17px;
}

.pa-compare-table th,
.pa-compare-table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--pa-line);
	text-align: center;
	vertical-align: middle;
}

.pa-compare-table th:first-child,
.pa-compare-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--pa-ink);
	padding-left: 0;
	font-size: 16px;
}

.pa-compare-table thead th {
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 22px;
	border-bottom: 2px solid var(--pa-line);
}

.pa-compare-table thead th:first-child {
	font-size: 14px;
	color: var(--pa-muted);
	font-weight: 400;
}

.pa-app-icon-sm {
	display: block;
	margin-bottom: 8px;
}

.pa-app-icon-sm img {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
	display: block;
	margin: 0 auto;
}

.pa-check {
	color: var(--pa-blue);
	font-size: 20px;
	font-weight: 700;
}

.pa-dash {
	color: var(--pa-line);
	font-size: 18px;
}

.pa-compare-table tr:last-child td {
	border-bottom: 0;
}

.pa-compare-table tbody tr:hover td {
	background: var(--pa-panel);
}

/* =============================================
   INDIVIDUAL APP PAGE HERO  (pa-app-hero)
   Icon + rating + title + CTA for a single app.
   ============================================= */

.pa-app-hero {
	text-align: center;
	padding-top: 92px;
	padding-bottom: 56px;
}

.pa-app-hero .pa-app-icon {
	margin: 0 auto 24px;
	width: 120px;
}

.pa-app-hero .pa-app-icon img {
	width: 120px;
	height: 120px;
	border-radius: 28px;
}

.pa-app-hero h1 {
	font-size: 64px;
	line-height: 1.04;
	font-weight: 700;
	margin: 0;
}

.pa-app-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 14px 0 0;
	color: var(--pa-muted);
	font-size: 15px;
	line-height: 1.2;
}

.pa-stars {
	color: var(--pa-blue);
	font-weight: 700;
	font-size: 16px;
}

.pa-app-hero .pa-hero-subtitle {
	margin-top: 18px;
	text-align: center;
}

/* =============================================
   APP STORE BADGE CTA  (pa-badge-section)
   Dark badge-style download button.
   ============================================= */

.pa-badge-section {
	text-align: center;
	padding-top: 72px;
	padding-bottom: 72px;
}

.pa-badge-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-top: 28px;
}

.pa-badge-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 13px 26px;
	background: var(--pa-ink);
	color: #fff;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.18s ease;
	text-decoration: none;
}

.pa-badge-link:hover {
	background: #333;
	color: #fff;
}

.pa-badge-apple {
	font-size: 30px;
	line-height: 1;
	flex-shrink: 0;
}

.pa-badge-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.pa-badge-platform {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.72;
	line-height: 1.2;
}

.pa-badge-store {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
}

/* =============================================
   RELATED APPS  (pa-related)
   Three-column other-apps cards.
   ============================================= */

.pa-related {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
	border-top: 1px solid var(--pa-line);
}

.pa-related h2 {
	font-size: 40px;
	margin: 0;
}

.pa-related > p {
	margin: 14px 0 0;
	color: var(--pa-muted);
	font-size: 19px;
}

.pa-related-grid {
	margin-top: 36px;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	text-align: left;
}

.pa-related-card {
	padding: 28px;
	background: var(--pa-panel);
	border-radius: 28px;
	box-sizing: border-box;
	transition: transform 0.2s ease;
}

.pa-related-card:hover {
	transform: translateY(-3px);
}

.pa-related-card .pa-app-icon {
	margin-bottom: 18px;
	width: 70px;
}

.pa-related-card .pa-app-icon img {
	width: 70px;
	height: 70px;
	border-radius: 16px;
}

.pa-related-card h3 {
	margin: 0;
	font-size: 22px;
}

.pa-related-card p {
	margin: 8px 0 0;
	color: var(--pa-muted);
	font-size: 16px;
	line-height: 1.4;
}

/* =============================================
   FULL-BLEED MEDIA BAND  (pa-media-band)
   Wide image with overlay headline and CTA.
   ============================================= */

.pa-media-band {
	max-width: none;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 7;
}

.pa-media-band img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.65;
	display: block;
}

.pa-media-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	text-align: center;
}

.pa-media-overlay h2 {
	font-size: 56px;
	line-height: 1.06;
	font-weight: 700;
	color: #fff;
	max-width: 820px;
	margin: 0 auto;
}

.pa-media-overlay p {
	margin: 18px auto 0;
	max-width: 640px;
	font-size: 21px;
	color: rgba(255, 255, 255, .8);
}

.pa-media-overlay .pa-actions {
	margin-top: 32px;
}

.pa-media-overlay .pa-button-primary .wp-block-button__link {
	background: rgba(255, 255, 255, .92);
	color: var(--pa-ink);
}

.pa-media-overlay .pa-button-primary .wp-block-button__link:hover {
	background: #fff;
}

.pa-media-overlay .pa-text-link .wp-block-button__link {
	color: rgba(255, 255, 255, .9);
}

/* =============================================
   FOOTNOTES  (pa-footnotes-section)
   Legal small print row.
   ============================================= */

.pa-footnotes-section {
	padding-top: 28px;
	padding-bottom: 40px;
}

.pa-footnotes-inner {
	border-top: 1px solid var(--pa-line);
	padding-top: 22px;
}

.pa-footnotes-inner p,
.pa-footnotes-inner li {
	color: var(--pa-muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}

.pa-footnotes-inner p + p {
	margin-top: 6px;
}

/* =============================================
   PROMO / ANNOUNCEMENT BANNER  (pa-promo-banner)
   Thin full-width strip above or between sections.
   ============================================= */

.pa-promo-banner {
	max-width: none;
	margin: 0;
	padding: 12px 24px;
	background: var(--pa-panel);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	text-align: center;
	box-sizing: border-box;
}

.pa-promo-banner p {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--pa-ink);
}

.pa-promo-banner a {
	color: var(--pa-blue);
	font-weight: 500;
}

.pa-promo-banner a:hover {
	text-decoration: underline;
}

/* =============================================
   BENEFITS GRID  (pa-benefits)
   "Why us" — 4 cards each with icon, headline,
   description and an individual link.
   ============================================= */

.pa-benefits {
	padding-top: 92px;
	padding-bottom: 92px;
	text-align: center;
}

.pa-benefits-grid {
	margin-top: 48px;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	text-align: left;
}

.pa-benefit-card {
	padding: 32px 28px;
	background: var(--pa-panel);
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.pa-benefit-icon {
	margin: 0 0 16px;
	font-size: 32px;
	line-height: 1;
}

.pa-benefit-card h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.15;
}

.pa-benefit-card p {
	margin: 10px 0 0;
	color: var(--pa-muted);
	font-size: 16px;
	line-height: 1.4;
	flex: 1;
}

.pa-benefit-card .wp-block-buttons {
	margin-top: 18px;
}

/* =============================================
   VALUES SECTION  (pa-values)
   3-col cards: Accesibilidad · Privacidad · CAA.
   ============================================= */

.pa-values {
	padding-top: 72px;
	padding-bottom: 72px;
	border-top: 1px solid var(--pa-line);
}

.pa-values-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pa-value-card {
	padding: 32px 28px;
	background: var(--pa-panel);
	border-radius: 28px;
	box-sizing: border-box;
}

.pa-value-icon {
	margin: 0 0 14px;
	font-size: 28px;
	line-height: 1;
}

.pa-value-card h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.15;
}

.pa-value-card p {
	margin: 8px 0 0;
	color: var(--pa-muted);
	font-size: 15px;
	line-height: 1.4;
}

.pa-value-card .wp-block-buttons {
	margin-top: 14px;
}

/* =============================================
   RESPONSIVE – new sections
   ============================================= */

@media (max-width: 980px) {
	.pa-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pa-benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pa-trio-grid {
		grid-template-columns: 1fr;
	}

	.pa-pricing-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.pa-related-grid {
		grid-template-columns: 1fr;
	}

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

	.pa-media-overlay h2 {
		font-size: 40px;
	}

	.pa-compare h2 {
		font-size: 36px;
	}
}

/* =============================================
   ADDITIONAL WP BLOCK OVERRIDES
   Targeted fixes for WP-generated classes that
   appear on specific block types at runtime.
   ============================================= */

/* Only these three sections are intentionally full-bleed (Apple-style).
   pa-section and all other wrappers keep their own 1180 px max-width —
   do NOT add them here. */
.wp-block-group.pa-dark,
.wp-block-group.pa-media-band,
.wp-block-group.pa-promo-banner {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* WP layout classes add inner margins we don't want */
.wp-block-group.pa-section.is-layout-flow > *,
.wp-block-group.pa-dark.is-layout-flow > *,
.wp-block-group.is-layout-flow.pa-choice > *,
.wp-block-group.is-layout-flow.pa-hero > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* WP columns block injects gap via --wp--style--block-gap;
   our pa-download-grid and pa-choice-grid use explicit gap. */
.wp-block-columns.pa-download-grid,
.wp-block-columns.pa-pricing-grid,
.wp-block-columns.pa-stats-grid {
	gap: 12px !important;
}

/* WP sometimes forces display:flex on .wp-block-columns children */
.wp-block-column.pa-benefit-card,
.wp-block-column.pa-pricing-card,
.wp-block-column.pa-value-card {
	flex-basis: unset !important;
	flex-grow: unset !important;
}

/* Ensure our Apple-blue buttons always win over WP element styles */
.pa-button-primary .wp-block-button__link,
.pa-button-primary .wp-element-button {
	background-color: var(--pa-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px !important;
}

.pa-button-primary .wp-block-button__link:hover,
.pa-button-primary .wp-element-button:hover {
	background-color: var(--pa-blue-dark) !important;
}

.pa-text-link .wp-block-button__link,
.pa-text-link .wp-element-button {
	background-color: transparent !important;
	color: var(--pa-blue) !important;
	border: none !important;
	padding: 0 !important;
}

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

	.pa-values-grid {
		grid-template-columns: 1fr;
	}

	.pa-stat-number {
		font-size: 44px;
	}

	.pa-hero-centered h1 {
		font-size: 44px;
	}

	.pa-quote .wp-block-quote p {
		font-size: 30px;
	}

	.pa-app-hero h1 {
		font-size: 44px;
	}

	.pa-media-band {
		aspect-ratio: 4 / 3;
	}

	.pa-media-overlay h2 {
		font-size: 30px;
	}

	.pa-media-overlay p {
		font-size: 17px;
	}

	.pa-compare-table {
		font-size: 14px;
	}

	.pa-compare-table th,
	.pa-compare-table td {
		padding: 12px 10px;
	}

	.pa-pricing-grid {
		grid-template-columns: 1fr;
	}
}
