/**
 * CuidateGratis — home premium layer (MotionSites-inspired patterns).
 * Palette locked to theme tokens: forest / cream / gold.
 */

/* —— Trust / criteria strip —— */
body.cgc-home-page .home-trust {
	padding: 14px 0 8px;
	background:
		linear-gradient(180deg, rgba(238, 247, 233, 0.72), rgba(255, 253, 248, 0.2));
	border-bottom: 1px solid rgba(18, 63, 45, 0.08);
}

body.cgc-home-page .home-trust__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.cgc-home-page .home-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-height: 64px;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px solid rgba(18, 63, 45, 0.1);
	background: rgba(255, 253, 248, 0.88);
	box-shadow: 0 10px 28px rgba(18, 63, 45, 0.05);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.cgc-home-page .home-trust__item:hover,
body.cgc-home-page .home-trust__item:focus-within {
	transform: translateY(-2px);
	border-color: rgba(217, 155, 69, 0.45);
	box-shadow: 0 16px 36px rgba(18, 63, 45, 0.1);
}

body.cgc-home-page .home-trust__icon {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	color: var(--green-900, #123f2d);
	background: linear-gradient(145deg, rgba(72, 173, 114, 0.18), rgba(217, 155, 69, 0.16));
	border: 1px solid rgba(18, 63, 45, 0.1);
}

body.cgc-home-page .home-trust__icon .icon {
	width: 18px;
	height: 18px;
}

body.cgc-home-page .home-trust__item strong {
	display: block;
	font-family: Outfit, Inter, sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--green-900, #123f2d);
	line-height: 1.25;
}

body.cgc-home-page .home-trust__item > span:last-child {
	display: block;
	min-width: 0;
}

body.cgc-home-page .home-trust__item > span:last-child > span {
	display: block;
	margin-top: 2px;
	font-size: 0.78rem;
	line-height: 1.35;
	color: var(--muted, #647164);
}

@media (max-width: 960px) {
	body.cgc-home-page .home-trust__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	body.cgc-home-page .home-trust__list {
		grid-template-columns: 1fr;
	}
}

/* —— Product frame (calculators showcase) —— */
body.cgc-home-page .calculator-promo-media {
	position: relative;
}

body.cgc-home-page .cgc-product-frame {
	position: relative;
	border-radius: 28px;
	padding: 10px;
	background:
		linear-gradient(145deg, rgba(18, 63, 45, 0.12), rgba(217, 155, 69, 0.18));
	box-shadow:
		0 0 0 1px rgba(217, 155, 69, 0.28),
		0 28px 70px rgba(18, 63, 45, 0.16);
	isolation: isolate;
}

body.cgc-home-page .cgc-product-frame::before {
	content: "";
	position: absolute;
	inset: -18% -8% auto auto;
	width: 52%;
	height: 52%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(72, 173, 114, 0.28), transparent 70%);
	z-index: 0;
	pointer-events: none;
}

body.cgc-home-page .cgc-product-frame__chrome {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
	padding: 0 6px;
}

body.cgc-home-page .cgc-product-frame__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(18, 63, 45, 0.28);
}

body.cgc-home-page .cgc-product-frame__dot:nth-child(1) { background: #d99b45; }
body.cgc-home-page .cgc-product-frame__dot:nth-child(2) { background: #48ad72; }
body.cgc-home-page .cgc-product-frame__dot:nth-child(3) { background: #123f2d; }

body.cgc-home-page .cgc-product-frame__label {
	margin-left: auto;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-900, #123f2d);
	opacity: 0.72;
}

body.cgc-home-page .cgc-product-frame__stage {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(255, 253, 248, 0.55);
	background: #0d3423;
}

body.cgc-home-page .cgc-product-frame__stage img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

body.cgc-home-page .cgc-product-frame__badges {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

body.cgc-home-page .cgc-product-frame__badge {
	padding: 7px 11px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	color: #fffdf8;
	background: rgba(8, 35, 24, 0.72);
	border: 1px solid rgba(217, 155, 69, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* —— Free vs PRO compare —— */
body.cgc-home-page .home-pro-compare {
	margin-top: 28px;
}

body.cgc-home-page .home-pro-compare__head {
	margin-bottom: 16px;
	text-align: center;
}

body.cgc-home-page .home-pro-compare__head .section-kicker {
	display: inline-flex;
}

body.cgc-home-page .home-pro-compare__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

body.cgc-home-page .home-plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 22px 22px;
	border-radius: 24px;
	border: 1px solid rgba(18, 63, 45, 0.12);
	background: rgba(255, 253, 248, 0.94);
	box-shadow: 0 18px 48px rgba(18, 63, 45, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.cgc-home-page .home-plan-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 56px rgba(18, 63, 45, 0.12);
}

body.cgc-home-page .home-plan-card--pro {
	border-color: rgba(217, 155, 69, 0.55);
	background:
		linear-gradient(165deg, rgba(18, 63, 45, 0.96), rgba(13, 52, 35, 0.98));
	color: #fffdf8;
	box-shadow: 0 24px 60px rgba(18, 63, 45, 0.22);
}

body.cgc-home-page .home-plan-card__eyebrow {
	display: inline-flex;
	align-self: flex-start;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-900, #123f2d);
	background: rgba(238, 247, 233, 0.95);
	border: 1px solid rgba(18, 63, 45, 0.12);
}

body.cgc-home-page .home-plan-card--pro .home-plan-card__eyebrow {
	color: #082318;
	background: linear-gradient(135deg, #f4c542, #d99b45);
	border-color: transparent;
}

body.cgc-home-page .home-plan-card h3 {
	margin: 0;
	font-family: Outfit, Inter, sans-serif;
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	font-weight: 800;
	color: var(--green-900, #123f2d);
	line-height: 1.2;
}

body.cgc-home-page .home-plan-card--pro h3 {
	color: #fffdf8;
}

body.cgc-home-page .home-plan-card__lead {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--muted, #647164);
}

body.cgc-home-page .home-plan-card--pro .home-plan-card__lead {
	color: rgba(255, 253, 248, 0.86);
}

body.cgc-home-page .home-plan-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	flex: 1 1 auto;
}

body.cgc-home-page .home-plan-card__list li {
	position: relative;
	padding-left: 26px;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.4;
	color: #27342b;
}

body.cgc-home-page .home-plan-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 35% 35%, #48ad72 0 40%, transparent 42%),
		linear-gradient(145deg, #123f2d, #2f7d57);
	box-shadow: 0 0 0 2px rgba(72, 173, 114, 0.25);
}

body.cgc-home-page .home-plan-card--pro .home-plan-card__list li {
	color: rgba(255, 253, 248, 0.92);
}

body.cgc-home-page .home-plan-card--pro .home-plan-card__list li::before {
	background:
		radial-gradient(circle at 35% 35%, #f4c542 0 40%, transparent 42%),
		linear-gradient(145deg, #d99b45, #b87a2e);
	box-shadow: 0 0 0 2px rgba(217, 155, 69, 0.35);
}

body.cgc-home-page .home-plan-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

body.cgc-home-page .home-plan-card--pro .btn-secondary {
	background: rgba(255, 253, 248, 0.12);
	color: #fffdf8;
	border: 1px solid rgba(255, 253, 248, 0.35);
}

@media (max-width: 820px) {
	body.cgc-home-page .home-pro-compare__grid {
		grid-template-columns: 1fr;
	}
}

/* —— Value props (benefits) —— */
body.cgc-home-page .testimonials {
	padding-top: 56px;
	padding-bottom: 40px;
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.3), rgba(238, 247, 233, 0.55));
}

body.cgc-home-page .testimonials .section-sub {
	max-width: 42rem;
	margin-top: 8px;
	color: var(--muted, #647164);
}

body.cgc-home-page .tests-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 22px;
}

body.cgc-home-page .test-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px 20px;
	border-radius: 22px;
	border: 1px solid rgba(18, 63, 45, 0.1);
	background: rgba(255, 253, 248, 0.94);
	box-shadow: 0 16px 40px rgba(18, 63, 45, 0.07);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.cgc-home-page .test-card:hover,
body.cgc-home-page .test-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(217, 155, 69, 0.4);
	box-shadow: 0 22px 48px rgba(18, 63, 45, 0.11);
}

body.cgc-home-page .test-card .stars {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 0;
	color: var(--green-900, #123f2d);
	background: linear-gradient(145deg, rgba(72, 173, 114, 0.2), rgba(217, 155, 69, 0.16));
	border: 1px solid rgba(18, 63, 45, 0.1);
}

body.cgc-home-page .test-card .stars .icon {
	width: 20px;
	height: 20px;
}

body.cgc-home-page .test-card blockquote {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	font-weight: 650;
	color: #27342b;
}

body.cgc-home-page .test-card .autor-data strong {
	display: block;
	font-family: Outfit, Inter, sans-serif;
	color: var(--green-900, #123f2d);
}

body.cgc-home-page .test-card .autor-data span {
	color: var(--muted, #647164);
	font-size: 0.82rem;
}

body.cgc-home-page .home-value-note {
	margin: 18px 0 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--muted, #647164);
	text-align: center;
}

@media (max-width: 820px) {
	body.cgc-home-page .tests-grid {
		grid-template-columns: 1fr;
	}
}

/* —— FAQ —— */
body.cgc-home-page .home-faq {
	padding: 48px 0 28px;
	background:
		linear-gradient(180deg, rgba(13, 52, 35, 0.04), rgba(255, 253, 248, 0.5));
}

body.cgc-home-page .home-faq__shell {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 28px;
	align-items: start;
	padding: 28px;
	border-radius: 28px;
	border: 1px solid rgba(18, 63, 45, 0.1);
	background:
		linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(238, 247, 233, 0.78));
	box-shadow: 0 22px 56px rgba(18, 63, 45, 0.08);
}

body.cgc-home-page .home-faq__intro .section-title {
	margin-bottom: 10px;
}

body.cgc-home-page .home-faq__intro .section-sub {
	margin-bottom: 18px;
}

body.cgc-home-page .home-faq__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

body.cgc-home-page .home-faq__list {
	display: grid;
	gap: 10px;
}

body.cgc-home-page .home-faq__item {
	border-radius: 16px;
	border: 1px solid rgba(18, 63, 45, 0.12);
	background: rgba(255, 253, 248, 0.92);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cgc-home-page .home-faq__item[open] {
	border-color: rgba(217, 155, 69, 0.5);
	box-shadow: 0 12px 28px rgba(18, 63, 45, 0.08);
}

body.cgc-home-page .home-faq__item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	font-family: Outfit, Inter, sans-serif;
	font-size: 0.98rem;
	font-weight: 800;
	color: var(--green-900, #123f2d);
	line-height: 1.35;
}

body.cgc-home-page .home-faq__item summary::-webkit-details-marker {
	display: none;
}

body.cgc-home-page .home-faq__item summary::after {
	content: "+";
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--green-900, #123f2d);
	background: rgba(238, 247, 233, 0.95);
	border: 1px solid rgba(18, 63, 45, 0.12);
	transition: transform 0.2s ease, background 0.2s ease;
}

body.cgc-home-page .home-faq__item[open] summary::after {
	content: "–";
	background: rgba(217, 155, 69, 0.22);
	border-color: rgba(217, 155, 69, 0.45);
}

body.cgc-home-page .home-faq__item summary:focus-visible {
	outline: 2px solid rgba(217, 155, 69, 0.7);
	outline-offset: 2px;
}

body.cgc-home-page .home-faq__item p {
	margin: 0;
	padding: 0 16px 16px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #3a463d;
}

@media (max-width: 900px) {
	body.cgc-home-page .home-faq__shell {
		grid-template-columns: 1fr;
		padding: 20px;
	}
}

/* —— Section rhythm polish —— */
body.cgc-home-page .quick-start {
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.4), rgba(244, 241, 232, 0.55));
}

body.cgc-home-page .recommended {
	background: linear-gradient(180deg, rgba(238, 247, 233, 0.35), rgba(255, 253, 248, 0.2));
}

body.cgc-home-page #herramientas {
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.5), rgba(238, 247, 233, 0.4));
}

body.cgc-home-page .newsletter-section {
	padding-top: 36px;
}

body.cgc-home-page .lead-inner {
	border: 1px solid rgba(217, 155, 69, 0.28);
	box-shadow: 0 24px 60px rgba(18, 63, 45, 0.1);
}

/* —— Motion —— */
body.cgc-home-page .reveal-delay-4 { transition-delay: 0.32s; }
body.cgc-home-page .reveal-delay-5 { transition-delay: 0.4s; }

body.cgc-home-page .quick-card,
body.cgc-home-page .recommend-card,
body.cgc-home-page .home-calc-card,
body.cgc-home-page .article-card,
body.cgc-home-page .home-plan-card,
body.cgc-home-page .test-card {
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease,
		background 0.22s ease;
}

body.cgc-home-page .quick-card:focus-visible,
body.cgc-home-page .recommend-card:focus-visible,
body.cgc-home-page .home-calc-card:focus-visible,
body.cgc-home-page .article-card:focus-visible,
body.cgc-home-page a.btn:focus-visible {
	outline: 2px solid rgba(217, 155, 69, 0.75);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	body.cgc-home-page .reveal,
	body.cgc-home-page .reveal-delay-1,
	body.cgc-home-page .reveal-delay-2,
	body.cgc-home-page .reveal-delay-3,
	body.cgc-home-page .reveal-delay-4,
	body.cgc-home-page .reveal-delay-5 {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	body.cgc-home-page .home-trust__item,
	body.cgc-home-page .home-plan-card,
	body.cgc-home-page .test-card,
	body.cgc-home-page .quick-card,
	body.cgc-home-page .recommend-card {
		transition: none !important;
	}

	body.cgc-home-page .home-trust__item:hover,
	body.cgc-home-page .home-plan-card:hover,
	body.cgc-home-page .test-card:hover {
		transform: none !important;
	}
}

/* Dark theme */
html[data-theme="dark"] body.cgc-home-page .home-trust__item,
html[data-theme="dark"] body.cgc-home-page .test-card,
html[data-theme="dark"] body.cgc-home-page .home-plan-card:not(.home-plan-card--pro),
html[data-theme="dark"] body.cgc-home-page .home-faq__item,
html[data-theme="dark"] body.cgc-home-page .home-faq__shell {
	background: rgba(26, 69, 52, 0.72);
	border-color: rgba(238, 247, 233, 0.12);
	color: #eef7e9;
}

html[data-theme="dark"] body.cgc-home-page .home-trust__item strong,
html[data-theme="dark"] body.cgc-home-page .test-card .autor-data strong,
html[data-theme="dark"] body.cgc-home-page .home-plan-card:not(.home-plan-card--pro) h3,
html[data-theme="dark"] body.cgc-home-page .home-faq__item summary,
html[data-theme="dark"] body.cgc-home-page .test-card blockquote,
html[data-theme="dark"] body.cgc-home-page .home-plan-card__list li {
	color: #eef7e9;
}

html[data-theme="dark"] body.cgc-home-page .home-trust__item > span:last-child > span,
html[data-theme="dark"] body.cgc-home-page .home-plan-card__lead,
html[data-theme="dark"] body.cgc-home-page .home-faq__item p,
html[data-theme="dark"] body.cgc-home-page .test-card .autor-data span {
	color: #c2d7ca;
}

/* —— Hero / footer micro-polish —— */
body.cgc-home-page .hero-pill {
	border: 1px solid rgba(217, 155, 69, 0.35);
	box-shadow: 0 10px 28px rgba(18, 63, 45, 0.12);
}

body.cgc-home-page .hero-metrics .metric {
	border: 1px solid rgba(217, 155, 69, 0.18);
}

body.cgc-home-page .cgc-premium-footer {
	border-top: 1px solid rgba(217, 155, 69, 0.22);
}

/* —— Mini-calc (IMC / calorías / agua) —— */
body.cgc-home-page .home-mini-calc {
	padding: 28px 0 12px;
	background:
		radial-gradient(circle at 12% 0%, rgba(72, 173, 114, 0.14), transparent 28rem),
		linear-gradient(180deg, rgba(255, 253, 248, 0.2), rgba(238, 247, 233, 0.55));
}

body.cgc-home-page .home-mini-calc__shell {
	padding: clamp(22px, 3vw, 34px);
	border-radius: 28px;
	border: 1px solid rgba(18, 63, 45, 0.12);
	background:
		linear-gradient(145deg, rgba(255, 253, 248, 0.97), rgba(238, 247, 233, 0.82));
	box-shadow: 0 24px 60px rgba(18, 63, 45, 0.1);
}

body.cgc-home-page .home-mini-calc__intro {
	max-width: 40rem;
	margin-bottom: 18px;
}

body.cgc-home-page .home-mini-calc__tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 6px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(18, 63, 45, 0.06);
	border: 1px solid rgba(18, 63, 45, 0.08);
}

body.cgc-home-page .home-mini-calc__tab {
	min-height: 40px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: Outfit, Inter, sans-serif;
	font-weight: 800;
	font-size: 0.9rem;
	color: var(--green-900, #123f2d);
	background: transparent;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body.cgc-home-page .home-mini-calc__tab:hover {
	background: rgba(255, 253, 248, 0.7);
}

body.cgc-home-page .home-mini-calc__tab.is-active {
	background: var(--green-900, #123f2d);
	color: #fffdf8;
	border-color: rgba(217, 155, 69, 0.35);
	box-shadow: 0 10px 24px rgba(18, 63, 45, 0.18);
}

body.cgc-home-page .home-mini-calc__tab:focus-visible {
	outline: 2px solid rgba(217, 155, 69, 0.75);
	outline-offset: 2px;
}

body.cgc-home-page .home-mini-calc__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 18px;
	align-items: stretch;
}

body.cgc-home-page .home-mini-calc__form {
	display: grid;
	gap: 14px;
}

body.cgc-home-page .home-mini-calc__fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

body.cgc-home-page .home-mini-calc__fields--tdee {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.cgc-home-page .home-mini-calc__span-2 {
	grid-column: 1 / -1;
}

body.cgc-home-page .home-mini-calc__form label {
	display: grid;
	gap: 6px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--muted, #647164);
}

body.cgc-home-page .home-mini-calc__form input,
body.cgc-home-page .home-mini-calc__form select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(18, 63, 45, 0.14);
	background: rgba(255, 253, 248, 0.95);
	color: var(--ink, #152018);
	font-weight: 700;
	font-size: 0.95rem;
}

body.cgc-home-page .home-mini-calc__form input:focus,
body.cgc-home-page .home-mini-calc__form select:focus {
	outline: 2px solid rgba(217, 155, 69, 0.55);
	outline-offset: 1px;
	border-color: rgba(217, 155, 69, 0.55);
}

body.cgc-home-page .home-mini-calc__form .btn {
	justify-self: start;
	min-width: 180px;
}

body.cgc-home-page .home-mini-calc__result {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 18px;
	border-radius: 22px;
	border: 1px solid rgba(217, 155, 69, 0.35);
	background:
		linear-gradient(160deg, rgba(18, 63, 45, 0.96), rgba(13, 52, 35, 0.98));
	color: #fffdf8;
	box-shadow: 0 18px 44px rgba(18, 63, 45, 0.2);
	min-height: 100%;
}

body.cgc-home-page .home-mini-calc__result-kicker {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244, 197, 66, 0.95);
}

body.cgc-home-page .home-mini-calc__result-empty {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.5;
	color: rgba(255, 253, 248, 0.82);
}

body.cgc-home-page .home-mini-calc__result-label {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 253, 248, 0.82);
}

body.cgc-home-page .home-mini-calc__result-value {
	margin: 0;
	font-family: Outfit, Inter, sans-serif;
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

body.cgc-home-page .home-mini-calc__result-value span {
	font-size: 0.95rem;
	font-weight: 700;
	opacity: 0.85;
}

body.cgc-home-page .home-mini-calc__result-line {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
}

body.cgc-home-page .home-mini-calc__result-line--muted {
	color: rgba(255, 253, 248, 0.78);
	font-size: 0.85rem;
}

body.cgc-home-page .home-mini-calc__result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

body.cgc-home-page .home-mini-calc__result .btn-primary {
	background: linear-gradient(135deg, #f4c542, #d99b45);
	color: #082318;
	border: 0;
}

body.cgc-home-page .home-mini-calc__result .btn-secondary {
	background: rgba(255, 253, 248, 0.12);
	color: #fffdf8;
	border: 1px solid rgba(255, 253, 248, 0.35);
}

body.cgc-home-page .home-mini-calc__legal {
	margin: auto 0 0;
	padding-top: 8px;
	font-size: 0.75rem;
	line-height: 1.4;
	color: rgba(255, 253, 248, 0.62);
}

body.cgc-home-page .home-mini-calc__result-body.is-pop {
	animation: cgcMiniPop 0.35s ease;
}

@keyframes cgcMiniPop {
	from { opacity: 0.4; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
	body.cgc-home-page .home-mini-calc__grid {
		grid-template-columns: 1fr;
	}

	body.cgc-home-page .home-mini-calc__fields,
	body.cgc-home-page .home-mini-calc__fields--tdee {
		grid-template-columns: 1fr 1fr;
	}

	body.cgc-home-page .home-mini-calc__form .btn {
		width: 100%;
		justify-self: stretch;
	}
}

@media (max-width: 560px) {
	body.cgc-home-page .home-mini-calc__fields,
	body.cgc-home-page .home-mini-calc__fields--tdee {
		grid-template-columns: 1fr;
	}

	body.cgc-home-page .home-mini-calc__tabs {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		border-radius: 16px;
	}

	body.cgc-home-page .home-mini-calc__tab {
		text-align: center;
		padding: 8px 6px;
		font-size: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.cgc-home-page .home-mini-calc__result-body.is-pop {
		animation: none;
	}
}
