/*
 * Landing page "Poznaj Multi Clean" — styles scoped under #mc-landing so
 * they never leak into the shared site header/footer/other pages.
 */

#mc-landing {
	--mc-blue: #019fe3;
	--mc-blue-dark: #0180b8;
	--mc-green: #95c11f;
	--mc-green-dark: #7aa018;
	--mc-dark: #3d3d3d;
	--mc-text: #616161;
	--mc-text-light: #706f6f;
	--mc-text-lighter: #a0a0a0;
	--mc-bg: #f5f5f7;
	--mc-border: #ececec;
	--mc-shadow: rgba(164, 162, 162, 0.24) 0px 10px 16px 0px;
	--mc-shadow-hover: rgba(164, 162, 162, 0.4) 0px 16px 32px 0px;

	font-family: 'Barlow', sans-serif;
	color: var(--mc-text);
	font-size: 16px;
	line-height: 24px;
	-webkit-font-smoothing: antialiased;
}

#mc-landing * {
	box-sizing: border-box;
}

#mc-landing h1,
#mc-landing h2,
#mc-landing h3,
#mc-landing p {
	margin: 0;
}

#mc-landing img {
	max-width: 100%;
	display: block;
}

#mc-landing .mc-container {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

#mc-landing .mc-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

#mc-landing .mc-section-heading {
	color: var(--mc-text);
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 8px;
}

#mc-landing .mc-section-heading::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: var(--mc-blue);
	margin-top: 12px;
	border-radius: 9999px;
}

#mc-landing .mc-lead {
	color: var(--mc-text-light);
	font-size: 16px;
	line-height: 24px;
	margin-top: 24px;
}

/* Buttons */

#mc-landing .mc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 9999px;
	background-color: var(--mc-blue);
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	transition: background-color 0.2s ease, transform 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	border: none;
}
#mc-landing .mc-btn:hover {
	background-color: var(--mc-blue-dark);
	transform: translateY(-1px);
	color: #ffffff;
}

#mc-landing .mc-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 30px;
	border-radius: 9999px;
	background-color: transparent;
	color: var(--mc-blue);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	border: 2px solid var(--mc-blue);
}
#mc-landing .mc-btn-outline:hover {
	background-color: rgba(1, 159, 227, 0.1);
}

#mc-landing .mc-btn-white {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 9999px;
	background-color: #ffffff;
	color: var(--mc-blue);
	font-weight: 600;
	font-size: 16px;
	transition: background-color 0.2s ease;
	text-decoration: none;
}
#mc-landing .mc-btn-white:hover {
	background-color: var(--mc-bg);
}

#mc-landing .mc-btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 9999px;
	background-color: transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	transition: background-color 0.2s ease;
	text-decoration: none;
}
#mc-landing .mc-btn-ghost:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Cards */

#mc-landing .mc-card {
	background: #ffffff;
	border-radius: 0px 30px;
	box-shadow: var(--mc-shadow);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#mc-landing .mc-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mc-shadow-hover);
}

/* Scroll reveal */

#mc-landing .mc-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
#mc-landing .mc-reveal.mc-visible {
	opacity: 1;
	transform: translateY(0);
}

#mc-landing .mc-bottle-float {
	animation: mc-float 4s ease-in-out infinite;
}
@keyframes mc-float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
}
@keyframes mc-bar-fill {
	from { width: 0%; }
	to { width: 100%; }
}

/* ===== Hero ===== */

#mc-landing .mc-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--mc-bg);
	min-height: 70vh;
	padding-top: 8px;
	display: flex;
	align-items: center;
}
#mc-landing .mc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.35;
}
#mc-landing .mc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(245,245,247,1) 40%, rgba(245,245,247,0.5) 70%, rgba(245,245,247,0.2) 100%);
}
#mc-landing .mc-hero__inner {
	position: relative;
	z-index: 10;
	width: 100%;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
#mc-landing .mc-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
#mc-landing .mc-hero__badge {
	display: inline-block;
	margin-bottom: 1.5rem;
	background: rgba(1, 159, 227, 0.9);
	border-radius: 0px 30px;
	padding: 32px 36px;
	color: #ffffff;
}
#mc-landing .mc-hero__badge-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
#mc-landing .mc-hero__badge-row span:first-child {
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.02em;
}
#mc-landing .mc-hero__badge-row span:nth-child(2) {
	color: rgba(255,255,255,0.6);
	font-weight: 300;
	font-size: 20px;
}
#mc-landing .mc-hero__badge-row span:nth-child(3) {
	color: rgba(255,255,255,0.8);
	font-weight: 600;
	font-size: 20px;
}
#mc-landing .mc-hero__badge h1 {
	color: #ffffff;
	font-weight: 600;
	line-height: 36px;
	font-size: 28px;
}
#mc-landing .mc-hero p {
	color: var(--mc-text);
	line-height: 1.6;
	max-width: 440px;
	margin-bottom: 12px;
}
#mc-landing .mc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}
#mc-landing .mc-hero__note {
	color: var(--mc-text-lighter);
	font-size: 12px;
	margin-top: 1rem;
}
#mc-landing .mc-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 420px;
}
#mc-landing .mc-hero__bottle {
	position: relative;
	width: 260px;
	height: 100%;
	filter: drop-shadow(0 20px 40px rgba(149,193,31,0.4));
}
#mc-landing .mc-hero__bottle img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#mc-landing .mc-rings {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
#mc-landing .mc-rings span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid transparent;
	border-radius: 9999px;
}

/* ===== Applications ===== */

#mc-landing .mc-apps-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
#mc-landing .mc-app-card {
	background: #ffffff;
	border-radius: 0px 20px;
	padding: 24px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#mc-landing .mc-app-card:hover {
	transform: translateY(-4px);
	box-shadow: rgba(1, 159, 227, 0.2) 0px 8px 24px 0px;
}
#mc-landing .mc-app-icon {
	width: 64px;
	height: 64px;
	border-radius: 9999px;
	background-color: rgba(149, 193, 31, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mc-green);
}
#mc-landing .mc-app-icon svg {
	width: 32px;
	height: 32px;
}
#mc-landing .mc-app-card span {
	font-size: 12px;
	font-weight: 600;
	color: var(--mc-text);
	line-height: 1.3;
	white-space: pre-line;
}
#mc-landing .mc-apps-footer {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	background-color: var(--mc-bg);
	border-radius: 0px 20px;
}
#mc-landing .mc-apps-footer p:first-child {
	font-weight: 600;
	font-size: 18px;
	color: var(--mc-text);
}
#mc-landing .mc-apps-footer p:last-child {
	font-size: 14px;
	color: var(--mc-text-light);
	margin-top: 4px;
}

/* ===== Benefits ===== */

#mc-landing .mc-benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
#mc-landing .mc-benefit-card {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#mc-landing .mc-benefit-icon {
	width: 168px;
	height: 168px;
	border-radius: 9999px;
	background-color: rgba(149, 193, 31, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: auto;
	margin-right: auto;
}
#mc-landing .mc-benefit-icon img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}
#mc-landing .mc-benefit-card h3 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin-bottom: 8px;
	text-transform: uppercase;
	color: var(--mc-text);
}
#mc-landing .mc-benefit-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--mc-text-light);
}

/* ===== Efficiency ===== */

#mc-landing .mc-efficiency {
	position: relative;
	overflow: hidden;
	background-color: var(--mc-bg);
}
#mc-landing .mc-efficiency__grid {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
#mc-landing .mc-stats {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
#mc-landing .mc-stat {
	padding: 1rem;
	background-color: #ffffff;
	border-radius: 0px 16px;
	box-shadow: var(--mc-shadow);
}
#mc-landing .mc-stat-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--mc-green);
	margin-bottom: 4px;
}
#mc-landing .mc-stat-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--mc-text);
}
#mc-landing .mc-stat-sub {
	font-size: 12px;
	color: var(--mc-text-lighter);
	margin-top: 4px;
}
#mc-landing .mc-conversion {
	width: 100%;
	padding: 2rem;
	text-align: center;
	background-color: #ffffff;
	border-radius: 0px 30px;
	box-shadow: var(--mc-shadow);
}
#mc-landing .mc-conversion__pill {
	display: inline-block;
	padding: 12px 24px;
	font-weight: 700;
	font-size: 20px;
	color: var(--mc-text);
	background-color: rgba(149, 193, 31, 0.1);
	border-radius: 9999px;
	margin-bottom: 1rem;
}
#mc-landing .mc-conversion__arrow {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}
#mc-landing .mc-conversion__count {
	font-weight: 700;
	line-height: 1;
	font-size: clamp(3rem, 8vw, 5rem);
	color: var(--mc-green);
}
#mc-landing .mc-conversion__count-label {
	font-size: 18px;
	font-weight: 600;
	margin-top: 8px;
	color: var(--mc-text);
}
#mc-landing .mc-progress {
	margin-top: 1.5rem;
}
#mc-landing .mc-progress__labels {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--mc-text-lighter);
	margin-bottom: 8px;
}
#mc-landing .mc-progress__track {
	height: 8px;
	border-radius: 9999px;
	overflow: hidden;
	background-color: var(--mc-bg);
}
#mc-landing .mc-progress__fill {
	height: 100%;
	width: 0%;
	background-color: var(--mc-green);
	border-radius: 9999px;
}
#mc-landing .mc-progress__fill.mc-visible {
	animation: mc-bar-fill 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#mc-landing .mc-conversion__footnote {
	font-size: 12px;
	color: var(--mc-text-lighter);
	margin-top: 1rem;
}

/* ===== Video ===== */

#mc-landing .mc-video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
#mc-landing .mc-video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 0px 30px;
	box-shadow: var(--mc-shadow);
}
#mc-landing .mc-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ===== Variants ===== */

#mc-landing .mc-variants {
	position: relative;
	overflow: hidden;
}
#mc-landing .mc-variants__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.08;
	pointer-events: none;
}
#mc-landing .mc-variants__inner {
	position: relative;
	z-index: 10;
}
#mc-landing .mc-variants-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
#mc-landing .mc-variant-card {
	display: flex;
	flex-direction: column;
}
#mc-landing .mc-variant-card__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem 1rem;
	min-height: 320px;
	background-color: var(--mc-bg);
	border-radius: 0px 30px 0px 0px;
}
#mc-landing .mc-variant-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background-color: var(--mc-green);
}
#mc-landing .mc-variant-card__bottle {
	position: relative;
	width: 170px;
	height: 260px;
	filter: drop-shadow(0 8px 24px rgba(149,193,31,0.35));
}
#mc-landing .mc-variant-card__bottle img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#mc-landing .mc-variant-card__body {
	padding: 1rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
#mc-landing .mc-variant-card__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
#mc-landing .mc-variant-card__title-row span:first-child {
	font-size: 18px;
	font-weight: 700;
	color: var(--mc-text);
}
#mc-landing .mc-variant-card__volume {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	color: #ffffff;
	background-color: var(--mc-blue);
	border-radius: 9999px;
}
#mc-landing .mc-variant-card__desc {
	font-size: 14px;
	color: var(--mc-text-light);
	margin-bottom: 4px;
}
#mc-landing .mc-variant-card__ktm {
	font-size: 12px;
	color: var(--mc-text-lighter);
	margin-bottom: 20px;
}
#mc-landing .mc-variant-card__body .mc-btn {
	margin-top: auto;
}

/* ===== CTA banner ===== */

#mc-landing .mc-cta {
	position: relative;
	overflow: hidden;
	background-color: var(--mc-blue);
}
#mc-landing .mc-cta__inner {
	position: relative;
	z-index: 10;
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}
#mc-landing .mc-cta__eyebrow {
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	background-color: rgba(255,255,255,0.2);
	border-radius: 9999px;
	margin-bottom: 1rem;
}
#mc-landing .mc-cta h2 {
	color: #ffffff;
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	margin-bottom: 1rem;
}
#mc-landing .mc-cta p {
	color: rgba(255,255,255,0.85);
	font-size: 16px;
	margin-bottom: 2rem;
}
#mc-landing .mc-cta__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
#mc-landing .mc-cta__footnote {
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	margin-top: 1.5rem;
}

/* ===== Responsive ===== */

@media (min-width: 640px) {
	#mc-landing .mc-apps-grid { grid-template-columns: repeat(4, 1fr); }
	#mc-landing .mc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
	#mc-landing .mc-variants-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	#mc-landing .mc-hero__grid,
	#mc-landing .mc-efficiency__grid { grid-template-columns: repeat(2, 1fr); }
	#mc-landing .mc-video-grid { grid-template-columns: repeat(3, 1fr); }
	#mc-landing .mc-video-grid > .mc-video-frame-col { grid-column: span 2 / span 2; }
	#mc-landing .mc-apps-grid { grid-template-columns: repeat(7, 1fr); }
	#mc-landing .mc-benefits-grid { grid-template-columns: repeat(4, 1fr); }
	#mc-landing .mc-decor-rings { display: block; }
}

#mc-landing .mc-decor-rings {
	display: none;
}

/* ===== Custom header (replaces the site header on this landing page) ===== */

#mc-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background-color: #ffffff;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
	font-family: 'Barlow', sans-serif;
}
#mc-header.mc-scrolled {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	border-bottom-color: #ececec;
}
#mc-header .mc-header__inner {
	max-width: 72rem;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#mc-header .mc-header__logo {
	display: flex;
	align-items: center;
}
#mc-header .mc-header__nav {
	display: none;
	align-items: center;
	gap: 2rem;
}
#mc-header .mc-header__nav a {
	font-size: 14px;
	font-weight: 500;
	color: #706f6f;
	text-decoration: none;
	transition: color 0.2s ease;
}
#mc-header .mc-header__nav a:hover {
	color: #019fe3;
}
#mc-header .mc-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
#mc-header .mc-header__cta {
	display: none;
	padding: 10px 24px;
	font-size: 14px;
}
#mc-header .mc-header__burger {
	display: inline-flex;
	background: none;
	border: none;
	padding: 8px;
	color: #706f6f;
	cursor: pointer;
}
#mc-header .mc-header__burger svg {
	width: 20px;
	height: 20px;
}
#mc-header .mc-header__mobile {
	display: none;
	flex-direction: column;
	gap: 12px;
	background: #ffffff;
	border-top: 1px solid #ececec;
	padding: 1rem 1.5rem;
}
#mc-header .mc-header__mobile.mc-open {
	display: flex;
}
#mc-header .mc-header__mobile a {
	font-size: 16px;
	font-weight: 500;
	color: #616161;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid #f5f5f7;
}
#mc-header .mc-header__mobile a:last-of-type {
	border-bottom: none;
}

@media (min-width: 768px) {
	#mc-header .mc-header__nav { display: flex; }
	#mc-header .mc-header__cta { display: inline-flex; }
	#mc-header .mc-header__burger { display: none; }
}

/* Fixed header spacer so hero content isn't hidden underneath it. */
#mc-landing {
	padding-top: 76px;
}

/* ===== Custom footer (replaces the site footer on this landing page) ===== */

#mc-footer {
	background-color: #3d3d3d;
	color: #ffffff;
	font-family: 'Barlow', sans-serif;
}
#mc-footer .mc-footer__main {
	max-width: 72rem;
	margin: 0 auto;
	padding: 3rem 1.5rem;
}
#mc-footer .mc-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
#mc-footer .mc-footer__logo {
	margin-bottom: 1rem;
	height: 50px;
	width: auto;
	object-fit: contain;
}
#mc-footer .mc-footer__blurb {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,0.7);
	margin: 0;
}
#mc-footer .mc-footer__socials {
	display: flex;
	gap: 12px;
	margin-top: 1rem;
}
#mc-footer .mc-footer__socials a {
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255,255,255,0.1);
	transition: background-color 0.2s ease;
}
#mc-footer .mc-footer__socials a:hover {
	background-color: #95c11f;
}
#mc-footer .mc-footer__socials svg {
	width: 16px;
	height: 16px;
	color: #ffffff;
}
#mc-footer h4 {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #95c11f;
	margin: 0 0 1rem;
}
#mc-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#mc-footer ul a {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}
#mc-footer ul a:hover {
	color: #95c11f;
}
#mc-footer .mc-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}
#mc-footer .mc-footer__contact p {
	margin: 0;
}
#mc-footer .mc-footer__contact a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}
#mc-footer .mc-footer__contact a:hover {
	color: #95c11f;
}
#mc-footer .mc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
}
#mc-footer .mc-footer__bottom-inner {
	max-width: 72rem;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
#mc-footer .mc-footer__bottom-inner p {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	margin: 0;
}
#mc-footer .mc-footer__bottom-inner a {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}
#mc-footer .mc-footer__bottom-inner a:hover {
	color: #95c11f;
}

@media (min-width: 640px) {
	#mc-footer .mc-footer__grid { grid-template-columns: repeat(3, 1fr); }
	#mc-footer .mc-footer__bottom-inner { flex-direction: row; }
}
