/*
Theme Name: Con Me Nuovo + Aspetto Con Me
Theme URI: https://www.finalmentelunedi.it/
Author: Finalmente è Lunedì
Author URI: https://www.finalmentelunedi.it/
Description: Tema WordPress Con Me con pagine Benefit, form richieste e foglio CSS separato facilmente editabile per personalizzare l’aspetto.
Version: 2.5.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: con-me-theme
Tags: custom-logo, custom-menu, featured-images, block-styles, wide-blocks, accessibility-ready
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--cm-navy: #062b57;
	--cm-blue: #07517a;
	--cm-green: #35a52c;
	--cm-green-2: #64b82f;
	--cm-mint: #eaf7ec;
	--cm-sky: #eef8fc;
	--cm-bg: #f7fafc;
	--cm-white: #fff;
	--cm-text: #162d43;
	--cm-muted: #657684;
	--cm-line: #dfe8ee;
	--cm-shadow: 0 16px 45px rgba(6, 43, 87, .08);
	--cm-shadow-hover: 0 22px 55px rgba(6, 43, 87, .14);
	--cm-radius: 22px;
	--cm-container: 1420px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--cm-text);
	background: #fff;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
a { color: var(--cm-blue); text-decoration: none; }
a:hover { color: var(--cm-green); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, h5, h6 { color: var(--cm-navy); line-height: 1.15; }
.site-container { width: min(var(--cm-container), calc(100% - 40px)); margin-inline: auto; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
	top: 8px; left: 8px; z-index: 100000; width: auto; height: auto; padding: 12px 18px;
	clip: auto !important; background: #fff; color: var(--cm-navy); box-shadow: var(--cm-shadow);
}
:focus-visible { outline: 3px solid rgba(53, 165, 44, .45); outline-offset: 3px; }

/* Header and navigation */
.site-header {
	position: sticky; top: 0; z-index: 1000;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid #edf1f4;
}
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-branding { display: flex; align-items: center; gap: 18px; min-width: max-content; }
.custom-logo { width: auto; max-height: 56px; }
.cm-brand-fallback { display: inline-flex; align-items: center; gap: 11px; color: var(--cm-navy); }
.cm-brand-fallback:hover { color: var(--cm-navy); }
.cm-brand-mark { width: 56px; height: 38px; position: relative; flex: 0 0 auto; }
.cm-brand-mark::before, .cm-brand-mark::after {
	content: ""; position: absolute; top: 4px; width: 30px; height: 30px;
	border: 7px solid var(--cm-blue); border-radius: 50%; transform: rotate(35deg);
}
.cm-brand-mark::before { left: 2px; }
.cm-brand-mark::after { right: 2px; border-color: var(--cm-green-2); }
.cm-brand-name { font-size: 34px; font-weight: 800; letter-spacing: -1.4px; }
.cm-brand-name b { color: var(--cm-green); }
.site-tagline { font-size: 13px; color: var(--cm-navy); white-space: nowrap; }
.primary-nav { display: flex; align-items: center; }
.primary-nav ul { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px); padding: 0; margin: 0; list-style: none; }
.primary-nav li { position: relative; }
.primary-nav a { display: block; padding: 14px 0; color: #08192d; font-size: 14px; font-weight: 650; }
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current-menu-ancestor > a { color: var(--cm-green); }
.primary-nav .sub-menu {
	position: absolute; top: calc(100% - 4px); left: -18px; min-width: 230px; display: block;
	padding: 10px; visibility: hidden; opacity: 0; transform: translateY(8px);
	background: #fff; border: 1px solid var(--cm-line); border-radius: 12px; box-shadow: var(--cm-shadow);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.primary-nav .sub-menu a { padding: 9px 10px; border-radius: 7px; }
.primary-nav .sub-menu a:hover { background: var(--cm-mint); }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cm-button, .wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 13px 22px; border: 1px solid var(--cm-green); border-radius: 9px;
	font-weight: 750; line-height: 1.2; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cm-button:hover, .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6, 43, 87, .12); }
.cm-button-outline { background: #fff; color: var(--cm-navy); }
.cm-button-primary, .wp-block-button__link { background: linear-gradient(90deg, #278f25, #58ad2e); color: #fff; }
.cm-button-primary:hover, .wp-block-button__link:hover { color: #fff; }
.cm-button-light { color: var(--cm-navy); background: #fff; border-color: #fff; }
.menu-toggle { display: none; align-items: center; gap: 10px; border: 1px solid var(--cm-line); background: #fff; border-radius: 9px; padding: 10px 13px; color: var(--cm-navy); font-weight: 700; }
.menu-toggle-icon, .menu-toggle-icon::before, .menu-toggle-icon::after { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-toggle-icon { position: relative; }
.menu-toggle-icon::before, .menu-toggle-icon::after { content: ""; position: absolute; left: 0; }
.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.cm-hero {
	position: relative; overflow: hidden; padding: 62px 0 38px;
	background: radial-gradient(circle at 70% 38%, rgba(72, 181, 94, .12), transparent 27%), linear-gradient(180deg, #f6fbfe 0%, #fff 88%);
}
.cm-hero::after {
	content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 190px; opacity: .18;
	background: linear-gradient(180deg, transparent, #88c595);
	clip-path: polygon(0 82%, 8% 66%, 15% 74%, 24% 50%, 31% 68%, 39% 43%, 48% 65%, 56% 47%, 64% 70%, 74% 44%, 82% 64%, 90% 46%, 100% 62%, 100% 100%, 0 100%);
}
.cm-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr .72fr; align-items: center; gap: 44px; }
.cm-eyebrow, .cm-kicker { margin: 0 0 10px; color: var(--cm-green); font-size: 14px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.cm-eyebrow { font-size: 21px; letter-spacing: -.02em; text-transform: none; }
.cm-hero h1 { max-width: 760px; margin: 0 0 24px; color: var(--cm-navy); font-size: clamp(46px, 5vw, 78px); line-height: 1.02; letter-spacing: -3px; }
.cm-hero-copy > p:not(.cm-eyebrow) { max-width: 690px; color: #263947; font-size: 19px; }
.cm-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cm-orbit {
	position: relative; display: grid; place-items: center; aspect-ratio: 1; border: 18px solid rgba(105, 184, 50, .16); border-radius: 50%;
	background: radial-gradient(circle, #fff 0 46%, rgba(45, 165, 78, .06) 47% 100%);
}
.cm-phone { width: 44%; height: 70%; display: grid; place-items: center; border: 8px solid #101419; border-radius: 34px; background: #fff; box-shadow: 0 18px 40px rgba(0, 0, 0, .22); text-align: center; }
.cm-phone .cm-brand-name { font-size: 24px; }
.cm-phone small { color: var(--cm-muted); }
.cm-orbit-item {
	position: absolute; width: 72px; height: 72px; display: grid; place-items: center; border: 6px solid #fff; border-radius: 50%;
	background: linear-gradient(145deg, var(--cm-green-2), #20a294); box-shadow: 0 8px 20px rgba(6, 43, 87, .12); color: #fff; font-size: 28px;
}
.cm-orbit-item:nth-of-type(2) { top: -2%; left: 43%; }
.cm-orbit-item:nth-of-type(3) { top: 16%; right: -3%; }
.cm-orbit-item:nth-of-type(4) { right: 1%; bottom: 11%; }
.cm-orbit-item:nth-of-type(5) { bottom: -3%; left: 43%; }
.cm-orbit-item:nth-of-type(6) { bottom: 14%; left: -4%; }
.cm-orbit-item:nth-of-type(7) { top: 18%; left: -5%; }
.cm-benefit-card { padding: 24px; border: 1px solid #edf1f4; border-radius: 20px; background: rgba(255, 255, 255, .92); box-shadow: var(--cm-shadow); }
.cm-benefit-group + .cm-benefit-group { margin-top: 20px; padding-top: 20px; border-top: 1px solid #bfe2bf; }
.cm-benefit-group h2 { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; color: var(--cm-navy); font-size: 16px; }
.cm-benefit-group ul { padding: 0; margin: 0; list-style: none; }
.cm-benefit-group li { position: relative; padding-left: 23px; margin: 9px 0; font-size: 13px; }
.cm-benefit-group li::before { content: "✓"; position: absolute; left: 0; color: var(--cm-green); font-weight: 900; }
.cm-value-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); padding: 22px 30px; margin-top: 18px; border: 1px solid var(--cm-line); border-radius: 25px; background: #fff; box-shadow: var(--cm-shadow); }
.cm-value-item { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center; padding: 0 18px; }
.cm-value-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 2px solid var(--cm-green); border-radius: 50%; color: var(--cm-green); font-size: 24px; }
.cm-value-item b, .cm-value-item span { display: block; }
.cm-value-item b { color: var(--cm-navy); font-size: 13px; text-transform: uppercase; }
.cm-value-item span { color: var(--cm-muted); font-size: 12px; }

/* Sections, services and calculator */
.cm-section { padding: 76px 0; }
.cm-section-compact { padding-top: 12px; }
.cm-section-header { max-width: 760px; margin-bottom: 32px; }
.cm-section-header h2, .cm-tool-copy h2 { margin: 0 0 12px; color: var(--cm-navy); font-size: clamp(34px, 3.3vw, 48px); line-height: 1.08; letter-spacing: -1.5px; }
.cm-section-header > p:not(.cm-kicker), .cm-tool-copy > p:not(.cm-kicker) { color: var(--cm-muted); font-size: 17px; }
.cm-section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.cm-service-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.cm-service-card { min-height: 270px; overflow: hidden; border: 1px solid var(--cm-line); border-radius: 17px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.cm-service-card:hover { transform: translateY(-5px); box-shadow: var(--cm-shadow-hover); }
.cm-service-media { height: 130px; display: grid; place-items: center; background: linear-gradient(145deg, #d8e5e9, #96b7a2); }
.cm-service-media span { display: grid; width: 74px; height: 74px; place-items: center; border: 5px solid rgba(255, 255, 255, .8); border-radius: 50%; background: rgba(255, 255, 255, .36); font-size: 43px; }
.cm-service-card:nth-child(2n) .cm-service-media { background: linear-gradient(145deg, #dceef5, #8ab4c7); }
.cm-service-card:nth-child(3n) .cm-service-media { background: linear-gradient(145deg, #e5efda, #a7c87d); }
.cm-service-card-content { padding: 17px; }
.cm-service-card h3 { margin: 0 0 5px; color: var(--cm-navy); font-size: 15px; }
.cm-service-card p { margin: 0; color: #263947; font-size: 12px; }
.cm-tool-section { padding: 82px 0; overflow: hidden; background: linear-gradient(125deg, #eef8fc 0%, #f2fbf0 100%); }
.cm-tool-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.cm-tool-copy { max-width: 660px; }
.cm-check-list { padding: 0; margin: 26px 0 30px; list-style: none; }
.cm-check-list li { position: relative; padding-left: 30px; margin: 11px 0; }
.cm-check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--cm-green); color: #fff; font-size: 12px; font-weight: 900; }
.cm-tool-visual { position: relative; min-height: 420px; }
.cm-tool-visual::before { content: ""; position: absolute; inset: 3% 9% 5% 6%; border: 28px solid rgba(53, 165, 44, .10); border-radius: 50%; }
.cm-metric { position: absolute; width: 210px; padding: 23px; border: 1px solid rgba(6, 43, 87, .09); border-radius: 20px; background: rgba(255, 255, 255, .94); box-shadow: var(--cm-shadow); }
.cm-metric span, .cm-metric small { display: block; color: var(--cm-muted); }
.cm-metric strong { display: block; margin: 4px 0; color: var(--cm-navy); font-size: 38px; line-height: 1; }
.cm-metric-main { top: 15%; left: 16%; width: 250px; padding: 32px; }
.cm-metric-main strong { color: var(--cm-green); font-size: 52px; }
.cm-metric:nth-child(2) { top: 4%; right: 2%; }
.cm-metric:nth-child(3) { right: 4%; bottom: 7%; }
.cm-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 38px; border-radius: 20px; background: linear-gradient(90deg, #06477c, #288f61, #61b82f); color: #fff; }
.cm-cta h2 { margin: 0; color: #fff; font-size: 25px; }
.cm-cta-points { display: flex; flex-wrap: wrap; gap: 24px; }
.cm-cta-points span { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

/* Editorial content */
.content-area { min-height: 55vh; padding: 56px 0; }
.cm-content-shell { max-width: 1040px; }
.entry-card { padding: clamp(22px, 4vw, 52px); border: 1px solid var(--cm-line); border-radius: var(--cm-radius); background: #fff; box-shadow: 0 10px 30px rgba(6, 43, 87, .04); }
.entry-title, .archive-header h1 { margin: 0 0 22px; color: var(--cm-navy); font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -1.5px; }
.entry-meta { color: var(--cm-green); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.entry-meta a { color: inherit; }
.entry-hero-image { overflow: hidden; margin: 30px 0; border-radius: 16px; }
.entry-content { font-size: 17px; }
.entry-content > * { max-width: 860px; margin-right: auto; margin-left: auto; }
.entry-content > .alignwide { max-width: 1180px; }
.entry-content > .alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.entry-content a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content blockquote { padding: 3px 0 3px 24px; border-left: 4px solid var(--cm-green); color: var(--cm-muted); font-size: 1.15em; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 10px 12px; border: 1px solid var(--cm-line); text-align: left; }
.entry-footer { margin-top: 32px; }
.tag-links a { display: inline-block; padding: 5px 10px; margin: 3px; border-radius: 99px; background: var(--cm-mint); font-size: 13px; }
.post-navigation, .comments-area { margin-top: 28px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-navigation a { display: block; padding: 20px; border: 1px solid var(--cm-line); border-radius: 14px; background: #fff; }
.nav-next { text-align: right; }
.comment-list { padding-left: 24px; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--cm-line); }
.comment-form input:not([type="submit"]), .comment-form textarea, .search-field { width: 100%; padding: 12px 14px; border: 1px solid #cbd8e0; border-radius: 8px; }
.comment-form input[type="submit"], .search-submit { padding: 12px 20px; border: 0; border-radius: 8px; background: var(--cm-green); color: #fff; font-weight: 700; cursor: pointer; }
.search-form { display: flex; gap: 8px; max-width: 600px; margin: 22px 0; }
.search-form label { flex: 1; }
.archive-header { max-width: 850px; margin-bottom: 34px; }
.archive-description { color: var(--cm-muted); font-size: 17px; }
.cm-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cm-post-card { overflow: hidden; border: 1px solid var(--cm-line); border-radius: 18px; background: #fff; box-shadow: 0 9px 26px rgba(6, 43, 87, .04); transition: transform .2s ease, box-shadow .2s ease; }
.cm-post-card:hover { transform: translateY(-4px); box-shadow: var(--cm-shadow); }
.cm-post-media { height: 220px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #e5f2f7, #dfeeda); }
.cm-post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cm-post-card:hover .cm-post-media img { transform: scale(1.025); }
.cm-post-placeholder { color: var(--cm-navy); font-size: 32px; font-weight: 800; }
.cm-post-placeholder b { color: var(--cm-green); }
.cm-post-content { padding: 23px; }
.cm-post-content h3 { margin: 9px 0; font-size: 22px; }
.cm-post-content h3 a { color: var(--cm-navy); }
.cm-post-excerpt { color: var(--cm-muted); font-size: 14px; }
.cm-text-link { color: var(--cm-green); font-weight: 750; }
.navigation.pagination { margin-top: 34px; }
.nav-links .page-numbers { display: inline-grid; min-width: 42px; height: 42px; place-items: center; padding: 0 10px; border: 1px solid var(--cm-line); border-radius: 8px; background: #fff; }
.nav-links .current { border-color: var(--cm-green); background: var(--cm-green); color: #fff; }
.cm-empty-state { max-width: 860px; }
.cm-admin-notice { padding: 18px; border: 1px solid #f0d38e; border-radius: 10px; background: #fff8df; color: #624b12; }

/* Full-width calculator page */
.cm-calculator-template .site-container { width: min(1540px, calc(100% - 24px)); max-width: none; }
.cm-calculator-template .content-area { padding: 20px 0; background: var(--cm-bg); }
.cm-calculator-template .entry-card { padding: 0; border: 0; box-shadow: none; background: transparent; }
.cm-calculator-template .entry-title { display: none; }
.cm-calculator-template .entry-content > * { max-width: none; }

/* Footer */
.site-footer { padding: 50px 0 24px; margin-top: 70px; background: #052c57; color: #fff; }
.home .site-footer { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 36px; }
.cm-footer-simple .footer-grid { grid-template-columns: 1fr; }
.cm-brand-inverse { color: #fff; }
.cm-brand-inverse:hover { color: #fff; }
.site-footer h2 { margin: 0 0 12px; color: #fff; font-size: 17px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: #dcecf7; }
.footer-brand p { max-width: 390px; color: #dcecf7; }
.footer-nav { padding-top: 26px; margin-top: 28px; border-top: 1px solid rgba(255, 255, 255, .17); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; margin-top: 32px; border-top: 1px solid rgba(255, 255, 255, .17); color: #c8d8e4; font-size: 12px; }

@media (max-width: 1180px) {
	.primary-nav {
		position: fixed; top: 92px; right: 0; left: 0; display: none; max-height: calc(100vh - 92px); overflow: auto;
		padding: 18px 20px 30px; border-top: 1px solid var(--cm-line); background: #fff; box-shadow: 0 24px 50px rgba(6, 43, 87, .13);
	}
	.admin-bar .primary-nav { top: 124px; }
	.primary-nav.is-open { display: block; }
	.primary-nav ul { display: block; }
	.primary-nav a { padding: 11px 4px; }
	.primary-nav .sub-menu { position: static; min-width: 0; padding: 0 0 0 18px; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; }
	.menu-toggle { display: inline-flex; }
	.header-actions { margin-left: auto; }
	.cm-hero-grid { grid-template-columns: 1fr 1fr; }
	.cm-benefit-card { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.cm-benefit-group + .cm-benefit-group { padding-top: 0; margin-top: 0; padding-left: 20px; border-top: 0; border-left: 1px solid #bfe2bf; }
	.cm-service-grid { grid-template-columns: repeat(4, 1fr); }
	.cm-value-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.cm-tool-grid { gap: 30px; }
	.footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .primary-nav { top: 138px; }
}

@media (max-width: 760px) {
	.site-container { width: min(calc(100% - 24px), var(--cm-container)); }
	.header-inner { min-height: 76px; }
	.primary-nav { top: 76px; max-height: calc(100vh - 76px); }
	.admin-bar .primary-nav { top: 122px; }
	.header-actions, .site-tagline { display: none; }
	.cm-brand-name { font-size: 28px; }
	.cm-brand-mark { transform: scale(.88); transform-origin: left center; margin-right: -5px; }
	.cm-hero { padding-top: 38px; }
	.cm-hero-grid { grid-template-columns: 1fr; }
	.cm-hero h1 { font-size: 48px; letter-spacing: -2px; }
	.cm-orbit { max-width: 480px; margin: auto; }
	.cm-benefit-card { grid-template-columns: 1fr; }
	.cm-benefit-group + .cm-benefit-group { padding-top: 20px; margin-top: 0; padding-left: 0; border-top: 1px solid #bfe2bf; border-left: 0; }
	.cm-value-strip, .cm-service-grid, .cm-post-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
	.cm-value-item { padding: 8px; }
	.cm-section { padding: 52px 0; }
	.cm-section-header h2, .cm-tool-copy h2 { font-size: 34px; }
	.cm-tool-section { padding: 58px 0; }
	.cm-tool-grid { grid-template-columns: 1fr; }
	.cm-tool-visual { min-height: 380px; }
	.cm-cta { align-items: flex-start; flex-direction: column; }
	.cm-section-heading-row { align-items: flex-start; flex-direction: column; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
	.menu-toggle-label { display: none; }
	.cm-value-strip, .cm-service-grid, .cm-post-grid, .footer-grid { grid-template-columns: 1fr; }
	.cm-actions { flex-direction: column; }
	.cm-button { width: 100%; }
	.cm-orbit-item { width: 58px; height: 58px; font-size: 22px; }
	.cm-tool-visual { min-height: 420px; }
	.cm-metric { width: 185px; padding: 18px; }
	.cm-metric-main { top: 7%; left: 0; width: 218px; }
	.cm-metric:nth-child(2) { top: 35%; right: 0; }
	.cm-metric:nth-child(3) { right: auto; bottom: 1%; left: 5%; }
	.entry-card { padding: 20px; }
	.search-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   CON ME NUOVO — Homepage 2.0
   ============================================================ */
.cm2-hero { padding: 44px 0 30px; background: linear-gradient(180deg,#fff 0%,#fbfdfd 70%,#f5faf7 100%); }
.cm2-hero-grid { display:grid; grid-template-columns:minmax(260px,.9fr) minmax(460px,1.35fr) minmax(290px,1fr); gap:28px; align-items:start; }
.cm2-project-card,.cm2-audiences { border:1px solid #dcebcf; border-radius:22px; background:#fff; box-shadow:0 14px 44px rgba(6,43,87,.055); }
.cm2-project-card { padding:28px; }
.cm2-kicker,.cm2-project-card .cm2-kicker { margin:0 0 14px; color:var(--cm-navy); font-size:17px; font-weight:900; letter-spacing:.01em; }
.cm2-kicker strong,.cm2-mission h1 span { color:var(--cm-green); }
.cm2-project-card>p:not(.cm2-kicker) { margin:0 0 22px; font-size:14px; }
.cm2-feature { display:grid; grid-template-columns:46px 1fr; gap:14px; margin:18px 0; }
.cm2-feature>span { display:grid; place-items:center; width:42px; height:42px; border:1px solid #cfe8cb; border-radius:12px; background:#f7fcf5; font-size:22px; }
.cm2-feature b { color:var(--cm-navy); font-size:13px; }
.cm2-feature p { margin:3px 0 0; color:#31485c; font-size:12px; line-height:1.45; }
.cm2-center { min-width:0; }
.cm2-mission { max-width:650px; margin:0 auto 10px; padding:0 20px; text-align:left; }
.cm2-mission h1 { margin:0 0 10px; color:var(--cm-navy); font-size:clamp(30px,3vw,46px); line-height:1.05; letter-spacing:-1.5px; }
.cm2-mission p:last-child { max-width:610px; margin:0; color:#334b60; font-size:14px; }
.cm2-orbit { position:relative; min-height:510px; margin-top:10px; }
.cm2-orbit-ring { position:absolute; width:370px; height:370px; top:75px; left:50%; transform:translateX(-50%); border:42px solid rgba(93,183,54,.15); border-right-color:rgba(23,159,168,.13); border-bottom-color:rgba(7,81,122,.12); border-radius:50%; }
.cm2-phone { position:absolute; z-index:3; top:138px; left:50%; width:170px; height:285px; transform:translateX(-50%); padding:65px 14px 18px; border:7px solid #102233; border-radius:28px; background:linear-gradient(#fff,#eef9f1); box-shadow:0 18px 35px rgba(6,43,87,.18); text-align:center; }
.cm2-phone:before { content:""; position:absolute; top:8px; left:50%; width:52px; height:7px; transform:translateX(-50%); border-radius:10px; background:#102233; }
.cm2-mini-logo span { display:block; color:var(--cm-green); font-size:42px; font-weight:900; line-height:.75; }
.cm2-mini-logo strong { display:block; margin-top:7px; color:var(--cm-navy); font-size:24px; }
.cm2-mini-logo em { color:var(--cm-green); font-style:normal; }
.cm2-phone small { display:block; margin:12px 0 20px; color:#60727e; font-size:10px; }
.cm2-phone a { display:inline-block; padding:7px 13px; border-radius:15px; background:var(--cm-green); color:#fff; font-size:9px; font-weight:800; text-decoration:none; }
.cm2-orbit-node { position:absolute; z-index:4; display:flex; flex-direction:column; align-items:center; width:124px; color:var(--cm-navy); text-align:center; text-decoration:none; font-size:10px; font-weight:800; text-transform:uppercase; line-height:1.2; }
.cm2-orbit-node span { display:grid; place-items:center; width:58px; height:58px; margin-bottom:7px; border-radius:50%; background:linear-gradient(145deg,#6fbb26,#128e86); color:#fff; box-shadow:0 8px 20px rgba(45,136,71,.18); font-size:26px; transition:.2s ease; }
.cm2-orbit-node:hover span { transform:translateY(-4px) scale(1.04); box-shadow:0 12px 25px rgba(6,43,87,.2); }
.cm2-node-1{top:34px;left:50%;transform:translateX(-50%)} .cm2-node-2{top:105px;left:3%} .cm2-node-3{top:105px;right:2%} .cm2-node-4{top:245px;right:-1%} .cm2-node-5{bottom:70px;right:9%} .cm2-node-6{bottom:16px;left:50%;transform:translateX(-50%)} .cm2-node-7{bottom:68px;left:9%} .cm2-node-8{top:245px;left:-1%}
.cm2-city { display:flex; justify-content:center; align-items:end; gap:8px; margin-top:-75px; padding-top:50px; font-size:48px; opacity:.65; }
.cm2-audiences { overflow:hidden; padding:10px 28px; background:linear-gradient(145deg,#f7fbfd,#fff); border-color:#e5edf3; }
.cm2-audience { display:grid; grid-template-columns:52px 1fr; gap:15px; padding:24px 0; border-bottom:1px solid #dce5ea; }
.cm2-audience:last-child { border-bottom:0; }
.cm2-audience-icon { display:grid; place-items:center; width:48px; height:48px; border:1px solid #8bc153; border-radius:50%; background:#fff; font-size:24px; }
.cm2-audience h2 { margin:2px 0 10px; color:var(--cm-navy); font-size:17px; }
.cm2-audience ul { margin:0; padding:0; list-style:none; }
.cm2-audience li { position:relative; margin:8px 0; padding-left:22px; color:#334b60; font-size:12px; }
.cm2-audience li:before { content:"✓"; position:absolute; left:0; color:#64a91f; font-weight:900; }
.cm2-pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:28px; }
.cm2-pillars>div { display:grid; grid-template-columns:48px 1fr; grid-template-rows:auto auto; column-gap:12px; align-items:center; padding:18px 20px; border-radius:16px; background:#fff; box-shadow:0 8px 24px rgba(6,43,87,.05); }
.cm2-pillars span { grid-row:1/3; font-size:32px; } .cm2-pillars b { color:var(--cm-navy); font-size:12px; } .cm2-pillars small { color:#617485; font-size:11px; }
.cm2-services { background:#fff; }
.cm2-service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cm2-service-card { overflow:hidden; display:block; border:1px solid #e2eaf0; border-radius:20px; background:#fff; box-shadow:0 10px 30px rgba(6,43,87,.06); color:inherit; text-decoration:none; transition:.22s ease; }
.cm2-service-card:hover { transform:translateY(-5px); border-color:#bcdba9; box-shadow:0 18px 42px rgba(6,43,87,.12); }
.cm2-service-visual { display:grid; place-items:center; height:155px; background:radial-gradient(circle at 65% 35%,#dff3df,#edf7fb 55%,#e7f1f7); font-size:58px; }
.cm2-service-card>div:last-child { padding:20px; }
.cm2-service-card h3 { margin:0 0 7px; color:var(--cm-navy); font-size:18px; }
.cm2-service-card p { min-height:46px; margin:0 0 14px; color:#647583; font-size:13px; }
.cm2-link { color:var(--cm-green); font-size:12px; font-weight:800; }
.cm2-impact { padding-top:26px; background:#f8fbfc; }
.cm2-impact-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:22px; }
.cm2-impact-block,.cm2-model-block { padding:25px; border:1px solid #e0e9ee; border-radius:20px; background:#fff; }
.cm2-impact h2 { margin:0 0 18px; color:var(--cm-navy); font-size:18px; }
.cm2-impact-items { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.cm2-impact-items>div,.cm2-model-items>div { text-align:center; }
.cm2-impact-items span,.cm2-model-items span { display:grid; place-items:center; width:54px; height:54px; margin:0 auto 10px; border:1px solid #9bca81; border-radius:50%; color:var(--cm-green); font-weight:900; }
.cm2-impact-items b { display:block; color:var(--cm-navy); font-size:11px; } .cm2-impact-items small { display:block; margin-top:5px; color:#657684; font-size:10px; }
.cm2-model-items { display:flex; justify-content:space-between; align-items:center; gap:8px; } .cm2-model-items>b { color:var(--cm-navy); font-size:22px; } .cm2-model-items small { color:#4e6474; font-size:10px; line-height:1.35; }
.cm2-tools { background:#fff; } .cm2-tools-grid { display:flex; align-items:center; justify-content:space-between; gap:35px; padding:35px 42px; border-radius:24px; background:linear-gradient(110deg,#edf8f0,#eff7fb); }
.cm2-tools h2 { margin:0 0 8px; color:var(--cm-navy); font-size:30px; } .cm2-tools p { max-width:760px; margin:0; }
.cm2-tools-actions { display:flex; flex-wrap:wrap; gap:12px; flex:0 0 auto; }
.cm2-closing { padding:0 0 30px; background:#fff; } .cm2-closing-inner { display:flex; justify-content:space-between; gap:24px; align-items:center; padding:25px 32px; border-radius:22px; background:linear-gradient(110deg,#06355f,#07517a); color:#fff; font-weight:800; }
.cm2-closing-inner>div:first-child { font-size:23px; } .cm2-closing-inner strong { color:#9bd22f; } .cm2-closing-values { display:flex; gap:22px; font-size:12px; text-transform:uppercase; }
@media (max-width:1180px){.cm2-hero-grid{grid-template-columns:1fr 1.35fr}.cm2-audiences{grid-column:1/-1;display:grid;grid-template-columns:repeat(3,1fr)}.cm2-audience{border-bottom:0;border-right:1px solid #dce5ea}.cm2-audience:last-child{border-right:0}.cm2-service-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:820px){.cm2-hero-grid{grid-template-columns:1fr}.cm2-project-card{order:2}.cm2-center{order:1}.cm2-audiences{order:3;display:block}.cm2-audience{border-right:0;border-bottom:1px solid #dce5ea}.cm2-pillars{grid-template-columns:1fr 1fr}.cm2-impact-grid{grid-template-columns:1fr}.cm2-tools-grid,.cm2-closing-inner{display:block}.cm2-tools-actions,.cm2-closing-values{margin-top:20px}.cm2-impact-items{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.cm2-hero{padding-top:22px}.cm2-mission{padding:0}.cm2-orbit{min-height:440px;transform:scale(.85);transform-origin:top center;margin-bottom:-70px}.cm2-pillars,.cm2-service-grid{grid-template-columns:1fr}.cm2-audiences{padding:8px 20px}.cm2-impact-items{grid-template-columns:1fr 1fr}.cm2-model-items{display:grid;grid-template-columns:1fr 20px 1fr}.cm2-model-items>div:last-child{grid-column:3}.cm2-closing-values{display:grid;grid-template-columns:1fr 1fr}}

/* Solution pages — v2.1 */
.cms-hero{padding:64px 0 72px;background:linear-gradient(135deg,#f7fbfd 0%,#fff 54%,#edf8ed 100%);overflow:hidden}.cms-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.75fr);gap:72px;align-items:center}.cms-back{display:inline-block;margin-bottom:30px;color:var(--cm-blue);font-weight:700;text-decoration:none}.cms-hero h1{font-size:clamp(44px,5vw,76px);line-height:1.02;margin:10px 0 24px;color:var(--cm-navy);letter-spacing:-.045em}.cms-lead{font-size:21px;line-height:1.7;max-width:760px;color:#465c6d}.cms-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}.cms-hero-visual{min-height:430px;position:relative;display:grid;place-items:center}.cms-main-icon{width:220px;height:220px;border-radius:50%;background:linear-gradient(145deg,var(--cm-green),#178d79);display:grid;place-items:center;font-size:95px;box-shadow:0 32px 80px rgba(6,43,87,.16);position:relative;z-index:3}.cms-orb{position:absolute;border-radius:50%;border:1px solid rgba(53,165,44,.18)}.cms-orb-one{width:390px;height:390px;background:rgba(234,247,236,.55)}.cms-orb-two{width:510px;height:510px;border-color:rgba(7,81,122,.09)}.cms-brand-chip{position:absolute;z-index:4;bottom:46px;right:5%;padding:13px 20px;background:#fff;border-radius:18px;box-shadow:var(--cm-shadow);display:flex;align-items:center;gap:8px;color:var(--cm-navy)}.cms-brand-chip span{font-size:27px;color:var(--cm-green)}.cms-brand-chip em{font-style:normal;color:var(--cm-green)}.cms-section{padding:80px 0}.cms-two-col{display:grid;grid-template-columns:.9fr 1.1fr;gap:72px;align-items:start}.cms-two-col h2,.cms-how h2,.cms-impact-card h2,.cms-other-solutions h2,.cms-final-cta h2{font-size:clamp(31px,3vw,48px);line-height:1.08;color:var(--cm-navy);letter-spacing:-.025em;margin:10px 0 20px}.cms-two-col>div:first-child>p:last-child{font-size:18px;line-height:1.7;color:var(--cm-muted)}.cms-benefit-list{display:grid;grid-template-columns:1fr 1fr;gap:18px}.cms-benefit{background:#fff;border:1px solid var(--cm-line);border-radius:18px;padding:24px;display:flex;gap:16px;box-shadow:0 10px 30px rgba(6,43,87,.045)}.cms-benefit span{flex:0 0 32px;height:32px;border-radius:50%;display:grid;place-items:center;background:var(--cm-mint);color:var(--cm-green);font-weight:900}.cms-benefit p{margin:3px 0 0;font-weight:700;line-height:1.45}.cms-how{background:#f7fafc}.cms-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:40px}.cms-step{background:#fff;border-radius:20px;padding:30px;min-height:190px;border:1px solid var(--cm-line);position:relative}.cms-step span{width:44px;height:44px;border-radius:14px;background:var(--cm-navy);color:#fff;display:grid;place-items:center;font-weight:900;font-size:18px;margin-bottom:28px}.cms-step p{margin:0;font-size:17px;font-weight:700;line-height:1.5}.cms-impact-callout{padding-top:30px}.cms-impact-card{display:grid;grid-template-columns:110px 1fr;gap:32px;padding:48px 54px;border-radius:28px;background:linear-gradient(135deg,#062b57,#07517a);color:#fff}.cms-impact-card h2{color:#fff}.cms-impact-card p:last-child{font-size:18px;line-height:1.7;color:rgba(255,255,255,.84);max-width:1000px}.cms-impact-icon{width:92px;height:92px;border-radius:24px;background:rgba(255,255,255,.11);display:grid;place-items:center;font-size:44px}.cms-impact-card .cm-kicker{color:#9bd054}.cms-other-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:38px}.cms-other-card{min-height:150px;border:1px solid var(--cm-line);border-radius:20px;padding:22px;text-decoration:none;color:var(--cm-navy);background:#fff;display:flex;flex-direction:column;align-items:flex-start;gap:10px;transition:.2s ease}.cms-other-card:hover{transform:translateY(-4px);box-shadow:var(--cm-shadow)}.cms-other-card>span{font-size:30px}.cms-other-card strong{font-size:17px}.cms-other-card small{margin-top:auto;color:var(--cm-green);font-weight:800}.cms-final-cta{padding:42px 0 70px}.cms-final-inner{border-radius:30px;background:linear-gradient(90deg,#eaf7ec,#eef8fc);padding:46px 52px;display:flex;justify-content:space-between;align-items:center;gap:40px}.cms-final-inner p{margin:6px 0;max-width:760px}.cms-final-inner .cm-button{white-space:nowrap}
@media(max-width:980px){.cms-hero-grid,.cms-two-col{grid-template-columns:1fr}.cms-hero-visual{min-height:360px}.cms-steps{grid-template-columns:1fr 1fr}.cms-other-grid{grid-template-columns:1fr 1fr}.cms-final-inner{align-items:flex-start;flex-direction:column}.cms-benefit-list{grid-template-columns:1fr}}
@media(max-width:620px){.cms-hero{padding-top:34px}.cms-hero h1{font-size:43px}.cms-lead{font-size:18px}.cms-hero-visual{min-height:300px}.cms-main-icon{width:165px;height:165px;font-size:70px}.cms-orb-one{width:270px;height:270px}.cms-orb-two{width:340px;height:340px}.cms-brand-chip{bottom:24px}.cms-section{padding:58px 0}.cms-steps,.cms-other-grid{grid-template-columns:1fr}.cms-impact-card{grid-template-columns:1fr;padding:34px 28px}.cms-final-inner{padding:34px 26px}}


/* Audience benefit links — v2.2 */
.cm2-audience li { padding-left:0; }
.cm2-audience li:before { display:none; }
.cm2-audience li a { position:relative; display:block; padding:7px 28px 7px 24px; border-radius:10px; color:#334b60; transition:.18s ease; }
.cm2-audience li a:before { content:"✓"; position:absolute; left:2px; top:7px; color:#64a91f; font-weight:900; }
.cm2-audience li a:after { content:"→"; position:absolute; right:5px; top:7px; color:var(--cm-green); opacity:0; transform:translateX(-4px); transition:.18s ease; }
.cm2-audience li a:hover { background:#f1f8ef; color:var(--cm-navy); }
.cm2-audience li a:hover:after { opacity:1; transform:none; }
.cm2-audience .cm2-benefit-link { margin-top:13px; }
.cm2-audience .cm2-benefit-link a { display:inline-flex; align-items:center; gap:8px; padding:9px 13px; border-radius:999px; background:var(--cm-green); color:#fff; font-size:12px; font-weight:900; box-shadow:0 8px 20px rgba(53,165,44,.18); }
.cm2-audience .cm2-benefit-link a:before,.cm2-audience .cm2-benefit-link a:after { display:none; }
.cm2-audience .cm2-benefit-link a:hover { background:#268f24; color:#fff; transform:translateY(-1px); }

/* Target-detail pages */
.cma-hero{padding:68px 0 74px;background:linear-gradient(135deg,#f6fbfd 0%,#fff 54%,#edf8ed 100%)}
.cma-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);gap:72px;align-items:center}
.cma-back{display:inline-block;margin-bottom:26px;font-weight:800;color:var(--cm-blue)}
.cma-hero h1{font-size:clamp(42px,5vw,72px);line-height:1.03;letter-spacing:-.04em;margin:10px 0 22px}
.cma-lead{font-size:20px;line-height:1.7;color:#465c6d;max-width:780px}
.cma-visual{min-height:370px;position:relative;display:grid;place-items:center}
.cma-icon{width:190px;height:190px;border-radius:42px;background:linear-gradient(145deg,var(--cm-navy),var(--cm-blue));color:#fff;display:grid;place-items:center;font-size:78px;box-shadow:0 30px 70px rgba(6,43,87,.18);position:relative;z-index:2}
.cma-ring{position:absolute;width:330px;height:330px;border:1px solid rgba(53,165,44,.26);border-radius:50%;background:rgba(234,247,236,.46)}
.cma-audience-chip{position:absolute;z-index:3;bottom:34px;right:4%;padding:12px 18px;background:#fff;border-radius:999px;box-shadow:var(--cm-shadow);font-weight:900;color:var(--cm-navy)}
.cma-section{padding:78px 0}.cma-section-alt{background:#f7fafc}
.cma-two{display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;align-items:start}
.cma-two h2,.cma-process h2,.cma-cta h2{font-size:clamp(30px,3vw,47px);letter-spacing:-.025em;margin:10px 0 18px}
.cma-copy{font-size:18px;line-height:1.75;color:var(--cm-muted)}
.cma-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.cma-card{padding:24px;border:1px solid var(--cm-line);background:#fff;border-radius:18px;box-shadow:0 10px 30px rgba(6,43,87,.045)}
.cma-card span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:var(--cm-mint);color:var(--cm-green);font-weight:900;margin-bottom:14px}
.cma-card p{margin:0;font-weight:700;line-height:1.5}
.cma-process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:36px}
.cma-step{padding:28px;border-radius:20px;background:#fff;border:1px solid var(--cm-line)}
.cma-step b{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:var(--cm-green);color:#fff;margin-bottom:20px}
.cma-step p{margin:0;font-weight:700;line-height:1.5}
.cma-related{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:32px}
.cma-related a{padding:18px 20px;border-radius:16px;border:1px solid var(--cm-line);background:#fff;color:var(--cm-navy);font-weight:800;display:flex;justify-content:space-between;gap:12px;align-items:center}
.cma-related a:hover{box-shadow:var(--cm-shadow);transform:translateY(-2px)}
.cma-cta{padding:42px 0 72px}.cma-cta-inner{padding:44px 50px;border-radius:28px;background:linear-gradient(90deg,#062b57,#07517a);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:34px}.cma-cta h2{color:#fff;margin-bottom:8px}.cma-cta p{margin:0;color:rgba(255,255,255,.82)}
@media(max-width:900px){.cma-grid,.cma-two{grid-template-columns:1fr}.cma-cards{grid-template-columns:1fr}.cma-process-grid,.cma-related{grid-template-columns:1fr 1fr}.cma-visual{min-height:300px}.cma-cta-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.cma-hero{padding-top:34px}.cma-process-grid,.cma-related{grid-template-columns:1fr}.cma-icon{width:150px;height:150px;font-size:62px}.cma-ring{width:255px;height:255px}.cma-section{padding:58px 0}.cma-cta-inner{padding:32px 26px}}

/* Information request modal — v2.3 */
.cm-info-modal[hidden]{display:none}.cm-info-modal{position:fixed;inset:0;z-index:99999;display:grid;place-items:center;padding:20px}.cm-info-backdrop{position:absolute;inset:0;background:rgba(6,43,87,.62);backdrop-filter:blur(4px)}.cm-info-dialog{position:relative;width:min(650px,100%);max-height:92vh;overflow:auto;background:#fff;border-radius:24px;padding:32px;box-shadow:0 24px 80px rgba(6,43,87,.28)}.cm-info-close{position:absolute;right:18px;top:14px;border:0;background:transparent;color:var(--cm-navy);font-size:32px;cursor:pointer}.cm-info-form{display:grid;gap:15px;margin-top:22px}.cm-info-form label{display:grid;gap:6px;font-weight:700;color:var(--cm-navy);font-size:14px}.cm-info-form input:not([type=checkbox]),.cm-info-form textarea{width:100%;box-sizing:border-box;border:1px solid #cdd9e3;border-radius:10px;padding:12px 13px;font:inherit;background:#fff}.cm-info-form input:focus,.cm-info-form textarea:focus{outline:2px solid rgba(53,165,44,.22);border-color:var(--cm-green)}.cm-info-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.cm-info-consent{grid-template-columns:auto 1fr!important;align-items:start;font-weight:400!important}.cm-info-consent input{margin-top:3px}.cm-info-status{min-height:22px;margin:0;color:var(--cm-green);font-weight:700}.cm-modal-open{overflow:hidden}@media(max-width:600px){.cm-info-row{grid-template-columns:1fr}.cm-info-dialog{padding:26px 20px}}
