
/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */
:root {
	--mento-border:            #EBEBEB;
	--mento-border-dark:       #D0D0D0;
	--mento-radius-sm:         6px;
	--mento-radius-md:         10px;
	--mento-radius-lg:         14px;
	--mento-radius-xl:         16px;
	--mento-radius-2xl:        20px;
	--mento-radius-full:       999px;
	--mento-radius-nav:        12px;
	--mento-shadow-sm:         0 1px 4px rgba(0,0,0,0.04);
	--mento-shadow-md:         0 2px 12px rgba(0,0,0,0.06);
	--mento-shadow-lg:         0 4px 24px rgba(0,0,0,0.10);
	--mento-feed-color:        #3B7DD8;
	--mento-feed-tint:         #EBF2FD;
	--mento-feed-text:         #1A4F8A;
	--mento-flows-color:       #7C5AC2;
	--mento-flows-tint:        #F0EDFB;
	--mento-flows-text:        #4A2E8A;
	--mento-search-color:      #1AAB7B;
	--mento-search-tint:       #E6F7F2;
	--mento-search-text:       #0A5C40;
	--mento-ledger-color:      #E85D3A;
	--mento-ledger-tint:       #FDEEE9;
	--mento-ledger-text:       #7A2510;
	--mento-transition:        0.15s ease;
}


/* ==========================================================================
   1. GLOBAL RESETS
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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


/* ==========================================================================
   2. TYPOGRAPHY UTILITIES
   ========================================================================== */

.mento-eyebrow {
	font-family:    var(--wp--preset--font-family--dm-mono) !important;
	font-size:      var(--wp--preset--font-size--xs) !important;
	font-weight:    500 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color:          var(--wp--preset--color--accent) !important;
	line-height:    1.4 !important;
}

.mento-lead {
	font-family: var(--wp--preset--font-family--outfit) !important;
	font-size:   var(--wp--preset--font-size--lg) !important;
	font-weight: 300 !important;
	line-height: 1.65 !important;
	color:       var(--wp--preset--color--contrast-2) !important;
}

.mento-body-light {
	font-family: var(--wp--preset--font-family--outfit) !important;
	font-size:   var(--wp--preset--font-size--md) !important;
	font-weight: 300 !important;
	line-height: 1.65 !important;
	color:       var(--wp--preset--color--contrast-2) !important;
}

.mento-meta {
	font-family: var(--wp--preset--font-family--outfit) !important;
	font-size:   var(--wp--preset--font-size--sm) !important;
	font-weight: 400 !important;
	color:       #999999 !important;
}

.mento-display {
	font-family:    var(--wp--preset--font-family--dm-serif-display) !important;
	font-weight:    400 !important;
	letter-spacing: -0.02em !important;
	line-height:    1.05 !important;
	color:          var(--wp--preset--color--contrast) !important;
}

.mento-card-title {
	font-family:    var(--wp--preset--font-family--dm-serif-display) !important;
	font-size:      var(--wp--preset--font-size--xl) !important;
	font-weight:    400 !important;
	letter-spacing: -0.01em !important;
	line-height:    1.2 !important;
	color:          var(--wp--preset--color--contrast) !important;
}

.mento-mono {
	font-family: var(--wp--preset--font-family--dm-mono) !important;
	font-size:   var(--wp--preset--font-size--xs) !important;
	font-weight: 400 !important;
	color:       var(--wp--preset--color--contrast-2) !important;
}


/* ==========================================================================
   3. BADGES
   ========================================================================== */

.mento-badge {
	display:        inline-block;
	font-family:    var(--wp--preset--font-family--dm-mono) !important;
	font-size:      10px !important;
	font-weight:    500 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	line-height:    1 !important;
	padding:        4px 10px !important;
	border-radius:  var(--mento-radius-full) !important;
}

.mento-badge--plugin      { background-color: var(--mento-feed-tint) !important;   color: var(--mento-feed-text) !important; }
.mento-badge--coming-soon { background-color: var(--mento-ledger-tint) !important; color: var(--mento-ledger-text) !important; }
.mento-badge--free        { background-color: var(--mento-search-tint) !important; color: var(--mento-search-text) !important; }
.mento-badge--new         { background-color: var(--wp--preset--color--base-2) !important; color: var(--wp--preset--color--accent) !important; }

.mento-status-active::before {
	content:          '';
	display:          inline-block;
	width:            7px;
	height:           7px;
	border-radius:    50%;
	background-color: var(--mento-search-color);
	margin-right:     7px;
	vertical-align:   middle;
	position:         relative;
	top:              -1px;
}


/* ==========================================================================
   4. CARDS
   ========================================================================== */

.mento-card {
	background-color: var(--wp--preset--color--contrast-3);
	border:           1px solid var(--mento-border);
	border-radius:    var(--mento-radius-lg);
	padding:          var(--wp--preset--spacing--30);
	transition:       border-color var(--mento-transition), box-shadow var(--mento-transition);
}

.mento-card:hover {
	border-color: var(--mento-border-dark);
	box-shadow:   var(--mento-shadow-sm);
}

.mento-card--feed   { border-top: 3px solid var(--mento-feed-color); }
.mento-card--flows  { border-top: 3px solid var(--mento-flows-color); }
.mento-card--search { border-top: 3px solid var(--mento-search-color); }
.mento-card--ledger { border-top: 3px solid var(--mento-ledger-color); }
.mento-card--gold   { border-top: 3px solid var(--wp--preset--color--accent); }

.mento-card-divider {
	border:        none;
	border-top:    1px solid var(--mento-border);
	margin-top:    var(--wp--preset--spacing--40) !important;
	margin-bottom: var(--wp--preset--spacing--20) !important;
}

.mento-card-icon {
	width:           40px;
	height:          40px;
	border-radius:   var(--mento-radius-md);
	display:         flex;
	align-items:     center;
	justify-content: center;
	flex-shrink:     0;
}

.mento-card-icon--feed    { background-color: var(--mento-feed-tint); }
.mento-card-icon--flows   { background-color: var(--mento-flows-tint); }
.mento-card-icon--search  { background-color: var(--mento-search-tint); }
.mento-card-icon--ledger  { background-color: var(--mento-ledger-tint); }
.mento-card-icon--gold    { background-color: var(--wp--preset--color--base-2); }


/* ==========================================================================
   5. SECTIONS
   ========================================================================== */

.mento-section    { padding-top: var(--wp--preset--spacing--60) !important; padding-bottom: var(--wp--preset--spacing--60) !important; }
.mento-section--sm { padding-top: var(--wp--preset--spacing--50) !important; padding-bottom: var(--wp--preset--spacing--50) !important; }

.mento-section--dark { background-color: var(--wp--preset--color--contrast) !important; }
.mento-section--dark *, .mento-section--dark p, .mento-section--dark li { color: rgba(255,255,255,0.75); }
.mento-section--dark h1, .mento-section--dark h2, .mento-section--dark h3, .mento-section--dark h4, .mento-section--dark h5 { color: var(--wp--preset--color--contrast-3); }
.mento-section--dark .mento-eyebrow { color: var(--wp--preset--color--accent) !important; }

.mento-section--tint  { background-color: var(--wp--preset--color--base-2) !important; }
.mento-section--base  { background-color: var(--wp--preset--color--base) !important; }
.mento-section--white { background-color: var(--wp--preset--color--contrast-3) !important; }

.mento-section-header { margin-bottom: var(--wp--preset--spacing--40) !important; }


/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.mento-nav-card {
	background-color: var(--wp--preset--color--contrast-3);
	border:           1px solid var(--mento-border);
	border-radius:    var(--mento-radius-nav);
	box-shadow:       var(--mento-shadow-md);
}

.mento-nav-card .wp-block-navigation-item a:hover {
	color: var(--wp--preset--color--contrast) !important;
}

.mento-nav-card .wp-block-navigation-item.current-menu-item a {
	color:       var(--wp--preset--color--accent) !important;
	font-weight: 500;
}


/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.mento-btn-secondary .wp-block-button__link {
	background-color: transparent !important;
	color:            var(--wp--preset--color--contrast) !important;
	border:           1px solid var(--mento-border) !important;
}

.mento-btn-secondary .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--base) !important;
	border-color:     var(--mento-border-dark) !important;
}

.mento-btn-ghost .wp-block-button__link {
	background-color: transparent !important;
	color:            var(--wp--preset--color--accent) !important;
	border:           none !important;
	padding-left:     0 !important;
	padding-right:    0 !important;
}

.mento-btn-ghost .wp-block-button__link:hover { text-decoration: underline !important; }

.mento-btn-dark .wp-block-button__link {
	background-color: var(--wp--preset--color--contrast) !important;
	color:            var(--wp--preset--color--contrast-3) !important;
}

.mento-btn-dark .wp-block-button__link:hover { background-color: #2C2C3A !important; }


/* ==========================================================================
   8. SEPARATOR
   ========================================================================== */

.wp-block-separator {
	border:        none;
	border-top:    1px solid var(--mento-border);
	margin-top:    var(--wp--preset--spacing--40);
	margin-bottom: var(--wp--preset--spacing--40);
}

.mento-divider-gold {
	border-top-color: var(--wp--preset--color--accent) !important;
	border-top-width: 2px !important;
}


/* ==========================================================================
   9. VALUE CARDS
   ========================================================================== */

.mento-value-card {
	background-color: var(--wp--preset--color--contrast-3);
	border:           1px solid var(--mento-border);
	border-radius:    var(--mento-radius-lg);
	padding:          var(--wp--preset--spacing--30);
}

.mento-value-icon {
	width:            36px;
	height:           36px;
	border-radius:    var(--mento-radius-md);
	background-color: var(--wp--preset--color--base-2);
	display:          flex;
	align-items:      center;
	justify-content:  center;
	margin-bottom:    var(--wp--preset--spacing--20);
}


/* ==========================================================================
   10. MEDIA
   ========================================================================== */

.mento-video-thumb {
	background-color: var(--wp--preset--color--contrast);
	border-radius:    var(--mento-radius-lg);
	overflow:         hidden;
	aspect-ratio:     16 / 9;
	display:          flex;
	align-items:      center;
	justify-content:  center;
}

.mento-shorts-strip {
	display:         flex;
	gap:             var(--wp--preset--spacing--20);
	overflow-x:      auto;
	scrollbar-width: none;
	padding-bottom:  var(--wp--preset--spacing--10);
}

.mento-shorts-strip::-webkit-scrollbar { display: none; }
.mento-shorts-strip > * { flex-shrink: 0; width: 160px; }


/* ==========================================================================
   11. UTILITIES
   ========================================================================== */

.mento-text-accent   { color: var(--wp--preset--color--accent) !important; }
.mento-text-contrast { color: var(--wp--preset--color--contrast) !important; }
.mento-text-muted    { color: var(--wp--preset--color--contrast-2) !important; }
.mento-text-white    { color: var(--wp--preset--color--contrast-3) !important; }

.mento-link-feed   a, .mento-link-feed   { color: var(--mento-feed-color) !important; }
.mento-link-flows  a, .mento-link-flows  { color: var(--mento-flows-color) !important; }
.mento-link-search a, .mento-link-search { color: var(--mento-search-color) !important; }
.mento-link-ledger a, .mento-link-ledger { color: var(--mento-ledger-color) !important; }

.mento-no-underline a, .mento-no-underline { text-decoration: none !important; }
.mento-full-width { width: 100% !important; }

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


/* ==========================================================================
   12. RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
	.mento-section    { padding-top: var(--wp--preset--spacing--50) !important; padding-bottom: var(--wp--preset--spacing--50) !important; }
	.mento-card       { padding: var(--wp--preset--spacing--20); }
	.mento-nav-card   { border-radius: var(--mento-radius-sm); }
	.mento-shorts-strip > * { width: 130px; }
}

@media (max-width: 480px) {
	.mento-section { padding-top: var(--wp--preset--spacing--40) !important; padding-bottom: var(--wp--preset--spacing--40) !important; }
}

/* ==========================================================================
   SINGLE PLUGIN PAGE — mentotex.dev
   Sections: Hero · Feature Rows · Use Cases
   ========================================================================== */


/* ==========================================================================
   1. HERO
   ========================================================================== */

.background-gradiant-search-teal {
    background: var(--wp--preset--gradient--search-teal);
}

.background-gradiant-feed-blue {
    background: var(--wp--preset--gradient--feed-blue);
}

.background-gradiant-flow-purple {
    background: var(--wp--preset--gradient--flow-purple);
}

.background-gradiant-ink-depth {
    background: var(--wp--preset--gradient--ink-depth);
}

.background-gradiant-ledger-coral {
    background: var(--wp--preset--gradient--ledger-coral);
}
.background-gradiant-gold-shine {
    background: var(--wp--preset--gradient--gold-shine);
}

.mento-hero-group {
    min-height: 60vh;
    border-radius: var(--wp--custom--radius-xl);
    padding: 5%;
    display: flex;
    align-items: center;
}

.mento-hero-columns {
    display: flex;
    gap: var(--wp--preset--spacing--30);         /* 24px */
    width: 100%;
    align-items: center;
}

.mento-hero-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--30);         /* 24px */
    min-width: 0;
}


/* ── Typography ──────────────────────────────── */

.mento-hero-title {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 2.7rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    margin: 0 !important;
	text-align: center;
}

.mento-hero-slogan {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
	text-align: center;
}

.mento-hero-description {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}


/* ── Stack pill ──────────────────────────────── */

.mento-hero-stack {
    background: rgba(0, 0, 0, 0.18) !important;
    border-radius: var(--wp--custom--radius-full) !important;
    padding: 4px var(--wp--preset--spacing--20) !important;
    display: inline-flex !important;
    width: fit-content !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    transition: transform 0.2s ease !important;
}

.mento-hero-stack:hover {
    transform: scale(1.05) !important;
}

.mento-hero-stack p {
    margin: 0 !important;
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4 !important;
}


/* ── Buttons ─────────────────────────────────── */

.mento-hero-buttons {
    display: flex;
    gap: var(--wp--preset--spacing--20);
    flex-wrap: wrap;
    margin-top: var(--wp--preset--spacing--10);
}

.mento-hero-btn-filled .wp-block-button__link {
    background-color: #ffffff !important;
    color: var(--wp--preset--color--contrast) !important;
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 10px var(--wp--preset--spacing--30) !important;
    border-radius: var(--wp--custom--radius-sm) !important;
    border: none !important;
    text-decoration: none !important;
    transition: background-color 0.4s ease, color 0.2s ease !important;
}

.mento-hero-btn-filled .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--contrast) !important;
    color: #ffffff !important;
}

.mento-hero-btn-outlined .wp-block-button__link {
    background-color: transparent !important;
    color: #ffffff !important;
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    padding: 10px var(--wp--preset--spacing--30) !important;
    border-radius: var(--wp--custom--radius-sm) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease, background-color 0.2s ease !important;
}

.mento-hero-btn-outlined .wp-block-button__link:hover {
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}


/* ── Hero responsive ─────────────────────────── */

@media (max-width: 960px) {
    .mento-hero-title { font-size: 2.25rem !important; }
}

@media (max-width: 781px) {
    .mento-hero-group {
        padding: var(--wp--preset--spacing--60)
                 var(--wp--preset--spacing--40) !important;
    }
    .mento-hero-columns {
        flex-direction: column !important;
        gap: var(--wp--preset--spacing--50) !important;
    }
    .mento-hero-left-column {
        align-items: center !important;
        text-align: center !important;
    }
    .mento-hero-title { font-size: 2.25rem !important; }
    .mento-hero-buttons { justify-content: center !important; }
}

@media (max-width: 600px) {
    .mento-hero-group {
        min-height: auto !important;
        padding: var(--wp--preset--spacing--50)
                 var(--wp--preset--spacing--30) !important;
    }
    .mento-hero-title { font-size: 1.7rem !important; }
}


/* ==========================================================================
   2. FEATURE ROWS
   ========================================================================== */

.mento-section-group {
    background-color: #ffffff;
    border-radius: var(--mento-radius-lg);
    box-shadow: var(--mento-shadow-md);
    padding: var(--wp--preset--spacing--60) !important;
    margin-top: var(--wp--preset--spacing--40) !important;
    margin-bottom: var(--wp--preset--spacing--40) !important;
}

.mento-section-group .wp-block-columns {
    align-items: center !important;
    gap: var(--wp--preset--spacing--60) !important;
    margin-bottom: 0 !important;
}

.mento-section-group .wp-block-columns + .wp-block-columns {
    margin-top: var(--wp--preset--spacing--70) !important;
    padding-top: var(--wp--preset--spacing--70) !important;
    border-top: 1px solid var(--mento-border) !important;
}

/* Even rows flip to image-left / text-right */
.mento-section-group .wp-block-columns:nth-child(even) {
    flex-direction: row-reverse !important;
}

.mento-section-left-col {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--20);
    justify-content: center;
}

.mento-section-sub_title {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: var(--wp--preset--color--accent) !important;
    margin: 0 !important;
}

.mento-section-description {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    color: var(--wp--preset--color--contrast-2) !important;
    margin: 0 !important;
}


/* ── Feature rows responsive ─────────────────── */

@media (max-width: 781px) {
    .mento-section-group {
        padding: var(--wp--preset--spacing--50)
                 var(--wp--preset--spacing--40) !important;
        border-radius: var(--mento-radius-md) !important;
    }
    .mento-section-group .wp-block-columns:nth-child(even) {
        flex-direction: column !important;
    }
    .mento-section-group .wp-block-columns + .wp-block-columns {
        margin-top: var(--wp--preset--spacing--60) !important;
        padding-top: var(--wp--preset--spacing--60) !important;
    }
    .mento-section-sub_title { font-size: 1.1rem !important; }
}

@media (max-width: 600px) {
    .mento-section-group {
        padding: var(--wp--preset--spacing--40)
                 var(--wp--preset--spacing--30) !important;
    }
    .mento-section-sub_title { font-size: 1rem !important; }
}


/* ==========================================================================
   3. USE CASES
   ========================================================================== */

.mento-uc-heading {
    text-align: center;
    margin-bottom: var(--wp--preset--spacing--40) !important;
}

.mento-uc-row {
    background-color: #ffffff;
    border: 1px solid var(--mento-border);
    border-radius: var(--mento-radius-lg);
    padding: var(--wp--preset--spacing--50) !important;
    box-shadow: var(--mento-shadow-sm);
    transition: box-shadow var(--mento-transition);
}

.mento-uc-row:hover {
    box-shadow: var(--mento-shadow-md);
}


/* ── Scenario pill ───────────────────────────── */

.mento-uc-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: var(--mento-radius-full) !important;
    margin-bottom: 14px !important;
    line-height: 1.4 !important;
}

.mento-uc-pill--teal { background-color: var(--mento-search-tint) !important; color: var(--mento-search-text) !important; }
.mento-uc-pill--gold { background-color: var(--wp--preset--color--base-2) !important; color: var(--wp--preset--color--accent) !important; }
.mento-uc-pill--blue { background-color: var(--mento-feed-tint) !important; color: var(--mento-feed-text) !important; }


/* ── Steps label ─────────────────────────────── */

.mento-uc-row .wp-block-heading {
    margin-bottom: var(--wp--preset--spacing--20) !important;
}

.mento-uc-steps-label {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--wp--preset--color--contrast-2) !important;
    margin-top: var(--wp--preset--spacing--30) !important;
    margin-bottom: var(--wp--preset--spacing--10) !important;
}


/* ── Steps list ──────────────────────────────── */

ol.mento-uc-steps {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    counter-reset: mento-step;              /* no !important — invalid on counter-reset */
}

ol.mento-uc-steps li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.9rem !important;
    color: var(--wp--preset--color--contrast) !important;
    line-height: 1.6 !important;
    counter-increment: mento-step;
}

ol.mento-uc-steps li:last-child { margin-bottom: 0 !important; }

ol.mento-uc-steps li::before {
    content: counter(mento-step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mento-search-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

ol.mento-uc-steps.mento-uc-steps--gold li::before { background: var(--wp--preset--color--accent); }
ol.mento-uc-steps.mento-uc-steps--blue li::before { background: var(--mento-feed-color); }

ol.mento-uc-steps li code {
    font-family: var(--wp--preset--font-family--dm-mono), monospace !important;
    font-size: 12px !important;
    background: var(--wp--preset--color--base) !important;
    color: var(--wp--preset--color--contrast-2) !important;
    padding: 1px 6px !important;
    border-radius: var(--mento-radius-sm) !important;
    border: 0.5px solid var(--mento-border) !important;
}

.mento-uc-conclusion {
    margin-top: var(--wp--preset--spacing--30) !important;
    padding-top: var(--wp--preset--spacing--20) !important;
    border-top: 1px solid var(--mento-border) !important;
}


/* ── Result card ─────────────────────────────── */

.mento-uc-result {
    position: sticky;
    top: var(--wp--preset--spacing--40);
}

.mento-uc-result-label {
    font-family: var(--wp--preset--font-family--inter) !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin-bottom: var(--wp--preset--spacing--20) !important;
}

.mento-uc-result-row {
    margin: 0 !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid var(--mento-border) !important;
    font-size: 0.875rem !important;
}

.mento-uc-result-row:last-of-type { border-bottom: none !important; }

.mento-uc-result-meta {
    color: var(--wp--preset--color--contrast-2) !important;
    font-size: 0.75rem !important;
}


/* ── Use cases responsive ────────────────────── */

@media (max-width: 781px) {
    .mento-uc-row {
        padding: var(--wp--preset--spacing--40)
                 var(--wp--preset--spacing--30) !important;
    }
    .mento-uc-result { position: static !important; }
}

@media (max-width: 600px) {
    .mento-uc-row {
        padding: var(--wp--preset--spacing--30)
                 var(--wp--preset--spacing--20) !important;
    }
    ol.mento-uc-steps li { font-size: 0.85rem !important; }
}

/* ==========================================
   MentoTex Screenshot 3D Mockup Effect
   ========================================== */

/* LEFT IMAGE */

.mtass-screenshot {
    position: relative;
    perspective: 1800px;
}

.mtass-screenshot img {
    display: block;
    width: 100%;

    border-radius: 12px;

    transform:
        rotateY(-14deg)
        rotateX(4deg)
        translateZ(0);

    transform-style: preserve-3d;

    box-shadow:
        0 20px 40px rgba(0,0,0,.10),
        0 40px 80px rgba(0,0,0,.08);

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        box-shadow .8s cubic-bezier(.22,1,.36,1);

    will-change: transform;
}

.mtass-screenshot:hover img {

    transform:
        rotateY(-6deg)
        rotateX(2deg)
        translateY(-12px)
        scale(1.03);

    box-shadow:
        0 35px 70px rgba(0,0,0,.14),
        0 60px 120px rgba(0,0,0,.10);
}

/* SHADOW UNDER IMAGE */

.mtass-screenshot::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;
    bottom: -20px;

    height: 35px;

    background: rgba(0,0,0,.18);

    filter: blur(30px);

    border-radius: 50%;

    z-index: -1;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;

    opacity: .45;
}

.mtass-screenshot:hover::after {
    transform: translateY(8px) scale(1.08);
    opacity: .65;
}


/* RIGHT IMAGE */

.mtass-screenshot-right {
    position: relative;
    perspective: 1800px;
}

.mtass-screenshot-right img {
    display: block;
    width: 100%;

    border-radius: 12px;

    transform:
        rotateY(14deg)
        rotateX(4deg)
        translateZ(0);

    transform-style: preserve-3d;

    box-shadow:
        0 20px 40px rgba(0,0,0,.10),
        0 40px 80px rgba(0,0,0,.08);

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        box-shadow .8s cubic-bezier(.22,1,.36,1);

    will-change: transform;
}

.mtass-screenshot-right:hover img {

    transform:
        rotateY(6deg)
        rotateX(2deg)
        translateY(-12px)
        scale(1.03);

    box-shadow:
        0 35px 70px rgba(0,0,0,.14),
        0 60px 120px rgba(0,0,0,.10);
}

/* SHADOW UNDER IMAGE */

.mtass-screenshot-right::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;
    bottom: -20px;

    height: 35px;

    background: rgba(0,0,0,.18);

    filter: blur(30px);

    border-radius: 50%;

    z-index: -1;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease;

    opacity: .45;
}

.mtass-screenshot-right:hover::after {
    transform: translateY(8px) scale(1.08);
    opacity: .65;
}
/* Mento rest of custom styles */
.txt-uppercase {
	text-transform: uppercase;
}

.mento-text-outline {
  text-shadow: 
    -1px -1px 0 #6B6A72,  
     1px -1px 0 #6B6A72,
    -1px  1px 0 #6B6A72,
     1px  1px 0 #6B6A72;
}
/* Mento — Contact Form 7 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: #F5F4F0;
  border: 1.5px solid #e0dfd9;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #1A1A24;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #E8A020;
  background: #fff;
}

.wpcf7 input[type="submit"] {
  background: #1A1A24;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #E8A020;
  color: #1A1A24;
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #E85D3A;
  margin-top: 4px;
}

.wpcf7 .wpcf7-response-output {
  border: 1.5px solid #E8A020;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 16px;
  background: #fffbf2;
  color: #1A1A24;
}


